/* ═══════════════════════════════════════════════════════════════
   DYNASTY MOBILE DRY CLEANERS
   Aesthetic: Beverly Hills Black & Gold · Editorial Magazine
   Inspiration: art deco luxury, The Row's restraint,
                magazine typography, the gold-on-black emblem
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ─── Royal Palette · Pure Black + Gold ─── */
  --black: #0a0a0a;             /* True black, logo background */
  --ink: #111111;               /* Near-black, the dominant dark */
  --ink-soft: #1e1e1e;
  --parchment: #f5edd9;         /* Warm cream that harmonizes with gold */
  --parchment-warm: #ebdfc1;
  --paper: #faf4e6;             /* Light cream paper */
  --white: #ffffff;
  /* The metallic gold lifted from the emblem */
  --gold: #d4a948;
  --gold-deep: #a07f2c;
  --gold-light: #ecca7a;
  --gold-bright: #f1c75e;        /* For glints/highlights on dark */
  /* Saffron tokens kept as aliases — every existing reference becomes gold */
  --saffron: var(--gold);
  --saffron-deep: var(--gold-deep);
  --saffron-light: var(--gold-light);
  /* Lines */
  --line: rgba(17, 17, 17, 0.15);
  --line-soft: rgba(17, 17, 17, 0.08);
  --line-gold: rgba(212, 169, 72, 0.4);
  --line-on-dark: rgba(212, 169, 72, 0.22);
  
  /* ─── Typography ─── */
  --display: 'Fraunces', 'Cormorant', Georgia, serif;
  --body: 'Cormorant', 'Fraunces', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  
  /* ─── Spatial ─── */
  --container: 1320px;
  --section-y: 9rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--parchment);
  line-height: 1.65;
  font-weight: 400;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Subtle gold-on-black grain */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 169, 72, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 169, 72, 0.025) 0%, transparent 50%);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

em {
  font-style: italic;
  font-weight: 300;
}

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

/* ═══════════════════════════════════════════
   MARQUEE (Top Announcement)
   ═══════════════════════════════════════════ */

.marquee {
  background: var(--ink);
  color: var(--parchment);
  padding: 0.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--saffron-deep);
}

.marquee-track {
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.marquee-track span {
  color: var(--parchment);
}

.marquee-track span::after {
  content: '※';
  color: var(--saffron);
  margin: 0 1.5rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  background: var(--paper);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(250, 245, 232, 0.92);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-monogram {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
}

.brand-monogram::before,
.brand-monogram::after {
  content: '';
  position: absolute;
  background: var(--saffron);
}

.brand-monogram::before {
  width: 6px;
  height: 1px;
  top: 50%;
  left: -10px;
}

.brand-monogram::after {
  width: 6px;
  height: 1px;
  top: 50%;
  right: -10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1;
  color: var(--ink);
}

.brand-tagline {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--saffron);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-menu a {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--saffron);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:hover::after {
  transform: translateX(-50%) scale(1);
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--parchment) !important;
  padding: 12px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-action:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-btn span {
  width: 18px;
  height: 1px;
  background: var(--ink);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  background: var(--black);
  color: var(--parchment);
  padding: 7rem 0 9rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(ellipse at 50% 35%, rgba(212, 169, 72, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(212, 169, 72, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 10%, rgba(212, 169, 72, 0.08) 0%, transparent 45%);
}
.hero .hero-title { color: var(--white); }
.hero .hero-title em { color: var(--gold); }
.hero .hero-badge { color: var(--gold); }
.hero .hero-badge .badge-line { background: var(--gold); }
.hero .vertical-text { color: var(--gold); opacity: 0.55; }
.hero .meta-label { color: var(--gold); }
.hero .meta-value { color: var(--white); }
.hero .meta-sub { color: var(--parchment); opacity: 0.7; }
.hero .meta-block { border-color: var(--line-on-dark); }
.hero .btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.hero .btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero .btn-text { color: var(--parchment); border-color: var(--parchment); }
.hero .btn-text:hover { color: var(--gold); border-color: var(--gold); }
.hero .hero-ornament-top { color: var(--gold); }

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  color: var(--saffron);
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-ornament-top {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--saffron);
  z-index: 2;
  animation: fade-in 1.5s ease-out;
}

.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 5;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--saffron-deep);
  text-transform: uppercase;
  margin-bottom: 3rem;
  animation: fade-up 1s ease-out 0.3s backwards;
}

.badge-line {
  width: 40px;
  height: 1px;
  background: var(--saffron);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 4rem;
}

.title-line {
  display: block;
  opacity: 0;
  animation: title-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.title-line em {
  font-style: italic;
  font-weight: 300;
  color: var(--saffron);
}

.line-1 { animation-delay: 0.4s; }
.line-2 { animation-delay: 0.6s; }
.line-3 { animation-delay: 0.8s; }
.line-4 { animation-delay: 1.0s; }

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: flex-end;
  animation: fade-up 1s ease-out 1.4s backwards;
}

.meta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--saffron-deep);
  text-transform: uppercase;
}

