/* ============================================================
   Elegant Dental Clinic — design system
   Palette keyed to the brand logo: warm orange + royal blue
   on a cream-warmed off-white. Teal as light dental accent.
   ============================================================ */

:root{
  --bg:        #FAF6EE;  /* warm off-white page bg */
  --bg-2:      #F3ECDD;  /* deeper warm band */
  --surface:   #FFFFFF;  /* cards, panels */
  --text:      #1B2330;  /* near-navy ink */
  --muted:     #5C6675;  /* secondary text */
  --primary:   #2632C2;  /* royal/cobalt blue — links, headings */
  --secondary: #1E22B4;  /* deep royal blue */
  --accent:    #EF7E22;  /* warm orange — CTAs, highlights */
  --accent-deep:#C85E10; /* darker orange — for orange text on light (AA) */
  --teal:      #2FA6A0;  /* soft teal accent */
  --teal-deep: #1F7A75;
  --border:    #E7E0D6;  /* warm hairline */
  --border-strong:#D8CFC0;
  --focus:     #EF7E22;

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(27,35,48,.04), 0 2px 8px rgba(27,35,48,.05);
  --shadow:    0 4px 12px rgba(27,35,48,.06), 0 14px 34px rgba(27,35,48,.08);
  --shadow-lg: 0 10px 30px rgba(27,35,48,.10), 0 30px 70px rgba(27,35,48,.12);
  --shadow-orange: 0 8px 22px rgba(239,126,34,.28);

  --maxw: 1200px;
  --header-h: 104px;

  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px); -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
button{ font-family:inherit; cursor:pointer; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:600; line-height:1.08; margin:0; letter-spacing:-.02em; color:var(--text); }

::selection{ background:rgba(239,126,34,.22); }

:focus-visible{ outline:3px solid var(--focus); outline-offset:3px; border-radius:6px; }

/* ---------- layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px; }
.section{ padding:96px 0; position:relative; }
.section--tight{ padding:72px 0; }
.band{ background:var(--bg-2); }
.band-white{ background:var(--surface); }

.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-head); font-weight:600;
  font-size:13.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent-deep);
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--accent); border-radius:2px; }
.eyebrow--center::after{ content:""; width:22px; height:2px; background:var(--accent); border-radius:2px; }

.section-head{ max-width:680px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head h2{
  font-size:clamp(30px,4.4vw,46px);
  margin:18px 0 0;
}
.section-head p{
  margin:16px 0 0; color:var(--muted); font-size:18px; line-height:1.6;
  text-wrap:pretty;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 26px;
  border-radius:999px; border:1.5px solid transparent;
  font-family:var(--font-head); font-weight:600; font-size:16.5px;
  letter-spacing:.005em;
  transition:transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn svg{ width:19px; height:19px; flex:none; }
.btn--primary{ background:var(--accent); color:#fff; box-shadow:var(--shadow-orange); }
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(239,126,34,.38); background:#f2872f; }
.btn--blue{ background:var(--primary); color:#fff; box-shadow:0 8px 22px rgba(38,50,194,.26); }
.btn--blue:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(38,50,194,.34); }
.btn--ghost{ background:transparent; color:var(--primary); border-color:var(--border-strong); }
.btn--ghost:hover{ border-color:var(--primary); background:rgba(38,50,194,.05); transform:translateY(-2px); }
.btn--white{ background:#fff; color:var(--primary); box-shadow:var(--shadow-sm); }
.btn--white:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.btn--block{ width:100%; }

/* ---------- pills / chips ---------- */
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 15px; border-radius:999px;
  background:var(--surface); border:1px solid var(--border);
  font-size:14.5px; font-weight:600; color:var(--text);
  box-shadow:var(--shadow-sm);
}
.chip svg{ width:17px; height:17px; color:var(--teal-deep); flex:none; }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:fixed; inset:0 0 auto 0; z-index:80;
  height:var(--header-h);
  display:flex; align-items:center;
  background:rgba(250,246,238,.72);
  backdrop-filter:blur(14px) saturate(1.3);
  -webkit-backdrop-filter:blur(14px) saturate(1.3);
  border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease;
}
.header.scrolled{
  background:rgba(255,255,255,.9);
  border-bottom-color:var(--border);
  box-shadow:0 6px 24px rgba(27,35,48,.06);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; width:100%; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:76px; width:auto; }
.brand__name{ display:none; }

.nav{ display:flex; align-items:center; gap:6px; }
.nav a{
  font-family:var(--font-head); font-weight:500; font-size:15.5px; color:var(--text);
  padding:10px 14px; border-radius:10px; position:relative;
  transition:color .18s ease, background .18s ease;
}
.nav a:hover{ color:var(--primary); background:rgba(38,50,194,.06); }

