/* =========================================================
   MOBILE NOTARY KINGDOM — luxury law-firm × five-star hotel
   ========================================================= */

:root {
  /* Palette */
  --bg:           #0a0a0b;
  --bg-2:         #111114;
  --bg-3:         #16161a;
  --ink:          #ece8df;
  --ink-soft:     #b9b3a4;
  --ink-mute:     #7a7466;
  --gold:         #c9a24a;
  --gold-bright:  #e6c376;
  --gold-deep:    #8a6c2a;
  --gold-line:    rgba(201, 162, 74, 0.35);
  --gold-faint:   rgba(201, 162, 74, 0.12);
  --hair:         rgba(236, 232, 223, 0.08);
  --hair-2:       rgba(236, 232, 223, 0.14);

  /* Type */
  --f-display: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  --f-serif:   "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --f-mono:    "Manrope", system-ui, sans-serif;
  --f-sans:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 10vw, 160px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

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

/* Subtle film-grain noise overlay */
.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .85 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 0%, rgba(10,10,11,0) 100%);
  transition: background .4s ease, padding .3s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--gold-line);
}
.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-decoration: none;
}
.logo-mark { color: var(--gold); display: inline-flex; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-line-1 {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink);
  text-transform: uppercase;
}
.logo-line-2 {
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 38px;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }

/* Free Tools dropdown */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 7px; }
.nav-caret {
  width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px); transition: transform .3s;
}
.nav-drop:hover .nav-caret, .nav-drop.is-open .nav-caret { transform: rotate(-135deg) translateY(-1px); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 268px; padding: 8px; margin-top: 14px;
  background: rgba(12,12,14,0.97); backdrop-filter: blur(14px);
  border: 1px solid var(--gold-line); box-shadow: 0 24px 60px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, transform .28s cubic-bezier(.2,.7,.2,1);
  z-index: 60;
}
.nav-drop-menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.is-open .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: flex; flex-direction: column; gap: 3px; padding: 13px 15px;
  border: 1px solid transparent; transition: background .25s, border-color .25s;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: rgba(201,162,74,0.07); border-color: var(--gold-line); }
.nav-drop-menu .ndm-name {
  font-family: var(--f-display); font-size: 14px; letter-spacing: 0.04em; color: var(--gold); text-transform: none;
}
.nav-drop-menu .ndm-sub {
  font-family: var(--f-serif); font-style: italic; font-size: 13px; letter-spacing: 0; color: var(--ink-soft); text-transform: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--gold);
  color: #0a0a0b;
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background .3s, color .3s, transform .3s;
  position: relative;
}
.nav-cta:hover { background: var(--gold-bright); }
.nav-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0a0a0b;
  position: relative;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10,10,11,.7); }
  50% { box-shadow: 0 0 0 6px rgba(10,10,11,0); }
}

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-line);
  width: 44px; height: 44px;
  position: relative;
  padding: 0;
}
.nav-burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1px;
  background: var(--gold);
  transition: transform .3s, opacity .3s, top .3s;
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 27px; }
.nav-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   HERO — full-bleed cinematic portrait
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(201,162,74,0.16) 0%, rgba(201,162,74,0.04) 28%, transparent 60%);
  filter: blur(20px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,74,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 1px solid var(--gold-line);
  background: rgba(201, 162, 74, 0.04);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.badge-sep { color: var(--gold); }
.badge-text { font-family: var(--f-sans); font-weight: 500; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(56px, 13vw, 196px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}
.hero-title span {
  display: block;
}
.hero-title .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 40px auto 0;
}
.hero-sub em {
  color: var(--ink);
  font-style: italic;
}
.gold-text { color: var(--gold); font-style: italic; }

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0b;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0b;
}
.btn-block { width: 100%; padding: 22px; }

.hero-phone {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
}
.phone-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 18px;
  border-right: 1px solid var(--gold-line);
}
.phone-number {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-decoration: none;
}
.phone-number:hover { color: var(--gold); }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-mute);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  background: #08080a;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 26px var(--gutter);
}
.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}
.diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

