/* ================================================================
   ALIGN — Pilates & Reformer Studio Template
   Author: Template Marketplace
   ----------------------------------------------------------------
   REBRAND QUICK-START:
   Change the values in :root below to re-skin the entire template.
   - Swap --sage / --blush / --cream for your brand palette.
   - Update font names in --font-head / --font-body and the
     Google Fonts <link> in each .html to match.
   ================================================================ */

:root {
  /* ---- COLORS ---- */
  --cream: #f7f3ec;         /* page background (warm cream)        */
  --cream-2: #efe8dd;       /* alt section / hover                 */
  --surface: #ffffff;       /* card / panel surface                */
  --sage: #7c9885;          /* primary sage green                  */
  --sage-dark: #5f7d6b;     /* sage hover / pressed                */
  --sage-deep: #41584a;     /* deep sage text accents              */
  --blush: #e7c8bf;         /* soft blush                          */
  --blush-soft: #f3e0da;    /* faint blush wash                    */
  --text: #2f352f;          /* primary text (warm charcoal)        */
  --text-muted: #6f7670;    /* secondary text                      */
  --border: #e3dccf;        /* hairline borders                    */

  /* ---- TYPOGRAPHY ---- */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* ---- LAYOUT ---- */
  --max-width: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 76px;

  /* ---- MOTION ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s;
  --t: 0.4s;
}

/* ================================================================
   RESET / BASE
   ================================================================ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -0.01em; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.accent { color: var(--sage); font-style: italic; }

.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: 26px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--sage);
  color: #fff;
}
.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(95, 125, 107, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage);
}
.btn--ghost:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg { padding: 17px 38px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 243, 236, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(247, 243, 236, 0.94);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; letter-spacing: 0.02em; }
.logo__mark { display: grid; place-items: center; width: 34px; height: 34px; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { color: var(--sage-deep); }

.nav__list { display: flex; gap: 34px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--sage);
  transition: width var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--sage-deep); }
.nav__link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; margin-inline: auto;
  background: var(--sage-deep); border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero { position: relative; padding: clamp(56px, 10vh, 110px) 0 clamp(64px, 10vh, 100px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 55% at 88% 8%, var(--blush-soft), transparent 60%),
    radial-gradient(45% 50% at 0% 95%, rgba(124,152,133,0.14), transparent 60%),
    var(--cream);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 50ch; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-weight: 600; font-size: 2.3rem; color: var(--sage-deep); line-height: 1; }
.hero__stats span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 6px; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px 22px 22px;
  overflow: hidden;
  box-shadow: 0 40px 70px -36px rgba(65, 88, 74, 0.5);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: 26px; left: -22px;
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 24px 48px -24px rgba(65,88,74,0.4);
}
.hero__badge-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blush-soft); font-size: 1.3rem; }
.hero__badge strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--sage-deep); line-height: 1.1; }
.hero__badge small { color: var(--text-muted); font-size: 0.78rem; }
.hero__dot {
  position: absolute; top: -16px; right: 18px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1.5px solid var(--blush);
  z-index: -1;
}

/* ================================================================
   SECTIONS (generic)
   ================================================================ */
.section { padding: clamp(60px, 9vh, 104px) 0; }
.section--alt { background: var(--cream-2); }

.section__head { max-width: 640px; margin: 0 auto 58px; text-align: center; }
.section__title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 500; margin-bottom: 16px; }
.section__lead { color: var(--text-muted); font-size: 1.04rem; }

/* 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); }

/* ================================================================
   CARDS (shared)
   ================================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform var(--t) var(--ease),
              border-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--sage);
  box-shadow: 0 30px 56px -32px rgba(65, 88, 74, 0.4);
}
.card__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.card__link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--sage-deep);
  transition: transform var(--t-fast) var(--ease);
}
.card__link:hover { transform: translateX(4px); }

/* ---- Photo header for class / teaser cards ---- */
.card-photo {
  position: relative;
  height: 220px;
  margin: -30px -30px 22px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t) var(--ease); }
.card:hover .card-photo img { transform: scale(1.05); }
.card-photo__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-body); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.92); color: var(--sage-deep);
  backdrop-filter: blur(4px);
}

/* ---- Features / Benefits ---- */
.feature { text-align: center; padding: 8px; }
.feature__icon {
  display: inline-grid; place-items: center;
  width: 74px; height: 74px; font-size: 1.9rem;
  border-radius: 50%;
  background: var(--blush-soft);
  margin-bottom: 20px;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-6px); background: var(--blush); }
.feature h3 { font-size: 1.4rem; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 0.96rem; }

