/* ============================================================
   Cactus Ladies Beauty Salon — The Nail Atelier
   Palette + type from research/brand-system.md
   ============================================================ */

:root {
  --bg:        #FFF7F5;   /* blush surface  */
  --surface:   #FFFFFF;
  --surface-2: #FBEFEC;   /* warm card tint */
  --ink:       #2A2426;   /* primary text   */
  --muted:     #786A6D;   /* secondary text */
  --primary:   #B66A7A;   /* dusty rose     */
  --primary-d: #9E556A;
  --green:     #2F3A35;   /* deep green     */
  --green-d:   #232C28;
  --gold:      #D9B56F;   /* gold accent    */
  --gold-d:    #C29A4F;
  --border:    #EADDE0;
  --border-2:  #E2D3D6;
  --focus:     #B66A7A;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(42,36,38,.05), 0 4px 14px rgba(42,36,38,.05);
  --shadow-md: 0 10px 30px rgba(94,72,54,.10), 0 2px 8px rgba(42,36,38,.05);
  --shadow-lg: 0 30px 70px rgba(94,72,54,.16);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --header-h: 76px;
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.06; color: var(--ink); letter-spacing: -.01em; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.eyebrow {
  display:inline-flex; align-items:center; gap:9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow svg { width: 13px; height: 13px; flex: none; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* sparkle mark (4-point) from the logo */
.spark { display:inline-block; color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; letter-spacing:.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; line-height:1;
}
.btn svg { width: 18px; height: 18px; flex:none; }
.btn--primary { background: var(--gold); color: var(--green-d); box-shadow: 0 8px 22px rgba(217,181,111,.35); }
.btn--primary:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217,181,111,.45); }
.btn--rose { background: var(--primary); color:#fff; box-shadow: 0 8px 22px rgba(182,106,122,.30); }
.btn--rose:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--border-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--light { background:#fff; color: var(--green-d); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 16px; }

/* ---------- arch motif ---------- */
.arch { border-radius: 999px 999px 22px 22px; overflow: hidden; }
.arch-sm { border-radius: 999px 999px 16px 16px; overflow: hidden; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display:flex; align-items:center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,247,245,.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border), 0 6px 24px rgba(42,36,38,.05);
}
.header-inner { width:100%; max-width: var(--maxw); margin-inline:auto; padding-inline: var(--gutter); display:flex; align-items:center; justify-content:space-between; gap: 20px; }

.brand { display:flex; align-items:center; gap: 12px; }
.brand__chip {
  width: 46px; height: 46px; border-radius: 13px; overflow:hidden; flex:none;
  background: #fff; box-shadow: var(--shadow-sm); display:grid; place-items:center;
}
.brand__chip img { width:100%; height:100%; object-fit: cover; }
.brand__name { display:flex; flex-direction:column; line-height:1.05; }
.brand__name b { font-family: var(--ff-display); font-weight:700; font-size: 19px; letter-spacing: 0; }
.brand__name span { font-size: 10.5px; letter-spacing:.24em; text-transform:uppercase; color: var(--muted); font-weight:600; }

.nav { display:flex; align-items:center; gap: 4px; }
.nav a {
  position:relative; padding: 10px 14px; font-size: 15px; font-weight: 600; color: var(--ink); border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content:""; position:absolute; left:14px; right:14px; bottom: 5px; height:2px; border-radius:2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--primary); }

.header-cta { display:flex; align-items:center; gap: 12px; }
.header-phone { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:15px; }
.header-phone svg { width:17px; height:17px; color: var(--primary); }

.burger { display:none; width:46px; height:46px; border-radius:12px; background:#fff; box-shadow: var(--shadow-sm); position:relative; }
.burger span { position:absolute; left:13px; right:13px; height:2px; background: var(--ink); border-radius:2px; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1){ top:17px; } .burger span:nth-child(2){ top:23px; } .burger span:nth-child(3){ top:29px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity:0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: var(--bg);
  display:flex; flex-direction:column; padding: calc(var(--header-h) + 18px) var(--gutter) 40px;
  transform: translateY(-100%); opacity:0; pointer-events:none;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
body.menu-open .mobile-menu { transform: translateY(0); opacity:1; pointer-events:auto; }
.mobile-menu a.m-link { font-family: var(--ff-display); font-size: clamp(30px, 9vw, 42px); padding: 14px 0; border-bottom: 1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.mobile-menu a.m-link .spark { opacity:.5; }
.mobile-menu .m-actions { margin-top: auto; display:grid; gap: 12px; padding-top: 28px; }
.mobile-menu .m-meta { margin-top: 18px; color: var(--muted); font-size: 14px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding-top: calc(var(--header-h) + 26px); overflow: hidden; }
.hero::before {
  content:""; position:absolute; top:-12%; right:-8%; width: 46vw; height: 46vw; max-width:640px; max-height:640px;
  background: radial-gradient(circle, rgba(217,181,111,.18), transparent 62%); pointer-events:none; z-index:0;
}
.hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items:center; position:relative; z-index:1; }

.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(40px, 6.6vw, 78px); margin: 18px 0 0; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero .lede { margin-top: 22px; font-size: clamp(16.5px, 1.4vw, 19px); color: #4a4145; max-width: 50ch; }

.hero-meta { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 26px; }
.chip {
  display:inline-flex; align-items:center; gap:8px; padding: 9px 15px; border-radius: 999px;
  background: var(--surface); box-shadow: var(--shadow-sm); font-size: 14px; font-weight:600; color: var(--ink);
}
.chip svg { width:16px; height:16px; color: var(--primary); flex:none; }
.chip--rating { background: var(--green); color:#fff; }
.chip--rating svg { color: var(--gold); }
.chip--rating b { color:#fff; }
.chip b { font-weight: 800; }
.chip .muted { color: var(--muted); font-weight:600; }

.hero-actions { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 30px; }

/* hero visual cluster */
.hero-visual { position: relative; }
.hero-visual .arch {
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg); position: relative;
  border: 6px solid #fff;
}
.hero-visual .arch img { width:100%; height:100%; object-fit: cover; }
.hero-strip { position:absolute; bottom: -26px; left: -34px; display:flex; gap: 12px; z-index:2; }
.hero-strip .thumb {
  width: 84px; height: 104px; border-radius: 14px 14px 14px 14px; overflow:hidden; border: 4px solid #fff; box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease);
}
.hero-strip .thumb:nth-child(1){ transform: rotate(-5deg); }
.hero-strip .thumb:nth-child(2){ transform: rotate(2deg) translateY(8px); }
.hero-strip .thumb img { width:100%; height:100%; object-fit:cover; }
.hero-badge {
  position:absolute; top: 18px; right: -18px; z-index:3;
  background:#fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 12px 16px; text-align:center;
  display:flex; flex-direction:column; gap:2px;
}
.hero-badge b { font-family: var(--ff-display); font-size: 26px; color: var(--primary); line-height:1; }
.hero-badge small { font-size: 10.5px; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); font-weight:700; }

/* =====================================================================
   MARQUEE / TRUST STRIP
   ===================================================================== */
.trust {
  background: var(--green); color: #EFE9E1; overflow:hidden;
}
.trust-row { display:flex; flex-wrap:wrap; gap: clamp(20px,4vw,52px); justify-content:space-between; align-items:center; padding-block: 30px; }
.trust-item { display:flex; align-items:center; gap: 13px; }
.trust-item .ti-num { font-family: var(--ff-display); font-size: 30px; color:#fff; line-height:1; }
.trust-item .ti-lab { font-size: 13.5px; color:#C9C2BC; line-height:1.3; }
.trust-item .ti-lab b { color: var(--gold); display:block; font-size: 14px; }
.trust-stars { color: var(--gold); letter-spacing:2px; }
.trust-divider { width:1px; align-self:stretch; background: rgba(255,255,255,.14); }

/* =====================================================================
   SECTION HEADINGS
   ===================================================================== */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline:auto; text-align:center; }
.sec-head h2 { font-size: clamp(32px, 4.6vw, 54px); margin-top: 16px; }
.sec-head p { margin-top: 18px; color: var(--muted); font-size: 17px; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { background: var(--bg); }
.svc-head { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom: 48px; }
.svc-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,26px); }
.svc-card {
  background: var(--surface); border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); display:flex; flex-direction:column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card__img { aspect-ratio: 16/11; overflow:hidden; position:relative; }
.svc-card__img img { width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__num { position:absolute; top:12px; left:12px; width:34px; height:34px; border-radius:50%; background: rgba(255,247,245,.92); display:grid; place-items:center; font-family:var(--ff-display); font-weight:700; color: var(--primary); font-size:15px; }
.svc-card__body { padding: 22px 22px 26px; display:flex; flex-direction:column; gap:9px; flex:1; }
.svc-card__body h3 { font-size: 22px; }
.svc-card__body p { color: var(--muted); font-size: 14.5px; line-height:1.55; }
.svc-card__foot { margin-top:auto; padding-top: 14px; display:flex; align-items:center; gap:8px; color: var(--primary); font-weight:700; font-size:14px; }
.svc-card__foot svg { width:15px; height:15px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-card__foot svg { transform: translateX(4px); }
.svc-note { margin-top: 30px; text-align:center; color: var(--muted); font-size: 14.5px; display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
.gal-head { display:flex; justify-content:space-between; align-items:flex-end; gap: 24px; flex-wrap:wrap; margin-bottom: 34px; }
.gal-filters { display:flex; flex-wrap:wrap; gap: 9px; }
.gal-filters button {
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight:700; color: var(--muted);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--border);
  transition: all .25s var(--ease);
}
.gal-filters button:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--primary); }
.gal-filters button.active { background: var(--green); color:#fff; box-shadow:none; }

.gal-grid { columns: 4; column-gap: 16px; }
.gal-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: 18px; overflow:hidden; position:relative;
  box-shadow: var(--shadow-sm); cursor: pointer; background: var(--surface-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .4s var(--ease);
}
.gal-item img { width:100%; height:auto; transition: transform .7s var(--ease); }
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gal-item:hover img { transform: scale(1.05); }
.gal-item__tag {
  position:absolute; left:12px; bottom:12px; padding:6px 12px; border-radius:999px; font-size:12px; font-weight:700;
  background: rgba(255,247,245,.92); color: var(--green-d); opacity:0; transform: translateY(6px); transition: all .3s var(--ease);
}
.gal-item:hover .gal-item__tag { opacity:1; transform:translateY(0); }
.gal-item.hide { display:none; }

/* lightbox */
.lightbox { position: fixed; inset:0; z-index: 90; background: rgba(35,28,30,.92); backdrop-filter: blur(6px); display:none; align-items:center; justify-content:center; padding: 4vw; }
.lightbox.open { display:flex; }
.lightbox img { max-width: min(92vw, 760px); max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.lb-btn { position:absolute; width:52px; height:52px; border-radius:50%; background: rgba(255,255,255,.14); color:#fff; display:grid; place-items:center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-btn svg { width:24px; height:24px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-count { position:absolute; bottom: 26px; left:50%; transform:translateX(-50%); color:#fff; font-size:14px; letter-spacing:.1em; opacity:.85; }

/* =====================================================================
   STUDIO / ABOUT BANDS
   ===================================================================== */
.studio { background: var(--surface); }
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items:center; }
.split.rev .split__media { order: 2; }
.split__media .arch { aspect-ratio: 5/6; box-shadow: var(--shadow-lg); border:6px solid #fff; }
.split__media .arch img { width:100%; height:100%; object-fit: cover; }
.split__media { position: relative; }
.studio-stat {
  position:absolute; right:-14px; bottom: 24px; background: var(--green); color:#fff; border-radius: 18px;
  padding: 18px 22px; box-shadow: var(--shadow-md); max-width: 220px;
}
.studio-stat b { font-family:var(--ff-display); font-size: 21px; display:block; }
.studio-stat span { font-size: 13px; color:#C9C2BC; }
.studio__copy h2 { font-size: clamp(30px,4.4vw,50px); margin-top:16px; }
.studio__copy p { margin-top: 18px; color: #4a4145; }
.feature-list { margin-top: 26px; display:grid; gap: 14px; }
.feature-list li { display:flex; gap:13px; align-items:flex-start; list-style:none; }
.feature-list .fi-ic { width:34px; height:34px; border-radius:10px; background: var(--surface-2); display:grid; place-items:center; flex:none; color: var(--primary); }
.feature-list .fi-ic svg { width:18px; height:18px; }
.feature-list b { display:block; font-size: 16px; }
.feature-list span { color: var(--muted); font-size: 14.5px; }

/* =====================================================================
   VISIT / LOCATION
   ===================================================================== */
.visit { background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.visit-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,3vw,40px); align-items:stretch; }
.visit-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(26px,3vw,42px); box-shadow: var(--shadow-sm); border:1px solid var(--border); }
.visit-card h2 { font-size: clamp(28px,3.6vw,42px); }
.info-list { margin-top: 26px; display:grid; gap: 18px; }
.info-row { display:flex; gap: 15px; align-items:flex-start; }
.info-row .ic { width:44px; height:44px; border-radius: 12px; background: var(--surface-2); color: var(--primary); display:grid; place-items:center; flex:none; }
.info-row .ic svg { width:20px; height:20px; }
.info-row .lab { font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); font-weight:700; }
.info-row .val { font-size: 17px; font-weight:600; margin-top:2px; }
.info-row .val a:hover { color: var(--primary); }
.info-row .sub { font-size: 13.5px; color: var(--muted); }
.visit-actions { margin-top: 28px; display:flex; flex-wrap:wrap; gap: 12px; }

.map-panel { border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--border); position:relative; min-height: 340px; background: var(--surface); display:flex; flex-direction:column; }
.map-frame { flex:1; border:0; width:100%; min-height: 300px; filter: grayscale(.2) contrast(1.02); }
.map-foot { display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 16px 20px; background: var(--surface); border-top: 1px solid var(--border); flex-wrap:wrap; }
.map-foot .mf-addr { font-size: 14px; font-weight:600; }
.map-foot .mf-addr span { display:block; color: var(--muted); font-weight:500; font-size:12.5px; }

/* =====================================================================
   ENQUIRY FORM
   ===================================================================== */
.enquire { background: var(--green); color: #EFE9E1; position:relative; overflow:hidden; }
.enquire::before { content:""; position:absolute; top:-20%; left:-10%; width:50vw; height:50vw; max-width:560px; max-height:560px; background: radial-gradient(circle, rgba(217,181,111,.14), transparent 60%); }
.enquire .wrap { position:relative; z-index:1; }
.enquire-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,5vw,72px); align-items:start; }
.enquire h2 { color:#fff; font-size: clamp(30px,4.4vw,52px); }
.enquire .eyebrow { color: var(--gold); }
.enquire-intro p { color:#C9C2BC; margin-top: 18px; }
.enquire-intro .contact-quick { margin-top: 26px; display:grid; gap: 14px; }
.cq-row { display:flex; gap:13px; align-items:center; }
.cq-row .ic { width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.08); display:grid;place-items:center; color:var(--gold); flex:none; }
.cq-row .ic svg{ width:19px;height:19px; }
.cq-row .lab{ font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#A9A29C; font-weight:700; }
.cq-row .val{ font-weight:700; color:#fff; font-size:16px; }

.form-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-lg); color: var(--ink); }
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 13px; font-weight:700; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border-radius: 12px; background: var(--bg);
  box-shadow: inset 0 0 0 1.5px var(--border); transition: box-shadow .2s var(--ease), background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; box-shadow: inset 0 0 0 2px var(--primary); background:#fff; }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chip-radios { display:flex; flex-wrap:wrap; gap: 8px; }
.chip-radios label {
  padding: 9px 15px; border-radius: 999px; font-size: 14px; font-weight:600; margin:0;
  box-shadow: inset 0 0 0 1.5px var(--border); cursor:pointer; transition: all .2s var(--ease); background:var(--bg);
}
.chip-radios input { position:absolute; opacity:0; width:0; height:0; }
.chip-radios input:checked + span { }
.chip-radios label:has(input:checked) { background: var(--primary); color:#fff; box-shadow:none; }
.form-err { color: var(--primary-d); font-size: 12.5px; margin-top:5px; display:none; }
.field.invalid .form-err { display:block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { box-shadow: inset 0 0 0 2px var(--primary); }
.form-submit { margin-top: 8px; display:flex; flex-direction:column; gap:12px; }
.form-disclaimer { font-size: 12.5px; color: var(--muted); }
.form-success {
  display:none; text-align:center; padding: 20px 10px;
}
.form-success.show { display:block; }
.form-success .fs-ic { width:64px;height:64px;border-radius:50%; background: var(--surface-2); display:grid;place-items:center;margin:0 auto 16px; color: var(--primary); }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--muted); margin-top:10px; }
.form-success .btn { margin-top:18px; }
.form-card.done .form-body { display:none; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--green-d); color: #C9C2BC; padding-top: clamp(56px,7vw,84px); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand__name b { color:#fff; }
.footer-brand .brand__name span { color: #8f8884; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; max-width: 34ch; color:#A9A29C; }
.footer-col h4 { color:#fff; font-size: 13px; letter-spacing:.16em; text-transform:uppercase; font-family: var(--ff-body); font-weight:700; margin-bottom: 16px; }
.footer-col a, .footer-col p { display:block; font-size: 14.5px; padding: 5px 0; color:#A9A29C; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.social-row { display:flex; gap:10px; margin-top: 6px; }
.social-row a { width:42px;height:42px;border-radius:12px; background: rgba(255,255,255,.06); display:grid;place-items:center; color:#fff; transition: background .2s, transform .2s; }
.social-row a:hover { background: var(--gold); color: var(--green-d); transform: translateY(-2px); }
.social-row svg { width:19px;height:19px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding-block: 26px; font-size: 13px; color:#8f8884; }
.footer-bottom a:hover { color: var(--gold); }

/* =====================================================================
   MOBILE BOTTOM ACTION BAR
   ===================================================================== */
.action-bar {
  position: fixed; left:0; right:0; bottom:0; z-index: 70; display:none;
  background: rgba(255,247,245,.92); backdrop-filter: blur(14px);
  box-shadow: 0 -1px 0 var(--border), 0 -6px 24px rgba(42,36,38,.08);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3,1fr); gap: 8px;
}
.action-bar a {
  display:flex; flex-direction:column; align-items:center; gap:4px; padding: 8px 4px; border-radius: 13px;
  font-size: 11.5px; font-weight:700; color: var(--ink); min-height: 52px; justify-content:center;
}
.action-bar a svg { width:21px; height:21px; }
.action-bar a.primary { background: var(--gold); color: var(--green-d); }
.action-bar a.rose { color: var(--primary); }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; } .reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1 !important; transform:none !important; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px){
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .gal-grid { columns: 3; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px){
  :root { --header-h: 64px; }
  .nav, .header-phone { display:none; }
  .burger { display:block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin-inline:auto; width:100%; }
  .hero-copy { max-width: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split__media { order: 0; }
  .split__media .arch { max-width: 420px; margin-inline:auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .enquire-grid { grid-template-columns: 1fr; gap: 36px; }
  .action-bar { display:grid; }
  body { padding-bottom: 76px; }
}
@media (max-width: 620px){
  body { font-size: 16px; }
  .gal-grid { columns: 2; column-gap: 12px; }
  .gal-item { margin-bottom: 12px; }
  .svc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .trust-divider { display:none; }
  .trust-row { gap: 20px 36px; }
  .hero-strip { left: 0; bottom:-20px; }
  .hero-strip .thumb { width: 70px; height:88px; }
  .hero-badge { right: 4px; padding: 10px 13px; }
  .hero-badge b { font-size: 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .lb-prev{ left: 10px; } .lb-next{ right:10px; }
  .lb-btn{ width:44px;height:44px; }
}
@media (max-width: 380px){
  :root { --gutter: 18px; }
  .hero h1 { font-size: 38px; }
}