.section-head {
  max-width: 820px;
  margin-bottom: 80px;
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--ink);
}
.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}
.section-lede {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.service-card {
  position: relative;
  padding: 44px 32px 40px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--bg);
  overflow: hidden;
  transition: background .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height .45s cubic-bezier(.7,0,.3,1);
}
.service-card:hover { background: #0e0e10; }
.service-card:hover::before { height: 100%; }
.service-card:hover .service-icon { color: var(--gold); transform: translateY(-4px); }

.service-icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 32px;
  transition: color .3s, transform .4s;
}
.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.service-desc {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   WHY
   ========================================================= */
.why { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}

.numbered-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}
.numbered-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--hair);
}
.numbered-list li:last-child { border-bottom: 1px solid var(--hair); }
.numbered-list .num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.numbered-list h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 6px 0 10px;
  color: var(--ink);
}
.numbered-list p {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.stats-box {
  position: sticky;
  top: 120px;
  background: #08080a;
  border: 1px solid var(--gold-line);
  padding: 12px;
}
.why-portrait {
  position: relative;
  margin-bottom: 12px;
  border: 1px solid var(--gold-line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #050505;
}
.why-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) brightness(0.96) saturate(1.05);
  transform: scale(1.04);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.why-portrait:hover img { transform: scale(1); }
.why-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,0.8) 100%);
  pointer-events: none;
}
.why-portrait .wp-cap {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 1;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.why-portrait .wp-cap b { color: var(--gold); font-weight: 600; display: block; font-size: 12px; margin-top: 4px; letter-spacing: 0.18em; }
.stats-frame {
  border: 1px solid var(--gold-line);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat {
  padding: 30px 16px;
  text-align: center;
  position: relative;
}
.stat:nth-child(1) { border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.stat:nth-child(2) { border-bottom: 1px solid var(--hair); }
.stat:nth-child(3) { border-right: 1px solid var(--hair); }
.stat-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.stat-star { font-size: 36px; margin-left: 2px; }
.stat-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stats-footer {
  padding: 22px 28px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.seal { color: var(--gold); }

/* =========================================================
   AREAS
   ========================================================= */
.areas { background: var(--bg); }
.areas-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 90px;
}
.zip-block {
  border: 1px solid var(--gold-line);
  padding: 32px;
  background: rgba(201, 162, 74, 0.025);
  position: relative;
}
.zip-block::before, .zip-block::after,
.zip-block .zip-list::before, .zip-block .zip-list::after {
  /* corner ornaments */
}
.zip-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gold-line);
}
.zip-head-label {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.zip-head-count {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.zip-list {
  font-family: "Courier New", "Courier", monospace;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin: 0;
  word-spacing: 4px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.city-card {
  display: block;
  padding: 32px 28px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: background .35s;
}
.city-card:hover { background: #0e0e10; }
.city-card:hover .city-name { color: var(--gold); }
.city-num {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 18px;
}
.city-name {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color .3s;
}
.city-zips {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--bg-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  position: relative;
  padding: 48px 36px 40px;
  background: var(--bg);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.quote-mark {
  position: absolute;
  top: -30px; right: 16px;
  font-family: var(--f-display);
  font-size: 200px;
  color: var(--gold-faint);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.stars-row {
  color: var(--gold);
  letter-spacing: 6px;
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review-card blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.reviewer {
  padding-top: 22px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative; z-index: 1;
}
.reviewer-name {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.reviewer-city {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
.reviews-cta {
  text-align: center;
  margin-top: 60px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  align-items: start;
}
.faq-phone {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-decoration: none;
}
.faq-phone:hover { color: var(--gold-bright); }

.faq-item {
  border-top: 1px solid var(--gold-line);
}
.faq-item:last-child { border-bottom: 1px solid var(--gold-line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease;
  flex: 0 0 auto;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 28px;
  max-width: 720px;
}
.faq-body p {
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.faq-body strong { color: var(--ink); font-weight: 500; }

/* =========================================================
   BOOK
   ========================================================= */
.book {
  background: linear-gradient(180deg, var(--bg) 0%, #08080a 100%);
  text-align: center;
}
.book-inner {
  max-width: 760px;
}
.book-head { text-align: center; }
.book-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  margin: 24px 0 28px;
  letter-spacing: 0.02em;
}
.book-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.book-sub {
  font-family: var(--f-serif);
  font-size: 20px;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.book-phone {
  display: inline-block;
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.16em;
  color: var(--gold);
  text-decoration: none;
  padding: 16px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 48px;
  transition: color .3s;
}
.book-phone:hover { color: var(--gold-bright); }

.book-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 56px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold-line);
}
.divider-text {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.book-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-line);
  padding: 14px 0;
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: 18px;
  outline: none;
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; cursor: pointer; padding-right: 24px;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 22px, calc(100% - 9px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); font-style: italic; }

.form-note {
  font-family: var(--f-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  text-align: center;
  margin: 4px 0 0;
}

.book-form.is-sent .form-row,
.book-form.is-sent .field,
.book-form.is-sent .form-note { display: none; }

#submitBtn.is-sent {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  cursor: default;
  pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #07070a;
  border-top: 1px solid var(--gold-line);
  padding-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.footer-brand .logo-footer {
  margin-bottom: 24px;
}
.footer-desc {
  font-family: var(--f-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 360px;
}
.footer-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 14px;
}
.footer-stars span {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-left: 8px;
}
.footer-h {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 6px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-label {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ft-phone {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid var(--hair);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.footer-bottom-inner p { margin: 0; }
.footer-keywords {
  font-family: var(--f-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.18,.62,.18,1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .why-grid, .faq-grid, .areas-intro { grid-template-columns: 1fr; gap: 60px; }
  .stats-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  :root { --section-pad: 80px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 320px;
    height: 100vh; height: 100svh;
    background: #08080a;
    border-left: 1px solid var(--gold-line);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.7,0,.3,1);
    z-index: 99;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 14px; letter-spacing: 0.28em; }
  .nav-drop { flex-direction: column; align-items: center; gap: 18px; }
  .nav-drop-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; width: 100%; margin: 0; padding: 0; background: none; border: none; box-shadow: none;
    display: flex; flex-direction: column; gap: 12px;
  }
  .nav-drop-menu a { padding: 4px 0; align-items: center; text-align: center; border: none; }
  .nav-drop-menu a:hover { background: none; border: none; }
  .nav-caret { display: none; }
  .nav-inner { grid-template-columns: 1fr auto auto; gap: 16px; }
  .nav-burger { display: block; }
  .nav-cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.14em; }
  .nav-cta-dot { display: none; }

  .hero { padding-top: 120px; }
  .hero-badge { margin-bottom: 32px; padding: 8px 16px; font-size: 10px; gap: 8px; }
  .hero-title { letter-spacing: 0.02em; }
  .hero-ctas .btn { padding: 16px 24px; font-size: 11px; letter-spacing: 0.18em; }
  .hero-phone { margin-top: 40px; flex-direction: column; gap: 8px; }
  .phone-label { border-right: none; padding-right: 0; }

  .trust-inner { justify-content: center; gap: 14px; }
  .trust-item { font-size: 10px; }
  .diamond { width: 6px; height: 6px; }

  .services-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }

  .numbered-list li { grid-template-columns: 56px 1fr; gap: 16px; }
  .numbered-list .num { font-size: 22px; }

  .stats-frame { padding: 28px 18px; }
  .stat-num { font-size: 40px; }

  .review-card { padding: 36px 24px 28px; }
  .quote-mark { font-size: 140px; top: -20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer { padding-top: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* =========================================================
   v2 UPGRADE — editorial photo treatment & $10K polish
   ========================================================= */

/* Logo image */
.logo-img {
  display: block;
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201,162,74,0.25));
}
.nav.is-scrolled .logo-img { width: 36px; height: 36px; transition: width .3s, height .3s; }

/* ---------- HERO — cinematic full-bleed ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 160px var(--gutter) 100px !important;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-poster {
  filter: brightness(0.9) contrast(1.02);
  transform: scale(1.06);
  transition: transform 7s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.hero.is-in .hero-poster { transform: scale(1); }
.hero-video {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.94) contrast(1.05) saturate(1.08);
  transition: opacity .55s ease;
}
/* fade the video in once it can actually play */
.hero-video.is-playing { opacity: 1; }
/* gentle crossfade dip across the loop seam */
.hero-video.is-playing.seam { opacity: 0.45; transition: opacity .28s ease; }

.hero.is-in .hero-media img { transform: scale(1); }
.hero-veil, .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(rgba(10,5,20,0.72), rgba(10,5,20,0.6));
}
/* on mobile + reduced-motion, hide the video and keep the static poster */
@media (max-width: 768px) {
  .hero-video { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  .hero-poster { transition: none; transform: none; }
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
  text-align: center;
}

/* OPEN 24/7 pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 40px;
}
.pill-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18), 0 0 14px rgba(74,222,128,0.6);
  animation: livePulse 2s ease-in-out infinite;
  flex: 0 0 auto;
}
@keyframes livePulse { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:.7; transform:scale(.85);} }

/* Eyebrow with side lines */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 30px;
  max-width: 720px;
}
.hero-eyebrow .line {
  height: 1px;
  width: clamp(40px, 8vw, 110px);
  background: var(--gold);
  opacity: .8;
}

/* Headline */
.hero-headline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 7.6vw, 132px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none !important;
  margin: 0 auto;
  max-width: 1180px;
  text-wrap: balance;
}
.hero-headline em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Giant 24/7 */
.hero-247 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.9;
  color: var(--gold);
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* Lede */
.hero-lede {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 36px auto 0;
}

/* Actions row */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.hero-actions .btn {
  padding: 18px 32px;
  border-radius: 6px;
  letter-spacing: 0.16em;
  font-size: 12px;
}
.hero-actions .btn svg { color: currentColor; }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 8px;
  border-bottom: 1px solid var(--gold);
  transition: color .3s, border-color .3s;
}
.btn-link:hover { color: var(--gold); }

/* Scroll cue lower on full-bleed hero */
.hero .scroll-cue { color: var(--ink-soft); }
.hero .scroll-cue .line { background: linear-gradient(to bottom, var(--gold), transparent); }

/* ---------- TRUST — marquee scroll ---------- */
.trust { padding: 0; overflow: hidden; }
.trust-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 28px 0;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-track .trust-item {
  flex: 0 0 auto;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust-track .diamond { flex: 0 0 auto; }

/* ---------- FULL-BLEED "ANYWHERE" BAND ---------- */
.anywhere {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.anywhere-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hospital-signing.png');
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(60%) brightness(0.55) contrast(1.05);
  transform: scale(1.08);
  transition: transform 8s ease-out;
  z-index: 0;
}
.anywhere.is-in .anywhere-bg { transform: scale(1); }
.anywhere::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.65) 50%, rgba(10,10,11,0.45) 100%);
  z-index: 1;
}
.anywhere::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.6) 0%, transparent 20%, transparent 80%, rgba(10,10,11,0.95) 100%);
  z-index: 1;
}
.anywhere-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.anywhere-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 36px;
}
.anywhere-eyebrow .line { width: 48px; height: 1px; background: var(--gold); }
.anywhere-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 32px;
  max-width: 880px;
}
.anywhere-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.anywhere-sub {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 0 40px;
}
.anywhere-locs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  max-width: 760px;
  margin-top: 56px;
}
.anywhere-loc {
  padding: 22px 28px 22px 0;
  border-right: 1px solid var(--gold-line);
}
.anywhere-loc:last-child { border-right: none; padding-right: 0; }
.anywhere-loc .ix {
  font-family: var(--f-display);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--gold);
  display: block; margin-bottom: 8px;
}
.anywhere-loc .name {
  font-family: var(--f-display);
  font-size: 16px; letter-spacing: 0.12em;
  color: var(--ink); text-transform: uppercase;
}