/* ================================================================
   ABOUT / PHILOSOPHY
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover;
  border-radius: 22px 220px 22px 22px;
  box-shadow: 0 36px 64px -34px rgba(65,88,74,0.45);
}
.about__media-frame {
  position: absolute; inset: 16px -16px -16px 16px;
  border: 1.5px solid var(--blush);
  border-radius: 22px 220px 22px 22px;
  z-index: -1;
}
.about__text h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 500; margin-bottom: 18px; }
.about__text > p { color: var(--text-muted); margin-bottom: 18px; }
.about__sign { margin-top: 26px; }
.about__sign-name { font-family: var(--font-head); font-size: 1.7rem; color: var(--sage-deep); }
.about__sign-role { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.about__list { display: flex; flex-direction: column; gap: 14px; margin: 6px 0 4px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 0.98rem; }
.about__list li::before { content: "✦"; color: var(--sage); flex-shrink: 0; }

/* ================================================================
   TEASER CARDS (class styles, instructors on home)
   ================================================================ */
.teaser p { color: var(--text-muted); font-size: 0.96rem; }
.teaser__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ---- Instructor teaser (round photo) ---- */
.person { text-align: center; }
.person__photo {
  width: 130px; height: 130px; margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: 0 14px 34px -16px rgba(65,88,74,0.45);
}
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__role { color: var(--sage); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 12px; }
.person p { color: var(--text-muted); font-size: 0.94rem; }

/* ================================================================
   TAGS / META
   ================================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
  background: var(--cream-2); border: 1px solid var(--border);
  color: var(--text-muted);
}
.tag--sage { color: var(--sage-deep); border-color: var(--sage); background: rgba(124,152,133,0.1); }
.tag--blush { color: #b07b6c; border-color: var(--blush); background: var(--blush-soft); }

/* ================================================================
   CLASSES PAGE — detailed class rows
   ================================================================ */
.class-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.class-card .card-photo { margin: 0; height: 230px; border-radius: 0; }
.class-card__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.class-card h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.class-card p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 18px; flex: 1; }
.class-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }

/* ================================================================
   SCHEDULE TABLE
   ================================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); -webkit-overflow-scrolling: touch; background: var(--surface); }
.schedule { width: 100%; min-width: 680px; border-collapse: collapse; }
.schedule th, .schedule td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--border); }
.schedule thead th {
  background: var(--cream-2);
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sage-deep);
}
.schedule tbody th {
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--sage-deep);
  background: var(--surface);
}
.schedule tbody td { color: var(--text-muted); font-size: 0.92rem; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.schedule tbody tr:hover td { background: rgba(124,152,133,0.08); color: var(--text); }
.schedule tbody tr:last-child th,
.schedule tbody tr:last-child td { border-bottom: 0; }
.schedule .is-rest { color: #b8b1a4; }

/* ================================================================
   INSTRUCTORS PAGE — profile cards
   ================================================================ */
.instructor { text-align: center; display: flex; flex-direction: column; }
.instructor__photo {
  width: 100%; aspect-ratio: 1; max-width: 200px; margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--surface);
  box-shadow: 0 18px 40px -18px rgba(65,88,74,0.45);
}
.instructor__photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor h3 { font-size: 1.55rem; font-weight: 600; }
.instructor__role { color: var(--sage); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 14px; }
.instructor p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; }
.instructor__specialties { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: auto; }

/* ================================================================
   PRICING — tiers
   ================================================================ */
.pricing { align-items: stretch; }
.price { display: flex; flex-direction: column; position: relative; }
.price__name { font-size: 1.7rem; font-weight: 600; margin-bottom: 4px; }
.price__tag { display: flex; align-items: baseline; gap: 3px; margin-bottom: 8px; }
.price__currency { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--sage); }
.price__amount { font-family: var(--font-head); font-weight: 600; font-size: 3.6rem; line-height: 1; color: var(--text); }
.price__period { color: var(--text-muted); font-size: 0.92rem; }
.price__desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }
.price__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price__list li { font-size: 0.95rem; display: flex; gap: 10px; align-items: flex-start; }
.price__list li::before { content: "✓"; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.price__list .muted { color: #b0a99c; }
.price__list .muted::before { content: "—"; color: #c9c2b4; }

.price--featured {
  background: linear-gradient(180deg, #fbf7f1, var(--surface));
  border-color: var(--sage);
  box-shadow: 0 36px 64px -32px rgba(124,152,133,0.5);
  transform: translateY(-10px);
}
.price--featured:hover { transform: translateY(-16px); }
.price__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
  white-space: nowrap;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial { display: flex; flex-direction: column; gap: 18px; }
.testimonial blockquote { color: var(--text); font-size: 1.05rem; font-family: var(--font-head); font-style: italic; line-height: 1.5; }
.testimonial__top { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial__avatar {
  width: 54px; height: 54px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--blush-soft); flex-shrink: 0;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__top strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--sage-deep); }
.testimonial__meta { font-size: 0.82rem; color: var(--text-muted); }
.stars { color: var(--sage); letter-spacing: 3px; font-size: 0.9rem; }

/* ================================================================
   FAQ (CSS-only details)
   ================================================================ */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 4px 24px;
  transition: border-color var(--t-fast) var(--ease);
}
.faq__item[open] { border-color: var(--sage); }
.faq__item summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 1.25rem;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--sage); font-size: 1.6rem; font-weight: 400; transition: transform var(--t-fast) var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--text-muted); font-size: 0.96rem; padding-bottom: 22px; }

