/* ===========================================================================
   CELINNI · Gold & Diamond Park, Dubai — design system
   Logo-keyed palette: warm ivory canvas · charcoal ink · thin champagne-gold
   Type: Cormorant Garamond (display) · Jost (sans / labels)
   =========================================================================== */

:root {
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --surface-2: #F4F1EA;
  --text: #1A1714;
  --muted: #6E665C;
  --primary: #1A1612;
  --secondary: #A9853F;     /* champagne gold — accents / hairlines / caps */
  --accent: #8A6A2E;        /* deeper gold — CTA family, AA on ivory */
  --accent-hover: #6F551F;
  --border: #EAE4D9;
  --border-strong: #DDD4C4;
  --focus: #8A6A2E;

  --gem-sapphire: #2A4A8C;
  --gem-ruby: #9B2335;
  --gem-emerald: #1F6B4E;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(26, 23, 20, 0.04);
  --shadow-md: 0 18px 48px -28px rgba(26, 23, 20, 0.32);
  --shadow-lg: 0 40px 90px -50px rgba(26, 23, 20, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -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; }

::selection { background: var(--secondary); color: #fff; }

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

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 132px) 0; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--secondary);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--secondary);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--primary); margin: 0; line-height: 1.05; letter-spacing: -0.01em; }

.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
}
.h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}
.muted { color: var(--muted); }

.section-head { max-width: 64ch; }
.section-head .h2 { margin: 18px 0 0; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 48px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold { background: var(--accent); color: #fff; }
.btn--gold:hover { background: var(--accent-hover); }

.btn--ink { background: var(--primary); color: #FBFAF7; }
.btn--ink:hover { background: #000; }

.btn--ghost { background: transparent; color: var(--primary); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--primary); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--wa { background: #fff; color: var(--primary); border-color: var(--border-strong); }
.btn--wa:hover { border-color: var(--primary); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}
.link-arrow svg { transition: transform .4s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.link-arrow .ico-gold { color: var(--accent); }

/* ============================ ANNOUNCEMENT ============================ */
.topbar {
  background: var(--primary);
  color: #E8E1D4;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  font-weight: 400;
}
.topbar b { color: var(--secondary); font-weight: 500; }

/* ============================ NAVBAR ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.nav--scrolled { border-color: var(--border); background: rgba(251, 250, 247, 0.95); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 84px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 62px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .4s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  margin-right: -8px;
  color: var(--primary);
}
.nav__toggle svg { display: block; }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.drawer.open { pointer-events: auto; visibility: visible; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(26, 22, 18, 0.5);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.drawer.open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--bg);
  padding: 26px 28px calc(28px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer__head img { height: 52px; }
.drawer__close { background: none; border: none; color: var(--primary); padding: 8px; margin: -8px; }
.drawer__links { display: flex; flex-direction: column; gap: 2px; }
.drawer__link {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.drawer__actions { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.drawer__actions .btn { width: 100%; }

/* ============================ HERO ============================ */
.hero { position: relative; }
.hero__media {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,17,14,.78) 0%, rgba(20,17,14,.32) 38%, rgba(20,17,14,.12) 64%, rgba(20,17,14,.34) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 7vw, 92px);
  color: #fff;
}
.hero .eyebrow { color: #E7CE97; }
.hero .eyebrow::before { background: #E7CE97; }
.hero__title {
  color: #fff;
  font-size: clamp(2.9rem, 7.4vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 20px 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: #F0DDB5; }
.hero__sub {
  margin: 22px 0 34px;
  max-width: 46ch;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.hero__cues {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(48px, 7vw, 92px);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ============================ TRUST STRIP ============================ */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  padding: clamp(26px, 3vw, 40px) clamp(18px, 2.4vw, 34px);
  text-align: center;
  border-left: 1px solid var(--border);
}
.trust__item:first-child { border-left: none; }
.trust__ico { color: var(--accent); margin: 0 auto 14px; height: 26px; }
.trust__t { font-family: var(--serif); font-size: 1.18rem; color: var(--primary); margin: 0 0 4px; }
.trust__d { font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; margin: 0; line-height: 1.55; }

/* ============================ COLLECTION CARDS ============================ */
.collgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  margin-top: clamp(40px, 5vw, 64px);
}
.cc {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}
.cc--feature { grid-column: 1 / -1; aspect-ratio: 23 / 9; }
.cc__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.cc:hover .cc__img { transform: scale(1.06); }
.cc__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,14,.66) 0%, rgba(20,17,14,.1) 50%, rgba(20,17,14,0) 100%);
}
.cc__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(18px, 2vw, 28px);
  color: #fff;
}
.cc__name { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.85rem); color: #fff; margin: 0; }
.cc__view {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #F0DDB5; margin-top: 8px; display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.cc:hover .cc__view { opacity: 1; transform: translateY(0); }
.cc--feature .cc__name { font-size: clamp(1.6rem, 3vw, 2.6rem); }

/* ============================ PRODUCT SHOWCASE ============================ */
.shop__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(32px, 4vw, 48px);
}
.filter {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  min-height: 40px;
  transition: all .3s var(--ease);
}
.filter:hover { color: var(--primary); border-color: var(--primary); }
.filter.active { background: var(--primary); color: #FBFAF7; border-color: var(--primary); }

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 30px);
  margin-top: clamp(32px, 4vw, 52px);
}
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease);
}
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-strong); }
.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  overflow: hidden;
}
.pcard__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  background: rgba(251,250,247,.92); color: var(--accent);
  padding: 6px 11px; border-radius: 100px;
}
.pcard__gem {
  position: absolute; top: 14px; right: 14px;
  width: 11px; height: 11px; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,.85);
}
.pcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__coll { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--secondary); margin: 0 0 7px; font-weight: 500; }
.pcard__name { font-family: var(--serif); font-size: 1.35rem; line-height: 1.15; color: var(--primary); margin: 0; }
.pcard__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 9px 0 18px; flex: 1; }
.pcard__enq {
  margin-top: auto;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: var(--primary);
  background: none; border: none; border-top: 1px solid var(--border);
  padding: 14px 0 2px; min-height: 0;
  transition: color .3s var(--ease);
}
.pcard__enq svg { color: var(--accent); transition: transform .35s var(--ease); }
.pcard__enq:hover { color: var(--accent); }
.pcard__enq:hover svg { transform: translateX(4px); }

