/* ============================================================
   Lifestyle Fine Jewellery — Al Garhoud Showroom Showcase
   Palette sampled from media/logo.webp (champagne→antique 18K
   gold on warm ivory) + real product/material evidence.
   ============================================================ */

:root {
  --bg:        #FBFAF6; /* warm ivory paper (logo ground) */
  --surface:   #FFFFFF; /* cards / product tiles */
  --surface-2: #F4F0E7; /* sunken panels */
  --ink:       #1C1A17; /* near-black warm ink */
  --muted:     #6E665B; /* secondary text */
  --gold:      #B89546; /* champagne gold — primary CTA/links */
  --gold-deep: #9A7B2E; /* antique gold — emphasis/hairlines */
  --gold-soft: #D5C290; /* lit-facet highlight */
  --border:    #EAE3D2; /* hairline on ivory */
  --ink-2:     #2A2722;
  --focus:     #9A7B2E;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 56px);

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

  --shadow-sm: 0 1px 2px rgba(28,26,23,.04), 0 2px 8px rgba(28,26,23,.04);
  --shadow-md: 0 8px 30px rgba(28,26,23,.08);
  --shadow-lg: 0 24px 60px rgba(28,26,23,.14);

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

* { 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(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* ---------- typography helpers ---------- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(11px, 1vw, 12.5px);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.section-head { max-width: 640px; }
.section-head .eyebrow { margin-bottom: 16px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: .005em; }
h2.title { font-size: clamp(30px, 4.6vw, 52px); color: var(--ink); }
h2.title em { font-style: italic; color: var(--gold-deep); }
.lead { color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); margin: 18px 0 0; max-width: 56ch; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
section { position: relative; }
.pad { padding-block: clamp(64px, 9vw, 124px); }

.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); border: 0; margin: 0; }

/* gold divider mark */
.gold-rule { display:flex; align-items:center; gap:14px; color:var(--gold); }
.gold-rule::before, .gold-rule::after { content:""; height:1px; flex:1; background:var(--border); }
.gold-rule span { width:6px; height:6px; background:var(--gold); transform:rotate(45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content:center; gap: 9px;
  font-family: var(--sans); font-weight: 500;
  font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 2px; border: 1px solid transparent;
  transition: all .35s var(--ease); white-space: nowrap; min-height: 48px;
}
.btn svg { width: 17px; height: 17px; flex:none; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(184,149,70,.28); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(154,123,46,.34); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(184,149,70,.05); }
.btn-ghost-light { background: rgba(255,255,255,.1); color:#fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color:#fff; transform: translateY(-2px); }
.btn-wa { background: #1FA855; color:#fff; }
.btn-wa:hover { background:#178a45; transform: translateY(-2px); }
.btn-sm { padding: 11px 18px; font-size: 12px; min-height: 42px; }

.link-arrow {
  display:inline-flex; align-items:center; gap:8px; font-weight:500;
  font-size: 13px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-deep);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow svg { width:16px; height:16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold); gap: 13px; }

/* ============================================================
   ANNOUNCEMENT + HEADER
   ============================================================ */
.topbar {
  background: var(--ink); color: #E9E2D2;
  font-size: 12px; letter-spacing: .08em;
}
.topbar .wrap { display:flex; align-items:center; justify-content:space-between; min-height: 38px; gap: 16px; }
.topbar a { color: #E9E2D2; transition: color .3s; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .tb-left { display:flex; align-items:center; gap:9px; }
.topbar .tb-dot { width:5px; height:5px; background: var(--gold); transform: rotate(45deg); flex:none; }
.topbar .tb-right { display:flex; gap:22px; }
@media (max-width: 720px){ .topbar .tb-right { display:none; } .topbar .wrap{ justify-content:center; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,246,.86);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s, background .4s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); background: rgba(251,250,246,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 104px; gap: 20px; }
.brand { display:flex; align-items:center; gap: 12px; flex: none; }
.brand img { width: 88px; height: 88px; object-fit: contain; }
.brand .bt { line-height: 1; }
.brand .bt b { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: .14em; display:block; color: var(--ink); }
.brand .bt small { font-family: var(--sans); font-weight: 400; font-size: 9.5px; letter-spacing: .42em; color: var(--gold-deep); text-transform: uppercase; display:block; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13.5px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  position: relative; padding: 6px 0; transition: color .3s;
}
.nav-links a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--gold); transition: width .35s var(--ease); }
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display:flex; align-items:center; gap: 12px; flex: none; }

.hamburger { display:none; background:none; border:0; width:46px; height:46px; align-items:center; justify-content:center; flex-direction:column; gap:5px; }
.hamburger span { width: 24px; height: 1.6px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.hamburger.open span:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 1024px){
  .nav-links { display:none; }
  .nav-cta .btn-outline { display:none; }
  .hamburger { display:flex; }
}
@media (max-width: 560px){
  .nav { min-height: 86px; }
  .brand img { width: 64px; height: 64px; }
  .brand .bt b { font-size: 17px; }
  .brand .bt small { font-size: 8.5px; letter-spacing:.36em; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80; visibility: hidden; pointer-events: none;
}
.drawer.open { visibility: visible; pointer-events: auto; }
.drawer-scrim { position:absolute; inset:0; background: rgba(28,26,23,.5); opacity:0; transition: opacity .4s var(--ease); }
.drawer.open .drawer-scrim { opacity:1; }
.drawer-panel {
  position:absolute; top:0; right:0; height:100%; width: min(86vw, 360px);
  background: var(--bg); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display:flex; flex-direction:column; padding: 26px 28px;
  overflow-y:auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display:flex; align-items:center; justify-content:space-between; margin-bottom: 8px; }
.drawer-close { background:none; border:0; font-size: 30px; line-height:1; color: var(--ink); width:44px;height:44px; }
.drawer-links { display:flex; flex-direction:column; margin-top: 22px; }
.drawer-links a {
  font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.drawer-links a:hover { color: var(--gold-deep); }
.drawer-cta { display:flex; flex-direction:column; gap:12px; margin-top: 26px; }
.drawer-contact { margin-top: 28px; font-size: 13.5px; color: var(--muted); line-height: 2; }
.drawer-contact a { color: var(--gold-deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: stretch;
  min-height: min(86vh, 760px);
}
.hero-copy { display:flex; flex-direction:column; justify-content:center; padding: clamp(48px,7vw,90px) clamp(20px,5vw,72px) clamp(48px,7vw,90px) var(--gut); }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(40px, 6.6vw, 78px); letter-spacing: .004em; color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .lead { font-size: clamp(16px,1.5vw,19px); margin-top: 24px; max-width: 46ch; }
.hero-cta { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display:flex; flex-wrap:wrap; gap: 10px 26px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-trust span { display:flex; align-items:center; gap:9px; font-size: 12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--muted); }
.hero-trust .dot { width:5px;height:5px; background:var(--gold); transform:rotate(45deg); flex:none; }

.hero-media { position: relative; overflow:hidden; background: var(--surface-2); }
.hero-media img { width:100%; height:100%; object-fit: cover; object-position: 28% center; }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, var(--bg) 0%, rgba(251,250,246,.0) 26%);
}
.hero-badge {
  position:absolute; left: clamp(20px,4vw,40px); bottom: clamp(20px,4vw,40px); z-index:2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 16px 20px; box-shadow: var(--shadow-md); max-width: 280px;
}
.hero-badge b { font-family: var(--serif); font-size: 19px; color: var(--ink); display:block; }
.hero-badge small { font-size: 12px; letter-spacing:.04em; color: var(--muted); }

@media (max-width: 880px){
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; height: clamp(300px, 56vw, 460px); }
  .hero-media::after { background: linear-gradient(180deg, rgba(251,250,246,0) 60%, var(--bg) 100%); }
  .hero-copy { padding: clamp(36px,8vw,56px) var(--gut) clamp(40px,8vw,60px); text-align:left; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--ink); color: #EDE6D6; }
.trust-grid { display:grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: clamp(28px,3.5vw,44px) clamp(16px,2.4vw,32px); border-right: 1px solid rgba(255,255,255,.09); }
.trust-item:last-child { border-right: 0; }
.trust-item .ti-ic { width: 34px; height: 34px; color: var(--gold-soft); margin-bottom: 16px; }
.trust-item h4 { font-size: 21px; color: #fff; font-weight:500; }
.trust-item p { margin: 7px 0 0; font-size: 13.5px; color: #B8AE9B; line-height:1.55; }
@media (max-width: 760px){
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.09); }
  .trust-item:nth-child(odd){ border-right:1px solid rgba(255,255,255,.09); }
  .trust-item:nth-last-child(-n+2){ border-bottom:0; }
}
@media (max-width: 420px){
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(odd){ border-right:0; border-bottom:1px solid rgba(255,255,255,.09); }
  .trust-item:last-child{ border-bottom:0; }
}

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.sec-top { display:flex; align-items:flex-end; justify-content:space-between; gap: 24px; margin-bottom: clamp(36px,4vw,56px); flex-wrap:wrap; }
.collections-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,1.6vw,24px);
}
.col-card {
  position: relative; display:block; background: var(--surface);
  border: 1px solid var(--border); overflow:hidden;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease), border-color .45s;
}
.col-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-soft); }
.col-card .cc-img { aspect-ratio: 1/1; overflow:hidden; background: var(--surface-2); }
.col-card .cc-img img { width:100%; height:100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.col-card:hover .cc-img img { transform: scale(1.07); }
.col-card .cc-body { padding: 20px 20px 22px; }
.col-card h3 { font-size: 23px; color: var(--ink); }
.col-card p { margin: 5px 0 16px; font-size: 13px; color: var(--muted); line-height:1.5; min-height: 38px; }
.col-card .cc-go { display:flex; align-items:center; justify-content:space-between; }
.col-card .cc-go .x { font-size:12px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-deep); font-weight:500; }
.col-card .cc-go svg { width:18px;height:18px; color: var(--gold); transition: transform .3s var(--ease); }
.col-card:hover .cc-go svg { transform: translateX(5px); }