/* ---------- SERVICE WEDDING FEATURE CARD ---------- */
.service-card.has-image {
  padding: 0;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 360px;
}
.service-card.has-image .service-image {
  position: relative;
  overflow: hidden;
  background: #060606;
}
.service-card.has-image .service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
  filter: brightness(0.85) saturate(0.9);
}
.service-card.has-image:hover .service-image img { transform: scale(1.05); }
.service-card.has-image .service-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.5) 100%);
}
.service-card.has-image .service-body {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card.has-image .service-name { font-size: 18px; }
.service-card.has-image .service-desc { font-size: 19px; }
.service-card.has-image .featured-tag {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 9px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
  width: max-content;
}

/* ---------- REVIEWS — subtle texture ---------- */
.reviews { position: relative; overflow: hidden; }
.reviews::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(201,162,74,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- MAGNETIC BUTTON HOVER ---------- */
.btn { position: relative; overflow: hidden; }
.btn-gold::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }

/* ---------- SECTION NUMBERS ---------- */
.section-num {
  position: absolute;
  top: 80px;
  right: var(--gutter);
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.6;
  display: flex; align-items: center; gap: 12px;
}
.section-num .line { width: 32px; height: 1px; background: var(--gold); opacity: 0.5; }

/* ---------- BOOK form polish ---------- */
.book-form {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--hair);
  padding: 48px;
  margin-top: 8px;
}

