/* ============================================================
   HOLALARA — stylesheet
   Fonts loaded via Google Fonts CDN in <head>.
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Core locked palette */
  --teal-deep:   #0A7B7B;
  --teal:        #04ABAE;
  --teal-bright: #47C5C3;
  --teal-pale:   #A6DDD9;
  --gold:        #FACC14;
  --coral:       #F96364;
  --ink:         #16161A;
  --bg:          #F7FAFA;
  --white:       #FFFFFF;

  /* Extended teal scale */
  --teal-900: #053f3f;
  --teal-800: #075a5a;
  --teal-700: #0A7B7B;
  --teal-600: #068b8c;
  --teal-500: #04ABAE;
  --teal-400: #47C5C3;
  --teal-300: #74d2cf;
  --teal-200: #A6DDD9;
  --teal-100: #ccecea;
  --teal-50:  #eaf6f5;

  /* Gold / coral tints */
  --gold-600: #d9a800;
  --gold-300: #ffe066;
  --gold-100: #fff2bf;
  --coral-600: #e23e3f;
  --coral-300: #ff9a9a;
  --coral-100: #ffe1e1;

  /* Neutrals */
  --ink-700: #2c3636;
  --ink-500: #51625f;
  --ink-400: #6f807d;
  --ink-300: #9aabaa;
  --hairline: #dcebe9;
  --hairline-strong: #c2ddd9;
  --cream: #fbf7ec;

  /* Typography */
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  /* Layout */
  --maxw: 1180px;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(11,48,47,.06);
  --shadow-sm:   0 2px 8px rgba(11,48,47,.07);
  --shadow-md:   0 10px 28px rgba(11,48,47,.10);
  --shadow-lg:   0 22px 50px rgba(11,48,47,.14);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:      220ms;
  --dur-slow: 420ms;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout helpers */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wm { display: block; height: 80px; width: auto; }
.wm.white { filter: brightness(0) invert(1); }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Wave dividers */
.wave { display: block; width: 100%; height: 120px; line-height: 0; position: relative; overflow: hidden; }
.wave canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; }

