@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #f8f4eb;
  --bg-strong: #efe4d1;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-strong: #fff9ef;
  --text: #2b2a27;
  --muted: #5f625b;
  --line: rgba(63, 55, 39, 0.12);
  --brand: #bf5d36;
  --brand-deep: #8d3d1f;
  --accent: #2f6b63;
  --accent-soft: #d8ebe3;
  --sun: #f3b95f;
  --shadow: 0 22px 60px rgba(52, 35, 17, 0.12);
  --shadow-soft: 0 10px 30px rgba(52, 35, 17, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(243, 185, 95, 0.34), transparent 28%),
    radial-gradient(circle at top right, rgba(47, 107, 99, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, #f6efe4 45%, #f8f4eb 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
  opacity: 0.3;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(248, 244, 235, 0.92), rgba(248, 244, 235, 0.76));
  border-bottom: 1px solid rgba(63, 55, 39, 0.06);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid rgba(63, 55, 39, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1rem 0.85rem 1.25rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.brand-lockup img {
  width: 132px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  background: rgba(191, 93, 54, 0.12);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(47, 107, 99, 0.12);
  color: var(--accent);
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button {
  background: linear-gradient(135deg, var(--brand), #d57b43);
  color: #fff;
  box-shadow: 0 14px 30px rgba(191, 93, 54, 0.24);
}

.button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(191, 93, 54, 0.28);
}

.button-secondary {
  background: var(--text);
  color: #fff;
}

.button-secondary:hover {
  color: #fff;
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid rgba(63, 55, 39, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.46);
}

.button-ghost:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.page-hero-copy,
.hero-panel,
.section-panel,
.cta-panel,
.form-card,
.thanks-card,
.confirm-card,
.info-card,
.testimonial-card,
.faq-item,
.timeline-card,
.stat-card,
.highlight-card,
.contact-card,
.page-card {
  background: var(--surface);
  border: 1px solid rgba(63, 55, 39, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero-copy {
  padding: 2.75rem;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.cta-panel h2,
.form-card h1,
.form-card h2,
.thanks-card h1,
.confirm-card h1 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-top: 1rem;
  max-width: 12ch;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-meta,
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.pill,
.inline-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid rgba(63, 55, 39, 0.08);
}

.hero-panel {
  padding: 1.4rem;
  overflow: hidden;
}

.hero-stack {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.hero-visual {
  min-height: 280px;
  padding: 1.4rem;
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 239, 0.68)),
    radial-gradient(circle at top right, rgba(243, 185, 95, 0.4), transparent 32%),
    linear-gradient(180deg, rgba(47, 107, 99, 0.16), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-visual strong,
.info-card strong,
.highlight-card strong,
.stat-card strong,
.timeline-card strong,
.contact-card strong {
  display: block;
  font-size: 1.1rem;
}

.hero-visual p,
.info-card p,
.highlight-card p,
.timeline-card p,
.page-card p,
.contact-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.stat-grid,
.card-grid,
.contact-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.highlight-card,
.info-card,
.contact-card,
.page-card,
.testimonial-card,
.timeline-card,
.faq-item {
  padding: 1.4rem;
}

.stat-card span {
  display: inline-block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat-card strong {
  margin-top: 0.4rem;
  font-size: 2rem;
  font-family: 'Fraunces', serif;
}

.section {
  padding: 2rem 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.section-heading p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.section-panel {
  padding: 2rem;
}

.section-panel ul,
.check-list,
.detail-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.section-panel li,
.check-list li,
.detail-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.section-panel li::before,
.check-list li::before,
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--sun));
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--sun));
}

.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card blockquote,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card footer {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.cta-band {
  padding: 1rem 0 3rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 249, 239, 0.95), rgba(255, 246, 235, 0.86)),
    radial-gradient(circle at top right, rgba(243, 185, 95, 0.4), transparent 36%);
}

.cta-panel p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero-copy {
  min-height: 100%;
}

.page-hero-copy h1 {
  max-width: 14ch;
}

.page-hero-copy p {
  color: var(--muted);
}

.form-wrap {
  padding: 3rem 0;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

.form-card,
.thanks-card,
.confirm-card {
  padding: 2rem;
}

.form-card h1,
.form-card h2,
.thanks-card h1,
.confirm-card h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
}

.form-card > p,
.thanks-card > p,
.confirm-card > p {
  color: var(--muted);
}

.form-section {
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgba(63, 55, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  margin-top: 1.25rem;
}

.form-section h3,
.form-section legend,
.page-card h3,
.faq-item h3 {
  margin: 0;
  padding: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.field-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.choice-group > span {
  font-weight: 700;
  color: var(--text);
}

.field small,
.helper {
  color: var(--muted);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(63, 55, 39, 0.16);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(47, 107, 99, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 107, 99, 0.12);
  transform: translateY(-1px);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 55, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
}

.checkbox-pill input {
  width: auto;
  margin: 0;
}

.choice-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.aside-stack {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.detail-list strong {
  color: var(--text);
}

.submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footnote {
  color: var(--muted);
  font-size: 0.94rem;
}

.thanks-wrap,
.confirm-wrap {
  padding: 4rem 0;
}

.thanks-card,
.confirm-card {
  max-width: 760px;
  margin: 0 auto;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(63, 55, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.footer-card p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split-section,
  .cta-panel,
  .form-layout,
  .card-grid,
  .contact-grid,
  .page-grid,
  .stat-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .aside-stack {
    position: static;
  }

  .field-grid,
  .field-grid.three-up {
    grid-template-columns: 1fr;
  }

  .header-bar {
    border-radius: 28px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .utility-actions {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .page-hero-copy,
  .hero-panel,
  .section-panel,
  .form-card,
  .thanks-card,
  .confirm-card,
  .cta-panel,
  .stat-card,
  .highlight-card,
  .info-card,
  .contact-card,
  .page-card,
  .testimonial-card,
  .timeline-card,
  .faq-item {
    padding: 1.3rem;
  }

  .hero,
  .page-hero,
  .form-wrap,
  .thanks-wrap,
  .confirm-wrap {
    padding-top: 2rem;
  }

  .site-shell {
    width: min(100vw - 1rem, 100%);
  }

  .header-bar,
  .footer-card {
    border-radius: 22px;
  }
}
