/* ============================================================
   Royal Braids LLC — "Treated Like Royalty"
   Symmetric / centered ceremonial. Aubergine + gold + ivory + byzantium.
   Playfair Display (regal serif caps) · Cormorant (accent italic) · Outfit (body).
   Everything lives on the centre axis. Ornamental gold hairlines + ♛ motif.
   ============================================================ */

:root {
  --plum: #2E1A2E;        /* deep aubergine base */
  --plum-deep: #241324;   /* darker panels */
  --plum-soft: #3A2540;   /* raised cards */
  --byz: #7A3F6E;         /* byzantium accent */
  --gold: #C8A24B;        /* primary gold */
  --gold-bright: #E0BE6E; /* hover / highlight gold */
  --gold-dim: rgba(200,162,75,.40);
  --gold-hair: rgba(200,162,75,.30); /* hairline rules */
  --ivory: #F4ECDD;       /* primary text on dark */
  --ivory-soft: rgba(244,236,221,.72);
  --ivory-faint: rgba(244,236,221,.50);
  --ink: #1B0F1B;

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

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --accent: "Cormorant", Georgia, serif;
  --body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--body);
  background: var(--plum);
  color: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* faint vertical ceremonial gradient + grain-free vignette */
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(122,63,110,.34), transparent 60%),
    radial-gradient(90% 50% at 50% 108%, rgba(122,63,110,.20), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--gold); color: var(--plum-deep); }

/* ---------- shared layout primitives (all centred) ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ornamental centred rule with a ♛ in the middle */
.crest-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto;
  color: var(--gold);
}
.crest-rule::before,
.crest-rule::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 110px);
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold));
}
.crest-rule::after { background: linear-gradient(270deg, transparent, var(--gold-dim), var(--gold)); }
.crest-rule .crest { font-size: 15px; line-height: 1; opacity: .92; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.06; letter-spacing: .005em; }

.section-head { max-width: 720px; margin: 0 auto; }
.section-head h2 {
  font-size: clamp(30px, 5vw, 50px);
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.section-head .lede {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 23px);
  color: var(--ivory-soft);
  margin-top: 14px;
  line-height: 1.5;
}

section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }

/* ---------- buttons (gold-outline regal) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 1px solid var(--gold);
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}
.btn-gold:hover {
  color: var(--plum-deep);
  background: var(--gold);
  box-shadow: 0 14px 34px -10px rgba(200,162,75,.5);
  transform: translateY(-2px);
}
.btn-solid {
  background: var(--gold);
  color: var(--plum-deep);
  border-color: var(--gold);
}
.btn-solid:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(200,162,75,.55);
}
.btn .ico { width: 16px; height: 16px; }

/* ============================================================
   HEADER — centred regal lockup (NOT a left-right nav bar)
   ============================================================ */