.meta-value {
  font-family: var(--display);
  font-size: 32px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 1px;
}

.meta-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  font-family: var(--body);
  font-style: italic;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  animation: fade-up 1s ease-out 1.6s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--parchment);
}

.btn-primary:hover {
  background: var(--saffron);
  color: var(--ink);
  gap: 20px;
}

.btn-text {
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 18px 0;
}

.btn-text:hover {
  color: var(--saffron-deep);
  border-color: var(--saffron);
}

.btn-arrow {
  font-size: 14px;
  transition: transform 0.4s;
}

/* Side vertical text */
.hero-side {
  position: absolute;
  top: 50%;
  z-index: 3;
  color: var(--saffron-deep);
  animation: fade-in 2s ease-out 1s backwards;
}

.hero-side-left {
  left: 2rem;
  transform: translateY(-50%);
}

.hero-side-right {
  right: 2rem;
  transform: translateY(-50%);
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.5;
}

.hero-side-left .vertical-text {
  transform: rotate(180deg);
}

/* Floating circular seal */
.floating-seal {
  position: absolute;
  bottom: -80px;
  right: 8%;
  width: 180px;
  height: 180px;
  color: var(--ink);
  z-index: 4;
  animation: rotate-seal 60s linear infinite, fade-in 2s ease-out 1.5s backwards;
}

.seal-text {
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: 3px;
  fill: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
}

.seal-letter {
  font-family: var(--display);
  font-size: 48px;
  fill: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.seal-year {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  fill: var(--saffron-deep);
}

@keyframes rotate-seal {
  to { transform: rotate(360deg); }
}

@keyframes title-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */

.section-header {
  margin-bottom: 5rem;
  max-width: 900px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--saffron);
  font-weight: 300;
}

.section-lead {
  margin-top: 2rem;
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  max-width: 640px;
}

.section-header.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   HERITAGE / STORY SECTION
   ═══════════════════════════════════════════ */

.heritage {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
}

.heritage-lead {
  max-width: 760px;
  margin: 0 auto 6rem;
  text-align: left;
  padding: 0 2rem;
}

