/* ============================================================
   Align Pilates — Boutique Reformer Studio Design System
   Sage green · warm cream · refined serif + airy sans
   ============================================================ */

:root {
  /* Palette — sage / eucalyptus + warm cream + clay accents */
  --sage-900: #2d3a2e;
  --sage-800: #3a4b3b;
  --sage-700: #4e6450;
  --sage-600: #647d66;
  --sage-500: #82997f;
  --sage-400: #a3b39c;
  --sage-300: #c4cfbd;
  --sage-100: #e6ebe0;
  --clay-600: #b07a5a;
  --clay-500: #c89878;
  --clay-300: #e3c8b3;
  --clay-100: #f4e7da;
  --cream: #f7f3ea;
  --cream-deep: #efe8d9;
  --shell: #fbf9f3;
  --white: #ffffff;
  --ink: #2a3129;
  --ink-soft: #515b4f;
  --muted: #7c857a;
  --line: rgba(45, 58, 46, 0.10);
  --line-soft: rgba(45, 58, 46, 0.06);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 18px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shadow-sm: 0 4px 20px rgba(45, 58, 46, 0.07);
  --shadow: 0 20px 50px rgba(45, 58, 46, 0.12);
  --shadow-lg: 0 40px 90px rgba(45, 58, 46, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1220px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--shell);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 6.4vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4.3vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
em { font-style: italic; color: var(--sage-600); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.cream-bg { background: var(--cream); }
.deep-bg { background: var(--sage-900); color: var(--cream); }
.tint-bg { background: linear-gradient(180deg, var(--cream), var(--shell)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.35s, color 0.35s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: var(--sage-700); color: var(--cream);
  box-shadow: 0 14px 34px rgba(78, 100, 80, 0.32);
}
.btn-solid:hover { transform: translateY(-3px); background: var(--sage-800); box-shadow: 0 22px 48px rgba(78, 100, 80, 0.42); }
.btn-clay {
  background: var(--clay-500); color: #4a2f1d;
  box-shadow: 0 14px 34px rgba(200, 152, 120, 0.34);
}
.btn-clay:hover { transform: translateY(-3px); background: var(--clay-600); color: var(--cream); box-shadow: 0 22px 48px rgba(176, 122, 90, 0.4); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--sage-500); color: var(--sage-700); transform: translateY(-2px); }
.btn-light { background: rgba(247, 243, 234, 0.12); color: var(--cream); border-color: rgba(247, 243, 234, 0.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: var(--cream); color: var(--sage-800); transform: translateY(-3px); }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 500; font-size: 0.74rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--sage-600);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--clay-500); }
.eyebrow.center { justify-content: center; }
.sec-head { max-width: 760px; margin-bottom: 3.4rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.08rem; }
.split-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: end; max-width: none; }
.split-head p { color: var(--ink-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.site-header.shrink { box-shadow: var(--shadow-sm); background: rgba(251, 249, 243, 0.95); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; transition: padding 0.4s var(--ease); }
.site-header.shrink .nav { padding: 0.85rem 0; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--serif); font-size: 1.85rem; font-weight: 600;
  letter-spacing: 0.01em; color: var(--sage-800);
}
.brand-mark .dot { color: var(--clay-500); }
.brand-sub {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem;
}
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 0.3rem 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--sage-600); transition: width 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-800); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.84rem; letter-spacing: 0.04em; color: var(--ink-soft); font-weight: 400;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--sage-600); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px;
  background: none; border: none; cursor: pointer; justify-content: center;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--sage-800); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem); overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: 0; }
