/* ============================================================
   Crimper — Gents Salon · Jumeirah, Dubai
   Design system. Editorial charcoal + warm gold, rose accent.
   Signature motif: arched "mirror-frame" geometry.
   ============================================================ */

:root {
  /* palette */
  --bg:        #FFF7F5;   /* warm surface */
  --surface:   #FFFFFF;
  --ink:       #2A2426;   /* primary text */
  --ink-2:     #2F3A35;   /* deep green-charcoal */
  --night:     #201D1E;   /* deep panels / footer */
  --night-2:   #2A2627;
  --muted:     #786A6D;
  --rose:      #B66A7A;   /* primary accent, used sparingly */
  --rose-soft: #cf95a1;
  --gold:      #D9B56F;   /* CTA / premium detail */
  --gold-deep: #B8923F;   /* gold text on light */
  --border:    #EADDE0;
  --border-2:  #3a3536;   /* hairline on dark */
  --focus:     #B66A7A;

  /* type */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* metrics */
  --arch: 210px;          /* arched top radius for tall mirror frames */
  --maxw: 1200px;
  --gutter: clamp(18px, 5vw, 56px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- type scale ---------- */
.kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.kicker.on-dark { color: var(--gold); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
.display { font-size: clamp(3.4rem, 13vw, 8rem); font-weight: 700; }
h2.section-title { font-size: clamp(2rem, 6vw, 3.4rem); }
.lead { font-size: clamp(1.02rem, 2.4vw, 1.22rem); color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }

/* ---------- arched mirror frame motif ---------- */
.mirror {
  position: relative;
  border-radius: var(--arch) var(--arch) 12px 12px;
  overflow: hidden;
  background: var(--night);
  box-shadow: 0 30px 60px -28px rgba(33,29,30,.5);
}
.mirror::after {            /* inner gold hairline frame */
  content: "";
  position: absolute; inset: 9px;
  border: 1px solid rgba(217,181,111,.55);
  border-radius: calc(var(--arch) - 9px) calc(var(--arch) - 9px) 6px 6px;
  pointer-events: none;
  z-index: 2;
}
.mirror img { width: 100%; height: 100%; object-fit: cover; }
.mirror.soft { --arch: 120px; }
.mirror.low  { --arch: 60px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-gold { background: var(--gold); color: #2A2010; box-shadow: 0 10px 24px -12px rgba(184,146,63,.8); }
.btn-gold:hover { transform: translateY(-2px); background: #e6c684; }
.btn-dark { background: var(--ink-2); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #3c4944; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--ink-2); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost.on-dark:hover { border-color: var(--gold); }
.btn-block { width: 100%; }

/* small inline link */
.tlink { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; color: var(--rose); font-size: .92rem; }
.tlink::after { content: "→"; transition: transform .2s var(--ease); }
.tlink:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 14px var(--gutter);
  transition: background .3s var(--ease), box-shadow .3s, padding .3s;
}
.site-header.solid {
  background: rgba(255,247,245,.86);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 14px 30px -26px rgba(42,36,38,.5);
  padding-block: 9px;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-chip {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--bg);
  display: grid; place-items: center;
  overflow: hidden; flex: none;
  box-shadow: inset 0 0 0 1px var(--border);
}
.site-header.over .brand-chip { box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 6px 18px -8px rgba(0,0,0,.4); }
.brand-chip img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.32rem; line-height: 1; color: var(--ink); }
.brand-sub { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
.site-header.over .brand-name { color: #fff; }
.site-header.over .brand-sub { color: rgba(255,255,255,.7); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 600; font-size: .92rem; color: var(--ink);
  padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .25s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.site-header.over .nav-links a { color: rgba(255,255,255,.92); }

.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-cta .btn { min-height: 42px; padding: 0 1.15rem; font-size: .9rem; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--surface);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.site-header.over .burger { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.site-header.over .burger span { background: #fff; }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--night);
  color: #fff;
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) 32px;
  transform: translateY(-100%);
  transition: transform .42s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mm-top { display: flex; align-items: center; justify-content: space-between; }
.mm-close { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 1.4rem; line-height: 1; }
.mm-links { list-style: none; margin: auto 0; padding: 0; display: flex; flex-direction: column; gap: .2rem; }
.mm-links a { font-family: var(--display); font-size: 2.4rem; font-weight: 600; padding: .35rem 0; display: flex; align-items: baseline; gap: 1rem; }
.mm-links a .idx { font-family: var(--body); font-size: .8rem; color: var(--gold); font-weight: 700; letter-spacing: .1em; }
.mm-foot { display: grid; gap: .8rem; }
.mm-foot .meta { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ============================================================
   HERO — profile-card
   ============================================================ */
.hero { padding-top: 96px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 4vw, 56px);
  align-items: stretch;
  padding-top: clamp(14px, 4vw, 40px);
}
.hero-card {
  align-self: center;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.hero h1 .accent { color: var(--rose); font-style: italic; }
.hero-tagline { max-width: 30ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .5rem .7rem; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: .5rem .85rem;
  font-size: .86rem; font-weight: 600; color: var(--ink);
}
.chip .star { color: var(--gold-deep); }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 4px rgba(43,182,115,.16); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-address {
  display: flex; align-items: flex-start; gap: .6rem;
  color: var(--muted); font-size: .95rem; padding-top: .2rem;
}
.hero-address svg { width: 18px; height: 18px; margin-top: 2px; color: var(--rose); flex: none; }

.hero-media { position: relative; }
.hero-media .mirror { height: clamp(440px, 64vh, 640px); }
.hero-badge {
  position: absolute; left: -10px; bottom: 26px; z-index: 5;
  background: var(--surface); border-radius: 16px; padding: .9rem 1.1rem;
  box-shadow: 0 24px 50px -22px rgba(42,36,38,.55);
  display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--border);
}
.hero-badge .num { font-family: var(--display); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--ink); }
.hero-badge .lbl { font-size: .72rem; color: var(--muted); font-weight: 600; line-height: 1.3; }
.hero-badge .stars { color: var(--gold-deep); font-size: .8rem; letter-spacing: .05em; }

/* ---------- trust strip ---------- */
.trust {
  margin-top: clamp(34px, 6vw, 64px);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-cell { padding: 1.3rem 1rem; text-align: center; border-left: 1px solid var(--border); }
.trust-cell:first-child { border-left: 0; }
.trust-cell .t { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.trust-cell .t .star { color: var(--gold-deep); }
.trust-cell .s { font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-top: .2rem; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec { padding-block: clamp(64px, 10vw, 128px); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(28px, 5vw, 52px); }
.sec-head .lead { max-width: 46ch; margin-top: .8rem; }
.sec-head__l { max-width: 30ch; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px);
}
.svc {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 14px 14px 22px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -30px rgba(42,36,38,.45); border-color: #e3cdd0; }
.svc .thumb { border-radius: 90px 90px 14px 14px; overflow: hidden; aspect-ratio: 4 / 3.4; background: var(--night); position: relative; }
.svc .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .thumb img { transform: scale(1.05); }
.svc .thumb .no { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--display); font-size: .9rem; color: #fff; background: rgba(32,29,30,.55); backdrop-filter: blur(4px); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(217,181,111,.5); }
.svc h3 { font-size: 1.45rem; margin-top: 1.1rem; }
.svc p { color: var(--muted); font-size: .94rem; margin: .5rem 0 1rem; flex: 1; }
.svc .svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .4rem; border-top: 1px solid var(--border); }
.svc .price-note { font-size: .8rem; color: var(--muted); font-weight: 600; }

.svc-note { margin-top: clamp(22px,4vw,34px); font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: .6rem; }
.svc-note svg { width: 17px; height: 17px; color: var(--rose); flex: none; }

/* ============================================================
   LOOKBOOK / GALLERY
   ============================================================ */
.gallery { columns: 3; column-gap: 16px; }
.gallery .gitem {
  break-inside: avoid; margin-bottom: 16px; border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer; background: var(--night);
  box-shadow: 0 18px 36px -28px rgba(42,36,38,.5);
}
.gallery .gitem img { width: 100%; height: auto; transition: transform .6s var(--ease), filter .4s; }
.gallery .gitem::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(32,29,30,.42), transparent 45%);
  opacity: 0; transition: opacity .35s;
}
.gallery .gitem:hover img { transform: scale(1.05); }
.gallery .gitem:hover::after { opacity: 1; }
.gallery .gitem .expand {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,247,245,.92); display: grid; place-items: center;
  opacity: 0; transform: translateY(8px); transition: .35s var(--ease);
}
.gallery .gitem:hover .expand { opacity: 1; transform: translateY(0); }
.gallery .gitem .expand svg { width: 18px; height: 18px; color: var(--ink); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,17,18,.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 40px 90px -30px #000; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 1.6rem; display: grid; place-items: center; }
.lb-btn:hover { background: var(--gold); color: var(--night); border-color: var(--gold); }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }
.lb-close { top: 4vw; right: 4vw; transform: none; width: 50px; height: 50px; font-size: 1.3rem; }
.lb-count { position: absolute; bottom: 4vw; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .1em; font-size: .85rem; }

/* ============================================================
   ABOUT (dark)
   ============================================================ */
.about { background: var(--night); color: #fff; border-radius: 32px; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 64px); align-items: center; padding: clamp(34px, 6vw, 80px); }
.about-media .mirror { height: clamp(360px, 50vw, 560px); }
.about h2 { color: #fff; }
.about .lead { color: rgba(255,255,255,.74); }
.about p.body { color: rgba(255,255,255,.66); margin: 1rem 0 0; }
.about-stats { display: flex; gap: clamp(18px,4vw,42px); flex-wrap: wrap; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--border-2); }
.about-stats .st .n { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-stats .st .l { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .35rem; }
.brand-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.brand-row .b { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .4rem .85rem; }

/* ============================================================
   SPA BAND
   ============================================================ */
.spa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,24px); }
.spa-card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--night); }
.spa-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.spa-card:hover img { transform: scale(1.05); }
.spa-card .cap { position: absolute; inset: auto 0 0 0; padding: 1.3rem 1.2rem; color: #fff; background: linear-gradient(to top, rgba(20,17,18,.82), transparent); z-index: 2; }
.spa-card .cap h3 { font-size: 1.3rem; }
.spa-card .cap p { font-size: .85rem; color: rgba(255,255,255,.78); margin: .25rem 0 0; }

/* ============================================================
   VISIT / LOCATION + MAP
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(20px,3vw,40px); align-items: stretch; }
.visit-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: clamp(24px,3vw,40px); display: flex; flex-direction: column; }
.visit-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.3rem; }
.visit-list li { display: flex; gap: .9rem; }
.visit-list .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; flex: none; }
.visit-list .ic svg { width: 19px; height: 19px; color: var(--rose); }
.visit-list .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.visit-list .v { font-weight: 600; color: var(--ink); font-size: 1.02rem; margin-top: 2px; }
.visit-list .v a:hover { color: var(--rose); }
.visit-cta { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: auto; padding-top: 1.6rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink-2); transition: .25s var(--ease); }
.socials a:hover { background: var(--ink-2); color: #fff; transform: translateY(-2px); }
.socials a svg { width: 19px; height: 19px; }

.map-wrap { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); min-height: 360px; background: var(--night); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.25) contrast(1.02); display: block; }
.map-pin { position: absolute; top: 16px; left: 16px; z-index: 3; background: rgba(255,247,245,.94); border-radius: 12px; padding: .65rem .9rem; display: flex; align-items: center; gap: .5rem; box-shadow: 0 12px 28px -16px rgba(0,0,0,.5); font-weight: 700; font-size: .85rem; }
.map-pin svg { width: 16px; height: 16px; color: var(--rose); }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquire { background: linear-gradient(180deg, var(--bg), #fbeee9); border-radius: 32px; }
.enquire-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px,4vw,56px); padding: clamp(30px,5vw,72px); align-items: start; }
.enquire h2 { color: var(--ink); }
.form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.field .req { color: var(--rose); }
input, select, textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px;
  padding: .8rem .95rem; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(182,106,122,.14); }
.field.err input, .field.err select, .field.err textarea { border-color: #d6452f; box-shadow: 0 0 0 4px rgba(214,69,47,.12); }
.err-msg { font-size: .78rem; color: #c0341f; font-weight: 600; display: none; }
.field.err .err-msg { display: block; }
.seg { display: flex; gap: .5rem; flex-wrap: wrap; }
.seg label { display: inline-flex; align-items: center; gap: .45rem; border: 1.5px solid var(--border); border-radius: 999px; padding: .55rem .95rem; cursor: pointer; font-size: .9rem; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--ink); transition: .2s; }
.seg input { width: auto; }
.seg label:has(input:checked) { border-color: var(--rose); background: rgba(182,106,122,.08); color: var(--ink); }
.form-note { font-size: .82rem; color: var(--muted); display: flex; gap: .55rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--rose); flex: none; margin-top: 2px; }
.form-success { display: none; text-align: center; padding: clamp(28px,5vw,48px); }
.form-success.show { display: block; }
.form-success .tick { width: 72px; height: 72px; border-radius: 50%; background: rgba(43,182,115,.12); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success .tick svg { width: 34px; height: 34px; color: #1f9e62; }
.form-success h3 { font-size: 1.8rem; }
.form-success p { color: var(--muted); max-width: 38ch; margin: .7rem auto 1.6rem; }

.enquire-aside { display: grid; gap: 1rem; }
.enquire-aside .mirror { height: clamp(240px, 30vw, 340px); }
.aside-quote { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 1.4rem 1.5rem; }
.aside-quote p { font-family: var(--display); font-size: 1.18rem; font-style: italic; color: var(--ink); margin: 0; line-height: 1.4; }
.aside-quote .src { font-size: .8rem; color: var(--muted); font-weight: 600; margin-top: .8rem; display: flex; align-items: center; gap: .4rem; }
.aside-quote .src .star { color: var(--gold-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--night); color: rgba(255,255,255,.72); padding: clamp(48px,7vw,84px) 0 0; margin-top: clamp(48px,7vw,90px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px,4vw,56px); }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; }
.footer-brand .brand-chip { width: 50px; height: 50px; }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-sub { color: rgba(255,255,255,.55); }
.site-footer .col h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-family: var(--body); font-weight: 700; margin: 0 0 1.1rem; }
.site-footer .col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.site-footer .col a:hover { color: #fff; }
.site-footer p.about-line { max-width: 38ch; font-size: .94rem; }
.footer-bottom { margin-top: clamp(34px,5vw,56px); border-top: 1px solid var(--border-2); padding: 1.4rem 0 2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom .disc { max-width: 60ch; }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.action-bar { position: fixed; inset: auto 0 0 0; z-index: 55; display: none; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); box-shadow: 0 -10px 30px -18px rgba(42,36,38,.45); }
.action-bar a { background: var(--surface); padding: .7rem 0 .9rem; display: flex; flex-direction: column; align-items: center; gap: .25rem; font-size: .72rem; font-weight: 700; color: var(--ink); }
.action-bar a svg { width: 21px; height: 21px; color: var(--ink-2); }
.action-bar a.primary { background: var(--gold); color: #2A2010; }
.action-bar a.primary svg { color: #2A2010; }

/* ============================================================
   reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .header-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .mirror { height: clamp(340px, 56vw, 460px); --arch: 150px; }
  .about-grid, .visit-grid, .enquire-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .header-cta .btn-gold { display: none; }
  .svc-track { grid-template-columns: 1fr; }
  .svc-track.swipe {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    gap: 14px; scrollbar-width: none;
  }
  .svc-track.swipe::-webkit-scrollbar { display: none; }
  .svc-track.swipe .svc { flex: 0 0 78%; scroll-snap-align: start; }
  .gallery { columns: 2; column-gap: 12px; }
  .gallery .gitem { margin-bottom: 12px; }
  .spa-grid { grid-template-columns: 1fr; }
  .spa-card { aspect-ratio: 16 / 11; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-cell:nth-child(3), .trust-cell:nth-child(4) { border-top: 1px solid var(--border); }
  .trust-cell:nth-child(3) { border-left: 0; }
  .field.row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .action-bar { display: grid; }
  body.has-actionbar { padding-bottom: 76px; }
  .hero-badge { left: 0; }
}

@media (max-width: 420px) {
  .mm-links a { font-size: 2rem; }
  .display { font-size: clamp(3rem, 17vw, 4rem); }
}