.dropcap {
  font-size: 22px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.drop {
  float: left;
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.85;
  color: var(--saffron);
  padding: 0.5rem 1rem 0 0;
  font-style: italic;
  font-weight: 400;
}

.heritage-lead p:last-child {
  font-size: 20px;
  font-style: italic;
  color: var(--saffron-deep);
  text-align: center;
  margin-top: 2rem;
  font-family: var(--display);
}

/* ─── Chapter Timeline ─── */

.chapters {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.chapters::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(to bottom, 
    transparent 0%,
    var(--saffron) 8%,
    var(--saffron) 92%,
    transparent 100%
  );
  opacity: 0.3;
}

.chapter {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
  position: relative;
}

.chapter:last-child {
  margin-bottom: 0;
}

.chapter-marker {
  text-align: right;
  padding-right: 1.5rem;
  position: relative;
}

.chapter-year {
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.chapter-ornament {
  position: absolute;
  right: -10px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  z-index: 2;
}

.chapter-body {
  padding-top: 0.25rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-soft);
}

.chapter-title {
  font-family: var(--display);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.chapter-title em {
  font-style: italic;
  color: var(--saffron);
}

.chapter-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.chapter-body p em {
  color: var(--saffron-deep);
}

.chapter.chapter-featured {
  background: var(--parchment);
  padding: 2.5rem 0;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.chapter.chapter-featured .chapter-ornament {
  background: var(--parchment);
  color: var(--saffron);
}

.chapter.chapter-featured .chapter-year {
  color: var(--saffron-deep);
}

.chapter-signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--saffron-deep);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
}

.heritage-close {
  max-width: 760px;
  margin: 4.5rem auto 0;
  text-align: center;
}
.heritage-close p {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.5;
  color: var(--parchment);
}
.heritage-close p em { color: var(--gold); font-style: italic; }
.heritage-close .chapter-signature {
  justify-content: center;
  margin-top: 1.75rem;
}

/* ═══════════════════════════════════════════
   QUOTE FEATURE
   ═══════════════════════════════════════════ */

.quote-feature {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  color: var(--saffron);
  pointer-events: none;
}

.quote-feature .container {
  position: relative;
  z-index: 2;
}

.quote-mark {
  font-family: var(--display);
  font-size: 120px;
  color: var(--saffron);
  line-height: 0.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.big-quote {
  max-width: 900px;
  margin: 0 auto;
}

.big-quote p {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--parchment);
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.big-quote p em {
  font-style: italic;
  color: var(--saffron-light);
  font-weight: 300;
}

.quote-attribution {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: var(--saffron);
}

.quote-attribution cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--saffron-light);
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */

.services {
  padding: var(--section-y) 0;
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-tile {
  background: var(--paper);
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.service-tile:hover::before {
  transform: translateY(0);
}

.service-tile:hover {
  color: var(--parchment);
}

.service-tile:hover .tile-roman {
  color: var(--saffron);
}

.service-tile > * {
  position: relative;
  z-index: 1;
}

.tile-roman {
  font-family: var(--display);
  font-size: 14px;
  color: var(--saffron-deep);
  letter-spacing: 4px;
  margin-bottom: 2rem;
  font-style: italic;
  transition: color 0.4s;
}

.tile-content {
  flex: 1;
}

.tile-content h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.tile-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 300;
  transition: color 0.4s;
}

.service-tile:hover .tile-content p {
  color: rgba(244, 237, 224, 0.75);
}

.tile-corner {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--saffron);
  opacity: 0.6;
  transition: all 0.4s;
}

.service-tile:hover .tile-corner {
  color: var(--saffron);
  opacity: 1;
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */

.process {
  padding: var(--section-y) 0;
  background: var(--parchment);
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 0 2rem;
}

.step-num {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  position: relative;
  color: var(--ink);
}

.step-numeral {
  font-family: var(--display);
  font-size: 36px;
  fill: var(--saffron);
  font-style: italic;
  font-weight: 400;
}

.process-step h3 {
  font-family: var(--display);
  font-size: 36px;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.process-step p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 280px;
  margin: 0 auto;
}

.process-connector {
  width: 80px;
  height: 1px;
  background: var(--saffron);
  margin-top: 60px;
  position: relative;
}

.process-connector::before,
.process-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  transform: translateY(-50%);
}

.process-connector::before { left: 0; }
.process-connector::after { right: 0; }

/* ═══════════════════════════════════════════
   TERRITORY (Service Area)
   ═══════════════════════════════════════════ */

.territory {
  padding: var(--section-y) 0;
  background: var(--paper);
}

.territory-list {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-top: 1px solid var(--line);
}

.territory-item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.3s;
  position: relative;
}

