
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lora:wght@400;600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #faf7f2;
  --bg2: #f4efe6;
  --card: #ffffff;
  --dark: #1a1208;
  --dark2: #2d1f0a;
  --muted: #7a6a52;
  --text: #2d2415;
  --white: #ffffff;
  --primary: #c2780a;
  --primary2: #e8920d;
  --accent: #1e4d3a;
  --accent2: #2d6b52;
  --gold: #d4a017;
  --ring: rgba(194,120,10,.30);
  --border: rgba(180,140,80,.22);
  --border2: rgba(180,140,80,.12);
  --shadow: 0 20px 50px rgba(80,40,0,.12);
  --shadow-soft: 0 10px 30px rgba(80,40,0,.08);
  --radius: 14px;
  --radius2: 20px;
  --max: 1120px;
}

* { box-sizing: border-box }
html, body { margin: 0; padding: 0 }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(212,160,23,.10), transparent 60%),
    radial-gradient(ellipse 700px 400px at 10% 80%, rgba(30,77,58,.07), transparent 55%);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px }
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden }
.skip-link:focus { left: 18px; top: 12px; width: auto; height: auto; padding: 10px 14px; background: var(--dark); color: #fff; border-radius: 10px; z-index: 9999 }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250,247,242,.88);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 14px }
.brand img { width: 170px; height: auto }
.badge {
  font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 999px; letter-spacing: .4px; text-transform: uppercase;
  background: rgba(194,120,10,.10);
  border: 1px solid rgba(194,120,10,.28);
  color: var(--primary);
}
.navlinks { display: flex; gap: 4px; align-items: center }
.navlinks a {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 9px 13px; border-radius: 10px;
  border: 1px solid transparent;
  transition: all .18s;
}
.navlinks a:hover { background: rgba(194,120,10,.08); border-color: rgba(194,120,10,.18); color: var(--primary) }
.navlinks a.active { background: rgba(194,120,10,.12); border-color: rgba(194,120,10,.28); color: var(--primary) }
.cta { display: flex; gap: 10px; align-items: center }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px; font-weight: 600; font-size: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(80,40,0,.06);
  transition: all .18s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(80,40,0,.12); border-color: rgba(194,120,10,.30) }
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,120,10,.28);
}
.btn.primary:hover { box-shadow: 0 8px 28px rgba(194,120,10,.38); transform: translateY(-2px) }
.btn.ghost { background: transparent; border-color: var(--border) }
.btn.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,77,58,.22);
}
.menu-btn {
  display: none;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.menu-btn svg { width: 22px; height: 22px }
.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0 16px;
  background: rgba(250,247,242,.98);
}
.mobile-panel a { display: block; padding: 11px 12px; border-radius: 12px; border: 1px solid transparent; font-weight: 500 }
.mobile-panel a:hover { background: rgba(194,120,10,.07); border-color: rgba(194,120,10,.18) }
.mobile-cta { display: flex; gap: 10px; padding: 12px 12px 2px }

/* ── HERO ── */
.hero { padding: 60px 0 20px }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.kicker {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  color: var(--primary);
  background: rgba(194,120,10,.08);
  border: 1px solid rgba(194,120,10,.20);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--dark);
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--dark);
}
h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
}
.lead { color: var(--muted); font-size: 17px; max-width: 54ch; line-height: 1.65 }
.hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px }
.pill {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(80,40,0,.05);
}
.pill b { color: var(--dark) }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; inset: -2px; border-radius: calc(var(--radius2) + 2px);
  background: linear-gradient(135deg, rgba(194,120,10,.18), rgba(30,77,58,.10));
  z-index: -1;
}
.hero-card img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--border2) }

/* ── SECTIONS ── */
.section { padding: 52px 0 }
.section h2 { font-size: 30px; margin: 0 0 10px }
.section p.sub { color: var(--muted); margin: 0 0 24px; font-size: 15.5px }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow) }
.card h3 { margin: 0 0 8px; font-size: 16px; color: var(--dark) }
.card p { margin: 0; color: var(--muted); font-size: 14px }
.card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(194,120,10,.12), rgba(194,120,10,.06));
  border: 1px solid rgba(194,120,10,.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ── SPLIT / PANELS ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.panel h3 { margin: 0 0 12px; color: var(--dark) }
.panel ul { margin: 0; padding-left: 18px; color: var(--muted) }
.panel li { margin: 9px 0; line-height: 1.5 }

/* ── PRICING ── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px) }
.price-card.featured {
  border-color: rgba(194,120,10,.45);
  box-shadow: 0 24px 60px rgba(194,120,10,.16);
  background: linear-gradient(160deg, #fff 80%, rgba(194,120,10,.04));
}
.ribbon {
  position: absolute; top: 18px; right: -44px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700; font-size: 11px; letter-spacing: .4px; text-transform: uppercase;
  padding: 9px 58px;
  border-radius: 999px;
}
.price-top { display: flex; align-items: center; justify-content: space-between }
.plan { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 20px; color: var(--dark) }
.per { color: var(--muted); font-size: 13px }
.amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px; font-weight: 900; margin: 14px 0 6px; line-height: 1;
  color: var(--dark);
}
.amount span { font-size: 15px; font-weight: 600; color: var(--muted); font-family: 'DM Sans', sans-serif }
.features { margin: 14px 0 0; padding: 0; list-style: none }
.features li {
  display: flex; gap: 10px; margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.check {
  width: 20px; height: 20px; border-radius: 8px;
  background: rgba(30,77,58,.10);
  border: 1px solid rgba(30,77,58,.28);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.check svg { width: 12px; height: 12px }

/* ── PAGE HERO ── */
.page-hero { padding: 44px 0 10px }
.breadcrumb { color: var(--muted); font-size: 13px }
.page-hero h1 { margin-top: 10px }
.content { padding: 18px 0 56px }
.prose {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.prose h2 { margin-top: 28px }
.prose h2:first-child { margin-top: 0 }
.prose p, .prose li { color: var(--muted) }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px }

/* ── TABLE ── */
.table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.table th, .table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border2);
  font-size: 14px;
}
.table th { background: rgba(194,120,10,.05); text-align: left; font-weight: 600; color: var(--dark) }
.table tr:last-child td { border-bottom: none }

/* ── FORM ── */
.form { display: grid; gap: 12px }
.input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.input:focus, textarea:focus { box-shadow: 0 0 0 3px var(--ring); border-color: rgba(194,120,10,.50) }
textarea { min-height: 120px; resize: vertical }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  background: var(--bg2);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}
.footer small { color: rgba(122,106,82,.75) }
.footer a { color: var(--muted) }
.footer a:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px }
.footer b { color: var(--dark) }

/* ── KBD ── */
.kbd {
  font-size: 12px; padding: 4px 9px; border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-family: monospace;
}

/* ── DECORATIVE DIVIDER ── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 999px;
  margin: 12px 0 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px }
  .cards { grid-template-columns: 1fr }
  .split { grid-template-columns: 1fr }
  .pricing { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
  .navlinks, .cta { display: none }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center }
  .mobile-panel { display: block }
}
