/* =========================================================================
   DAVAL JEWELS — Showcase site
   Palette keyed to the brand logo: pearl ground, onyx ink, single warm-gold
   hairline accent. Gallery-white, airy, restrained. Mobile-first.
   ========================================================================= */

:root {
  --bg:        #FBFAF8;   /* pearl near-white */
  --surface:   #FFFFFF;
  --surface-2: #F4F1EC;   /* warm panel */
  --text:      #1A1A1A;   /* near-black ink */
  --muted:     #6E6E6E;
  --muted-2:   #8C8579;
  --primary:   #1F1F1F;   /* onyx */
  --gold:      #B98C46;   /* logo gold facet — hairlines, decoration */
  --gold-deep: #9E7636;   /* AA-safe gold for links/labels/focus on white */
  --border:    #E7E3DC;
  --border-2:  #D9D3C8;
  --focus:     #9E7636;

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

  --maxw: 1240px;
  --gutter: 22px;
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,.04), 0 2px 8px rgba(26,26,26,.04);
  --shadow-md: 0 10px 30px rgba(26,26,26,.08), 0 2px 8px rgba(26,26,26,.05);
  --shadow-lg: 0 24px 60px rgba(26,26,26,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 66px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* ----------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 64px 0; }
.section--tight { padding: 48px 0; }
section { scroll-margin-top: var(--header-h); }