.territory-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--saffron);
  transition: width 0.4s;
}

.territory-item:hover {
  background: var(--parchment);
  padding-left: 2.5rem;
}

.territory-item:hover::before {
  width: 3px;
}

.territory-item.primary {
  background: var(--ink);
  color: var(--parchment);
  padding: 2rem;
  margin-bottom: 1rem;
  border-bottom: none;
}

.territory-item.primary:hover {
  background: var(--ink-soft);
  padding-left: 2rem;
}

.territory-mark {
  font-family: var(--display);
  color: var(--saffron);
  font-size: 18px;
  font-style: italic;
}

.territory-item.primary .territory-mark {
  color: var(--saffron);
  font-size: 22px;
}

.territory-name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.territory-item.primary .territory-name {
  font-size: 28px;
}

.territory-postal {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 1.5px;
}

.territory-item.primary .territory-postal {
  color: var(--parchment);
  opacity: 0.7;
  font-size: 12px;
}

.territory-note {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
}

.territory-note a {
  color: var(--saffron-deep);
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 2px;
}

/* ═══════════════════════════════════════════
   CONTACT / SCHEDULE
   ═══════════════════════════════════════════ */

.contact {
  padding: var(--section-y) 0;
  background: var(--parchment);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info .section-header {
  margin-bottom: 3rem;
}

.contact-lead {
  font-size: 20px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.info-blocks {
  display: grid;
  gap: 2rem;
}

.info-block {
  padding-left: 1.5rem;
  border-left: 1px solid var(--saffron);
}

.info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--saffron-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-value {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
}

.info-value a {
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 2px;
}

.info-value a:hover {
  color: var(--saffron-deep);
}

/* ─── Schedule Form Card ─── */

.schedule-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 4.75rem 3rem 3rem;
  position: relative;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--saffron);
  opacity: 0.4;
  pointer-events: none;
}

.card-decoration {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  color: var(--saffron);
  padding: 4px 12px;
  width: 60px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-promo {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--saffron);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.card-title {
  font-family: var(--display);
  font-size: 40px;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 17px;
  color: var(--ink);
  transition: all 0.3s;
  border-radius: 0;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(200, 132, 27, 0.1);
}

.form-field textarea {
  resize: vertical;
  font-family: var(--body);
}

.form-submit {
  background: var(--ink);
  color: var(--parchment);
  border: none;
  padding: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
  background: var(--saffron);
  color: var(--ink);
  gap: 18px;
}

.submit-arrow {
  font-size: 14px;
  transition: transform 0.4s;
}

.form-fine {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 6rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, 
    transparent,
    var(--saffron) 20%,
    var(--saffron) 80%,
    transparent
  );
}

.footer-top {
  text-align: center;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}

.footer-monogram {
  width: 60px;
  height: 60px;
  border: 1px solid var(--saffron);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
}

.footer-lockup {
  display: block;
  margin: 0 auto 1.25rem;
  width: 280px;
  height: auto;
  max-width: 80%;
  filter: drop-shadow(0 4px 20px rgba(212, 169, 72, 0.25));
}

.footer-wordmark {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 8px;
  color: var(--parchment);
  margin-bottom: 4px;
  font-weight: 400;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.footer-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--saffron);
}

.footer-quote p {
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: var(--parchment);
  letter-spacing: 0.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-family: var(--body);
  font-size: 16px;
  color: rgba(244, 237, 224, 0.7);
  font-style: italic;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--saffron);
}

.footer-col p {
  font-family: var(--body);
  font-size: 16px;
  color: rgba(244, 237, 224, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(244, 237, 224, 0.5);
  text-transform: uppercase;
}

.footer-fine {
  display: flex;
  gap: 2rem;
}

.footer-fine a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(244, 237, 224, 0.5);
  text-transform: uppercase;
}