.header__cta{ display:flex; align-items:center; gap:12px; }
.header__cta .btn{ min-height:46px; padding:0 20px; font-size:15.5px; }
.icon-call{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-head); font-weight:600; color:var(--primary); font-size:15.5px; padding:8px 6px; }
.icon-call svg{ width:18px; height:18px; }

.hamburger{
  display:none; width:48px; height:48px; border:1px solid var(--border-strong);
  border-radius:12px; background:var(--surface); align-items:center; justify-content:center;
}
.hamburger svg{ width:24px; height:24px; color:var(--text); }

/* mobile drawer */
.drawer{
  position:fixed; inset:0; z-index:90; display:none;
}
.drawer.open{ display:block; }
.drawer__scrim{ position:absolute; inset:0; background:rgba(27,35,48,.45); backdrop-filter:blur(2px); animation:fade .25s ease; }
.drawer__panel{
  position:absolute; top:0; right:0; height:100%; width:min(86vw,360px);
  background:var(--surface); box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; padding:22px;
  animation:slideIn .3s cubic-bezier(.22,1,.36,1);
}
.drawer__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.drawer__top img{ height:64px; }
.drawer__close{ width:44px; height:44px; border-radius:12px; border:1px solid var(--border); background:var(--bg); display:flex; align-items:center; justify-content:center; }
.drawer__close svg{ width:22px; height:22px; }
.drawer nav{ display:flex; flex-direction:column; margin-top:14px; }
.drawer nav a{
  font-family:var(--font-head); font-weight:600; font-size:19px; color:var(--text);
  padding:15px 8px; border-bottom:1px solid var(--border);
}
.drawer__actions{ margin-top:auto; display:flex; flex-direction:column; gap:12px; padding-top:18px; }

@keyframes slideIn{ from{ transform:translateX(100%);} to{ transform:translateX(0);} }
@keyframes fade{ from{ opacity:0;} to{ opacity:1;} }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  padding:calc(var(--header-h) + 64px) 0 80px;
  overflow:hidden;
}
.hero__blob{
  position:absolute; border-radius:50%; filter:blur(60px); opacity:.5; z-index:0; pointer-events:none;
}
.hero__blob--1{ width:520px; height:520px; background:radial-gradient(circle,#FBE0C4,transparent 70%); top:-160px; right:-120px; }
.hero__blob--2{ width:460px; height:460px; background:radial-gradient(circle,#CFE9E7,transparent 70%); bottom:-200px; left:-160px; opacity:.45; }
.hero__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.hero__copy{ max-width:600px; }
.hero h1{
  font-size:clamp(38px,5.6vw,62px);
  margin:22px 0 0; text-wrap:balance;
}
.hero h1 .accent{ color:var(--primary); }
.hero__tag{
  font-family:var(--font-head); font-weight:600; font-size:clamp(18px,2.2vw,22px);
  color:var(--accent-deep); margin:14px 0 0; letter-spacing:.01em;
}
.hero__lead{ margin:20px 0 0; font-size:19px; color:var(--muted); line-height:1.6; max-width:520px; text-wrap:pretty; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.hero__chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }

.hero__media{ position:relative; }
.hero__photo{
  position:relative; border-radius:var(--r-xl);
  overflow:hidden; box-shadow:var(--shadow-lg);
  aspect-ratio:4/5; background:var(--bg-2);
  border:6px solid #fff;
}
.hero__photo img{ width:100%; height:100%; object-fit:cover; }
.hero__badge{
  position:absolute; left:-26px; bottom:34px;
  background:#fff; border-radius:var(--r); padding:16px 20px;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:14px;
  border:1px solid var(--border);
}
.hero__badge .ic{ width:46px; height:46px; border-radius:13px; background:rgba(47,166,160,.12); display:flex; align-items:center; justify-content:center; color:var(--teal-deep); flex:none; }
.hero__badge .ic svg{ width:24px; height:24px; }
.hero__badge b{ font-family:var(--font-head); font-size:16px; display:block; }
.hero__badge span{ font-size:13.5px; color:var(--muted); }
.hero__badge--tr{ left:auto; right:-22px; bottom:auto; top:30px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:54px; }
.svc-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg);
  padding:30px 28px; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative; overflow:hidden;
}
.svc-card::after{
  content:""; position:absolute; left:0; top:0; height:4px; width:100%;
  background:linear-gradient(90deg,var(--accent),#f6a45a); transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--border-strong); }
.svc-card:hover::after{ transform:scaleX(1); }
.svc-card .ic{
  width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:rgba(38,50,194,.08); color:var(--primary); margin-bottom:18px;
}
.svc-card:nth-child(2) .ic{ background:rgba(239,126,34,.12); color:var(--accent-deep); }
.svc-card:nth-child(3) .ic{ background:rgba(47,166,160,.12); color:var(--teal-deep); }
.svc-card:nth-child(4) .ic{ background:rgba(38,50,194,.08); color:var(--primary); }
.svc-card:nth-child(5) .ic{ background:rgba(239,126,34,.12); color:var(--accent-deep); }
.svc-card .ic svg{ width:30px; height:30px; }
.svc-card h3{ font-size:21px; }
.svc-card p{ margin:8px 0 0; color:var(--muted); font-size:15.5px; line-height:1.55; }
.svc-card ul{ margin:16px 0 0; display:flex; flex-wrap:wrap; gap:7px; }
.svc-card li{
  font-size:13.5px; font-weight:600; color:var(--text);
  background:var(--bg); border:1px solid var(--border); border-radius:999px; padding:5px 12px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:54px; }
.why-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:26px; display:flex; gap:16px; align-items:flex-start;
  transition:transform .22s ease, box-shadow .22s ease;
}
.why-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.why-card .ic{ width:50px; height:50px; border-radius:14px; flex:none; display:flex; align-items:center; justify-content:center; background:rgba(47,166,160,.12); color:var(--teal-deep); }
.why-card .ic svg{ width:26px; height:26px; }
.why-card h3{ font-size:18.5px; }
.why-card p{ margin:6px 0 0; font-size:15px; color:var(--muted); line-height:1.5; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:16px; margin-top:50px; }
.gphoto{
  position:relative; border-radius:var(--r); overflow:hidden; cursor:pointer;
  box-shadow:var(--shadow-sm); background:var(--bg-2);
  border:none; padding:0;
}
.gphoto img{ width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.2,.8,.2,1); }
.gphoto::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(27,35,48,.28),transparent 50%); opacity:0; transition:opacity .3s ease; }
.gphoto:hover img{ transform:scale(1.07); }
.gphoto:hover::after{ opacity:1; }
.gphoto--tall{ grid-row:span 2; }
.gphoto--wide{ grid-column:span 2; }

