@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:        #261e16;
  --ink-soft:   #5c4e40;
  --ink-muted:  #8a7a68;
  --paper:      #f6f2ed;
  --white:      #ffffff;
  --dark:       #3b3228;
  --darker:     #261e16;
  --accent:     #7a4a2e;
  --accent-dk:  #5e3820;
  --gold:       #9b7a3e;
  --gold-lt:    #d4aa6a;
  --border:     #d4c4b0;
  --gap:        clamp(2rem, 5vw, 4rem);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-dk); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 500; }

p { max-width: 62ch; }
p + p { margin-top: 1rem; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: min(100%, 960px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 24, 18, 0.90) 0%,
    rgba(30, 24, 18, 0.35) 50%,
    rgba(30, 24, 18, 0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
  max-width: 780px;
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  max-width: none;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding-block: var(--gap); }

.section.what    { background: var(--white); }
.section.who     { background: var(--paper); }
.section.tim     { background: var(--dark); color: var(--white); }
.section.how     { background: var(--white); }
.section.pricing { background: var(--paper); }
.section.cta     { background: var(--dark); color: var(--white); text-align: center; }

.section.tim h2  { color: var(--gold-lt); }
.section.cta h2  { color: var(--gold-lt); }
.section.tim p   { color: rgba(255,255,255,0.78); }
.section.cta p   { color: rgba(255,255,255,0.72); }

/* ── Who grid ───────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.who-item {
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
}

.who-item h3 { color: var(--dark); margin-bottom: 0.5rem; }
.who-item p  { color: var(--ink-soft); }

/* ── Tim section ────────────────────────────────────────── */
.tim-inner { max-width: 640px; }

/* ── How list ───────────────────────────────────────────── */
.how-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.how-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.how-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.how-list h3 { color: var(--dark); }
.how-list p  { color: var(--ink-soft); }

/* ── Pricing ────────────────────────────────────────────── */
.pricing-intro {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.pricing-card.featured .pricing-label,
.pricing-card.featured .pricing-duration,
.pricing-card.featured p {
  color: rgba(255,255,255,0.65);
}

.pricing-card.featured .pricing-price {
  color: var(--gold-lt);
}

.pricing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.pricing-price {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark);
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.pricing-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-top: 0.25rem;
}

.pricing-card .btn {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
}

.pricing-card.featured .btn-outline {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.pricing-card.featured .btn-outline:hover {
  background: var(--gold-lt);
  color: var(--dark);
}

/* ── CTA section ────────────────────────────────────────── */
.section.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.section.cta p { max-width: none; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--darker);
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
}

.footer-inner {
  width: min(100%, 960px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-inner a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-inner a:hover { color: var(--gold-lt); }

/* ── Inner pages (privacy) ──────────────────────────────── */
.page-header {
  background: var(--dark);
  padding: 2.5rem clamp(1.25rem, 5vw, 2.5rem);
}

.page-header h1 {
  color: var(--gold-lt);
  margin-top: 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.back-link { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.back-link:hover { color: var(--white); }

.page-body { padding-block: var(--gap); }

.prose h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.prose p    { margin-bottom: 1rem; color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose a    { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