.footer-fine a:hover {
  color: var(--saffron);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --section-y: 5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-action {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .hero-side {
    display: none;
  }
  
  .floating-seal {
    width: 120px;
    height: 120px;
    bottom: -50px;
    right: 1rem;
  }
  
  .hero-meta {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-flow {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-connector {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    position: relative;
    top: auto;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 4rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 4rem 0 6rem;
    min-height: auto;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .meta-block:not(:last-child)::after {
    display: none;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .chapters::before {
    left: 14px;
  }
  
  .chapter {
    grid-template-columns: 30px 1fr;
    gap: 1rem;
  }
  
  .chapter-marker {
    padding-right: 0;
    text-align: left;
  }
  
  .chapter-year {
    font-size: 16px;
    font-family: var(--mono);
    color: var(--saffron-deep);
  }
  
  .chapter-ornament {
    display: none;
  }
  
  .chapter-body {
    padding-left: 1rem;
  }
  
  .chapter-title {
    font-size: 24px;
  }
  
  .chapter.chapter-featured {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .schedule-card {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .card-title {
    font-size: 32px;
  }
  
  .heritage-lead {
    padding: 0;
  }
  
  .drop {
    font-size: 64px;
    padding: 0.25rem 0.75rem 0 0;
  }
  
  .footer-fine {
    gap: 1.5rem;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════════════
   Pickup form — DryX / BHC-style sectioned form in Dynasty's palette
   ════════════════════════════════════════════════════════════════════ */

.card-sub {
  text-align: center;
  font-family: var(--body);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin: -1.75rem 0 2.25rem;
}

.form-section {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.form-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.form-section-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-deep, var(--saffron));
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding: 0;
  float: none;
  width: 100%;
}

/* Service picker grid */
.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 900px) {
  .service-picker { grid-template-columns: repeat(2, 1fr); }
}

.service-pick {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--parchment);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.service-pick:hover {
  border-color: var(--ink);
  background: var(--paper);
}
.service-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.pick-emoji {
  font-size: 22px;
  line-height: 1;
  text-align: center;
}
.pick-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pick-body strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--ink);
}
.pick-body em {
  font-family: var(--body);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.pick-dot {
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}
/* Checked state via :has() — supported in all modern browsers */
.service-pick:has(input:checked) {
  border-color: var(--saffron);
  background: var(--paper);
  box-shadow: 0 0 0 2px rgba(200, 132, 27, 0.15);
}
.service-pick:has(input:checked) .pick-dot {
  border-color: var(--saffron);
  background: var(--saffron);
}
.service-pick:has(input:checked) .pick-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--paper);
  border-radius: 50%;
}

/* Three-column row for City + ZIP (City is wider) */
.form-row-3 {
  grid-template-columns: 2fr 1fr;
}

.form-confirm {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  text-transform: uppercase;
}
.form-confirm a {
  color: var(--saffron-deep, var(--saffron));
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

@media (max-width: 720px) {
  .service-picker { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .pick-body strong { font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════════════
   Logo image — replaces the diamond monogram in nav + footer + cards
   ════════════════════════════════════════════════════════════════════ */
.logo-img {
  display: block;
  width: 96px;
  height: auto;
  object-fit: contain;
}
.logo-img.lg { width: 144px; }

/* The full lockup as the hero centerpiece — sits as a faded watermark */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 46vw, 720px);
  height: auto;
  object-fit: contain;
  opacity: 0.13;
  filter: drop-shadow(0 0 60px rgba(212, 169, 72, 0.3));
  z-index: 1;
  pointer-events: none;
  animation: hero-logo-breathe 6s ease-in-out infinite;
}
@keyframes hero-logo-breathe {
  0%, 100% { opacity: 0.13; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.18; transform: translate(-50%, -50%) scale(1.015); }
}
.hero-content { position: relative; z-index: 5; }

/* Override the schedule card decoration to use the lockup */
.card-decoration .logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(212, 169, 72, 0.25));
}

/* Nav restyle for the gold tone — keeps the cream background */
.nav .brand-name { letter-spacing: 6px; }
.nav .brand-monogram {
  border: 1px solid var(--gold);
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

/* Marquee — keep dark, swap accents to gold (auto via token alias) */
.marquee { border-bottom: 1px solid var(--gold-deep); }

/* ════════════════════════════════════════════════════════════════════
   Trust strip — runs directly under the hero
   ════════════════════════════════════════════════════════════════════ */

.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
}
.trust-marquee {
  width: 100%;
  overflow: hidden;
}
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trust-scroll 38s linear infinite;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 2.75rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.trust-mark {
  color: var(--saffron-deep, var(--saffron));
  flex-shrink: 0;
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════════════
   First-time customer specials — coupon row
   ════════════════════════════════════════════════════════════════════ */

.specials {
  padding: 7rem 0 5rem;
  background: var(--paper);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 132, 27, 0.06), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(26, 22, 17, 0.05), transparent 50%);
  pointer-events: none;
}
.specials > .container { position: relative; z-index: 1; }

.specials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.specials-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron-deep, var(--saffron));
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.specials-eyebrow::before,
.specials-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--saffron-deep, var(--saffron));
  display: inline-block;
  opacity: 0.6;
}
.specials-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.specials-title em {
  font-style: italic;
  color: var(--saffron-deep, var(--saffron));
  font-weight: 400;
}
.specials-sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1080px) { .specials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .specials-grid { grid-template-columns: 1fr; } }