/* ============================ SIGNATURE COLLECTIONS ============================ */
.sig { background: var(--primary); color: #F4EFE4; }
.sig .eyebrow { color: var(--secondary); }
.sig .eyebrow::before, .sig .eyebrow--center::after { background: var(--secondary); }
.sig h2 { color: #FBFAF7; }
.sig__lead { color: rgba(244,239,228,.74); }
.sig__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 5vw, 64px);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.sigcard {
  background: var(--primary);
  padding: clamp(30px, 3.4vw, 50px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  transition: background .5s var(--ease);
  position: relative;
}
.sigcard:hover { background: #221d18; }
.sigcard__no { font-size: 12px; letter-spacing: 0.2em; color: var(--secondary); font-weight: 500; }
.sigcard__name { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: #FBFAF7; margin: 10px 0 6px; }
.sigcard__name em { font-style: italic; color: #E7CE97; }
.sigcard__d { font-size: 13.5px; color: rgba(244,239,228,.66); line-height: 1.6; margin: 0; }
.sigcard__arrow { color: var(--secondary); opacity: 0; transform: translateX(-6px); transition: all .4s var(--ease); }
.sigcard:hover .sigcard__arrow { opacity: 1; transform: translateX(0); }

/* ============================ BESPOKE ============================ */
.bespoke__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: clamp(30px, 4vw, 70px);
}
.bespoke__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.bespoke__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bespoke__frame {
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.bespoke__body { align-self: center; padding: clamp(8px, 2vw, 24px) 0; }
.bespoke__steps { list-style: none; margin: 30px 0 34px; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.bespoke__steps li { display: flex; gap: 18px; align-items: baseline; }
.bespoke__num {
  font-family: var(--serif); font-size: 1.2rem; color: var(--accent);
  border: 1px solid var(--border-strong); border-radius: 50%;
  width: 40px; height: 40px; min-width: 40px;
  display: inline-flex; align-items: center; justify-content: center;
}
.bespoke__st { font-family: var(--serif); font-size: 1.25rem; color: var(--primary); margin: 0 0 2px; }
.bespoke__sd { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ============================ VISIT ============================ */
.visit { background: var(--surface-2); }
.visit__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: stretch;
}
.visit__info { align-self: center; }
.contact-list { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; }
.contact-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 1px solid var(--border); }
.contact-list__ico { color: var(--accent); margin-top: 2px; }
.contact-list__k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; font-weight: 500; }
.contact-list__v { font-size: 1.05rem; color: var(--primary); margin: 0; line-height: 1.5; }
.contact-list__v a { border-bottom: 1px solid var(--border-strong); transition: border-color .3s; }
.contact-list__v a:hover { border-color: var(--accent); }
.tbc { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--surface); border: 1px solid var(--border); padding: 3px 9px; border-radius: 100px; display: inline-block; margin-left: 6px; }

.map-ph {
  position: relative;
  min-height: 440px;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, var(--surface) 0, var(--surface) 14px, #F7F4EC 14px, #F7F4EC 28px);
  border: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 14px;
}
.map-ph__pin { color: var(--accent); }
.map-ph__t { font-family: var(--serif); font-size: 1.5rem; color: var(--primary); margin: 0; }
.map-ph__d { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0; max-width: 30ch; line-height: 1.6; }
.map-ph__note { position: absolute; bottom: 16px; left: 0; right: 0; font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ============================ ENQUIRY FORM / MODAL ============================ */
.modal {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  visibility: hidden; pointer-events: none;
}
.modal.open { visibility: visible; pointer-events: auto; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(26,22,18,.6);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.modal.open .modal__scrim { opacity: 1; }
.modal__card {
  position: relative;
  background: var(--bg);
  width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 46px);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.modal.open .modal__card { transform: translateY(0) scale(1); opacity: 1; }
.modal__close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--muted); padding: 8px; transition: color .3s; }
.modal__close:hover { color: var(--primary); }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 13px 15px;
  min-height: 48px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(138,106,46,.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E665C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.55; margin: 4px 0 18px; }
.form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.form-actions .btn { width: 100%; }
.form-success { text-align: center; padding: 20px 0; }
.form-success__ico { color: var(--accent); margin: 0 auto 18px; }

/* ============================ FOOTER ============================ */
.footer { background: var(--primary); color: #C9C0B2; padding: clamp(56px, 7vw, 88px) 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(44px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo img { height: 76px; width: auto; filter: brightness(0) invert(1); opacity: .96; }
.footer__about { font-size: 14px; line-height: 1.7; color: rgba(201,192,178,.78); margin: 22px 0 0; max-width: 38ch; }
.footer__attr { font-size: 11.5px; color: rgba(201,192,178,.5); margin-top: 14px; font-style: italic; }
.footer__col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--secondary); margin: 0 0 20px; font-weight: 500; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer__col a { font-size: 14px; color: rgba(201,192,178,.82); transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__contact p { font-size: 14px; line-height: 1.7; margin: 0 0 12px; color: rgba(201,192,178,.82); }
.footer__contact a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: rgba(201,192,178,.82);
  transition: all .3s var(--ease);
}
.socials a:hover { border-color: var(--secondary); color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 24px 0 calc(28px + env(safe-area-inset-bottom));
  font-size: 11.5px; letter-spacing: 0.04em; color: rgba(201,192,178,.55);
}
.footer__bottom .fine { max-width: 70ch; line-height: 1.6; }

/* ============================ WHATSAPP FAB ============================ */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 55;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.5);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.07); }