/* Sections */
section { position: relative; }
.pad { padding: 96px 0; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head .eyebrow { color: var(--teal); margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(30px,4.4vw,52px); letter-spacing: -0.035em; line-height: 1.04; }

/* Buttons */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform .18s var(--ease-out), box-shadow .18s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(249,99,100,.34); }
.btn-teal  { background: var(--teal-deep); color: #fff; box-shadow: 0 10px 24px rgba(10,123,123,.3); }
.btn-ghost-d { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-md  { padding: 14px 28px; font-size: 16px; }
.btn-lg  { padding: 18px 36px; font-size: 18px; }

/* ---- HEADER ---- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .3s, box-shadow .3s;
}
.hdr.is-scrolled {
  background: rgba(247,250,250,0.92);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--hairline);
}
.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.nav-desktop a:hover { color: var(--teal-deep); }
.nav-desktop .nav-test {
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-weight: 700;
  transition: background .18s, transform .18s;
}
.nav-desktop .nav-test:hover { background: var(--gold-600); transform: translateY(-1px); }
.hdr-right { display: flex; align-items: center; gap: 10px; }
.lang {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  background: none;
  border: 1.5px solid var(--ink-300);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.lang:hover { opacity: 1; }
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; display: block; }

/* Mobile nav overlay */
[data-nav-menu] { display: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--teal-deep);
  color: #fff;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
/* Full-height photo fills right 62% of the section */
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--teal-deep) 0%, rgba(10,123,123,0) 54%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-photo img.active { opacity: 1; }
.hero-in {
  position: relative;
  z-index: 4;
  max-width: 580px;
  padding: 120px 0 100px;
}
.hero .eyebrow { color: var(--gold); margin-bottom: 22px; }
.hero h1 { font-size: clamp(44px,7vw,86px); letter-spacing: -0.045em; color: #fff; }
.hero h1 .hl-a { color: var(--gold); }
.hero p.sub { font-size: clamp(18px,2.2vw,23px); line-height: 1.55; color: #d9f2f0; margin: 26px 0 36px; max-width: 600px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.reviews-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  padding: 9px 18px 9px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.reviews-chip .stars { color: var(--gold); letter-spacing: 2px; }
.test-nudge {
  display: inline-block;
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.3);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}
.test-nudge:hover { color: #fff; text-decoration-color: rgba(255,255,255,.75); }

.reviews-chip .g {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

/* ---- PILLARS (cream) ---- */
.s-pillars { background: var(--cream); }
.pillars-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  max-width: none;
}
.pillars-sign {
  width: 180px;
  flex-shrink: 0;
}
.pillars { display: grid; gap: 0; }
.pillar {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-top: 2px solid var(--ink);
}
.pillar:last-child { border-bottom: 2px solid var(--ink); }
.pillar .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 84px;
  line-height: .8;
  letter-spacing: -0.04em;
}
.pillar:nth-child(1) .n { color: var(--gold); -webkit-text-stroke: 2px var(--gold-600); }
.pillar:nth-child(2) .n { color: var(--teal); }
.pillar:nth-child(3) .n { color: var(--coral); }
.pillar h3 { font-size: clamp(24px,3vw,34px); margin-bottom: 6px; letter-spacing: -0.02em; }
.pillar p { margin: 0; color: var(--ink-500); font-size: 17px; max-width: 520px; }
.pillar .ic {
  width: 66px; height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pillar:nth-child(1) .ic { background: var(--gold-100); }
.pillar:nth-child(2) .ic { background: var(--teal-50); }
.pillar:nth-child(3) .ic { background: var(--coral-100); }
.ic svg { width: 30px; height: 30px; }

/* ---- ABOUT (deep teal) ---- */
.s-about { background: var(--teal-900); color: #fff; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-600), var(--teal-deep));
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  display: grid;
  place-items: center;
}
.about-photo img.real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-photo .ph-mark { width: 78%; opacity: .9; }
.about-photo .ph-note {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.about-copy .eyebrow { color: var(--gold); margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(34px,4.6vw,56px); letter-spacing: -0.035em; margin-bottom: 22px; color: #fff; }
.about-copy p { color: #cfeae8; font-size: 18px; margin: 0 0 18px; }
.about-quote {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--gold);
  margin: 26px 0 28px;
  line-height: 1.2;
}
.creds { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.creds .lbl {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 4px;
}
.cred {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  color: #fff;
}

/* ---- CLASSES ---- */
.s-classes { background: var(--bg); }
.classes { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 1fr; gap: 18px; }
.cl {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.cl.feat {
  grid-row: span 2;
  background: var(--teal-deep);
  color: #fff;
  border: none;
  box-shadow: 0 24px 50px rgba(10,123,123,.28);
  position: relative;
  overflow: hidden;
}
.cl.feat .em {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  opacity: .18;
  pointer-events: none;
}
.feat-photo-top {
  margin: -30px -30px 22px;
  height: 190px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  flex-shrink: 0;
  position: relative;
}
.feat-photo-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, var(--teal-deep), transparent);
}
.feat-photo-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.cl .tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.cl h3 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 10px; }
.cl.feat h3 { font-size: 34px; color: #fff; }
.cl p.d { color: var(--ink-500); margin: 0 0 20px; font-size: 15.5px; }
.cl.feat p.d { color: #cdeceb; font-size: 17px; }
.cl .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.cl.feat .price { font-size: 46px; }
.cl .price .u { font-size: 16px; font-weight: 600; color: var(--ink-400); }
.cl.feat .price .u { color: #bfe4e2; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 22px; }
.pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.pill.l { background: rgba(255,255,255,.16); color: #fff; }
.pill.c { background: var(--gold); color: var(--ink); }
.pill.m { background: var(--coral); color: #fff; }
.classes-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.note { font-size: 14px; color: var(--ink-400); font-style: italic; }

/* ---- FAQ ---- */
.s-faq { background: var(--cream); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(10,123,123,.15); }
.faq-item:first-child { border-top: 1px solid rgba(10,123,123,.15); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.4;
}
.faq-q:hover { color: var(--teal-600); }
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-chevron::before { left: 2px; transform: translateY(-50%) rotate(45deg); }
.faq-chevron::after  { right: 2px; transform: translateY(-50%) rotate(-45deg); }
.faq-q[aria-expanded="true"] .faq-chevron::before { transform: translateY(-50%) rotate(-45deg); }
.faq-q[aria-expanded="true"] .faq-chevron::after  { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease;
}
.faq-a p { min-height: 0; overflow: hidden; padding: 0 0 22px; color: var(--ink-500); line-height: 1.75; font-size: 17px; }
.faq-q[aria-expanded="true"] + .faq-a { grid-template-rows: 1fr; }

/* ---- REVIEWS (teal-pale) ---- */
.s-reviews { background: var(--teal-pale); }
.reviews-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 46px;
}
.google-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px 30px;
  box-shadow: 0 16px 40px rgba(11,48,47,.12);
  display: flex;
  align-items: center;
  gap: 22px;
}
.google-card .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal-deep);
}
.google-card .g-stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
.google-card .cnt { font-size: 14px; color: var(--ink-500); margin-top: 4px; }
.google-card a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.google-card a:hover { color: var(--teal-600); }
.inst-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  opacity: .7;
  margin-bottom: 16px;
}

/* ---- PHOTO STRIP ---- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 44px;
}
.photo-strip-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.photo-strip-item img:hover { transform: scale(1.06); }

/* ---- CONTACT ---- */
.s-contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.contact-copy .eyebrow { color: var(--teal); margin-bottom: 16px; }
.contact-copy h2 { font-size: clamp(34px,4.6vw,56px); letter-spacing: -0.035em; margin-bottom: 14px; }
.contact-copy .sub { font-size: 19px; color: var(--ink-500); margin: 0 0 30px; max-width: 460px; }
.info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.info a, .info div { display: flex; align-items: flex-start; gap: 14px; }
.info a:hover .val { color: var(--teal-deep); }
.info .k {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info .k svg { width: 20px; height: 20px; }
.info .lab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.info .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: color .2s;
}
.map {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,48,47,.16);
  min-height: 460px;
  border: 6px solid #fff;
}
.map iframe { width: 100%; height: 100%; min-height: 448px; border: 0; display: block; }

/* ---- FOOTER ---- */
footer { background: var(--teal-900); color: #fff; padding: 64px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
footer .wm { height: 38px; margin-bottom: 14px; }
footer .tag { color: #bfe4e2; font-size: 15px; max-width: 260px; }
footer .imm { font-family: var(--font-script); font-size: 26px; color: var(--gold); margin-top: 8px; }
.foot-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.foot-col a, .foot-col p { display: block; color: #bfe4e2; font-size: 15px; margin: 0 0 10px; }
.foot-col a:hover { color: #fff; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9cc6c4;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- RESPONSIVE ---- */

/* Large tablet — slight classes grid adjustment */
@media (max-width: 1060px) {
  .classes { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .cl.feat { grid-column: span 2; grid-row: auto; }
}

/* Tablet / large mobile */
@media (max-width: 900px) {
  /* Navigation */
  .nav-desktop { display: none; }
  .burger { display: flex; }
  [data-nav-menu] {
    position: fixed;
    inset: 0;
    background: var(--teal-deep);
    color: #fff;
    z-index: 70;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    display: none;
  }
  [data-nav-menu].is-open { display: flex; }
  [data-nav-menu] a { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: #fff; }
  [data-nav-menu] .btn-coral { font-size: 18px; }
  [data-nav-menu] .lang { color: #fff; border-color: rgba(255,255,255,.5); opacity: .8; }
  .m-close { position: absolute; top: 24px; right: 24px; font-size: 34px; background: none; border: none; color: #fff; cursor: pointer; line-height: 1; }

  /* Sections */
  .pad { padding: 72px 0; }
  .sec-head { margin-bottom: 40px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-photo { width: 100%; }
  .hero-photo::before { background: linear-gradient(to right, var(--teal-deep) 0%, rgba(10,50,50,0.45) 65%, rgba(10,50,50,0.45) 100%); }
  .hero-in { max-width: none; padding: 96px 0 72px; }

  /* Layouts → single column */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { aspect-ratio: 3/2; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .classes { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .cl.feat { grid-column: auto; grid-row: auto; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .feat-photo-top { height: 150px; }
  .pillar { grid-template-columns: 1fr; gap: 14px; }
  .pillar .ic { display: none; }
  .reviews-top { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Reviews — scale down the big rating number */
  .google-card .big { font-size: 38px; }

  /* Map — don't let it dominate on tablet */
  .map { min-height: 320px; border-radius: 18px; }
  .map iframe { min-height: 308px; }
}

/* Small mobile (≤ 560px) */
@media (max-width: 560px) {
  .pad { padding: 56px 0; }
  .sec-head { margin-bottom: 30px; }
  .wrap { padding: 0 18px; }

  /* Hero */
  .hero-in { padding: 72px 0 64px; }
  .hero h1 { font-size: clamp(36px, 10vw, 44px); }
  .hero p.sub { font-size: 17px; margin: 20px 0 28px; }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-ctas .btn { justify-content: center; }
  .reviews-chip { font-size: 13px; padding: 8px 14px 8px 10px; margin-top: 24px; }

  /* Pillars */
  .pillar { padding: 24px 0; gap: 10px; }
  .pillar .n { font-size: 56px; }
  .pillar h3 { font-size: 22px; }

  /* About */
  .about-photo { aspect-ratio: 1/1; }

  /* Classes */
  .cl { padding: 22px; border-radius: 18px; }
  .cl h3 { font-size: 20px; }
  .cl.feat h3 { font-size: 26px; }
  .cl.feat .price { font-size: 38px; }
  .cl .price { font-size: 24px; }
  .classes-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .classes-foot .btn { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-q { font-size: 0.95rem; padding: 18px 0; gap: 1rem; }
  .faq-a p { font-size: 15.5px; padding-bottom: 18px; }

  /* Reviews */
  .google-card { padding: 20px; }
  .google-card .big { font-size: 36px; }

  /* Contact */
  .contact-copy h2 { font-size: clamp(30px, 9vw, 40px); }
  .contact-copy .sub { font-size: 16px; }
  .info { gap: 12px; }
  .info .k { width: 40px; height: 40px; }
  .info .k svg { width: 18px; height: 18px; }
  .info .val { font-size: 15px; }
  .s-contact .btn-lg { width: 100%; justify-content: center; }

  /* Map — compact on small phones */
  .map { min-height: 240px; border-radius: 14px; border-width: 4px; }
  .map iframe { min-height: 228px; }

  /* Footer */
  footer { padding: 48px 0 28px; }
  .foot-base { font-size: 12px; gap: 4px; }
}

/* Very small phones (< 390px — iPhone SE etc) */
@media (max-width: 390px) {
  .wrap { padding: 0 14px; }
  .hdr-in { height: 60px; }
  .wm { height: 26px; }
  .hero h1 { font-size: 34px; }
  .btn-lg { padding: 16px 24px; font-size: 16px; }
  .btn-sm { padding: 9px 16px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
