/* =====================================================================
   LOTUS — Yoga & Pilates Studio | Premium Multi-Page Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the whole look by editing the CSS variables in
   :root below. Swap --accent / --accent2 for your colors, adjust the
   neutrals, 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:       #f6f4ee;   /* warm cream page background          */
  --ink:      #3a4034;   /* deep earthy green-ink (headings)    */
  --accent:   #7c9070;   /* sage green (primary)                */
  --accent-d: #647759;   /* darker sage for hovers / gradients  */
  --accent2:  #c98a6a;   /* terracotta (secondary accent)       */
  --accent2-d:#b5754f;   /* darker terracotta                   */
  --muted:    #837e72;   /* muted body / captions               */
  --surface:  #fffdf8;   /* card / surface background           */
  --line:     #e7e2d6;   /* borders / dividers                  */

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

  /* --- Shape & motion --- */
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 14px 40px rgba(58, 64, 52, .07);
  --shadow-lg: 0 28px 70px rgba(58, 64, 52, .12);
  --ease:      .4s 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: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.32rem; }

p { margin: 0 0 1rem; }

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

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: 104px 0; }
.section--soft { background: linear-gradient(180deg, #f1eee4, var(--bg)); }
.section--tight { padding: 72px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  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: .22em;
  text-transform: uppercase;
  color: var(--accent-d);
  margin-bottom: 18px;
}
.eyebrow::before { content: "\273F\00A0\00A0"; color: var(--accent2); }

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

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px 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(124, 144, 112, .32);
}
.btn-primary:hover { background: var(--accent-d); color: #fff; box-shadow: 0 14px 30px rgba(124, 144, 112, .4); }

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

.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-d); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 238, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(124, 144, 112, .35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 8px 15px;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(124, 144, 112, .12); color: var(--accent-d); }
.nav-links a.active { color: var(--accent-d); 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(124, 144, 112, .12);
  border: none;
  border-radius: 12px;
  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(800px 540px at 88% -8%, rgba(201,138,106,.2), transparent 60%),
    radial-gradient(720px 520px at -5% 108%, rgba(124,144,112,.18), transparent 58%),
    linear-gradient(180deg, #faf8f2 0%, var(--bg) 100%);
  padding: 96px 0 104px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent-d); }
.hero .lead { max-width: 520px; margin-bottom: 32px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-meta { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .88rem; color: var(--muted); letter-spacing: .02em; }

/* Hero visual — pure CSS calm scene */
.hero-visual {
  position: relative;
  min-height: 440px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,253,248,.6), transparent 60%),
    linear-gradient(160deg, var(--accent), var(--accent-d));
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,253,248,.9), rgba(201,138,106,.6) 70%);
  filter: blur(2px);
  top: 16%;
  box-shadow: 0 0 80px rgba(255,253,248,.5);
}
.hero-visual .scene-emoji {
  position: relative;
  z-index: 2;
  font-size: 7rem;
  filter: drop-shadow(0 16px 30px rgba(58,64,52,.3));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-visual .scene-tag {
  position: absolute;
  z-index: 3;
  background: rgba(255,253,248,.92);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem;
}
.hero-visual .scene-tag strong { font-family: var(--font-head); font-weight: 500; color: var(--ink); display: block; line-height: 1.2; }
.hero-visual .scene-tag small { color: var(--muted); }
.hero-visual .scene-tag .em { font-size: 1.5rem; }
.hero-visual .tag-1 { top: 13%; left: 8%; }
.hero-visual .tag-2 { bottom: 13%; right: 8%; }
.hero-visual .ripple {
  position: absolute;
  border: 1px solid rgba(255,253,248,.35);
  border-radius: 50%;
  width: 340px; height: 340px;
  bottom: -120px;
}
.hero-visual .ripple.r2 { width: 480px; height: 480px; bottom: -190px; }

/* ---------------------------------------------------------------------
   BENEFITS STRIP
   --------------------------------------------------------------------- */
.benefits { padding: 54px 0; border-bottom: 1px solid var(--line); background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit .b-ic {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(124,144,112,.12);
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.benefit b { font-family: var(--font-head); font-weight: 500; color: var(--ink); display: block; font-size: 1.05rem; }
.benefit span { font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.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: 34px 30px;
  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(124,144,112,.4); }

.card .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(124,144,112,.18), rgba(201,138,106,.2));
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

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

/* Class meta chips (level/duration/intensity) */
.class-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.class-meta li {
  font-size: .78rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent-d);
  background: rgba(124,144,112,.1);
  padding: 5px 12px;
  border-radius: 999px;
}

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--font-head);
  box-shadow: 0 6px 14px rgba(124,144,112,.3);
}
.feature h3 { font-size: 1.14rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section (visual block + content) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 26px;
  min-height: 400px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,253,248,.45), transparent 55%),
    linear-gradient(150deg, var(--accent-d), 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(420px 320px at 78% 22%, rgba(255,253,248,.3), transparent 60%);
}