/* ================================================================
   CTA BAND + FORM
   ================================================================ */
.cta-band {
  position: relative;
  padding: clamp(56px, 9vh, 96px) 0;
  background:
    radial-gradient(55% 120% at 82% 0%, var(--blush-soft), transparent 60%),
    var(--cream-2);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.cta-band__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.cta-band__title { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 500; margin-bottom: 16px; }
.cta-band__text p { color: var(--text-muted); font-size: 1.05rem; }
.cta-band--center .cta-band__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.cta-band--center .cta-band__text p { margin-inline: auto; max-width: 48ch; }
.cta-band--center .cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

.cta-form { display: grid; gap: 14px; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: #a8a296; }
.cta-form textarea { resize: vertical; min-height: 130px; }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124,152,133,0.18);
}
.cta-form input.is-invalid, .cta-form select.is-invalid, .cta-form textarea.is-invalid {
  border-color: #d98b7e; box-shadow: 0 0 0 3px rgba(217,139,126,0.18);
}
.cta-form__msg { min-height: 1.2em; font-size: 0.92rem; font-weight: 600; }
.cta-form__msg.is-ok { color: var(--sage-dark); }
.cta-form__msg.is-error { color: #c2685a; }

/* ================================================================
   CONTACT PAGE — info cards + form panel + map
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-card .feature__icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 0; flex-shrink: 0; }
.info-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--text-muted); font-size: 0.93rem; }
.info-card a:hover { color: var(--sage); }

.form-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.form-panel h3 { font-size: 1.8rem; margin-bottom: 8px; }
.form-panel > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.cta-form label.field-label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 7px;
}

.map-embed {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; min-height: 300px;
  background:
    radial-gradient(60% 80% at 70% 20%, rgba(124,152,133,0.16), transparent 60%),
    var(--cream-2);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.map-embed::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(65,88,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65,88,74,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-embed__pin { position: relative; font-size: 2.8rem; }
.map-embed__label { position: relative; margin-top: 8px; font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--sage-deep); }
.map-embed__sub { position: relative; color: var(--text-muted); font-size: 0.9rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--sage-deep); font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
.hours-table tr:last-child td { border-bottom: 0; }

/* ================================================================
   PAGE BANNER + BREADCRUMB
   ================================================================ */
.page-banner {
  position: relative;
  padding: clamp(54px, 10vh, 100px) 0 clamp(46px, 7vh, 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-banner__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 70% at 86% 0%, var(--blush-soft), transparent 60%),
    radial-gradient(45% 60% at 0% 100%, rgba(124,152,133,0.14), transparent 60%),
    var(--cream);
}
.page-banner__inner { text-align: center; max-width: 760px; margin-inline: auto; }
.page-banner__title { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 500; margin-bottom: 16px; }
.page-banner__lead { color: var(--text-muted); font-size: 1.05rem; max-width: 58ch; margin: 0 auto 22px; }

.breadcrumb {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 9px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb a { transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb__sep { color: var(--sage); opacity: 0.7; }
.breadcrumb [aria-current="page"] { color: var(--sage-deep); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #2f3a33; color: #d7ddd6; border-top: 1px solid var(--border); padding-top: 66px; }
.footer .logo__text { color: #fff; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer__brand p { color: #aab4ac; font-size: 0.95rem; margin: 18px 0 22px; max-width: 38ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 1.05rem;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.footer__social a:hover { transform: translateY(-3px); background: var(--sage); }

.footer__col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li { color: #aab4ac; font-size: 0.92rem; transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-block: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  color: #8f9a91; font-size: 0.85rem;
}
.footer__legal a { transition: color var(--t-fast) var(--ease); }
.footer__legal a:hover { color: #fff; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

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

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(247,243,236,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-115%);
    transition: transform var(--t) var(--ease);
    padding: 16px 0 28px;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 4px; padding-inline: 26px; }
  .nav__link { display: block; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .nav__link.active { color: var(--sage); }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__badge { left: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media-frame { inset: 12px -12px -12px 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band__text p { margin-inline: auto; max-width: 42ch; }
}

@media (max-width: 680px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-6px); }
  .form-row--2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .form-panel { padding: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Active nav link state (desktop) */
.nav__link.active { color: var(--sage-deep); }
.nav__link.active::after { width: 100%; }
