/* =====================================================================
   SAVEUR — Premium Multi-Page Cooking School Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Swap --accent for your primary color, adjust --accent2 to match,
   and update --font-head / --font-body plus the Google Fonts <link> in
   each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #fffaf3;   /* warm off-white page background            */
  --ink:       #3a241a;   /* deep cocoa for headings / text            */
  --accent:    #d2553a;   /* tomato red (primary)                      */
  --accent-dk: #b3402a;   /* darker tomato for hovers / gradients      */
  --accent2:   #e0a030;   /* saffron / amber accent                    */
  --accent2-dk:#c4852048; /* soft saffron tint                         */
  --muted:     #8a7568;   /* muted warm grey-brown                     */
  --surface:   #ffffff;   /* cards / panels                            */
  --line:      #efe3d6;   /* borders / dividers                        */

  /* --- Fonts --- */
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    20px;
  --radius-sm: 13px;
  --shadow:    0 12px 32px rgba(58, 36, 26, .08);
  --shadow-lg: 0 26px 60px rgba(58, 36, 26, .16);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #5a4438;
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.34rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-dk); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 94px 0; }
.section--soft { background: linear-gradient(180deg, #fff6ea, #fffaf3); }
.section--tight { padding: 66px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(210, 85, 58, .09);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.14rem; color: #5a4438; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(210, 85, 58, .34);
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; box-shadow: 0 14px 32px rgba(210, 85, 58, .44); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-light:hover { background: #fff; color: var(--accent); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.42rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(210, 85, 58, .35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .96rem;
  color: #5a4438;
  padding: 8px 15px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(210, 85, 58, .08); color: var(--accent); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(210, 85, 58, .09);
  border: none;
  border-radius: 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 480px at 88% -10%, rgba(224,160,48,.22), transparent 60%),
    radial-gradient(680px 460px at -5% 110%, rgba(210,85,58,.14), transparent 55%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
  padding: 92px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--accent); font-style: italic; }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero visual — pure CSS plated-dish mock */
.hero-visual {
  position: relative;
  background: linear-gradient(160deg, #fff3e2, #ffe9d4);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hero-visual .hv-tag-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-visual .hv-live { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--accent); }
.hero-visual .hv-live i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(210,85,58,.5); animation: pulse 2s infinite; }
.hero-visual .hv-time { font-size: .8rem; color: var(--muted); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(210,85,58,.45); }
  70% { box-shadow: 0 0 0 10px rgba(210,85,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(210,85,58,0); }
}
.hv-plate {
  width: 230px; height: 230px;
  margin: 4px auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #ffffff, #fbeede 70%, #f3ddc6 100%);
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.7), inset 0 0 0 15px var(--line), var(--shadow);
  display: grid; place-items: center;
  position: relative;
}
.hv-plate .hv-dish { font-size: 5rem; filter: drop-shadow(0 8px 12px rgba(58,36,26,.18)); }
.hv-plate .hv-garnish { position: absolute; font-size: 1.5rem; }
.hv-plate .g1 { top: 26px; right: 40px; }
.hv-plate .g2 { bottom: 36px; left: 34px; }
.hv-plate .g3 { bottom: 50px; right: 36px; }
.hv-card-bottom {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.hv-card-bottom .hv-chef {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center; font-size: 1.4rem;
}
.hv-card-bottom h4 { margin: 0; font-size: 1rem; color: var(--ink); }
.hv-card-bottom span { font-size: .84rem; color: var(--muted); }
.hv-card-bottom .hv-stars { margin-left: auto; color: var(--accent2); letter-spacing: 1px; }

/* ---------------------------------------------------------------------
   MARQUEE / TASTE STRIP
   --------------------------------------------------------------------- */
.taste-strip { padding: 38px 0; border-bottom: 1px solid var(--line); background: var(--surface); }
.taste-strip p { text-align: center; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.cuisine-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px 44px;
}
.cuisine-strip span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 9px;
  transition: color var(--ease);
}
.cuisine-strip span:hover { color: var(--accent); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(210,85,58,.28); }

.card .icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(210,85,58,.12), rgba(224,160,48,.18));
  display: grid; place-items: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: #5a4438; margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   CLASS CARDS (preview + classes page)
   --------------------------------------------------------------------- */
.class-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex; flex-direction: column;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(210,85,58,.28); }
.class-thumb {
  height: 150px;
  display: grid; place-items: center;
  font-size: 3.4rem;
  position: relative;
}
.class-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(220px 140px at 75% 15%, rgba(255,255,255,.4), transparent 60%);
}
.thumb-italian  { background: linear-gradient(150deg, #f6c453, #e0883a); }
.thumb-french   { background: linear-gradient(150deg, #d98cae, #c2607e); }
.thumb-pastry   { background: linear-gradient(150deg, #f3a78c, #d2553a); }
.thumb-asian    { background: linear-gradient(150deg, #8cba88, #5f9b6a); }
.thumb-knife    { background: linear-gradient(150deg, #9bb0c9, #6c7f9c); }
.thumb-kids     { background: linear-gradient(150deg, #f6b8c5, #ef8aa0); }
.thumb-spanish  { background: linear-gradient(150deg, #f0a04b, #d2553a); }
.thumb-bread    { background: linear-gradient(150deg, #e3b778, #c79352); }
.thumb-vegan    { background: linear-gradient(150deg, #a9c98a, #7aa85f); }
.class-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.class-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.pill {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(210,85,58,.1);
  color: var(--accent);
}
.pill.amber { background: rgba(224,160,48,.16); color: #a9711a; }
.pill.green { background: rgba(95,155,106,.16); color: #3f7c4d; }
.pill.slate { background: rgba(108,127,156,.16); color: #4f627e; }
.class-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.class-card p { color: #5a4438; font-size: .96rem; margin-bottom: 16px; }
.class-meta {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--muted);
}
.class-meta b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: #5a4438;
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------------------------------------------------------------------
   FEATURE LIST / SPLIT
   --------------------------------------------------------------------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(210,85,58,.3);
}
.feature h3 { font-size: 1.16rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 24px;
  min-height: 400px;
  background: linear-gradient(150deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 32px;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 280px at 78% 22%, rgba(255,255,255,.32), transparent 60%);
}
.split-media .sm-emoji { font-size: 3.4rem; }
.split-media .sm-decor { position: absolute; font-size: 2rem; opacity: .5; }
.split-media .d1 { top: 30px; left: 34px; }
.split-media .d2 { bottom: 34px; right: 40px; }
.split-media .d3 { top: 50%; right: 34px; }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(600px 400px at 12% 10%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, var(--accent-dk), var(--accent));
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  display: block;
  line-height: 1;
  color: #fff;
}
.stats-band .stat strong { background: linear-gradient(120deg, #fff, #ffe2b0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ---------------------------------------------------------------------
   HOW IT WORKS — steps
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.14rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent2); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.14rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CHEFS / TEAM
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-size: 3rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.avatar-1 { background: linear-gradient(135deg, #d2553a, #e0a030); }
.avatar-2 { background: linear-gradient(135deg, #c2607e, #d98cae); }
.avatar-3 { background: linear-gradient(135deg, #5f9b6a, #8cba88); }
.avatar-4 { background: linear-gradient(135deg, #6c7f9c, #9bb0c9); }
.team-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-body); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 12%, rgba(224,160,48,.4), transparent 60%),
    linear-gradient(135deg, var(--accent-dk), var(--accent));
  color: #fff;
  border-radius: 30px;
  padding: 62px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(680px 380px at 86% -20%, rgba(224,160,48,.22), transparent 60%),
    linear-gradient(180deg, #fff4e6, var(--bg));
  padding: 66px 0 58px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 620px; color: #5a4438; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   PRICING
   --------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: .76rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(210,85,58,.4);
}
.price-card .plan-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-card .plan-desc { color: var(--muted); font-size: .94rem; margin-bottom: 22px; }
.price-amount { font-family: var(--font-head); color: var(--ink); margin-bottom: 4px; }
.price-amount .num { font-size: 3rem; font-weight: 600; line-height: 1; }
.price-amount .per { font-size: .95rem; color: var(--muted); font-family: var(--font-body); }
.price-card .price-note { font-size: .86rem; color: var(--muted); margin-bottom: 24px; }
.price-features { margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: #5a4438; }
.price-features li::before {
  content: "✓"; flex: 0 0 auto;
  color: var(--accent); font-weight: 700;
}
.price-features li.off { color: var(--muted); }
.price-features li.off::before { content: "–"; color: var(--muted); }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 560px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; background: #fff6ea; }
.compare-table tbody th { text-align: left; font-family: var(--font-body); font-weight: 500; color: var(--ink); }
.compare-table td .yes { color: var(--accent); font-weight: 700; }
.compare-table td .no { color: var(--muted); }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table .col-feat { background: rgba(210,85,58,.05); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1.12rem; margin-bottom: 8px; display: flex; gap: 10px; align-items: baseline; }
.faq-item h3 .q { color: var(--accent); }
.faq-item p { margin-bottom: 0; color: #5a4438; font-size: .97rem; }

/* ---------------------------------------------------------------------
   ABOUT — facilities
   --------------------------------------------------------------------- */
.facility-card { text-align: left; }
.facility-card .icon { margin-bottom: 16px; }
.facility-card h3 { font-size: 1.18rem; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdfa;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(210,85,58,.13);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c0341f; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0341f; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: #f0f8ee;
  border: 1px solid #a9d3a0;
  color: #3f7c4d;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: linear-gradient(160deg, #fff4e6, #fff9f1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 13px; background: var(--surface);
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; }

.map-placeholder {
  border-radius: var(--radius);
  min-height: 250px;
  background:
    linear-gradient(rgba(210,85,58,.05), rgba(210,85,58,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    #fff6ea;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.6rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #2c1a12;
  color: rgba(255,255,255,.72);
  padding: 66px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.66); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.7); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent2); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { max-width: 440px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 66px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 46px 26px; }
}

@media (max-width: 480px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
}