/* lightbox */
.lightbox{ position:fixed; inset:0; z-index:120; display:none; align-items:center; justify-content:center; background:rgba(20,26,36,.9); backdrop-filter:blur(6px); padding:24px; }
.lightbox.open{ display:flex; animation:fade .25s ease; }
.lightbox img{ max-width:min(1000px,92vw); max-height:86vh; border-radius:var(--r); box-shadow:var(--shadow-lg); }
.lightbox__close{ position:absolute; top:22px; right:22px; width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.3); color:#fff; display:flex; align-items:center; justify-content:center; }
.lightbox__close svg{ width:26px; height:26px; }
.lightbox__nav{ position:absolute; top:50%; transform:translateY(-50%); width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.3); color:#fff; display:flex; align-items:center; justify-content:center; }
.lightbox__nav svg{ width:28px; height:28px; }
.lightbox__nav.prev{ left:18px; } .lightbox__nav.next{ right:18px; }

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about__media{ position:relative; }
.about__media img{ width:100%; border-radius:var(--r-xl); box-shadow:var(--shadow-lg); border:6px solid #fff; aspect-ratio:1/1; object-fit:cover; }
.about__story p{ color:var(--muted); font-size:18px; line-height:1.7; margin:18px 0 0; text-wrap:pretty; }
.team-card{
  display:flex; gap:20px; align-items:center; margin-top:30px;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:22px; box-shadow:var(--shadow-sm);
}
.team-card img{ width:92px; height:92px; border-radius:50%; object-fit:cover; flex:none; border:3px solid #fff; box-shadow:var(--shadow-sm); }
.team-card h3{ font-size:20px; }
.team-card .role{ color:var(--accent-deep); font-weight:700; font-size:14.5px; font-family:var(--font-head); margin-top:2px; }
.team-card p{ margin:8px 0 0; color:var(--muted); font-size:15px; }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:stretch; }
.info-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:34px; box-shadow:var(--shadow-sm); }
.info-row{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--border); }
.info-row:last-child{ border-bottom:none; padding-bottom:0; }
.info-row:first-child{ padding-top:0; }
.info-row .ic{ width:46px; height:46px; border-radius:13px; flex:none; display:flex; align-items:center; justify-content:center; background:rgba(38,50,194,.08); color:var(--primary); }
.info-row .ic svg{ width:23px; height:23px; }
.info-row h4{ font-family:var(--font-head); font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin:0 0 4px; font-weight:600; }
.info-row a, .info-row span{ font-size:17px; color:var(--text); font-weight:600; }
.info-row a:hover{ color:var(--primary); }
.info-row .sub{ font-weight:400; font-size:14.5px; color:var(--muted); display:block; margin-top:3px; }