/* watches placeholder card */
.placeholder-img {
  aspect-ratio:1/1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  background:
    repeating-linear-gradient(45deg, var(--surface-2) 0 10px, #EFEADD 10px 20px);
  color: var(--gold-deep);
}
.placeholder-img .pl-ic { width: 42px; height:42px; opacity:.7; }
.placeholder-img small { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10.5px; letter-spacing:.1em; text-transform:uppercase; color:#9a8f78; }

@media (max-width: 980px){ .collections-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px){ .collections-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } .col-card h3{ font-size:20px; } .col-card p{ min-height:0; } }

/* ============================================================
   SIGNATURE COLLECTIONS
   ============================================================ */
.signature { background: var(--surface-2); }
.sig-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,30px); }
.sig-card { background: var(--surface); border:1px solid var(--border); overflow:hidden; display:flex; flex-direction:column; }
.sig-card .sig-img { aspect-ratio: 4/3; overflow:hidden; background:#fff; }
.sig-card .sig-img img { width:100%; height:100%; object-fit: contain; padding: 12px; transition: transform .9s var(--ease); }
.sig-card:hover .sig-img img { transform: scale(1.05); }
.sig-card .sig-body { padding: 24px 26px 26px; flex:1; display:flex; flex-direction:column; }
.sig-card .sig-tag { font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-deep); }
.sig-card h3 { font-size: 27px; margin-top: 8px; color:var(--ink); }
.sig-card p { font-size: 14px; color: var(--muted); margin: 10px 0 20px; flex:1; }
.sig-card .sig-enq { align-self:flex-start; }
@media (max-width: 920px){ .sig-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .sig-grid { grid-template-columns: 1fr;} }