/* ============================ MOBILE ACTION BAR ============================ */
.mbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 56;
  background: rgba(251,250,247,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}
.mbar__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 52px; border-radius: var(--radius); border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--primary);
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}
.mbar__btn--gold { background: var(--accent); color: #fff; border-color: var(--accent); flex-direction: row; gap: 7px; }
.mbar__btn svg { display: block; }

/* ============================ REVEAL ANIMATION ============================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__media img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__actions .btn-desktop { display: none; }
  .nav__toggle { display: inline-flex; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(odd) { border-left: none; }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--border); }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .sig__grid { grid-template-columns: 1fr 1fr; }
  .bespoke__grid, .visit__grid { grid-template-columns: 1fr; }
  .bespoke__media { min-height: 360px; }
  .collgrid { grid-template-columns: repeat(2, 1fr); }
  .cc { aspect-ratio: 4 / 5; }
  .cc--feature { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sig__grid { grid-template-columns: 1fr; }
  .mbar { display: grid; }
  .fab { bottom: calc(76px + env(safe-area-inset-bottom)); right: 16px; width: 52px; height: 52px; }
  .pcard__body { padding: 15px 15px 18px; }
  .pcard__name { font-size: 1.15rem; }
  .pcard__desc { font-size: 12.5px; }
  .hero__cues { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .form-grid2 { grid-template-columns: 1fr; }
  body.has-mbar { padding-bottom: 0; }
}
@media (max-width: 420px) {
  .nav__inner { height: 70px; }
  .nav__logo img { height: 50px; }
  .pgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pcard__media { aspect-ratio: 1 / 1; }
  .trust__t { font-size: 1.05rem; }
}