.masthead {
  position: relative;
  z-index: 40;
  padding: 26px var(--gut) 22px;
  text-align: center;
  border-bottom: 1px solid var(--gold-hair);
  background: rgba(36,19,36,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.masthead.pinned {
  position: sticky;
  top: 0;
}
.brand-lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 30px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-left: .26em; /* optical balance for tracking */
}
.brand-sub {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
/* thin gold rule with ♛ beneath the wordmark */
.brand-crest {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 4px; color: var(--gold);
}
.brand-crest::before, .brand-crest::after {
  content: ""; height: 1px; width: 46px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.brand-crest::after { background: linear-gradient(270deg, transparent, var(--gold)); }
.brand-crest .crest { font-size: 13px; line-height: 1; }

/* a single centred phone line under the crest on desktop (the persistent call) */
.masthead-call {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-family: var(--body);
  font-size: 13.5px; font-weight: 500; letter-spacing: .04em;
  color: var(--ivory);
  text-decoration: none;
  border: 1px solid var(--gold-hair);
  border-radius: 999px;
  padding: 8px 18px;
  transition: all .3s var(--ease);
}
.masthead-call:hover { border-color: var(--gold); color: var(--gold); }
.masthead-call .ico { width: 15px; height: 15px; color: var(--gold); }

/* ============================================================
   HERO — symmetric centred ceremonial
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-kicker { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(44px, 9vw, 92px);
  line-height: .98;
  letter-spacing: .01em;
  color: var(--ivory);
}
.hero h1 .em { color: var(--gold); font-style: italic; font-family: var(--serif); }
.hero-sub {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3.2vw, 28px);
  color: var(--ivory-soft);
  margin: 22px auto 0;
  max-width: 560px;
  line-height: 1.4;
}
.hero-rating {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 16px;
  margin-top: 26px;
  font-family: var(--body);
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--ivory-soft);
}
.hero-rating .stars { color: var(--gold); letter-spacing: .12em; font-size: 16px; }
.hero-rating .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-dim); }
.hero-cta { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* centred framed braid portrait (gold inner border) */
.hero-portrait {
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 440px;
  position: relative;
  padding: 12px;
}
.hero-portrait::before {
  /* outer hairline frame */
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  pointer-events: none;
}
.hero-portrait .frame {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
}
.hero-portrait .frame img {
  width: 100%;
  height: clamp(420px, 56vw, 560px);
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.96) contrast(1.02);
}
/* gentle plum scrim at the base of the portrait so it merges with bg */
.hero-portrait .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36,19,36,.55) 100%);
  pointer-events: none;
}
/* tiny corner crowns on the portrait frame */
.hero-portrait .corner {
  position: absolute; color: var(--gold); font-size: 13px; line-height: 1; opacity: .9;
}
.hero-portrait .corner.tl { top: -2px; left: 50%; transform: translateX(-50%); }

/* ============================================================
   THE ROYAL TREATMENT — 3 centred promise cards (review-grounded)
   ============================================================ */
.treatment { background: var(--plum-deep); border-top: 1px solid var(--gold-hair); border-bottom: 1px solid var(--gold-hair); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(44px, 6vw, 64px);
}
.promise {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(122,63,110,.16), rgba(58,37,64,.30));
  border: 1px solid var(--gold-hair);
  border-radius: 3px;
  padding: 40px 28px 34px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.promise:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.promise .crest-ico {
  font-size: 26px; line-height: 1; color: var(--gold);
  display: inline-block; margin-bottom: 16px;
}
.promise h3 {
  font-size: clamp(20px, 2.4vw, 25px);
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.promise p {
  font-size: 14.5px;
  color: var(--ivory-soft);
  line-height: 1.6;
}
.promise .src {
  display: block;
  margin-top: 16px;
  font-family: var(--accent);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
}

/* ============================================================
   NOIR TWIST BAND — full-bleed ceremonial divider
   ============================================================ */
.band {
  padding: 0;
  min-height: clamp(300px, 42vw, 460px);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band img.band-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(.2) brightness(.5) saturate(.7);
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(46,26,46,.50), rgba(36,19,36,.86));
}
.band-inner { position: relative; z-index: 2; max-width: 680px; padding: 0 var(--gut); }
.band-inner .q {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(24px, 4.4vw, 42px);
  line-height: 1.28;
  color: var(--ivory);
}
.band-inner .q .em { color: var(--gold-bright); }
.band-inner .src {
  display: block;
  margin-top: 22px;
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   THE WORK — gold-framed gallery, taxonomy chips, lightbox
   ============================================================ */
.work .chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: clamp(34px, 5vw, 48px) auto clamp(30px, 4vw, 40px);
  max-width: 760px;
}
.chip {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  background: transparent;
  border: 1px solid var(--gold-hair);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all .28s var(--ease);
}
.chip:hover { border-color: var(--gold-dim); color: var(--ivory); }
.chip.active { background: var(--gold); border-color: var(--gold); color: var(--plum-deep); font-weight: 600; }