/* ---------------------------------------------------------------------
   PRICING / PASSES
   --------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price--featured { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.price__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent2); color: #fff;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  font-family: var(--font-body);
}
.price__name { font-size: 1.4rem; margin-bottom: 4px; }
.price__desc { color: var(--muted); font-size: .94rem; margin-bottom: 18px; }
.price__tag { display: flex; align-items: flex-end; gap: 3px; margin: 0 0 20px; font-family: var(--font-head); color: var(--ink); }
.price__currency { font-size: 1.4rem; line-height: 2.2; }
.price__amount { font-size: 3rem; font-weight: 500; line-height: 1; }
.price__period { font-size: .95rem; color: var(--muted); margin-bottom: 6px; font-family: var(--font-body); }
.price__list { margin: 0 0 26px; }
.price__list li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; color: var(--ink); }
.price__list li:last-child { border-bottom: none; }
.price__list li.no { color: var(--muted); }
.price .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------
   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: 16px; letter-spacing: 3px; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: 1.14rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
}
.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: 500;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-author b { display: block; font-family: var(--font-head); font-weight: 500; color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(600px 420px at 88% 8%, rgba(201,138,106,.4), transparent 62%),
    linear-gradient(135deg, var(--accent-d), var(--accent));
  color: #fff;
  border-radius: 32px;
  padding: 66px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 86% -24%, rgba(201,138,106,.22), transparent 60%),
    radial-gradient(620px 420px at 0% 120%, rgba(124,144,112,.16), transparent 58%),
    linear-gradient(180deg, #f1eee4, var(--bg));
  padding: 78px 0 66px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 620px; color: var(--muted); margin-bottom: 0; font-size: 1.1rem; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent-d); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* ---------------------------------------------------------------------
   DETAILED CLASS BLOCKS (classes page)
   --------------------------------------------------------------------- */
.class-block {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.class-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.class-block .c-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(124,144,112,.2), rgba(201,138,106,.24));
  display: grid; place-items: center;
  font-size: 2.4rem;
}
.class-block h3 { margin-bottom: 6px; }
.class-block p { color: var(--muted); margin-bottom: 0; }

/* "What to bring" checklist */
.checklist { display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ic {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(201,138,106,.16);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.checklist b { font-family: var(--font-head); font-weight: 500; color: var(--ink); }
.checklist span { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------------
   SCHEDULE TABLE
   --------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.schedule { width: 100%; border-collapse: collapse; min-width: 720px; }
.schedule th, .schedule td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.schedule thead th {
  background: linear-gradient(135deg, var(--accent-d), var(--accent));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
}
.schedule thead th:first-child { border-top-left-radius: var(--radius); }
.schedule thead th:last-child { border-top-right-radius: var(--radius); }
.schedule tbody th {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  background: rgba(124,144,112,.07);
  white-space: nowrap;
}
.schedule td .cls { font-family: var(--font-head); font-weight: 500; color: var(--ink); display: block; font-size: .98rem; }
.schedule td .inst { font-size: .78rem; color: var(--muted); }
.schedule td.empty { color: var(--line); }
.schedule tbody tr:last-child th,
.schedule tbody tr:last-child td { border-bottom: none; }
.schedule td:hover { background: rgba(201,138,106,.08); }

.legend { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; margin-top: 28px; }
.legend span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); }
.legend .dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }

.note-card {
  background: rgba(124,144,112,.08);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 26px 30px;
  margin-top: 36px;
}
.note-card h3 { margin-bottom: 6px; }
.note-card p { color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   ABOUT — values + team
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 118px; height: 118px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-size: 2.6rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.team-card .ta-1 { background: linear-gradient(140deg, #7c9070, #647759); }
.team-card .ta-2 { background: linear-gradient(140deg, #c98a6a, #b5754f); }
.team-card .ta-3 { background: linear-gradient(140deg, #9aa988, #7c9070); }
.team-card .ta-4 { background: linear-gradient(140deg, #d9a487, #c98a6a); }
.team-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-d); font-family: var(--font-body); font-weight: 600; font-size: .88rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  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: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(124,144,112,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #b5503e; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b5503e; }
.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: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(124,144,112,.12);
  border: 1px solid var(--accent);
  color: var(--accent-d);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: rgba(124,144,112,.08);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: var(--surface);
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); font-weight: 500; color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }
.info-row a { color: var(--accent-d); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 250px;
  background:
    linear-gradient(rgba(124,144,112,.05), rgba(124,144,112,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    rgba(124,144,112,.06);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); font-weight: 500; color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #34392e;
  color: rgba(255,255,255,.74);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 38px;
  margin-bottom: 48px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.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-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span.fline { display: block; color: rgba(255,255,255,.66); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.54);
}
.footer-bottom a { color: rgba(255,255,255,.72); }

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

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px; 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: 36px; }
  .split--reverse .split-media { order: 0; }
  .class-block { grid-template-columns: 1fr; text-align: center; }
  .class-block .c-icon { margin: 0 auto; }
  .cta-band { padding: 48px 28px; }
}

@media (max-width: 460px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
}