.special-card {
  background: var(--parchment);
  border: 1px solid var(--ink);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.special-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--saffron);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s;
}
.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(26, 22, 17, 0.22);
}
.special-card:hover::before { opacity: 0.9; }

.special-ornament {
  color: var(--saffron-deep, var(--saffron));
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.special-amount {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.special-amount em {
  font-style: normal;
  color: var(--saffron-deep, var(--saffron));
}
.special-service {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: 0;
}
.special-fine {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 1rem;
  display: block;
}
.special-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--parchment);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.3s;
}
.special-cta:hover {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
  gap: 14px;
}

/* ════════════════════════════════════════════════════════════════════
   DARK MODE — site-wide black + gold treatment
   Overrides earlier light-mode rules for every major section. Gold is the
   sole accent (ornaments, hover/selection states); black is the base
   background throughout.
   ════════════════════════════════════════════════════════════════════ */

/* ─── Nav: black with gold lockup logo top-left ────────────────────── */
.nav {
  background: var(--black) !important;
  border-bottom: 1px solid var(--line-on-dark);
  backdrop-filter: blur(20px);
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6); }
.brand-lockup { display: flex; align-items: center; gap: 0; padding: 0; }
.brand-lockup img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(212, 169, 72, 0.18));
  transition: filter 0.3s ease;
}
.brand-lockup:hover img {
  filter: drop-shadow(0 2px 18px rgba(212, 169, 72, 0.4));
}
.nav-menu a { color: var(--parchment); }
.nav-menu a:hover { color: var(--gold); }
.nav-menu a::after { background: var(--gold); }
.nav-action {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}
.nav-action:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}
.menu-btn { border-color: var(--gold); }
.menu-btn span { background: var(--gold); }

/* ─── Trust strip: dark ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.trust-item { color: var(--parchment); }
.trust-mark { color: var(--gold); }

/* ─── Section base color reset for all light-mode sections ─────────── */
.heritage, .services, .process, .territory, .contact, .specials {
  background: var(--black) !important;
  color: var(--parchment);
}
.heritage::before, .services::before, .process::before,
.territory::before, .contact::before, .specials::before {
  /* If any of those have light radial gradients, soften to gold-on-black */
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 169, 72, 0.06), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(212, 169, 72, 0.04), transparent 50%) !important;
}