.gallery {
  column-count: 3;
  column-gap: clamp(14px, 1.8vw, 22px);
}
.tile {
  break-inside: avoid;
  margin-bottom: clamp(14px, 1.8vw, 22px);
  position: relative;
  padding: 8px;
  cursor: zoom-in;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
/* the gold frame on every gallery tile */
.tile::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  transition: border-color .3s var(--ease);
  pointer-events: none;
}
.tile:hover::before { border-color: var(--gold); }
.tile .ph {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.tile .ph img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.95);
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.tile:hover .ph img { transform: scale(1.05); filter: saturate(1.05); }
.tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(27,15,27,.86));
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease);
}
.tile:hover .cap { opacity: 1; transform: translateY(0); }
.tile .cap .style {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ivory);
  letter-spacing: .02em;
}
.tile .cap .kind {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.tile.hide { display: none; }
.work .photonote {
  text-align: center;
  font-size: 12px;
  color: var(--ivory-faint);
  margin-top: clamp(28px, 4vw, 40px);
  letter-spacing: .02em;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9990;
  display: none;
  align-items: center; justify-content: center;
  padding: 4vh 4vw;
  background: rgba(20,11,20,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.show { display: flex; }
.lightbox .lb-frame {
  position: relative;
  max-width: min(620px, 92vw);
  max-height: 90vh;
  padding: 10px;
  border: 1px solid var(--gold);
}
.lightbox img { max-width: 100%; max-height: calc(90vh - 60px); object-fit: contain; }
.lightbox .lb-cap {
  text-align: center; margin-top: 12px;
  font-family: var(--serif); font-size: 17px; color: var(--ivory);
}
.lightbox .lb-cap .kind { font-family: var(--body); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display:block; margin-top:3px;}
.lb-close {
  position: absolute; top: -16px; right: -16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--gold); color: var(--plum-deep);
  border: none; border-radius: 50%;
  font-size: 22px; line-height: 1; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(46,26,46,.7);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 22px; cursor: pointer;
  border-radius: 50%;
  transition: all .25s var(--ease);
}
.lb-nav:hover { background: var(--gold); color: var(--plum-deep); }
.lb-prev { left: -8px; }
.lb-next { right: -8px; }

/* ============================================================
   REVIEWS — the dynasty (style-tagged), centred
   ============================================================ */
.dynasty { background: var(--plum-deep); border-top: 1px solid var(--gold-hair); }
.dynasty-stat {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 30px;
  margin: clamp(34px, 5vw, 46px) auto clamp(40px, 6vw, 60px);
}
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(34px, 5vw, 48px); color: var(--gold); line-height: 1; }
.stat .l { font-family: var(--body); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory-soft); margin-top: 8px; }
.stat-div { width: 1px; height: 46px; background: var(--gold-hair); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 960px;
  margin: 0 auto;
}
.review {
  background: linear-gradient(180deg, rgba(122,63,110,.12), rgba(46,26,46,.4));
  border: 1px solid var(--gold-hair);
  border-radius: 3px;
  padding: 34px 30px 28px;
  text-align: center;
  position: relative;
}
.review.feature { grid-column: 1 / -1; padding: 44px 40px 36px; }
.review .stars { color: var(--gold); letter-spacing: .14em; font-size: 15px; }
.review .quote {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: var(--ivory);
  margin: 16px auto 0;
  max-width: 640px;
}
.review.feature .quote { font-size: clamp(20px, 2.6vw, 26px); }
.review .who {
  margin-top: 20px;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ivory-soft);
}
.review .who .name { color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.review .tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-hair);
  border-radius: 999px;
  padding: 5px 14px;
}
.dynasty .verify { text-align: center; margin-top: clamp(34px, 4vw, 44px); }
.dynasty .verify a {
  font-family: var(--body);
  font-size: 13px; letter-spacing: .04em;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold-hair);
  padding-bottom: 3px; transition: border-color .3s var(--ease);
}
.dynasty .verify a:hover { border-color: var(--gold); }

/* ============================================================
   MEET AISHA — warm portrait + heritage (no country claim)
   ============================================================ */
.aisha { position: relative; }
.aisha-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.aisha-portrait {
  justify-self: center;
  max-width: 320px;
  width: 100%;
  padding: 10px;
  position: relative;
}
.aisha-portrait::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--gold-dim); border-radius: 3px; pointer-events: none;
}
.aisha-portrait .frame { border: 1px solid var(--gold); overflow: hidden; border-radius: 2px; box-shadow: 0 30px 70px -28px rgba(0,0,0,.7); }
.aisha-portrait .frame img { width: 100%; height: 400px; object-fit: cover; object-position: center 25%; }
.aisha-copy h2 {
  font-size: clamp(30px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ivory);
}
.aisha-copy .role {
  font-family: var(--accent); font-style: italic; font-size: 20px; color: var(--gold);
  margin-top: 8px; display: block;
}
.aisha-copy p {
  font-size: 16px;
  color: var(--ivory-soft);
  line-height: 1.75;
  margin: 22px auto 0;
  max-width: 620px;
}
.aisha-copy p + p { margin-top: 16px; }