/* ============================================================
   CERTIFIED DIAMONDS (split feature)
   ============================================================ */
.diamonds { background: var(--ink); color:#EDE6D6; overflow:hidden; }
.diamonds-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items:center; }
.diamonds .eyebrow { color: var(--gold-soft); }
.diamonds h2.title { color:#fff; }
.diamonds h2.title em { color: var(--gold-soft); }
.diamonds .lead { color: #C3B9A6; }
.diamond-points { list-style:none; padding:0; margin: 30px 0 34px; display:grid; gap: 16px; }
.diamond-points li { display:flex; gap:14px; align-items:flex-start; font-size:15px; color:#D8CFBE; }
.diamond-points .dp { width:22px;height:22px; color: var(--gold-soft); flex:none; margin-top:2px; }
.diamond-visual { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.diamond-tile { background: #232019; border:1px solid rgba(255,255,255,.1); padding: 18px; text-align:center; }
.diamond-tile img { width:100%; aspect-ratio:1/1; object-fit:contain; margin-bottom: 12px; }
.diamond-tile b { font-family:var(--serif); font-size: 19px; color:#fff; display:block; }
.diamond-tile small { font-size: 11.5px; letter-spacing:.12em; text-transform:uppercase; color: var(--gold-soft); }
.diamond-tile span { display:block; font-size:12px; color:#9C9281; margin-top:4px; }
@media (max-width: 820px){ .diamonds-grid { grid-template-columns:1fr; } .diamond-visual{ max-width:440px; } }

/* ============================================================
   BRIDAL PROMO (real banner, contained)
   ============================================================ */
.promo .promo-card {
  position:relative; overflow:hidden; border:1px solid var(--border); background: var(--surface);
  display:grid; grid-template-columns: 1.35fr 1fr; align-items:stretch; min-height: 340px;
}
.promo-card .pc-img { overflow:hidden; }
.promo-card .pc-img img { width:100%; height:100%; object-fit: cover; object-position: 22% center; }
.promo-card .pc-body { padding: clamp(30px,4vw,56px); display:flex; flex-direction:column; justify-content:center; }
.promo-card .pc-body .eyebrow { color: var(--gold-deep); }
.promo-card .pc-body h3 { font-size: clamp(28px,3.4vw,42px); margin:14px 0 0; }
.promo-card .pc-body p { color: var(--muted); margin: 14px 0 26px; font-size:15px; }
.promo-note { font-size:11px; color:var(--muted); margin-top:16px; letter-spacing:.04em; }
@media (max-width: 760px){ .promo-card { grid-template-columns: 1fr; } .promo-card .pc-img{ height: 260px;} }

/* ============================================================
   GOLD RATE STRIP
   ============================================================ */
.goldrate { background: linear-gradient(100deg, #F4ECD8, #FBF6EA); border-block: 1px solid var(--border); }
.goldrate .wrap { display:flex; align-items:center; justify-content:space-between; gap: 28px; flex-wrap:wrap; padding-block: 34px; }
.goldrate .gr-left { display:flex; align-items:center; gap: 22px; }
.gr-ic { width: 52px; height:52px; border-radius:50%; background: var(--gold); color:#fff; display:flex; align-items:center; justify-content:center; flex:none; }
.gr-ic svg{ width:26px; height:26px; }
.goldrate h3 { font-size: clamp(24px,2.6vw,32px); color: var(--ink); }
.goldrate p { margin: 4px 0 0; color: var(--gold-deep); font-size: 14px; letter-spacing:.04em; }
.goldrate .gr-cta { display:flex; gap:12px; flex-wrap:wrap; }

/* ============================================================
   ABOUT / SHOWROOM
   ============================================================ */
.about-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items:center; }
.about-media { position:relative; }
.about-media img { width:100%; aspect-ratio: 16/10; object-fit:cover; border:1px solid var(--border); }
.about-media figcaption { font-size: 11.5px; color: var(--muted); margin-top: 10px; letter-spacing:.03em; font-style:italic; }
.about-stats { display:flex; gap: 36px; margin-top: 32px; flex-wrap:wrap; }
.about-stats .st b { font-family:var(--serif); font-size: 34px; color: var(--gold-deep); display:block; line-height:1; }
.about-stats .st small { font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); }
@media (max-width: 820px){ .about-grid { grid-template-columns:1fr; } .about-media{ order:-1; } }

/* ============================================================
   VISIT & CONTACT
   ============================================================ */
.visit { background: var(--surface-2); }
.visit-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,3.5vw,52px); align-items:start; }
.visit-info .vi-row { display:flex; gap:16px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items:flex-start; }
.visit-info .vi-row:first-of-type { padding-top: 6px; }
.vi-ic { width: 22px; height:22px; color: var(--gold-deep); flex:none; margin-top:3px; }
.vi-row .vt { font-size: 11px; letter-spacing:.2em; text-transform:uppercase; color: var(--muted); margin:0 0 5px; }
.vi-row .vv { font-size: 17px; color: var(--ink); margin:0; line-height:1.5; }
.vi-row .vv a { color: var(--gold-deep); }
.vi-row .vv a:hover { color: var(--gold); }
.vi-tbc { font-size: 12px; color: var(--muted); font-style:italic; }
.visit-cta { display:flex; gap:12px; flex-wrap:wrap; margin-top: 28px; }

/* map placeholder */
.map-ph {
  position:relative; aspect-ratio: 4/3; border:1px solid var(--border); overflow:hidden;
  background:
    linear-gradient(0deg, rgba(28,26,23,.02), rgba(28,26,23,.02)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(184,149,70,.12) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(184,149,70,.12) 38px 39px),
    var(--surface);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding: 24px;
}
.map-ph .mp-pin { width: 40px; height:40px; color: var(--gold-deep); margin-bottom: 14px; }
.map-ph b { font-family:var(--serif); font-size: 22px; color: var(--ink); }
.map-ph .mp-tag { font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; letter-spacing:.14em; text-transform:uppercase; color:#9a8f78; margin-top:8px; padding: 5px 12px; border:1px dashed var(--gold-soft); border-radius:2px; }
.map-ph .mp-addr { font-size: 13.5px; color: var(--muted); margin-top: 14px; max-width: 320px; }
.map-ph a.mp-dir { margin-top: 16px; }

@media (max-width: 820px){ .visit-grid { grid-template-columns:1fr; } .map-block{ order:-1; } }

/* enquiry form (inside modal + inline) */
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width:100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--surface); border:1px solid var(--border); border-radius: 2px;
  padding: 13px 14px; transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,70,.14); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap: 16px; }
@media (max-width: 480px){ .form-row { grid-template-columns:1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #C3B9A6; }
.footer .wrap { padding-block: clamp(48px,6vw,76px); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,3vw,48px); }
.footer .f-brand img { width: 124px; height:124px; object-fit:contain; margin-left:-8px; }
.footer .f-brand .ft { font-family:var(--serif); font-size:24px; letter-spacing:.12em; color:#fff; margin-top: 0; }
.footer .f-brand .ft small { display:block; font-family:var(--sans); font-size:9.5px; letter-spacing:.4em; color: var(--gold-soft); text-transform:uppercase; margin-top:4px; }
.footer .f-brand p { font-size: 13.5px; line-height:1.7; margin: 18px 0 0; max-width: 34ch; }
.footer h5 { font-family:var(--sans); font-size: 12px; letter-spacing:.2em; text-transform:uppercase; color:#fff; margin:0 0 18px; font-weight:500; }
.footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer ul a, .footer .f-contact a, .footer .f-contact span { font-size:14px; color:#C3B9A6; transition: color .3s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer .f-contact { display:flex; flex-direction:column; gap: 11px; font-size:14px; line-height:1.5; }
.footer .f-contact a:hover { color: var(--gold-soft); }
.f-socials { display:flex; gap:12px; margin-top: 20px; }
.f-socials a { width:42px; height:42px; border:1px solid rgba(255,255,255,.18); border-radius:50%; display:flex; align-items:center; justify-content:center; transition: all .3s; }
.f-socials a:hover { border-color: var(--gold-soft); background: rgba(213,194,144,.1); transform: translateY(-2px); }
.f-socials svg { width:18px; height:18px; color:#C3B9A6; }
.f-socials a:hover svg { color: var(--gold-soft); }
.f-online { margin-top: 22px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: clamp(40px,5vw,60px); padding-top: 26px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-bottom p { font-size: 12px; color: #8E8576; margin:0; line-height:1.7; max-width: 70ch; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; } .footer .f-brand { grid-column: 1/-1; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAB + MOBILE STICKY BAR
   ============================================================ */
.wa-fab {
  position: fixed; right: 22px; bottom: 26px; z-index: 70;
  width: 60px; height:60px; border-radius:50%; background: #1FA855; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 10px 30px rgba(31,168,85,.4);
  transition: transform .3s var(--ease); border:0;
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width:30px; height:30px; }
.wa-fab::after {
  content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #1FA855;
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0%{ transform:scale(1); opacity:.6;} 100%{ transform:scale(1.6); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .wa-fab::after { animation:none; } }

.mobile-bar {
  position: fixed; left:0; right:0; bottom:0; z-index: 65;
  display: none; grid-template-columns: repeat(3,1fr);
  background: rgba(251,250,246,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(28,26,23,.08);
}
.mobile-bar a {
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  padding: 9px 4px calc(9px + env(safe-area-inset-bottom)); font-size: 10.5px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--ink); border-right:1px solid var(--border); min-height: 58px; font-weight:500;
}
.mobile-bar a:last-child { border-right:0; }
.mobile-bar a svg { width:21px; height:21px; }
.mobile-bar a.wa { color:#178a45; }
.mobile-bar a.enq { color: var(--gold-deep); }
@media (max-width: 1024px){
  .mobile-bar { display:grid; }
  .wa-fab { display:none; }
  body { padding-bottom: 64px; }
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.modal { position: fixed; inset:0; z-index: 90; display:none; }
.modal.open { display:block; }
.modal-scrim { position:absolute; inset:0; background: rgba(28,26,23,.55); backdrop-filter: blur(3px); opacity:0; transition: opacity .35s; }
.modal.open .modal-scrim { opacity:1; }
.modal-card {
  position:absolute; top:50%; left:50%; transform: translate(-50%,-46%); opacity:0;
  width: min(560px, calc(100vw - 32px)); max-height: calc(100vh - 48px); overflow-y:auto;
  background: var(--bg); border-radius:3px; box-shadow: var(--shadow-lg);
  padding: clamp(26px,4vw,40px); transition: transform .4s var(--ease), opacity .35s;
}
.modal.open .modal-card { transform: translate(-50%,-50%); opacity:1; }
.modal-card .m-close { position:absolute; top:14px; right:16px; background:none; border:0; font-size:28px; color:var(--muted); width:42px;height:42px; }
.modal-card .eyebrow { color: var(--gold-deep); }
.modal-card h3 { font-size: clamp(26px,3.4vw,34px); margin: 12px 0 6px; color:var(--ink); }
.modal-card .m-sub { font-size: 14px; color: var(--muted); margin: 0 0 24px; }
.modal-actions { display:flex; gap:12px; margin-top: 8px; flex-wrap:wrap; }
.modal-actions .btn { flex:1; min-width: 150px; }
.m-or { display:flex; align-items:center; gap:14px; color:var(--muted); font-size:12px; letter-spacing:.14em; text-transform:uppercase; margin: 20px 0; }
.m-or::before, .m-or::after { content:""; flex:1; height:1px; background: var(--border); }
.form-success { text-align:center; padding: 20px 0; display:none; }
.form-success.show { display:block; }
.form-success .fs-ic { width:60px; height:60px; border-radius:50%; background:rgba(31,168,85,.12); color:#1FA855; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.form-success .fs-ic svg{ width:30px;height:30px; }
.form-success h4 { font-size:26px; color:var(--ink); }
.form-success p { color: var(--muted); font-size:14px; margin-top:8px; }

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