/* Section headers and titles */
.section-num {
  color: var(--gold) !important;
  letter-spacing: 4px;
}
.section-title { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }
.section-lead { color: var(--parchment); opacity: 0.8; }

/* ─── Heritage / chapter timeline ──────────────────────────────────── */
.heritage-lead { color: var(--parchment); }
.heritage-lead p { color: var(--parchment); }
.heritage-lead .drop {
  color: var(--gold);
  font-weight: 400;
}
.chapter { color: var(--parchment); }
.chapter-year {
  color: var(--gold);
  background: transparent;
}
.chapter-title { color: var(--white); }
.chapter-body p { color: var(--parchment); opacity: 0.85; }
.chapter-body em { color: var(--gold-light); }
.chapter.chapter-featured {
  background: linear-gradient(135deg, rgba(212, 169, 72, 0.08), transparent 60%);
  border: 1px solid var(--line-on-dark);
}
.chapter.chapter-featured .chapter-title em { color: var(--gold); }
.chapter-signature {
  color: var(--gold);
}
.chapter-ornament { color: var(--gold); }

/* ─── Quote feature ────────────────────────────────────────────────── */
.quote-feature {
  background: var(--ink) !important;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.big-quote, .big-quote p { color: var(--parchment) !important; }
.big-quote em { color: var(--gold) !important; }
.quote-mark { color: var(--gold) !important; opacity: 0.5; }
.quote-attribution cite { color: var(--gold); }
.quote-attribution svg { color: var(--gold); }

/* ─── Services tiles ───────────────────────────────────────────────── */
.service-tile {
  background: linear-gradient(160deg, rgba(212, 169, 72, 0.04), transparent);
  border: 1px solid var(--line-on-dark);
  color: var(--parchment);
}
.service-tile:hover {
  background: linear-gradient(160deg, rgba(212, 169, 72, 0.12), rgba(212, 169, 72, 0.02));
  border-color: var(--gold);
}
.service-tile h3, .tile-content h3 { color: var(--white); }
.service-tile p,  .tile-content p  { color: var(--parchment); opacity: 0.78; }
.tile-roman { color: var(--gold) !important; }
.tile-corner { color: var(--gold); }

/* ─── Process steps ────────────────────────────────────────────────── */
.process-step { color: var(--parchment); }
.process-step h3 { color: var(--white); }
.process-step p { color: var(--parchment); opacity: 0.82; }
.step-num { color: var(--gold); }
.step-numeral { fill: var(--gold); }
.process-connector { background: var(--gold); opacity: 0.4; }

/* ─── Territory ────────────────────────────────────────────────────── */
.territory-item {
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--parchment);
}
.territory-item.primary {
  background: linear-gradient(90deg, rgba(212, 169, 72, 0.1), transparent);
  border: 1px solid var(--gold);
}
.territory-mark { color: var(--gold); }
.territory-name { color: var(--white); }
.territory-postal { color: var(--gold); opacity: 0.8; }
.territory-note { color: var(--parchment); opacity: 0.75; }
.territory-note a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ─── Specials ─────────────────────────────────────────────────────── */
.specials { border-top-color: var(--line-on-dark); border-bottom-color: var(--line-on-dark); }
.specials-title { color: var(--white); }
.specials-title em { color: var(--gold); }
.specials-sub { color: var(--parchment); opacity: 0.78; }
.specials-eyebrow { color: var(--gold); }
.specials-eyebrow::before, .specials-eyebrow::after { background: var(--gold); }