.hours{ margin-top:4px; }
.hours-row{ display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px dashed var(--border); font-size:15.5px; }
.hours-row:last-child{ border-bottom:none; }
.hours-row span:first-child{ color:var(--muted); }
.hours-row span:last-child{ font-weight:700; font-family:var(--font-head); }
.hours-row.closed span:last-child{ color:var(--accent-deep); }
.note{
  display:flex; gap:10px; align-items:flex-start; margin-top:18px; padding:13px 15px;
  background:rgba(239,126,34,.07); border:1px solid rgba(239,126,34,.2); border-radius:var(--r-sm);
  font-size:14px; color:#7a4a16; line-height:1.45;
}
.note svg{ width:18px; height:18px; flex:none; color:var(--accent-deep); margin-top:2px; }

/* map placeholder */
.map-ph{
  position:relative; border-radius:var(--r-lg); overflow:hidden; min-height:100%;
  background:
    linear-gradient(135deg, rgba(47,166,160,.10), rgba(38,50,194,.08)),
    repeating-linear-gradient(45deg, var(--bg-2) 0 14px, #efe7d8 14px 28px);
  border:1px solid var(--border); display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:40px; min-height:360px;
}
.map-ph .pin{ width:64px; height:64px; border-radius:50%; background:#fff; box-shadow:var(--shadow); display:flex; align-items:center; justify-content:center; color:var(--accent); margin-bottom:18px; }
.map-ph .pin svg{ width:32px; height:32px; }
.map-ph h4{ font-family:var(--font-head); font-size:20px; }
.map-ph p{ color:var(--muted); font-size:15px; margin:8px 0 0; max-width:320px; }
.map-ph .tag{ position:absolute; top:16px; left:16px; font-size:12px; letter-spacing:.1em; text-transform:uppercase; font-weight:700; font-family:var(--font-head); color:var(--muted); background:#fff; padding:6px 12px; border-radius:999px; box-shadow:var(--shadow-sm); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:48px; align-items:start; }
.form-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:38px; box-shadow:var(--shadow); }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--font-head); font-weight:600; font-size:14.5px; margin-bottom:7px; color:var(--text); }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--font-body); font-size:16px; color:var(--text);
  padding:13px 16px; border:1.5px solid var(--border-strong); border-radius:var(--r-sm); background:var(--bg);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea{ min-height:104px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--accent); background:#fff; box-shadow:0 0 0 4px rgba(239,126,34,.14);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:6px; }
.form-note{ font-size:13.5px; color:var(--muted); margin-top:16px; line-height:1.5; }