/* ============================================================
   RESERVE — quote intake (call-forward) + assure
   ============================================================ */
.reserve { background: var(--plum-deep); border-top: 1px solid var(--gold-hair); }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  max-width: 980px;
  margin: clamp(40px, 5vw, 56px) auto 0;
}
.reserve-copy { text-align: left; }
.reserve-copy .eyebrow { display: block; margin-bottom: 14px; }
.reserve-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  color: var(--ivory);
  letter-spacing: .01em;
  text-align: left;
}
.reserve-copy .lede {
  font-family: var(--accent); font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ivory-soft); margin-top: 14px; line-height: 1.45;
}
.assure { list-style: none; margin: 26px 0 28px; display: grid; gap: 14px; }
.assure li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ivory-soft); line-height: 1.5;
}
.assure .mk { color: var(--gold); flex: none; margin-top: 2px; font-size: 14px; }
.reserve-copy .call-line {
  font-size: 13.5px; color: var(--ivory-faint); margin-top: 4px;
}
.reserve-copy .call-line a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-hair); }

/* form */
.quote-form {
  background: linear-gradient(180deg, rgba(122,63,110,.14), rgba(46,26,46,.42));
  border: 1px solid var(--gold-hair);
  border-radius: 4px;
  padding: clamp(26px, 3vw, 36px);
}
.quote-form .f-head {
  font-family: var(--serif); font-size: 21px; color: var(--ivory); text-align: center; margin-bottom: 6px;
}
.quote-form .f-sub { text-align: center; font-size: 12.5px; color: var(--ivory-faint); margin-bottom: 22px; letter-spacing: .03em; }
.quote-form label {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 7px;
}
.quote-form label:first-of-type { margin-top: 0; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  background: rgba(27,15,27,.55);
  border: 1px solid var(--gold-hair);
  border-radius: 2px;
  color: var(--ivory);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 14px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.quote-form textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.quote-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C8A24B' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(244,236,221,.34); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(27,15,27,.8); }
.quote-form .submit { width: 100%; margin-top: 22px; }
.quote-form .form-foot { text-align: center; font-size: 12.5px; color: var(--ivory-faint); margin-top: 14px; }
.quote-form .form-foot a { color: var(--gold); text-decoration: none; }

/* ============================================================
   CONTACT HUB (desktop section) + FOOTER
   ============================================================ */
.contact-hub { text-align: center; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 880px;
  margin: clamp(38px, 5vw, 52px) auto 0;
}
.hub-card {
  border: 1px solid var(--gold-hair);
  border-radius: 3px;
  padding: 28px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--ivory);
  transition: all .3s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hub-card:hover { border-color: var(--gold); transform: translateY(-3px); background: rgba(122,63,110,.12); }
.hub-card .ico { width: 24px; height: 24px; color: var(--gold); }
.hub-card .k { font-family: var(--body); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hub-card .v { font-family: var(--body); font-size: 14px; color: var(--ivory-soft); font-weight: 300; word-break: break-word; }
.hub-hours {
  margin-top: clamp(26px, 3vw, 34px);
  font-family: var(--accent); font-style: italic; font-size: 17px; color: var(--ivory-soft);
}
.hub-hours .mk { color: var(--gold); font-style: normal; }

footer {
  background: var(--ink);
  border-top: 1px solid var(--gold-hair);
  padding: clamp(48px, 6vw, 68px) var(--gut) 36px;
  text-align: center;
}
.footer-brand { font-family: var(--serif); font-size: 24px; letter-spacing: .24em; text-transform: uppercase; color: var(--ivory); padding-left: .24em; }
.footer-crest { margin: 14px auto; }
.footer-contact {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 22px;
  margin: 22px auto;
  font-size: 13.5px; color: var(--ivory-soft);
}
.footer-contact a { color: var(--ivory-soft); text-decoration: none; transition: color .25s var(--ease); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .sep { color: var(--gold-dim); }
.footer-social { display: flex; justify-content: center; gap: 16px; margin: 18px auto; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--gold-hair); border-radius: 50%; color: var(--gold);
  transition: all .3s var(--ease); text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--plum-deep); border-color: var(--gold); }
.footer-social .ico { width: 17px; height: 17px; }
.footer-note { font-size: 11.5px; color: var(--ivory-faint); margin-top: 18px; letter-spacing: .02em; line-height: 1.7; }
.footer-maps { margin-top: 10px; }
.footer-maps a { color: var(--gold); text-decoration: none; font-size: 12.5px; letter-spacing: .04em; }
.powered-by { color: var(--ivory-faint) !important; }

/* ============================================================
   MOBILE phone fab (top-right) + bottom-right contact drawer
   ============================================================ */
.mc-phone-fab {
  display: none;
  position: fixed; top: 14px; right: 14px; z-index: 9998;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: var(--gold); color: var(--plum-deep);
  border-radius: 50%;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,.55), 0 0 0 1px rgba(200,162,75,.4);
  text-decoration: none;
}
.mc-phone-fab .ico { width: 20px; height: 20px; }