.special-card {
  background: linear-gradient(160deg, rgba(212, 169, 72, 0.06), rgba(10, 10, 10, 0.4));
  border: 1px solid var(--gold);
}
.special-card::before { border-color: var(--gold); opacity: 0.3; }
.special-card:hover { box-shadow: 0 18px 40px -20px rgba(212, 169, 72, 0.4); }
.special-amount { color: var(--white); }
.special-amount em { color: var(--gold); }
.special-service { color: var(--parchment); }
.special-fine { color: var(--gold); opacity: 0.75; }
.special-cta { background: var(--gold); color: var(--black); border-color: var(--gold); }
.special-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ─── Contact / Schedule card ──────────────────────────────────────── */
.contact-lead { color: var(--parchment); opacity: 0.85; }
.info-label { color: var(--gold) !important; }
.info-value { color: var(--parchment); }
.info-value a { color: var(--gold); border-bottom: 1px dotted var(--gold); }

.schedule-card {
  background: var(--ink) !important;
  border: 1px solid var(--gold);
}
.schedule-card::before { border-color: var(--gold); opacity: 0.35; }
.card-decoration {
  background: transparent !important;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card-decoration .logo-img {
  background: transparent;
  border: none;
  width: 104px;
  height: auto;
  padding: 0;
  border-radius: 0;
}
.card-promo { color: var(--gold); }
.card-title { color: var(--white); }
.card-sub { color: var(--parchment); opacity: 0.75; }

/* Form section dividers + headers on dark */
.form-section { border-top-color: var(--line-on-dark); }
.form-section-title { color: var(--gold); }

/* Form inputs on dark */
.form-field label { color: var(--gold); opacity: 0.9; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--black);
  color: var(--parchment);
  border: 1px solid var(--line-on-dark);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245, 237, 217, 0.35); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 72, 0.18);
}
/* Date input — make the picker icon visible on dark */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(0.7) saturate(3) hue-rotate(8deg);
  cursor: pointer;
}

/* Service picker on dark */
.service-pick {
  background: var(--black);
  border-color: var(--line-on-dark);
}
.service-pick:hover {
  background: rgba(212, 169, 72, 0.06);
  border-color: var(--gold);
}
.pick-body strong { color: var(--parchment); }
.pick-body em { color: rgba(245, 237, 217, 0.6); }
.pick-dot { border-color: var(--gold); }
.service-pick:has(input:checked) {
  background: rgba(212, 169, 72, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 169, 72, 0.25);
}
.service-pick:has(input:checked) .pick-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.service-pick:has(input:checked) .pick-dot::after { background: var(--black); }

/* Submit button + confirm line */
.form-submit { background: var(--gold); color: var(--black); }
.form-submit:hover { background: var(--white); color: var(--black); }
.form-confirm { color: rgba(245, 237, 217, 0.7); }
.form-confirm a { color: var(--gold); border-bottom-color: var(--gold); }
.form-fine { color: rgba(245, 237, 217, 0.5); }

/* ─── Misc small fixes ─────────────────────────────────────────────── */
/* Diamond ornaments wherever they appear should be gold */
.section-header svg use, .chapter svg use, .specials svg use { color: var(--gold); }

/* The hero meta-blocks border line should be gold not dark */
.hero .meta-block { border-left: 1px solid var(--line-on-dark); }

/* Nav: mobile menu when open */
.nav-menu.active {
  background: var(--ink) !important;
  border-top: 1px solid var(--line-on-dark) !important;
}

/* Footer divider lines should be gold not ink */
.footer hr, .footer .divider { border-color: var(--line-on-dark); }
.footer-col h4 { color: var(--gold); }
.footer-col ul li a { color: var(--parchment); opacity: 0.85; }
.footer-col ul li a:hover { color: var(--gold); opacity: 1; }
.footer-col p, .footer-col p a { color: var(--parchment); opacity: 0.85; }
.footer-bottom { color: var(--parchment); opacity: 0.55; }
.footer-fine a { color: var(--parchment); opacity: 0.7; }
.footer-fine a:hover { color: var(--gold); opacity: 1; }
.footer-tagline { color: var(--gold); }
.footer-wordmark { color: var(--white); }

/* The .floating-seal SVG element is no longer rendered (replaced by <img>),
   but if any leftover styles reference it, hide cleanly. */
.floating-seal { display: none; }