.contact-aside h3{ font-size:24px; }
.contact-aside p{ color:var(--muted); font-size:17px; margin:14px 0 0; line-height:1.6; }
.contact-aside .chip{ margin-top:0; }
.aside-cta{ display:flex; flex-direction:column; gap:12px; margin-top:26px; }
.aside-cta .big-call{
  display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:20px 22px; box-shadow:var(--shadow-sm); transition:transform .2s, box-shadow .2s;
}
.aside-cta .big-call:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.aside-cta .big-call .ic{ width:52px; height:52px; border-radius:14px; flex:none; display:flex; align-items:center; justify-content:center; }
.aside-cta .big-call.call .ic{ background:rgba(38,50,194,.1); color:var(--primary); }
.aside-cta .big-call.wa .ic{ background:rgba(37,211,102,.14); color:#1ba84e; }
.aside-cta .big-call .ic svg{ width:26px; height:26px; }
.aside-cta .big-call small{ display:block; font-size:13px; color:var(--muted); font-family:var(--font-head); font-weight:600; letter-spacing:.04em; text-transform:uppercase; }
.aside-cta .big-call b{ font-family:var(--font-head); font-size:20px; color:var(--text); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  position:relative; overflow:hidden;
  background:linear-gradient(120deg,#23299e,#2632C2 55%,#3340d6);
  color:#fff; border-radius:var(--r-xl); padding:60px; text-align:center;
  box-shadow:var(--shadow-lg);
}
.cta-band::before{ content:""; position:absolute; width:380px; height:380px; border-radius:50%; background:radial-gradient(circle,rgba(239,126,34,.34),transparent 70%); top:-140px; right:-80px; }
.cta-band::after{ content:""; position:absolute; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(47,166,160,.34),transparent 70%); bottom:-150px; left:-60px; }
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; font-size:clamp(28px,4vw,42px); }
.cta-band p{ color:rgba(255,255,255,.85); font-size:19px; margin:16px auto 0; max-width:560px; }
.cta-band .hero__actions{ justify-content:center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:#12161f; color:#c8cdd6; padding:64px 0 0; }
.footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
.footer__brand img{ height:120px; width:auto; margin-bottom:18px; }
.footer__brand p{ font-size:15px; line-height:1.6; color:#9aa1ad; max-width:300px; }
.footer h4{ font-family:var(--font-head); font-size:14px; letter-spacing:.1em; text-transform:uppercase; color:#fff; margin:0 0 18px; }
.footer ul li{ margin-bottom:11px; }
.footer ul a, .footer ul span{ font-size:15px; color:#9aa1ad; transition:color .18s ease; }
.footer ul a:hover{ color:#fff; }
.footer__social{ display:flex; gap:12px; margin-top:8px; }
.footer__social a{ width:44px; height:44px; border-radius:12px; background:rgba(255,255,255,.07); display:flex; align-items:center; justify-content:center; color:#c8cdd6; transition:background .2s, color .2s, transform .2s; }
.footer__social a:hover{ background:var(--accent); color:#fff; transform:translateY(-2px); }
.footer__social svg{ width:20px; height:20px; }
.footer__bottom{ margin-top:54px; border-top:1px solid rgba(255,255,255,.1); padding:24px 0; display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; }
.footer__bottom p{ font-size:13.5px; color:#7c828d; margin:0; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.actionbar{
  position:fixed; left:0; right:0; bottom:0; z-index:70; display:none;
  background:rgba(255,255,255,.96); backdrop-filter:blur(12px);
  border-top:1px solid var(--border); padding:9px 12px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns:1fr 1fr 1fr; gap:9px;
  box-shadow:0 -6px 20px rgba(27,35,48,.08);
}
.actionbar a{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  min-height:54px; border-radius:14px; font-family:var(--font-head); font-weight:700; font-size:12.5px;
}
.actionbar a svg{ width:22px; height:22px; }
.actionbar .ab-call{ background:rgba(38,50,194,.1); color:var(--primary); }
.actionbar .ab-wa{ background:rgba(37,211,102,.16); color:#1ba84e; }
.actionbar .ab-book{ background:var(--accent); color:#fff; }

/* ---------- scroll reveal ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }
.reveal[data-d="4"]{ transition-delay:.32s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:920px){
  :root{ --header-h:84px; }
  .nav{ display:none; }
  .header__cta .icon-call{ display:none; }
  .hamburger{ display:flex; }
  .header__cta .btn--book-desktop{ display:none; }
  .hero__grid{ grid-template-columns:1fr; gap:40px; }
  .hero__media{ order:-1; max-width:440px; margin-inline:auto; width:100%; }
  .hero__photo{ aspect-ratio:5/4; }
  .about-grid{ grid-template-columns:1fr; gap:36px; }
  .about__media{ max-width:460px; margin-inline:auto; }
  .loc-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; gap:34px; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:36px 28px; }
  .gallery{ grid-template-columns:repeat(3,1fr); grid-auto-rows:170px; }
}
@media (max-width:680px){
  body{ font-size:16px; }
  .section{ padding:64px 0; }
  .section--tight{ padding:52px 0; }
  .wrap{ padding-inline:18px; }
  .actionbar{ display:grid; }
  body{ padding-bottom:74px; }
  .svc-grid, .why-grid{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; gap:12px; }
  .gphoto--wide{ grid-column:span 2; }
  .gphoto--tall{ grid-row:span 1; }
  .field-row{ grid-template-columns:1fr; gap:0; }
  .form-card{ padding:26px 22px; }
  .cta-band{ padding:42px 26px; }
  .info-card{ padding:26px 22px; }
  .footer__grid{ grid-template-columns:1fr; gap:32px; }
  .hero__grid{ gap:26px; }
  .hero__media{ order:0; max-width:320px; }
  .hero__photo{ aspect-ratio:4/3; }
  .hero__badge{ left:50%; transform:translateX(-50%); bottom:-18px; }
  .hero__badge--tr{ display:none; }
  .hero{ padding-top:26px; padding-bottom:64px; }
  .hero h1{ font-size:clamp(34px,10vw,44px); line-height:1.08; }
  .hero__lead{ font-size:17px; line-height:1.55; }
  .hero__actions .btn{ flex:1; min-width:140px; }
}
@media (max-width:380px){
  .brand img{ height:60px; }
  .hero__chips .chip{ font-size:13px; padding:7px 12px; }
}
