/* ============================================================
   JJ & Sons Jewellers — Heritage luxury (maroon · antique gold · ivory)
   Mobile-first. Tested 375px → desktop.
   ============================================================ */

:root{
  --bg:        #FBF7F1;
  --surface:   #FFFFFF;
  --surface-2: #F3EBDE;
  --text:      #2A1416;
  --muted:     #6E5A52;
  --primary:   #5B0E14;
  --secondary: #701410;
  --primary-deep:#3E090D;
  --accent:    #A8842A;
  --accent-2:  #D4AB5C;
  --accent-soft:#C79A45;
  --border:    #E4D8C6;
  --focus:     #A8842A;

  --maroon-grad: linear-gradient(150deg,#701410 0%,#5B0E14 52%,#3E090D 100%);
  --gold-grad: linear-gradient(135deg,#8F6E1E 0%,#D4AB5C 38%,#F3DC9E 50%,#C79A45 64%,#8F6E1E 100%);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --gutter: 22px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(42,20,22,.06), 0 2px 8px rgba(42,20,22,.05);
  --shadow-md: 0 6px 24px rgba(42,20,22,.10), 0 2px 8px rgba(42,20,22,.06);
  --shadow-lg: 0 24px 60px rgba(42,20,22,.18);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:74px; -webkit-text-size-adjust:100%; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

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

h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; line-height:1.08; margin:0; color:var(--text); letter-spacing:.005em; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
ul{ margin:0; padding:0; list-style:none; }

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

/* ---------- Layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding-left:var(--gutter); padding-right:var(--gutter); }
.section{ padding:60px 0; }
.section--tight{ padding:44px 0; }
@media (min-width:768px){ .section{ padding:96px 0; } .section--tight{ padding:64px 0; } }

.band-cream{ background:var(--surface-2); }
.band-maroon{ background:var(--primary); color:#F6E7CF; }
.band-maroon h1,.band-maroon h2,.band-maroon h3{ color:#FBF1DD; }

/* ---------- Eyebrow / kicker ---------- */
.kicker{
  font-family:var(--sans);
  font-weight:700;
  font-size:11.5px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex; align-items:center; gap:10px;
}
.kicker::before{ content:""; width:26px; height:1px; background:var(--accent); opacity:.7; }
.kicker--center{ justify-content:center; }
.kicker--center::after{ content:""; width:26px; height:1px; background:var(--accent); opacity:.7; }

.section-head{ max-width:680px; margin-bottom:34px; }
.section-head--center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(30px,7vw,48px); margin-top:14px; }
.section-head p{ color:var(--muted); margin-top:14px; font-size:16.5px; }

/* ---------- Fleuron / gold rule ---------- */
.fleuron{ display:flex; align-items:center; justify-content:center; gap:14px; color:var(--accent); }
.fleuron i{ height:1px; width:54px; background:linear-gradient(90deg,transparent,var(--accent)); display:block; }
.fleuron i:last-child{ background:linear-gradient(90deg,var(--accent),transparent); }
.fleuron svg{ width:16px; height:16px; flex:none; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--sans); font-weight:700; font-size:14.5px; letter-spacing:.02em;
  padding:14px 22px; border-radius:var(--radius);
  min-height:48px; transition:transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space:nowrap; cursor:pointer; border:1px solid transparent;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn:active{ transform:translateY(1px); }

.btn--wa{ background:#1FA855; color:#fff; box-shadow:0 6px 18px rgba(31,168,85,.28); }
.btn--wa:hover{ background:#178c46; box-shadow:0 10px 26px rgba(31,168,85,.34); transform:translateY(-2px); }

.btn--gold{ background:var(--gold-grad); color:var(--primary-deep); box-shadow:0 6px 18px rgba(168,132,42,.30); background-size:160% 160%; }
.btn--gold:hover{ box-shadow:0 12px 30px rgba(168,132,42,.40); transform:translateY(-2px); background-position:right center; }

.btn--maroon{ background:var(--primary); color:#F6E7CF; }
.btn--maroon:hover{ background:var(--secondary); transform:translateY(-2px); box-shadow:var(--shadow-md); }

.btn--ghost{ background:transparent; color:var(--text); border:1px solid var(--border); }
.btn--ghost:hover{ border-color:var(--accent); color:var(--primary); background:#fff; }

.btn--ghost-light{ background:rgba(255,255,255,.06); color:#FBF1DD; border:1px solid rgba(246,231,207,.4); backdrop-filter:blur(6px); }
.btn--ghost-light:hover{ background:rgba(255,255,255,.16); border-color:var(--accent-2); }

.btn--sm{ padding:11px 16px; min-height:42px; font-size:13px; }
.btn--block{ width:100%; }

/* link with arrow */
.link-arrow{ display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:13.5px; letter-spacing:.04em; text-transform:uppercase; color:var(--primary); transition:gap .2s,color .2s; }
.link-arrow svg{ width:15px; height:15px; transition:transform .2s; }
.link-arrow:hover{ color:var(--accent); gap:11px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:80;
  transition:background .35s, box-shadow .35s, padding .35s;
  padding:14px 0;
}
.nav__inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.nav--top{ background:transparent; }
.nav--scrolled{ background:rgba(62,9,13,.96); box-shadow:0 2px 24px rgba(42,20,22,.28); backdrop-filter:blur(10px); padding:9px 0; }
.nav--solid{ background:var(--primary); box-shadow:0 2px 24px rgba(42,20,22,.28); }

.nav__brand{ display:flex; align-items:center; gap:12px; }
.nav__brand img{ height:48px; width:auto; transition:height .35s; filter:drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.nav--scrolled .nav__brand img{ height:40px; }
.nav__brand-txt{ display:none; }
@media (min-width:520px){
  .nav__brand-txt{ display:block; line-height:1; }
  .nav__brand-txt b{ font-family:var(--serif); font-size:19px; color:#FBF1DD; letter-spacing:.06em; font-weight:600; display:block; }
  .nav__brand-txt span{ font-family:var(--sans); font-size:9.5px; letter-spacing:.34em; color:var(--accent-2); text-transform:uppercase; }
}

.nav__links{ display:none; align-items:center; gap:30px; }
@media (min-width:1000px){ .nav__links{ display:flex; } }
.nav__links a{ font-size:13.5px; font-weight:600; letter-spacing:.04em; color:#F1E2C8; position:relative; padding:6px 0; transition:color .2s; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0; background:var(--accent-2); transition:width .25s; }
.nav__links a:hover{ color:#fff; }
.nav__links a:hover::after{ width:100%; }

.nav__cta{ display:none; }
@media (min-width:1000px){ .nav__cta{ display:inline-flex; } }

.nav__burger{ display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px; border-radius:var(--radius); border:1px solid rgba(246,231,207,.35); color:#FBF1DD; }
@media (min-width:1000px){ .nav__burger{ display:none; } }
.nav__burger svg{ width:24px; height:24px; }

/* mobile drawer */
.drawer{ position:fixed; inset:0; z-index:90; pointer-events:none; }
.drawer__scrim{ position:absolute; inset:0; background:rgba(20,6,8,.55); opacity:0; transition:opacity .3s; backdrop-filter:blur(2px); }
.drawer__panel{
  position:absolute; top:0; right:0; height:100%; width:min(86vw,360px);
  background:var(--maroon-grad); color:#F6E7CF; transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1); box-shadow:-20px 0 60px rgba(0,0,0,.4);
  display:flex; flex-direction:column; padding:24px;
}
.drawer.open{ pointer-events:auto; }
.drawer.open .drawer__scrim{ opacity:1; }
.drawer.open .drawer__panel{ transform:translateX(0); }
.drawer__head{ display:flex; align-items:center; justify-content:space-between; padding-bottom:18px; border-bottom:1px solid rgba(246,231,207,.18); }
.drawer__head img{ height:46px; }
.drawer__close{ color:#F6E7CF; width:42px; height:42px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(246,231,207,.3); border-radius:var(--radius); }
.drawer__close svg{ width:22px; height:22px; }
.drawer__links{ display:flex; flex-direction:column; margin-top:10px; }
.drawer__links a{ font-family:var(--serif); font-size:26px; font-weight:600; color:#F6E7CF; padding:14px 0; border-bottom:1px solid rgba(246,231,207,.12); display:flex; align-items:center; justify-content:space-between; }
.drawer__links a span{ font-family:var(--mono); font-size:11px; color:var(--accent-2); }
.drawer__cta{ margin-top:auto; display:flex; flex-direction:column; gap:12px; padding-top:20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; }
.hero__img{ position:absolute; inset:0; }
.hero__img img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(62,9,13,.62) 0%, rgba(62,9,13,.20) 26%, rgba(62,9,13,.30) 60%, rgba(42,8,10,.92) 100%),
    linear-gradient(95deg, rgba(62,9,13,.72) 0%, rgba(62,9,13,.30) 46%, transparent 78%);
}
.hero__content{ position:relative; z-index:2; width:100%; padding-top:120px; padding-bottom:124px; }
@media (min-width:768px){ .hero__content{ padding-bottom:96px; } }
.hero__inner{ max-width:720px; }
.hero h1{ color:#FCF4E4; font-size:clamp(40px,10.5vw,80px); line-height:1.02; margin:18px 0 0; letter-spacing:-.01em; text-shadow:0 2px 24px rgba(0,0,0,.35); }
.hero h1 em{ font-style:italic; color:var(--accent-2); }
.hero__lede{ color:#F2E2CC; font-size:clamp(16px,4.4vw,20px); line-height:1.55; margin-top:20px; max-width:560px; text-shadow:0 1px 12px rgba(0,0,0,.4); }
.hero__cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.hero__est{ font-family:var(--mono); font-size:11.5px; letter-spacing:.3em; color:var(--accent-2); text-transform:uppercase; }
.hero__scroll{ position:absolute; left:50%; bottom:108px; transform:translateX(-50%); z-index:2; color:#F2E2CC; display:none; }
@media (min-width:768px){ .hero__scroll{ display:flex; bottom:26px; } }

/* ============================================================
   HERITAGE STRIP
   ============================================================ */
.heritage{ background:var(--primary-deep); color:#F1DFC2; border-top:1px solid rgba(212,171,92,.3); border-bottom:1px solid rgba(212,171,92,.3); }
.heritage__grid{ display:grid; grid-template-columns:repeat(2,1fr); }
@media (min-width:768px){ .heritage__grid{ grid-template-columns:repeat(4,1fr); } }
.heritage__cell{ padding:26px 18px; text-align:center; border-right:1px solid rgba(212,171,92,.16); border-bottom:1px solid rgba(212,171,92,.16); }
.heritage__cell b{ font-family:var(--serif); font-size:clamp(22px,5vw,30px); color:var(--accent-2); font-weight:600; display:block; line-height:1; }
.heritage__cell span{ font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:#D8C3A0; margin-top:9px; display:block; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.coll-grid{ display:grid; gap:16px; grid-template-columns:1fr; }
@media (min-width:560px){ .coll-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .coll-grid{ grid-template-columns:repeat(3,1fr); } }

.coll-card{
  position:relative; border-radius:var(--radius); overflow:hidden; min-height:300px;
  display:flex; flex-direction:column; justify-content:flex-end;
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
  transition:transform .35s, box-shadow .35s; isolation:isolate;
}
.coll-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.coll-card__media{ position:absolute; inset:0; z-index:-1; }
.coll-card__ph{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.coll-card__ph::after{ /* subtle guilloché texture */
  content:""; position:absolute; inset:0; opacity:.5;
  background-image:radial-gradient(circle at 1px 1px, rgba(212,171,92,.18) 1px, transparent 0);
  background-size:14px 14px;
}
.coll-card__ornament{ position:relative; z-index:1; width:64px; height:64px; opacity:.85; }
.coll-card__scrim{ position:absolute; inset:0; z-index:0; background:linear-gradient(180deg, transparent 30%, rgba(42,8,10,.78) 100%); }
.coll-card__body{ position:relative; z-index:2; padding:22px; }
.coll-card__tag{ font-family:var(--mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--accent-2); }
.coll-card h3{ color:#FCF4E4; font-size:27px; margin:8px 0 6px; }
.coll-card p{ color:#EAD9BF; font-size:14px; line-height:1.5; opacity:.92; }
.coll-card__cta{ margin-top:16px; display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:700; letter-spacing:.04em; color:var(--accent-2); text-transform:uppercase; }
.coll-card__cta svg{ width:15px; height:15px; transition:transform .2s; }
.coll-card:hover .coll-card__cta svg{ transform:translateX(4px); }
.coll-card__plabel{ position:absolute; top:14px; left:14px; z-index:2; font-family:var(--mono); font-size:9px; letter-spacing:.12em; text-transform:uppercase; color:rgba(246,231,207,.7); border:1px solid rgba(246,231,207,.3); padding:4px 8px; border-radius:20px; background:rgba(42,8,10,.35); backdrop-filter:blur(3px); }

.goldrate{ margin-top:24px; display:flex; align-items:flex-start; gap:14px; padding:18px 22px; background:var(--surface); border:1px solid var(--border); border-left:3px solid var(--accent); border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.goldrate svg{ width:26px; height:26px; color:var(--accent); flex:none; margin-top:2px; }
.goldrate b{ font-family:var(--serif); font-size:19px; color:var(--primary); display:block; }
.goldrate p{ color:var(--muted); font-size:14.5px; margin-top:2px; }

/* ============================================================
   WATCHES
   ============================================================ */
.watch-grid{ display:grid; gap:16px; grid-template-columns:repeat(2,1fr); }
@media (min-width:720px){ .watch-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1040px){ .watch-grid{ grid-template-columns:repeat(4,1fr); } }

.watch-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s, border-color .3s;
  display:flex; flex-direction:column;
}
.watch-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--accent-soft); }
.watch-card__img{ aspect-ratio:1/1; overflow:hidden; background:#fbf8f3; position:relative; }
.watch-card__img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.watch-card:hover .watch-card__img img{ transform:scale(1.05); }
.watch-card__body{ padding:14px 15px 16px; display:flex; flex-direction:column; gap:3px; flex:1; }
.watch-card__brand{ font-family:var(--mono); font-size:9.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); }
.watch-card__model{ font-family:var(--serif); font-size:18px; color:var(--text); line-height:1.15; }
.watch-card__meta{ font-size:12.5px; color:var(--muted); margin-top:1px; }
.watch-card__foot{ margin-top:auto; padding-top:12px; }
.watch-card__enq{ display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:700; letter-spacing:.03em; text-transform:uppercase; color:var(--primary); }
.watch-card__enq svg{ width:14px; height:14px; }
.watch-card:hover .watch-card__enq{ color:var(--accent); }

/* Sell / trade-in panel */
.selltrade{ background:var(--maroon-grad); border-radius:8px; overflow:hidden; position:relative; box-shadow:var(--shadow-lg); }
.selltrade::before{ content:""; position:absolute; inset:0; background-image:radial-gradient(circle at 1px 1px, rgba(212,171,92,.12) 1px, transparent 0); background-size:18px 18px; opacity:.6; }
.selltrade__inner{ position:relative; padding:36px 26px; }
@media (min-width:860px){ .selltrade__inner{ padding:56px 54px; display:grid; grid-template-columns:1.1fr 1fr; gap:48px; align-items:center; } }
.selltrade h3{ color:#FCF4E4; font-size:clamp(26px,5.4vw,40px); }
.selltrade p{ color:#EAD6BA; margin-top:14px; font-size:16px; }
.selltrade__steps{ margin-top:24px; display:grid; gap:14px; }
.selltrade__step{ display:flex; gap:14px; align-items:flex-start; }
.selltrade__step b{ font-family:var(--serif); font-size:18px; color:var(--accent-2); flex:none; width:34px; height:34px; border-radius:50%; border:1px solid rgba(212,171,92,.5); display:flex; align-items:center; justify-content:center; }
.selltrade__step span{ color:#F1E2C8; font-size:14.5px; line-height:1.45; }
.selltrade__step b+div{ padding-top:5px; }
.selltrade__cta{ margin-top:26px; display:flex; flex-wrap:wrap; gap:12px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; gap:18px; grid-template-columns:1fr; }
@media (min-width:760px){ .svc-grid{ grid-template-columns:repeat(3,1fr); } }
.svc-card{ background:var(--surface); border:1px solid var(--border); border-radius:6px; padding:30px 26px; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s; display:flex; flex-direction:column; }
.svc-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.svc-card__icon{ width:54px; height:54px; border-radius:50%; background:var(--surface-2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--accent); }
.svc-card__icon svg{ width:26px; height:26px; }
.svc-card h3{ font-size:25px; color:var(--primary); margin:18px 0 4px; }
.svc-card>p{ color:var(--muted); font-size:14.5px; line-height:1.55; }
.svc-steps{ margin:18px 0 20px; display:grid; gap:11px; }
.svc-steps li{ display:flex; gap:11px; align-items:flex-start; font-size:14px; color:var(--text); }
.svc-steps li b{ font-family:var(--mono); font-size:11px; color:var(--accent); flex:none; padding-top:2px; }
.svc-card__foot{ margin-top:auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{ display:grid; gap:34px; align-items:center; }
@media (min-width:900px){ .about__grid{ grid-template-columns:1fr 1fr; gap:56px; } }
.about__media{ position:relative; border-radius:6px; overflow:hidden; box-shadow:var(--shadow-lg); }
.about__media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.about__media-frame{ position:absolute; inset:12px; border:1px solid rgba(246,231,207,.5); border-radius:4px; pointer-events:none; }
.about__badge{ position:absolute; left:18px; bottom:18px; background:var(--maroon-grad); color:var(--accent-2); font-family:var(--serif); padding:14px 18px; border-radius:4px; border:1px solid rgba(212,171,92,.4); box-shadow:var(--shadow-md); }
.about__badge b{ font-size:30px; display:block; line-height:1; color:#FBF1DD; }
.about__badge span{ font-family:var(--sans); font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent-2); }
.about__body p{ color:var(--muted); font-size:16px; line-height:1.7; margin-top:16px; }
.about__body p:first-of-type{ margin-top:18px; }
.about__values{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:28px; }
.about__value{ text-align:left; }
.about__value b{ font-family:var(--serif); font-size:17px; color:var(--primary); display:block; }
.about__value span{ font-size:12.5px; color:var(--muted); line-height:1.4; display:block; margin-top:3px; }
.about__sign{ margin-top:26px; font-family:var(--serif); font-style:italic; font-size:19px; color:var(--primary); }
.about__sign span{ display:block; font-family:var(--mono); font-style:normal; font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-top:4px; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit__grid{ display:grid; gap:30px; }
@media (min-width:900px){ .visit__grid{ grid-template-columns:1fr 1fr; gap:48px; } }

.info-list{ display:grid; gap:4px; }
.info-row{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--border); align-items:flex-start; }
.info-row__icon{ width:42px; height:42px; border-radius:50%; background:var(--surface-2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--accent); flex:none; }
.info-row__icon svg{ width:20px; height:20px; }
.info-row h4{ font-family:var(--sans); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); font-weight:700; }
.info-row p{ font-size:16px; color:var(--text); margin-top:3px; line-height:1.5; }
.info-row a{ color:var(--primary); font-weight:600; border-bottom:1px solid var(--border); }
.info-row a:hover{ color:var(--accent); border-color:var(--accent); }
.hours-line{ display:flex; justify-content:space-between; gap:12px; font-size:14.5px; padding:3px 0; max-width:300px; }
.hours-line span:first-child{ color:var(--muted); }
.hours-line span:last-child{ color:var(--text); font-weight:600; }

.map-ph{ margin-top:22px; border:1px dashed var(--accent-soft); border-radius:6px; background:repeating-linear-gradient(45deg, #F6EFE3, #F6EFE3 12px, #F1E7D6 12px, #F1E7D6 24px); min-height:200px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; padding:24px; color:var(--muted); }
.map-ph svg{ width:32px; height:32px; color:var(--accent); }
.map-ph b{ font-family:var(--mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--primary); }
.map-ph span{ font-size:13px; }

/* Form */
.form-card{ background:var(--surface); border:1px solid var(--border); border-radius:8px; padding:28px 24px; box-shadow:var(--shadow-md); }
@media (min-width:768px){ .form-card{ padding:34px 32px; } }
.form-row{ margin-bottom:16px; }
.form-row--2{ display:grid; gap:16px; }
@media (min-width:520px){ .form-row--2{ grid-template-columns:1fr 1fr; } }
.field label{ display:block; font-size:12px; font-weight:700; letter-spacing:.08em; 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(--text);
  padding:13px 14px; border:1px solid var(--border); border-radius:var(--radius);
  background:var(--bg); transition:border-color .2s, box-shadow .2s; min-height:48px;
}
.field textarea{ min-height:120px; resize:vertical; line-height:1.5; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(168,132,42,.15); background:#fff; }
.field--error input,.field--error select,.field--error textarea{ border-color:#B23A3A; }
.field__err{ color:#B23A3A; font-size:12px; margin-top:5px; display:none; }
.field--error .field__err{ display:block; }
.form-note{ font-size:12.5px; color:var(--muted); margin-top:6px; }
.form-actions{ display:flex; flex-direction:column; gap:12px; margin-top:6px; }
@media (min-width:520px){ .form-actions{ flex-direction:row; } }
.form-success{ background:#EFF7F0; border:1px solid #BFE0C6; color:#1F6B38; border-radius:6px; padding:22px; text-align:center; }
.form-success svg{ width:40px; height:40px; margin:0 auto 10px; color:#1FA855; }
.form-success b{ font-family:var(--serif); font-size:22px; color:#1F6B38; display:block; }
.form-success p{ font-size:14px; margin-top:6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--primary-deep); color:#E7D4B6; padding:56px 0 0; border-top:3px solid var(--accent); }
.footer__top{ display:grid; gap:34px; grid-template-columns:1fr; padding-bottom:40px; }
@media (min-width:720px){ .footer__top{ grid-template-columns:1.4fr 1fr 1fr; } }
@media (min-width:1000px){ .footer__top{ grid-template-columns:1.6fr 1fr 1fr 1.2fr; } }
.footer__brand img{ height:148px; margin-bottom:16px; }
.footer__brand p{ color:#C9B391; font-size:14px; line-height:1.6; max-width:300px; }
.footer__col h4{ font-family:var(--sans); font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent-2); font-weight:700; margin-bottom:16px; }
.footer__col a, .footer__col p{ display:block; color:#D6C2A2; font-size:14px; padding:6px 0; transition:color .2s; }
.footer__col a:hover{ color:#fff; }
.footer__social{ display:flex; gap:10px; margin-top:8px; }
.footer__social a{ width:42px; height:42px; border-radius:50%; border:1px solid rgba(212,171,92,.4); display:flex; align-items:center; justify-content:center; color:var(--accent-2); transition:background .2s,color .2s; }
.footer__social a:hover{ background:var(--accent); color:var(--primary-deep); }
.footer__social svg{ width:19px; height:19px; }
.footer__bottom{ border-top:1px solid rgba(212,171,92,.2); padding:20px 0 30px; display:flex; flex-direction:column; gap:10px; align-items:center; text-align:center; }
@media (min-width:720px){ .footer__bottom{ flex-direction:row; justify-content:space-between; text-align:left; } }
.footer__bottom p{ font-size:12.5px; color:#B49C78; }
.footer__bottom a{ color:#C9B391; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.mbar{
  position:fixed; left:0; right:0; bottom:0; z-index:70;
  display:grid; grid-template-columns:1fr 1fr 1fr;
  background:rgba(62,9,13,.97); backdrop-filter:blur(10px);
  border-top:1px solid rgba(212,171,92,.45);
  box-shadow:0 -4px 24px rgba(0,0,0,.28);
  padding-bottom:env(safe-area-inset-bottom);
}
@media (min-width:1000px){ .mbar{ display:none; } }
.mbar a{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; padding:11px 6px; color:#F1E2C8; font-size:11px; font-weight:700; letter-spacing:.04em; border-right:1px solid rgba(212,171,92,.2); min-height:58px; }
.mbar a:last-child{ border-right:none; }
.mbar a svg{ width:21px; height:21px; }
.mbar a.is-wa{ color:#8FE6B0; }
.mbar a.is-wa svg{ color:#3FD37E; }

body{ padding-bottom:0; }
@media (max-width:999px){ body{ padding-bottom:0; } .has-mbar{ padding-bottom:60px; } }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* float-in nav cta on hero only */
.scrolltop{ position:fixed; right:18px; bottom:74px; z-index:60; width:46px; height:46px; border-radius:50%; background:var(--primary); color:var(--accent-2); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); opacity:0; pointer-events:none; transition:opacity .3s, transform .3s; border:1px solid rgba(212,171,92,.4); transform:translateY(10px); }
.scrolltop.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.scrolltop svg{ width:20px; height:20px; }
@media (min-width:1000px){ .scrolltop{ bottom:24px; } }