.hero-blob.a { width: 440px; height: 440px; background: var(--sage-300); top: -120px; right: -80px; }
.hero-blob.b { width: 360px; height: 360px; background: var(--clay-100); bottom: -100px; left: -60px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy h1 { margin: 0.4rem 0 1.5rem; }
.hero-tag { font-size: 1.12rem; color: var(--ink-soft); max-width: 30rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.2rem 0; }
.hero-trust { display: flex; align-items: center; gap: 0.9rem; font-size: 0.92rem; color: var(--ink-soft); }
.hero-trust .stars { color: var(--clay-500); letter-spacing: 0.1em; font-size: 1.05rem; }
.hero-trust b { color: var(--sage-800); font-weight: 500; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-xl) var(--radius-xl) 140px var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.hero-frame:hover img { transform: scale(1.05); }
.hero-badge {
  position: absolute; bottom: 1.6rem; left: -1.4rem; background: var(--white);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; box-shadow: var(--shadow);
  text-align: center; z-index: 3;
}
.hero-badge .n { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--sage-700); line-height: 1; }
.hero-badge .l { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.hero-float {
  position: absolute; top: 1.8rem; right: -1.2rem; background: var(--sage-800); color: var(--cream);
  border-radius: 100px; padding: 0.7rem 1.2rem 0.7rem 0.7rem; display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow); z-index: 3;
}
.hero-float .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--clay-500); display: grid; place-items: center; }
.hero-float .dot svg { width: 18px; height: 18px; color: #4a2f1d; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.15; }
.hero-float .t b { font-size: 0.95rem; font-weight: 500; }
.hero-float .t span { font-size: 0.66rem; letter-spacing: 0.08em; opacity: 0.8; }

/* ---------- Marquee strip ---------- */
.strip { background: var(--sage-900); color: var(--sage-300); padding: 1.1rem 0; overflow: hidden; }
.strip-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span { font-family: var(--serif); font-style: italic; font-size: 1.3rem; display: inline-flex; align-items: center; gap: 3rem; }
.strip-track span::after { content: "✦"; color: var(--clay-500); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: var(--cream); padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1rem; }
.stat .n { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 600; color: var(--sage-700); line-height: 1; display: flex; justify-content: center; align-items: baseline; }
.stat .n .suf { font-size: 0.5em; margin-left: 0.1em; color: var(--clay-500); }
.stat .l { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; }
.stat + .stat { border-left: 1px solid var(--line); }

/* ---------- Intro / About split ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media .frame-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-media .frame-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.about-media:hover .frame-main img { transform: scale(1.05); }
.about-media .frame-sub {
  position: absolute; bottom: -1.6rem; right: -1.4rem; width: 46%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--shell); aspect-ratio: 1/1;
}
.about-media .frame-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-quote { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 1.95rem); font-style: italic; color: var(--sage-700); line-height: 1.35; margin: 1.5rem 0; }
.about-sig { display: flex; align-items: center; gap: 0.9rem; margin-top: 2rem; }
.about-sig .name { font-family: var(--serif); font-size: 1.25rem; color: var(--sage-800); }
.about-sig .role { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.feat-list { display: grid; gap: 1.1rem; margin: 1.8rem 0; }
.feat-list li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--ink-soft); }
.feat-list .ico { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--sage-100); display: grid; place-items: center; }
.feat-list .ico svg { width: 17px; height: 17px; color: var(--sage-700); }
.feat-list b { color: var(--ink); font-weight: 500; }

/* ---------- Class / service cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.pill {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(247, 243, 234, 0.92); backdrop-filter: blur(4px);
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--sage-800); padding: 0.45rem 0.9rem; border-radius: 100px;
}
.pill.clay { background: var(--clay-500); color: #4a2f1d; }
.card-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-level { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-600); margin-bottom: 0.55rem; }
.card-body h3 { margin-bottom: 0.6rem; }
.card-body p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.card-meta { display: flex; gap: 1.3rem; margin: 1.2rem 0; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
.card-meta span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--muted); }
.card-meta svg { width: 15px; height: 15px; color: var(--sage-500); }
.card-link { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-700); font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }
.card-link .arr { transition: transform 0.4s var(--ease); }
.card:hover .card-link .arr { transform: translateX(5px); }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.6rem; }
.filter-btn {
  font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; padding: 0.7rem 1.4rem; border-radius: 100px; cursor: pointer;
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--sage-400); color: var(--sage-700); }
.filter-btn.active { background: var(--sage-700); color: var(--cream); border-color: var(--sage-700); }
.is-hidden { display: none !important; }

/* ---------- Steps / process ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step { position: relative; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--sage-300); line-height: 1; }
.step h3 { font-size: 1.3rem; margin: 0.7rem 0 0.5rem; }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.3rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--sage-900); color: var(--cream); border-color: var(--sage-900); transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.price-tag-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.price-name { font-family: var(--serif); font-size: 1.7rem; }
.price-badge { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; background: var(--clay-500); color: #4a2f1d; padding: 0.35rem 0.75rem; border-radius: 100px; font-weight: 500; }
.price-amt { font-family: var(--serif); font-size: 3.2rem; font-weight: 600; line-height: 1; color: var(--sage-700); }
.price-card.featured .price-amt { color: var(--clay-300); }
.price-amt .per { font-family: var(--sans); font-size: 0.9rem; font-weight: 300; letter-spacing: 0.04em; color: var(--muted); }
.price-card.featured .price-amt .per { color: var(--sage-300); }
.price-desc { font-size: 0.94rem; color: var(--ink-soft); margin: 0.9rem 0 1.4rem; }
.price-card.featured .price-desc { color: var(--sage-300); }
.price-feats { display: grid; gap: 0.85rem; margin-bottom: 1.8rem; flex: 1; }
.price-feats li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.price-card.featured .price-feats li { color: var(--sage-300); }
.price-feats svg { flex: none; width: 18px; height: 18px; color: var(--sage-600); margin-top: 0.2rem; }
.price-card.featured .price-feats svg { color: var(--clay-300); }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- Timetable ---------- */
.timetable { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.tt-row { display: grid; grid-template-columns: 110px 1fr 1fr 1fr 130px; gap: 1rem; padding: 1.2rem 1.6rem; align-items: center; border-bottom: 1px solid var(--line-soft); }
.tt-row:last-child { border-bottom: none; }
.tt-row.head { background: var(--cream); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.tt-time { font-family: var(--serif); font-size: 1.15rem; color: var(--sage-800); }
.tt-class { font-weight: 400; }
.tt-class small { display: block; font-size: 0.78rem; color: var(--muted); }
.tt-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-600); }
.tt-spots { text-align: right; }
.tt-spots .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sage-500); margin-right: 0.4rem; }
.tt-spots .dot.low { background: var(--clay-500); }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.1rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.quote-card .stars { color: var(--clay-500); letter-spacing: 0.12em; margin-bottom: 1rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--sage-800); line-height: 1.4; margin-bottom: 1.4rem; }
.quote-who { display: flex; align-items: center; gap: 0.8rem; }
.quote-who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-100); color: var(--sage-700); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; }
.quote-who .name { font-weight: 400; color: var(--ink); }
.quote-who .meta { font-size: 0.78rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-inner h2 { color: var(--cream); }
.cta-inner p { color: var(--sage-300); margin: 1.1rem auto 2rem; max-width: 30rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.cta-blob.a { width: 380px; height: 380px; background: var(--sage-600); top: -120px; left: -60px; }
.cta-blob.b { width: 320px; height: 320px; background: var(--clay-600); bottom: -120px; right: -40px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.8rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  padding: 0.9rem 1.1rem; border: 1.5px solid var(--line); border-radius: 14px; background: var(--shell);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-500); box-shadow: 0 0 0 4px rgba(130, 153, 127, 0.14); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
[data-form-note] { margin-top: 1rem; font-size: 0.92rem; color: var(--sage-700); min-height: 1.2rem; font-weight: 400; }
[data-form-note].show { animation: fadeUp 0.5s var(--ease); }

.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 1.4rem; margin-bottom: 0.9rem; }
.info-line { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 0.9rem; color: var(--ink-soft); }
.info-line .ico { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--sage-100); display: grid; place-items: center; }
.info-line .ico svg { width: 18px; height: 18px; color: var(--sage-700); }
.info-line b { display: block; color: var(--ink); font-weight: 500; }
.hours-list { display: grid; gap: 0.6rem; }
.hours-list li { display: flex; justify-content: space-between; padding-bottom: 0.6rem; border-bottom: 1px dashed var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.hours-list b { color: var(--ink); font-weight: 500; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); margin-top: 1.5rem; background: var(--sage-100); }
.map-frame svg { width: 100%; height: auto; display: block; }

