/* ============================================================
   Studio ALOI — bespoke fine-jewellery atelier, Dubai (JLT)
   Editorial luxury system. Palette keyed to the brand logo:
   warm-paper ground · warm antique gold · lapis/navy accent.
   Mobile-first; verified at 375px.
   ============================================================ */

:root {
  /* Palette */
  --paper:      #FBFAF7;  /* warm gallery off-white ground */
  --paper-2:    #F4F0E8;  /* slightly deeper paper for bands */
  --surface:    #FFFFFF;  /* cards */
  --ink:        #1A1714;  /* warm near-black (logo wordmark) */
  --ink-soft:   #2C2722;
  --muted:      #6E665C;  /* secondary text */
  --muted-2:    #938A7D;
  --gold:       #A6803F;  /* antique gold (logo monogram) */
  --gold-soft:  #C2A56B;  /* lighter gold for hairlines/gradients */
  --gold-deep:  #8A6A31;
  --lapis:      #2C3E5C;  /* navy / lapis (logo tagline) */
  --lapis-deep: #1A2638;
  --border:     #E7E1D7;
  --border-2:   #DCD4C7;
  --dark:       #16130E;  /* warm near-black section ground */
  --dark-2:     #211C15;
  --focus:      #A6803F;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px;

  --shadow-soft: 0 1px 2px rgba(26,23,20,.04), 0 12px 36px -18px rgba(26,23,20,.22);
  --shadow-lift: 0 2px 6px rgba(26,23,20,.06), 0 30px 60px -28px rgba(26,23,20,.34);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(166,128,63,.22); color: var(--ink); }

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

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--paper2 { background: var(--paper-2); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; margin: 0; letter-spacing: .002em; }
.display {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.012em;
}
.display em { font-style: italic; color: var(--gold-deep); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.35rem); line-height: 1.08; }
.h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); }
.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  color: var(--muted);
  font-weight: 300;
}
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content: ""; width: 1.6rem; height: 1px; background: var(--gold); display: inline-block;
}

.section-head { max-width: 56ch; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 1rem; }
.section-head .lead { margin-top: 1.1rem; }

/* diamond divider (echoes logo hairline) */
.rule-diamond { display: flex; align-items: center; gap: 1rem; color: var(--gold); }
.rule-diamond::before, .rule-diamond::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--border-2)); }
.rule-diamond span { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper); --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 1.02rem 1.7rem; min-height: 48px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd); border-radius: var(--radius);
  cursor: pointer; transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--gold { --bg: var(--gold); --fg: #fff; --bd: var(--gold); }
.btn--gold:hover { --bg: var(--gold-deep); --bd: var(--gold-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--border-2); }
.btn--ghost:hover { --bd: var(--ink); }
.btn--light { --bg: transparent; --fg: var(--paper); --bd: rgba(251,250,247,.4); }
.btn--light:hover { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }
.btn--solid-light { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }

.link-arrow {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: .55rem;
  padding-bottom: .35rem; border-bottom: 1px solid var(--gold);
  transition: gap .3s ease, color .3s ease;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .3s ease; }
.link-arrow:hover { color: var(--gold-deep); gap: .85rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,247,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.site-header.is-stuck { border-bottom-color: var(--border); box-shadow: 0 8px 30px -24px rgba(26,23,20,.5); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 78px;
}
.brand { display: flex; align-items: center; gap: .72rem; }
.brand img { height: 40px; width: auto; }
.brand .wordmark {
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ink);
  padding-left: .06em;
  line-height: 1;
}
.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); list-style: none; margin: 0; padding: 0; }
.nav a {
  font-family: var(--sans); font-size: .82rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; padding: .35rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .35s ease;
}
.nav a:hover { color: var(--gold-deep); }
.nav a:hover::after { width: 100%; }
.header-cta { display: none; }

.burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; padding: 0; background: none; border: none; cursor: pointer;
}
.burger span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 55;
  background: var(--paper);
  padding: 6rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a {
  display: block; padding: 1.15rem .2rem;
  font-family: var(--serif); font-size: 1.85rem; font-weight: 500; color: var(--ink);
}
.mobile-nav a:hover { color: var(--gold-deep); }
.mobile-nav .mobile-actions { margin-top: auto; padding-top: 2rem; display: grid; gap: .8rem; }
.mobile-nav .mobile-meta { margin-top: 1.6rem; color: var(--muted); font-size: .85rem; letter-spacing: .04em; }
.mobile-nav .mobile-meta a { display: inline; font-family: var(--sans); font-size: inherit; padding: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr; }
.hero-media { position: relative; min-height: 64vh; background: #8E97A1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,19,14,.12), rgba(22,19,14,0) 30%);
}
.hero-copy {
  padding: clamp(2.6rem, 7vw, 5rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px; margin-inline: auto; width: 100%;
}
.hero-copy .display { margin-top: 1.3rem; }
.hero-copy .lead { margin-top: 1.5rem; max-width: 46ch; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-foot { margin-top: 2.4rem; display: flex; align-items: center; gap: .8rem; color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.hero-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--dark); color: var(--paper); }
.trust .container { padding-block: clamp(2.2rem, 4vw, 3rem); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.trust-item { padding: 1.3rem 0; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(251,250,247,.12); }
.trust-item:last-child { border-bottom: none; }
.trust-item .ti-icon { width: 34px; height: 34px; flex: none; color: var(--gold-soft); }
.trust-item .ti-icon svg { width: 100%; height: 100%; }
.trust-item h4 { font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); }
.trust-item p { margin: .2rem 0 0; font-size: .88rem; color: rgba(251,250,247,.62); line-height: 1.5; }

/* ============================================================
   BESPOKE JOURNEY
   ============================================================ */
.journey-intro { display: grid; gap: 2rem; align-items: end; }
.journey-intro .ji-side { display: flex; flex-direction: column; gap: 1.4rem; }
.steps { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); grid-template-columns: 1fr; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.step:hover .step-media img { transform: scale(1.05); }
.step-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.step-num { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gold-deep); letter-spacing: .04em; }
.step-body h3 { font-size: 1.45rem; }
.step-body p { margin: 0; color: var(--muted); font-size: .94rem; }
.journey-cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.4vw, 1.6rem); margin-top: clamp(2.4rem, 4vw, 3.4rem); }
.col-card {
  position: relative; display: block; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, border-color .5s ease;
}
.col-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--border-2); }
.col-media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper-2); }
.col-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.col-card:hover .col-media img { transform: scale(1.06); }
.col-card.is-text .col-media {
  display: grid; place-items: center; aspect-ratio: 1 / 1;
  background: radial-gradient(120% 120% at 50% 0%, #211C15, #16130E);
  color: var(--paper);
}
.col-card.is-text .col-monogram { font-family: var(--serif); font-size: 3.4rem; color: var(--gold-soft); line-height: 1; }
.col-body { padding: 1.35rem 1.4rem 1.5rem; }
.col-body h3 { font-size: 1.4rem; }
.col-body .col-desc { margin: .4rem 0 1rem; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.col-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.price-tag { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.col-enquire { font-family: var(--sans); font-size: .76rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: .4rem; }
.col-card:hover .col-enquire { color: var(--ink); }

/* Victory trio feature */
.trio { margin-top: clamp(2.6rem, 5vw, 4rem); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr; }
.trio-copy { padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.trio-shots { display: grid; grid-template-columns: repeat(3, 1fr); }
.trio-shot { position: relative; aspect-ratio: 3 / 4; background: var(--paper-2); overflow: hidden; }
.trio-shot img { width: 100%; height: 100%; object-fit: cover; }
.trio-shot span { position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem; font-family: var(--sans); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: linear-gradient(0deg, rgba(22,19,14,.7), transparent); text-align: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--dark); color: var(--paper); }
.gallery .eyebrow { color: var(--gold-soft); }
.gallery .eyebrow::before, .gallery .eyebrow::after { background: var(--gold-soft); }
.gallery .lead { color: rgba(251,250,247,.66); }
.gallery-grid { columns: 1; column-gap: clamp(.9rem, 2vw, 1.4rem); margin-top: clamp(2.4rem, 4vw, 3.4rem); }
.g-item {
  position: relative; break-inside: avoid; margin-bottom: clamp(.9rem, 2vw, 1.4rem);
  overflow: hidden; border-radius: var(--radius); cursor: pointer; background: #000;
  border: 1px solid rgba(251,250,247,.08);
}
.g-item img { width: 100%; height: auto; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), opacity .6s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem .95rem;
  background: linear-gradient(0deg, rgba(11,9,6,.86), rgba(11,9,6,.2) 60%, transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .45s ease, transform .45s ease;
}
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; transform: translateY(0); }
.g-cap h4 { font-family: var(--serif); font-size: 1.3rem; color: #fff; font-weight: 500; }
.g-cap p { margin: .15rem 0 0; font-size: .8rem; letter-spacing: .06em; color: var(--gold-soft); font-family: var(--sans); }
.g-item .g-plus { position: absolute; top: 1rem; right: 1rem; width: 30px; height: 30px; border: 1px solid rgba(251,250,247,.5); border-radius: 50%; display: grid; place-items: center; color: #fff; opacity: 0; transition: opacity .4s ease; }
.g-item:hover .g-plus { opacity: 1; }
.gallery-foot { margin-top: clamp(2.2rem, 4vw, 3rem); text-align: center; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(11,9,6,.94); display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox.is-open { display: flex; }
.lightbox-inner { position: relative; max-width: min(92vw, 900px); max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox img { max-width: 100%; max-height: 76vh; width: auto; border-radius: var(--radius); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.lightbox-cap { text-align: center; color: var(--paper); }
.lightbox-cap h4 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.lightbox-cap p { margin: .3rem 0 0; color: rgba(251,250,247,.6); font-size: .9rem; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(251,250,247,.08); border: 1px solid rgba(251,250,247,.25); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .3s ease; }
.lb-btn:hover { background: rgba(251,250,247,.2); }
.lb-prev { left: -4px; }
.lb-next { right: -4px; }
.lb-close { position: fixed; top: 1.4rem; right: 1.4rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(251,250,247,.08); border: 1px solid rgba(251,250,247,.25); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lb-close:hover { background: rgba(251,250,247,.2); }
@media (max-width: 640px){ .lb-prev{left:-2px} .lb-next{right:-2px} .lb-btn{width:44px;height:44px} }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; left: 1.1rem; bottom: 1.1rem; background: rgba(251,250,247,.92); backdrop-filter: blur(6px); padding: .7rem 1rem; border-radius: var(--radius); font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.about-copy .signature { margin-top: 2rem; font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--ink); }
.about-copy .signature-role { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
.about-quote { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.3; color: var(--ink); font-weight: 500; margin: 1.4rem 0; }
.about-quote em { color: var(--gold-deep); font-style: italic; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--paper-2); }
.visit-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.4rem); }
.visit-info { display: flex; flex-direction: column; gap: 1.7rem; }
.info-block h4 { font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .5rem; }
.info-block p, .info-block a { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.info-block a.tel { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.info-block a.tel:hover { color: var(--gold-deep); }
.socials { display: flex; gap: .8rem; }
.socials a { width: 44px; height: 44px; border: 1px solid var(--border-2); border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: background .3s ease, color .3s ease, border-color .3s ease; }
.socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.socials svg { width: 18px; height: 18px; }

/* map placeholder — honest, labelled */
.map-placeholder {
  position: relative; min-height: 230px; border: 1px dashed var(--border-2); border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(166,128,63,.05) 0 12px, transparent 12px 24px),
    var(--surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; text-align: center; padding: 1.5rem;
}
.map-placeholder .mp-pin { width: 34px; height: 34px; color: var(--gold); }
.map-placeholder .mp-label { font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.map-placeholder .mp-sub { font-size: .86rem; color: var(--muted-2); max-width: 34ch; }

/* form */
.enquiry { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); }
.enquiry .form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: .85rem .9rem; width: 100%; transition: border-color .3s ease, box-shadow .3s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(166,128,63,.12); }
.field--full { grid-column: 1 / -1; }
.enquiry .form-actions { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.enquiry .form-note { margin-top: 1rem; font-size: .8rem; color: var(--muted-2); line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.is-shown { display: block; }
.form-success .fs-icon { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(166,128,63,.12); color: var(--gold-deep); display: grid; place-items: center; }
.form-success h3 { font-size: 1.7rem; }
.form-success p { color: var(--muted); margin-top: .6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--paper); padding-block: clamp(3rem, 6vw, 4.5rem) 7.5rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
.footer-brand img { width: 180px; height: auto; filter: none; }
.footer-brand p { margin: 1.2rem 0 0; color: rgba(251,250,247,.6); font-size: .92rem; max-width: 34ch; line-height: 1.6; }
.footer-col h5 { font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: rgba(251,250,247,.72); font-size: .92rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { margin-top: clamp(2.4rem, 5vw, 3.4rem); padding-top: 1.6rem; border-top: 1px solid rgba(251,250,247,.12); display: flex; flex-direction: column; gap: 1rem; color: rgba(251,250,247,.5); font-size: .78rem; line-height: 1.6; }
.footer-bottom a { color: rgba(251,250,247,.7); }
.footer-bottom .fb-row { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(251,250,247,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px -20px rgba(26,23,20,.4);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem;
  padding: .65rem .4rem; min-height: 60px;
  font-family: var(--sans); font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.action-bar a + a { border-left: 1px solid var(--border); }
.action-bar a.is-primary { background: var(--ink); color: var(--paper); }
.action-bar svg { width: 19px; height: 19px; }

/* ============================================================
   REVEAL ANIMATIONS (only when JS active)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .step, .col-card, .g-item img, .step-media img, .col-media img { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .trust-grid { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .trust-item { border-bottom: 1px solid rgba(251,250,247,.12); }
  .steps { grid-template-columns: 1fr 1fr; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .enquiry .form-row { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 0 1 auto; }
}

@media (min-width: 880px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
  .hero-grid { grid-template-columns: 1.04fr 1fr; min-height: min(86vh, 820px); }
  .hero-media { min-height: 100%; }
  .hero-copy { padding-block: 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; padding-block: 0; flex-direction: column; align-items: flex-start; gap: .8rem; }
  .journey-intro { grid-template-columns: 1.1fr .9fr; }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .gallery-grid { columns: 3; }
  .collections-grid { grid-template-columns: repeat(4, 1fr); }
  .trio { grid-template-columns: 1fr 1.1fr; }
  .about-grid { grid-template-columns: .9fr 1.1fr; }
  .visit-grid { grid-template-columns: 1fr 1.1fr; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
  .site-footer { padding-bottom: clamp(3rem, 6vw, 4.5rem); }
  .action-bar { display: none; }
  body { padding-bottom: 0 !important; }
}

@media (min-width: 880px) and (max-width: 1100px){
  .steps { grid-template-columns: repeat(5, 1fr); gap: .8rem; }
  .step-body { padding: 1.1rem; }
  .step-body h3 { font-size: 1.2rem; }
}

/* keep content clear of mobile action bar */
@media (max-width: 879px){ body { padding-bottom: 60px; } }