/* drawer */
.mc-drawer-toggle {
  display: none;
  position: fixed; right: 12px; bottom: 74px; z-index: 9998;
  align-items: center; gap: 8px;
  height: 46px; padding: 0 18px;
  background: var(--plum-soft);
  color: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--body); font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.6);
  cursor: pointer;
  animation: mcBreathe 2.5s ease-in-out infinite;
}
.mc-drawer-toggle::before { content: "\265B"; color: var(--gold); font-size: 13px; line-height: 1; }
.mc-drawer-toggle.stopped { animation: none; }
@keyframes mcBreathe {
  0%, 100% { transform: scale(.94); opacity: .85; }
  50% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .mc-drawer-toggle { animation: none; } }

.mc-backdrop {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(20,11,20,.6);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.mc-backdrop.open { opacity: 1; pointer-events: auto; }
.mc-drawer {
  position: fixed; right: 12px; bottom: 74px; z-index: 10002;
  width: min(320px, calc(100vw - 24px));
  background: var(--plum-deep);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
  transform: translateY(16px) scale(.96);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: all .32s var(--ease);
}
.mc-drawer.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.mc-drawer .dh {
  text-align: center; font-family: var(--serif); font-size: 18px; color: var(--ivory);
  letter-spacing: .04em; margin-bottom: 4px;
}
.mc-drawer .dh-crest { text-align: center; color: var(--gold); font-size: 12px; margin-bottom: 16px; }
.mc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px; min-height: 48px;
  border: 1px solid var(--gold-hair); border-radius: 4px;
  color: var(--ivory); text-decoration: none;
  font-family: var(--body); font-size: 14px;
  margin-bottom: 8px;
  transition: all .25s var(--ease);
  background: transparent; width: 100%; cursor: pointer; text-align: left;
}
.mc-row:hover { border-color: var(--gold); background: rgba(122,63,110,.16); }
.mc-row .ico { width: 18px; height: 18px; color: var(--gold); flex: none; }
.mc-row .v { color: var(--ivory-soft); }
.mc-pair { display: flex; gap: 8px; }
.mc-pair .mc-row { margin-bottom: 8px; justify-content: center; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .gallery { column-count: 2; }
  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-copy { text-align: center; }
  .reserve-copy h2 { text-align: center; }
  .assure { max-width: 460px; margin-left: auto; margin-right: auto; }
  .assure li { text-align: left; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .masthead-call { display: none; }      /* phone moves to top-right fab on mobile */
  .mc-phone-fab { display: flex; }
  .mc-drawer-toggle { display: inline-flex; }
  .promise-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .dynasty-stat .stat-div { display: none; }
  .hero-portrait { max-width: 340px; }
}

@media (max-width: 460px) {
  .gallery { column-count: 1; }
  .hub-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(40px, 13vw, 56px); }
}