/* ---------- Blog ---------- */
.featured-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); margin-bottom: 3.5rem; }
.featured-post .fp-media { aspect-ratio: 4/3; overflow: hidden; height: 100%; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: clamp(1.8rem, 3vw, 3rem) clamp(1.8rem, 3vw, 3rem) clamp(1.8rem, 3vw, 3rem) 0; }
.post-meta { display: flex; gap: 0.8rem; align-items: center; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.post-meta .cat { color: var(--clay-600); }
.fp-body h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.fp-body p { color: var(--ink-soft); margin-bottom: 1.5rem; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.post-card .pc-media { aspect-ratio: 3/2; overflow: hidden; }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .pc-media img { transform: scale(1.08); }
.post-card .pc-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.post-card p { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }
.post-card .pc-link { margin-top: 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-700); font-weight: 500; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); text-align: center; overflow: hidden; }
.page-hero .hero-blob.a { top: -160px; right: 10%; }
.page-hero .hero-blob.b { bottom: -140px; left: 5%; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.page-hero h1 { margin: 0.5rem 0 1rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 32rem; margin-inline: auto; }
.crumbs { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.crumbs a { color: var(--sage-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-900); color: var(--sage-300); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247, 243, 234, 0.12); }
.footer-brand .brand-mark { color: var(--cream); font-size: 1.7rem; }
.footer-brand p { margin: 1.2rem 0 1.5rem; font-size: 0.95rem; color: var(--sage-300); max-width: 22rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,243,234,0.2); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--clay-500); border-color: var(--clay-500); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: var(--cream); }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: var(--sage-300); transition: color 0.3s; }
.footer-col a:hover { color: var(--cream); }
.footer-news input { width: 100%; padding: 0.85rem 1rem; border-radius: 12px 12px 0 0; border: 1px solid rgba(247,243,234,0.2); background: rgba(247,243,234,0.06); color: var(--cream); font-family: var(--sans); font-weight: 300; }
.footer-news input::placeholder { color: var(--sage-400); }
.footer-news input:focus { outline: none; border-color: var(--clay-500); }
.footer-news button { width: 100%; margin-top: -1px; border-radius: 0 0 12px 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: 0.82rem; color: var(--sage-400); }
.footer-disclaimer { background: var(--sage-800); }
.footer-disclaimer .wrap { padding: 1.2rem 0; }
.footer-disclaimer p { font-size: 0.78rem; color: var(--sage-400); text-align: center; max-width: 60rem; margin-inline: auto; line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal[data-d="1"] { transition-delay: 0.12s; }
.reveal[data-d="2"] { transition-delay: 0.24s; }
.reveal[data-d="3"] { transition-delay: 0.36s; }
.reveal[data-d="4"] { transition-delay: 0.48s; }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .featured-post { grid-template-columns: 1fr; }
  .split-head { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .about-media { max-width: 460px; margin-inline: auto; margin-bottom: 2.5rem; }
  .cards-grid, .quotes-grid, .posts-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .featured-post .fp-body { padding: 0 2rem 2rem; }
}
@media (max-width: 820px) {
  .nav { position: relative; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  /* both panels drop into one flowing column anchored under the nav bar */
  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex; flex-direction: column; left: 0; right: 0;
    background: var(--shell); padding-inline: 1.4rem; z-index: 99;
  }
  /* links sit in normal flow as a full-width block under the bar */
  .nav.open .nav-links {
    flex-basis: 100%; gap: 0; margin-top: 1rem; padding-top: 0.4rem; order: 3;
  }
  .nav.open .nav-links a { padding: 0.95rem 0; border-bottom: 1px solid var(--line-soft); }
  /* cta follows the links in the same flowing column */
  .nav.open .nav-cta {
    flex-basis: 100%; gap: 1rem; align-items: stretch; order: 4;
    padding-bottom: 1.4rem; padding-top: 1.2rem;
  }
  .nav.open { flex-wrap: wrap; box-shadow: var(--shadow); border-radius: 0 0 20px 20px; }
  .nav.open .nav-phone { justify-content: center; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat:nth-child(2) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .stat { padding: 1.6rem 0.5rem; }
  .cards-grid, .quotes-grid, .posts-grid, .price-grid, .steps-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .tt-row { grid-template-columns: 1fr; gap: 0.4rem; text-align: left; }
  .tt-row.head { display: none; }
  .tt-spots { text-align: left; }
  .hero-float, .hero-badge { transform: scale(0.9); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float { right: 0; }
  .about-media .frame-sub { right: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .strip-track { animation: none; }
}