/* ---------- PAY ONLINE (Square) ---------- */
.pay-block { margin-top: 56px; }
.pay-block .book-divider { margin-bottom: 40px; }
.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pay-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--hair);
  transition: border-color .35s, transform .35s, background .35s;
}
.pay-card:hover { border-color: var(--gold-line); transform: translateY(-3px); background: rgba(201,162,74,0.04); }
.pay-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.pay-name {
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.pay-price {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pay-unit {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 2px;
}
.pay-meta {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1;
}
.pay-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  background: var(--gold);
  color: #0a0a0b;
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background .3s, box-shadow .3s;
}
.pay-btn:hover { background: var(--gold-bright); box-shadow: 0 8px 26px rgba(201,162,74,.32); }
.pay-btn-outline {
  background: transparent;
  color: var(--gold);
}
.pay-btn-outline:hover { background: var(--gold); color: #0a0a0b; }
.pay-card-alt { border-style: dashed; border-color: var(--gold-line); background: transparent; }

.pay-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px 0 0;
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  line-height: 1.6;
}
.pay-secure svg { color: var(--gold); flex: 0 0 auto; }
.pay-secure strong { color: var(--ink-soft); font-weight: 600; }
.pay-help {
  text-align: center;
  margin: 12px 0 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}
.pay-help a { color: var(--gold); text-decoration: none; }
.pay-help a:hover { text-decoration: underline; }

/* Flag any Square link the owner hasn't wired up yet */
.pay-btn[href*="REPLACE_"] { position: relative; }
.pay-btn[href*="REPLACE_"]::after {
  content: "SET LINK";
  position: absolute;
  top: -9px; right: -9px;
  background: #c0392b;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 6px;
  border-radius: 3px;
}

/* ---------- RESPONSIVE — hero cinematic ---------- */
@media (max-width: 1080px) {
  .hero-eyebrow { gap: 14px; font-size: 10px; }
  .anywhere-locs { grid-template-columns: repeat(2, 1fr); }
  .anywhere-loc { padding: 18px; border-right: 1px solid var(--gold-line); }
  .anywhere-loc:nth-child(2) { border-right: none; }
  .service-card.has-image { grid-column: span 2; grid-template-columns: 1fr; }
  .service-card.has-image .service-image { min-height: 280px; }
  .book-form { padding: 32px 24px; }
  .pay-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-eyebrow { gap: 10px; font-size: 9px; letter-spacing: 0.32em; }
  .hero-eyebrow .line { width: 24px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { padding: 14px 22px; font-size: 11px; letter-spacing: 0.14em; }
  .hero-pill { font-size: 10px; padding: 7px 16px; }
  .portrait-corner { width: 20px; height: 20px; }
  .anywhere { height: auto; min-height: 540px; padding: 100px 0; }
  .anywhere::before { background: linear-gradient(180deg, rgba(10,10,11,0.7) 0%, rgba(10,10,11,0.88) 100%); }
  .anywhere-locs { grid-template-columns: 1fr 1fr; }
  .service-card.has-image { grid-column: span 1; }
}

/* =========================================================
   STUDIO / BEYOND NOTARY
   ========================================================= */
.studio {
  position: relative;
  background: #07070a;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.studio-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 18% 18%, rgba(201,162,74,0.10) 0%, transparent 60%),
    radial-gradient(700px 500px at 82% 82%, rgba(201,162,74,0.07) 0%, transparent 60%);
}
.studio .container { position: relative; z-index: 1; }

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}
.studio-card {
  position: relative;
  padding: 4px;
  background: linear-gradient(160deg, rgba(201,162,74,0.45) 0%, rgba(201,162,74,0.05) 35%, rgba(201,162,74,0.05) 65%, rgba(201,162,74,0.35) 100%);
}
.studio-card-frame {
  padding: 44px 40px 40px;
  background: #08080a;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}
.studio-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(201,162,74,0.10) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.studio-card:hover .studio-card-frame { background: #0d0d10; }
.studio-card:hover .studio-card-frame::after { opacity: 1; }

.studio-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gold-line);
}
.studio-tag {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.studio-mini {
  color: var(--gold);
  opacity: .8;
  display: inline-flex;
}
.studio-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.1;
}
.studio-desc {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.studio-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 22px 0 0;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.studio-list li {
  display: flex;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.studio-list li span {
  color: var(--gold);
  font-family: var(--f-display);
}
.studio-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-line);
  align-self: flex-start;
  transition: color .3s, border-color .3s, gap .3s;
}
.studio-cta:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
  gap: 16px;
}