/* ------------------------------------------------------------- typography */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 { font-family: var(--ff-display); font-weight: 500; color: var(--text); margin: 0; line-height: 1.08; letter-spacing: .005em; }
.display { font-size: clamp(2.6rem, 9vw, 5.2rem); font-weight: 500; line-height: 1.02; }
.h-sec { font-size: clamp(2rem, 6.4vw, 3.4rem); }
.h-card { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 500; }
.lede { font-size: clamp(1.02rem, 2.6vw, 1.18rem); color: var(--muted); font-weight: 300; max-width: 60ch; }
.muted { color: var(--muted); }
.serif-quote { font-family: var(--ff-display); font-style: italic; font-weight: 400; }

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

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 26px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--dark { background: var(--primary); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--text); background: var(--text); color: #fff; }
.btn--gold { background: var(--gold-deep); color: #fff; }
.btn--gold:hover { background: #87642d; transform: translateY(-1px); }
.btn--wa { background: #1f9d57; color: #fff; }
.btn--wa:hover { background: #178248; transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--text); }
.btn--light:hover { background: var(--bg); transform: translateY(-1px); }
.btn--outline-light { background: rgba(255,255,255,.06); color:#fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--outline-light:hover { background:#fff; color: var(--text); }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 11.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text);
  padding-bottom: 4px; border-bottom: 1px solid var(--gold);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--gold-deep); }

/* ------------------------------------------------------------------ header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(251,250,248,.86);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 0 rgba(26,26,26,.02); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; transition: height .3s var(--ease); }

.nav { display: none; }
.nav a {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); font-weight: 400;
  padding: 6px 2px; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--gold); transition: right .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { right: 0; }

.header-cta { display: none; align-items: center; gap: 10px; flex: none; }

.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; background: transparent; border: 1px solid var(--border-2); border-radius: var(--radius);
}
.hamburger span { width: 20px; height: 1.4px; background: var(--text); margin: 0 auto; transition: transform .3s var(--ease), opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 55; visibility: hidden;
}
.drawer__scrim { position: absolute; inset: 0; background: rgba(26,26,26,.4); opacity: 0; transition: opacity .3s var(--ease); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 360px);
  background: var(--surface); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .38s var(--ease);
  display: flex; flex-direction: column; padding: calc(var(--header-h) + 14px) 28px 28px;
  overflow-y: auto;
}
.drawer.open { visibility: visible; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__panel a.dnav {
  font-family: var(--ff-display); font-size: 1.7rem; font-weight: 500; color: var(--text);
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.drawer__panel a.dnav:last-of-type { border-bottom: 0; }
.drawer__actions { margin-top: auto; display: grid; gap: 10px; padding-top: 24px; }

/* ------------------------------------------------------------------- hero */
.hero { position: relative; height: 100svh; min-height: 600px; max-height: 920px; overflow: hidden; background: #0d0d0d; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease);
  background-size: cover; background-position: center;
}
.hero__slide.active { opacity: 1; }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.42) 38%, rgba(10,10,12,.06) 70%, rgba(10,10,12,0) 100%),
    linear-gradient(0deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,0) 38%);
}
@media (min-width: 760px){
  .hero__slide::after {
    background:
      linear-gradient(90deg, rgba(10,10,12,.66) 0%, rgba(10,10,12,.34) 42%, rgba(10,10,12,0) 78%),
      linear-gradient(0deg, rgba(10,10,12,.38) 0%, rgba(10,10,12,0) 30%);
  }
}
.hero__inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 92px;
}
@media (min-width: 760px){ .hero__inner { justify-content: center; padding-bottom: 0; } }
.hero__content { max-width: 640px; color: #fff; }
.hero .eyebrow { color: #e7c98c; }
.hero .eyebrow::before { background: #d6b06a; }
.hero__title { color: #fff; font-size: clamp(2.7rem, 8.5vw, 5.4rem); font-weight: 500; line-height: 1.0; margin-bottom: 18px; }
.hero__title em { font-style: italic; color: #f0dcb4; }
.hero__sub { font-size: clamp(1rem, 2.5vw, 1.22rem); color: rgba(255,255,255,.9); font-weight: 300; max-width: 46ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__dots { position: absolute; z-index: 3; left: var(--gutter); bottom: 30px; display: flex; gap: 10px; }
@media (min-width:760px){ .hero__dots { left: 50%; transform: translateX(-50%); } }
.hero__dot { width: 30px; height: 3px; background: rgba(255,255,255,.34); border: 0; padding: 0; border-radius: 2px; transition: background .3s; }
.hero__dot.active { background: #f0dcb4; }
.hero__arrows { position: absolute; z-index: 3; right: var(--gutter); bottom: 26px; display: none; gap: 8px; }
@media (min-width:760px){ .hero__arrows { display: flex; } }
.hero__arrow { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.06); color:#fff; border-radius: 50%; display: grid; place-items: center; transition: background .3s, color .3s; backdrop-filter: blur(4px); }
.hero__arrow:hover { background:#fff; color: var(--text); }
.hero__arrow svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------- trust strip */
.trust { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 22px 40px; padding: 26px 0;
}
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.trust__item img { height: 38px; width: auto; opacity: .9; }
.trust__item .t-label { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; }
.trust__sep { width: 1px; height: 30px; background: var(--border-2); display: none; }
@media (min-width: 720px){ .trust__sep { display: block; } }

/* ------------------------------------------------------------- collections */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 4px 0 34px; }
.chip {
  min-height: 40px; padding: 0 18px; background: transparent; color: var(--muted);
  border: 1px solid var(--border-2); border-radius: 100px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.grid-coll {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px){ .grid-coll { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1000px){ .grid-coll { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.card__media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); cursor: zoom-in; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text);
  background: rgba(255,255,255,.92); padding: 5px 10px; border-radius: 100px;
}
.card__zoom {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
  background: linear-gradient(0deg, rgba(26,26,26,.18), rgba(26,26,26,0) 55%);
  transition: opacity .35s var(--ease);
}
.card__media:hover .card__zoom { opacity: 1; }
.card__zoom span { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.card__zoom svg { width: 18px; height: 18px; color: var(--text); }
.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__cat { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.card__name { font-family: var(--ff-display); font-size: 1.28rem; font-weight: 500; line-height: 1.12; }
.card__spec { font-size: 12.5px; color: var(--muted); margin-bottom: 12px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card__price { font-size: 12px; letter-spacing: .06em; color: var(--muted-2); text-transform: uppercase; }
.card__enq {
  display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 0 14px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: #1f9d57;
  border: 0; border-radius: var(--radius); transition: background .25s var(--ease);
}
.card__enq:hover { background: #178248; }
.card__enq svg { width: 15px; height: 15px; }
.coll-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 40px 0; }

/* --------------------------------------------------------------- split row */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 860px){ .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split--media-right .split__media { order: 2; } }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-sm); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--wide { aspect-ratio: 4/3; }

.values { display: grid; gap: 18px; margin-top: 26px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value__ico { flex: none; width: 44px; height: 44px; border: 1px solid var(--border-2); border-radius: 50%; display: grid; place-items: center; color: var(--gold-deep); }
.value__ico svg { width: 20px; height: 20px; }
.value h3 { font-family: var(--ff-sans); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; font-weight: 400; margin-bottom: 3px; }
.value p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ------------------------------------------------------------- feature band */
.feature {
  position: relative; min-height: 78svh; display: flex; align-items: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.feature::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(8,8,10,.74), rgba(8,8,10,.32) 55%, rgba(8,8,10,.05)); }
.feature__inner { position: relative; z-index: 2; color: #fff; max-width: 620px; padding: 72px 0; }
.feature .eyebrow { color: #e7c98c; }
.feature .eyebrow::before { background: #d6b06a; }
.feature h2 { color: #fff; }
.feature .serif-quote { font-size: clamp(1.6rem, 5vw, 2.6rem); line-height: 1.22; color: #fff; }
.feature__attr { margin-top: 18px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #d6b06a; }

/* ------------------------------------------------------------------ stats / values mini */
.vmv { display: grid; gap: 18px; }
@media (min-width: 820px){ .vmv { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.vmv__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.vmv__card .num { font-family: var(--ff-display); font-size: 1.1rem; color: var(--gold-deep); letter-spacing: .2em; }
.vmv__card h3 { font-family: var(--ff-display); font-size: 1.6rem; margin: 8px 0 10px; }
.vmv__card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ----------------------------------------------------------- virtual tour */
.tour { background: var(--surface-2); }
.tour__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px){ .tour__grid { grid-template-columns: 1.05fr .95fr; gap: 52px; } }
.tour__media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tour__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.tour__media img:first-child { margin-top: 22px; }
.tour ul.ticks { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 12px; }
.tour ul.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.tour ul.ticks svg { width: 18px; height: 18px; color: var(--gold-deep); flex: none; margin-top: 3px; }

/* ---------------------------------------------------------------- reviews */
.reviews { text-align: center; }
.reviews__badge { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 22px; height: 22px; }
.reviews__meta { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.reviews__grid { display: grid; gap: 18px; margin-top: 36px; text-align: left; }
@media (min-width: 820px){ .reviews__grid { grid-template-columns: repeat(3,1fr); gap: 22px; } }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
}
.review .mark { font-family: var(--ff-display); font-size: 3rem; line-height: .6; color: var(--gold); height: 26px; }
.review p { margin: 0; font-size: 14.5px; color: #2c2c2c; font-weight: 300; }
.review .who { margin-top: auto; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.review .who b { color: var(--text); font-weight: 500; }

/* --------------------------------------------------------------------- b2b */
.b2b { background: var(--primary); color: #fff; }
.b2b__grid { display: grid; gap: 22px; align-items: center; }
@media (min-width: 820px){ .b2b__grid { grid-template-columns: 1.4fr 1fr; gap: 40px; } }
.b2b .eyebrow { color: #e7c98c; }
.b2b .eyebrow::before { background: #d6b06a; }
.b2b h2 { color: #fff; }
.b2b p { color: rgba(255,255,255,.74); }
.b2b__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 820px){ .b2b__actions { justify-content: flex-end; } }

/* ------------------------------------------------------------------- visit */
.visit__grid { display: grid; gap: 30px; }
@media (min-width: 920px){ .visit__grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.info-list { display: grid; gap: 22px; margin: 26px 0; }
.info { display: flex; gap: 16px; align-items: flex-start; }
.info__ico { flex: none; width: 42px; height: 42px; border: 1px solid var(--border-2); border-radius: 50%; display: grid; place-items: center; color: var(--gold-deep); }
.info__ico svg { width: 19px; height: 19px; }
.info h3 { font-family: var(--ff-sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400; color: var(--muted); margin-bottom: 5px; }
.info p, .info a { margin: 0; font-size: 15.5px; color: var(--text); }
.info a:hover { color: var(--gold-deep); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.map-ph {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; height: 100%;
  background:
    repeating-linear-gradient(45deg, #efece6 0 14px, #f5f2ed 14px 28px);
  border: 1px solid var(--border); display: grid; place-items: center; text-align: center;
}
.map-ph__pin { width: 56px; height: 56px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-md); display: grid; place-items: center; margin: 0 auto 16px; color: var(--gold-deep); }
.map-ph__pin svg { width: 26px; height: 26px; }
.map-ph__label { font-family: var(--ff-sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.map-ph__addr { font-family: var(--ff-display); font-size: 1.4rem; margin: 6px auto 14px; max-width: 26ch; }
.map-ph .micro { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); position: absolute; bottom: 14px; left: 0; right: 0; }

/* ------------------------------------------------------------------- form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--ff-sans); font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 13px 14px; width: 100%; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); }
.form-note { font-size: 12px; color: var(--muted-2); margin: 10px 0 0; }
.form-row { display: grid; gap: 14px; }
@media (min-width: 560px){ .form-row { grid-template-columns: 1fr 1fr; } }

/* ----------------------------------------------------------------- footer */
.footer { background: #141414; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer__top { display: grid; gap: 36px; padding-bottom: 44px; }
@media (min-width: 760px){ .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 30px; } }
.footer__brand img { height: 64px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer h4 { font-family: var(--ff-sans); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: #fff; font-weight: 400; margin: 0 0 16px; }
.footer__col a, .footer__col p { display: block; font-size: 14px; color: rgba(255,255,255,.66); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: #e7c98c; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.8); transition: all .25s var(--ease); }
.socials a:hover { background: #e7c98c; color: #141414; border-color: #e7c98c; }
.socials svg { width: 17px; height: 17px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 34px; display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between; }
.footer__bottom p { margin: 0; font-size: 12px; color: rgba(255,255,255,.45); }
.footer__bottom .legal { display: flex; gap: 18px; }
.footer__bottom a { font-size: 12px; color: rgba(255,255,255,.55); }
.footer__bottom a:hover { color: #e7c98c; }

/* ------------------------------------------------------- floating + mobile bar */
.fab {
  position: fixed; right: 16px; bottom: 84px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%; background: #1f9d57; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), background .25s;
}
.fab:hover { background: #178248; transform: scale(1.06); }
.fab svg { width: 28px; height: 28px; }
@media (min-width: 860px){ .fab { bottom: 24px; right: 24px; } }

.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -2px 12px rgba(26,26,26,.06);
}
.mobilebar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 60px; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text);
  border-right: 1px solid var(--border);
}
.mobilebar a:last-child { border-right: 0; }
.mobilebar a svg { width: 20px; height: 20px; }
.mobilebar a.wa { color: #1f9d57; }
@media (min-width: 860px){ .mobilebar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 859px){ body { padding-bottom: 60px; } .footer { padding-bottom: 0; } }

@media (max-width: 600px){
  .hero { min-height: 620px; height: 92svh; }
  .hero__inner {
    justify-content: center;
    padding-top: calc(var(--header-h) + 34px);
    padding-bottom: 82px;
  }
  .hero__title { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .hero__actions .btn { width: 100%; }
}

/* ----------------------------------------------------------------- modal */
.modal { position: fixed; inset: 0; z-index: 80; display: none; }
.modal.open { display: block; }
.modal__scrim { position: absolute; inset: 0; background: rgba(20,20,20,.6); backdrop-filter: blur(3px); }
.modal__panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(560px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px 26px;
}
.modal__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); display: grid; place-items: center; }
.modal__close svg { width: 18px; height: 18px; }
.modal__piece { display: flex; gap: 14px; align-items: center; padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; }
.modal__piece img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); }
.modal__piece .pn { font-family: var(--ff-display); font-size: 1.3rem; line-height: 1.1; }
.modal__piece .pc { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }

/* --------------------------------------------------------------- lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; display: none; }
.lightbox.open { display: grid; place-items: center; }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(12,12,12,.92); }
.lightbox__img { position: relative; max-width: min(92vw, 760px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__cap { position: relative; color: #fff; text-align: center; margin-top: 16px; font-family: var(--ff-display); font-size: 1.3rem; }
.lightbox__cap small { display: block; font-family: var(--ff-sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #d6b06a; margin-top: 4px; }
.lightbox__close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; z-index: 2; }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color:#fff; display: grid; place-items: center; z-index: 2; }
.lightbox__nav.prev { left: 14px; } .lightbox__nav.next { right: 14px; }
.lightbox__nav svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------- reveal fx */
.reveal { opacity: 0; transform: translateY(24px); 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; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__slide { transition: none; }
  .card__media img, .card { transition: none; }
}

/* big nav for tablets up */
@media (min-width: 1000px){
  :root { --header-h: 84px; }
  .nav { display: flex; gap: 30px; }
  .header-cta { display: flex; }
  .hamburger { display: none; }
  .brand img { height: 50px; }
  .section { padding: 96px 0; }
}
@media (min-width: 760px) and (max-width: 999px){
  .header-cta { display: flex; }
  .header-cta .btn--ghost { display: none; }
}
