:root {
  --copper: #b85c38;
  --copper-hover: #a04d2f;
  --copper-light: #f5dacc;
  --copper-warm: #d4a574;
  --dark: #2a2520;
  --body: #5a534c;
  --bg: #faf8f6;
  --bg-soft: #f4efe9;
  --border: #e8e3dd;
  --white: #ffffff;
  --green: #6b9080;
  --sage: #dfe9e2;
  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 10px 32px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 24px 54px rgba(42, 37, 32, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--body);
  background:
    radial-gradient(circle at top left, rgba(212, 165, 116, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(107, 144, 128, 0.08), transparent 30%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid rgba(232, 227, 221, 0.9);
  background: rgba(250, 248, 246, 0.92);
  backdrop-filter: blur(20px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__wordmark {
  font-family: 'Cormorant', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__link {
  font-size: 0.95rem;
  color: var(--body);
  transition: color 0.2s ease;
}

.header__link:hover,
.header__link--active {
  color: var(--copper);
}

.header__mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--copper {
  background: var(--copper);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--copper:hover {
  background: var(--copper-hover);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  border-color: rgba(184, 92, 56, 0.25);
}

.btn--outline:hover {
  border-color: rgba(184, 92, 56, 0.45);
  background: var(--white);
}

.btn--block {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(245, 218, 204, 0.8);
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: 72px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.hero__content {
  padding: 18px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  margin: 22px 0 22px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.hero__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.07rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(184, 92, 56, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  color: var(--dark);
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 233, 0.95));
  box-shadow: var(--shadow-lg);
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(184, 92, 56, 0.05));
  pointer-events: none;
}

.hero__panel-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hero__panel-body {
  position: relative;
  padding: 28px;
}

.hero__panel-title {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
}

.hero__panel-copy {
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.75;
}

.hero__panel-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero__panel-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--dark);
}

.hero__panel-item-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--copper-light);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.proof-strip {
  padding: 18px 0 28px;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.proof-card__kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card__title {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--dark);
}

.proof-card__copy {
  margin-top: 10px;
  font-size: 0.95rem;
}

.section {
  padding: 56px 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.62);
}

.section__header {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.section__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section__subtitle {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.75;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.story-card,
.detail-card,
.faq-card,
.link-card,
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.story-card,
.detail-card,
.faq-card,
.link-card {
  padding: 24px;
}

.story-card__title,
.detail-card__title,
.link-card__title {
  font-family: 'Cormorant', serif;
  font-size: 1.65rem;
  line-height: 1.08;
  color: var(--dark);
}

.story-card__copy,
.detail-card__copy,
.link-card__copy {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.story-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--copper-light);
  color: var(--copper);
  font-size: 1.1rem;
}

.detail-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.detail-card__list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.detail-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--copper);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 24px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.step-card__number {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--copper-light), rgba(212, 165, 116, 0.8));
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 700;
}

.step-card__title {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--dark);
}

.step-card__copy {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.quote-panel {
  overflow: hidden;
  display: grid;
  align-content: start;
}

.quote-panel__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.quote-panel__body {
  padding: 24px;
}

.quote-panel__quote {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  line-height: 1.08;
  color: var(--dark);
}

.quote-panel__copy {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.75;
}

.quote-panel__caption {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Cormorant', serif;
  font-size: 1.45rem;
  color: var(--dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-item__body {
  padding: 18px 24px 22px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.link-card {
  display: block;
}

.link-card__arrow {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-weight: 700;
}

.form-shell {
  display: grid;
  gap: 18px;
}

.form-card {
  padding: 28px;
}

.form-card__title {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--dark);
}

.form-card__copy {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 14px 16px;
  font: inherit;
  color: var(--dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(184, 92, 56, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 218, 204, 0.8);
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.form-error {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(184, 57, 57, 0.08);
  color: #9c2a2a;
  font-size: 0.92rem;
}

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid rgba(107, 144, 128, 0.28);
  border-radius: var(--radius-md);
  background: rgba(223, 233, 226, 0.72);
}

.form-success__title {
  font-family: 'Cormorant', serif;
  font-size: 1.7rem;
  color: var(--dark);
}

.form-success__copy {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.cta-band {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(42, 37, 32, 0.98), rgba(58, 46, 38, 0.96));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-band__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cta-band__copy {
  margin-top: 12px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.footer {
  padding: 44px 0 54px;
}

.footer__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 227, 221, 0.92);
}

.footer__brand {
  max-width: 360px;
}

.footer__tagline {
  margin-top: 10px;
  font-size: 0.94rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer__copy {
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero__grid,
  .how-grid,
  .grid-3,
  .grid-2,
  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 20px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(250, 248, 246, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .header__nav--open {
    display: flex;
  }

  .header__mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .form-grid--two {
    grid-template-columns: 1fr;
  }

  .footer__wrap {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding-top: 58px;
  }

  .hero__actions,
  .cta-band__actions {
    flex-direction: column;
  }

  .btn,
  .btn--block {
    width: 100%;
  }

  .hero__panel-image,
  .quote-panel__image {
    height: 220px;
  }
}