/* YouTube banner */
.yt-banner {
  display: block;
  margin-top: 56px;
  padding: 3px;
  background: linear-gradient(120deg, var(--gold) 0%, rgba(201,162,74,0.15) 45%, var(--gold) 100%);
  background-size: 220% 100%;
  background-position: 100% 0;
  text-decoration: none;
  transition: background-position 1.2s ease;
}
.yt-banner:hover { background-position: 0 0; }
.yt-banner-frame {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  background: #07070a;
}
.yt-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  flex: 0 0 auto;
}
.yt-play::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  animation: ytPulse 2.4s ease-out infinite;
}
@keyframes ytPulse {
  0% { transform: scale(.95); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}
.yt-banner-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.yt-banner-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.yt-banner-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.yt-banner-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.yt-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--gold);
  color: #0a0a0b;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .3s;
  flex: 0 0 auto;
}
.yt-banner-cta svg { color: #0a0a0b; }
.yt-banner:hover .yt-banner-cta { background: var(--gold-bright); }

/* Footer YouTube link */
.ft-youtube {
  font-family: var(--f-serif) !important;
  color: var(--gold) !important;
  font-size: 15px !important;
}
.ft-youtube svg { color: var(--gold); }

@media (max-width: 1080px) {
  .studio-grid { grid-template-columns: 1fr; gap: 20px; }
  .yt-banner-frame { grid-template-columns: auto 1fr; }
  .yt-banner-cta { grid-column: 1 / -1; justify-content: center; padding: 14px; }
}
@media (max-width: 720px) {
  .studio-card-frame { padding: 32px 24px 28px; }
  .yt-banner { margin-top: 40px; }
  .yt-banner-frame { padding: 22px 22px; gap: 18px; }
  .yt-play { width: 52px; height: 52px; }
  .yt-banner-title { font-size: 18px; }
  .yt-banner-sub { font-size: 14px; }
}

/* =========================================================
   TWEAKS — density + font swap hooks
   ========================================================= */
body[data-density="spacious"] { --section-pad: clamp(110px, 13vw, 200px); }
body[data-density="compact"]  { --section-pad: clamp(56px, 7vw, 100px); }

body[data-font="playfair"] { --f-display: "Playfair Display", "Cinzel", "Times New Roman", serif; }
body[data-font="bodoni"]   { --f-display: "Bodoni Moda", "Cinzel", "Times New Roman", serif; }
body[data-font="cormorant"] { --f-display: "Cormorant Garamond", "Cinzel", serif; }

body[data-hide-studio="true"] .studio { display: none; }

/* =========================================================
   FREE POA BAND
   ========================================================= */
.poa-band{
  background:linear-gradient(180deg,#08080a 0%,var(--bg) 100%);
  border-top:1px solid var(--gold-line);
}
.poa-head{max-width:760px;margin:0 0 56px;}
.poa-disc{
  margin:44px auto 0;padding-top:22px;border-top:1px solid var(--hair);
  font-family:var(--f-sans);font-size:12.5px;line-height:1.6;color:var(--ink-mute);max-width:760px;text-align:center;
}
.poa-disc strong{color:var(--gold);letter-spacing:.04em;}

/* two free-tool cards */
.tools-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:28px;
}
.tool-card{
  position:relative;display:flex;flex-direction:column;
  border:1px solid var(--hair);background:#0c0c0f;text-decoration:none;color:var(--ink);
  overflow:hidden;transition:border-color .4s ease,transform .4s ease;
}
.tool-card:hover{border-color:var(--gold-line);transform:translateY(-4px);}
.tool-mock{
  position:relative;height:230px;overflow:hidden;
  background:repeating-linear-gradient(135deg,#141417 0 2px,#111114 2px 22px);
  display:flex;align-items:flex-end;justify-content:center;padding-top:40px;
}
.tool-mock .mock-band{
  width:74%;border-radius:3px 3px 0 0;padding:18px 20px 16px;
  background:linear-gradient(135deg,#1a2a4a,#24365c);color:#fff;border-bottom:3px solid var(--gold);
  box-shadow:0 -18px 50px rgba(0,0,0,.5);
}
.tool-mock .mock-band.alt{background:linear-gradient(135deg,#1f3a2e,#2a5240);}
.tool-mock .mock-kick{display:block;font-family:var(--f-sans);font-size:8px;letter-spacing:.24em;text-transform:uppercase;opacity:.85;}
.tool-mock .mock-title{display:block;font-family:var(--f-display);font-weight:600;font-size:18px;line-height:1.12;margin-top:6px;}
.tool-mock .mock-lines{position:absolute;left:13%;right:13%;bottom:0;display:flex;flex-direction:column;gap:7px;background:#fff;padding:14px 16px 0;border-radius:0;}
.tool-mock .mock-lines span{height:4px;background:#dcd9cf;border-radius:2px;}
.tool-mock .mock-lines span.s{width:58%;}
.tool-body{display:flex;flex-direction:column;gap:12px;padding:30px 30px 32px;flex:1;}
.tool-name{font-family:var(--f-display);font-weight:500;font-size:24px;color:var(--ink);}
.tool-desc{font-family:var(--f-serif);font-size:17px;line-height:1.5;color:var(--ink-soft);flex:1;}
.tool-cta{
  font-family:var(--f-sans);font-size:12px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-top:6px;transition:letter-spacing .3s;
}
.tool-card:hover .tool-cta{letter-spacing:.26em;}
.tool-badge{
  position:absolute;top:18px;right:18px;z-index:5;
  width:54px;height:54px;border-radius:50%;background:var(--gold);color:#0a0a0b;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--f-display);font-weight:700;font-size:12px;letter-spacing:.08em;
  box-shadow:0 10px 30px rgba(201,162,74,.4);
}

@media(max-width:860px){
  .tools-grid{grid-template-columns:1fr;}
}
body[data-hide-portrait="true"] .hero-media { display: none; }
body[data-hide-portrait="true"] .hero { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

