/* ========================================================================
   SALAMONE SOLUTIONS — luxury dark editorial theme
   Palette: near-black ink, champagne gold, warm cream. Serif display, sans body.
   ======================================================================== */

@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 380ms;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

:root {
  --ink: #0A0A0A;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --line: rgba(201, 161, 94, 0.18);
  --line-strong: rgba(201, 161, 94, 0.42);
  --gold: #C9A15E;
  --gold-warm: #E7C989;
  --gold-dim: #a8895a;
  --cream: #F5EFE4;
  --paper: #F8F4EB;
  --paper-2: #EFE7D6;
  --slate: #7a7568;
  --slate-dark: #4a4740;
  --white: #ffffff;
  --f-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono: 'JetBrains Mono', 'SFMono-Regular', ui-monospace, monospace;
  --sp-1: 6px;
  --sp-2: 12px;
  --sp-3: 20px;
  --sp-4: 32px;
  --sp-5: 56px;
  --sp-6: 88px;
  --sp-7: 128px;
  --radius: 4px;
  --radius-lg: 8px;
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font: 400 16px/1.6 var(--f-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease-luxe); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--ink); padding: 12px 20px; font-weight: 700; z-index: 999; }
.skip:focus { left: 0; }

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.005em; color: var(--ink); }
h1.display, .display {
  font: 400 clamp(48px, 7.5vw, 108px)/1.02 var(--f-display);
  letter-spacing: -0.025em;
}
h2.section, .section {
  font: 400 clamp(36px, 5vw, 72px)/1.05 var(--f-display);
  letter-spacing: -0.02em;
}
h3, .sub-h { font: 400 clamp(24px, 2.6vw, 34px)/1.15 var(--f-display); }
h4 { font: 400 22px/1.3 var(--f-display); }
h5 { font: 600 12px/1.4 var(--f-body); letter-spacing: 0.16em; text-transform: uppercase; }

em, .em-serif { font-family: var(--f-display); font-style: italic; color: var(--gold); font-weight: 400; }

.eyebrow {
  font: 500 11px/1.4 var(--f-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.eyebrow-gold { color: var(--gold); }

.lede { font: 400 clamp(18px, 1.5vw, 22px)/1.6 var(--f-body); color: var(--slate-dark); }
.prose { font: 400 17px/1.75 var(--f-body); color: var(--slate-dark); }
.prose p + p { margin-top: 20px; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ========================================================================
   HEADER — sleek luxury, hamburger-driven on all viewports
   ======================================================================== */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  padding: 22px 0;
  transition: all 0.4s var(--ease-luxe);
}
header.site::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0) 100%);
  pointer-events: none; z-index: -1;
  transition: opacity 0.4s var(--ease-luxe);
}
header.site.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
header.site.scrolled::before { opacity: 0; }
header.site .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream); flex-shrink: 0;
}
.brand img { height: 44px; width: auto; transition: height 0.4s var(--ease-luxe); }
header.site.scrolled .brand img { height: 36px; }
.brand-word {
  font: 400 22px/1 var(--f-display);
  letter-spacing: 0.04em; color: var(--cream);
  display: flex; flex-direction: column; gap: 4px;
  white-space: nowrap;
}
.brand-word em {
  font: 500 9px/1 var(--f-body); letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  font-style: normal;
}
@media (max-width: 640px) {
  .brand-word em { display: none; }
  .brand-word { font-size: 18px; }
  .brand img { height: 36px; }
}

.nav-actions {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.nav-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream);
  font: 500 13px/1 var(--f-body); letter-spacing: 0.06em;
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-luxe);
}
.nav-phone svg { color: var(--gold); flex-shrink: 0; }
.nav-phone:hover { border-bottom-color: var(--gold); color: var(--gold); }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--gold); background: transparent; color: var(--gold);
  font: 600 11px/1 var(--f-body); letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s var(--ease-luxe);
}
.nav-cta-btn:hover { background: var(--gold); color: var(--ink); }

/* Hamburger — refined 3-line, gold */
.menu-btn {
  width: 52px; height: 44px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 6px; padding: 10px 0 10px 10px;
  border: 0; background: transparent;
  position: relative;
}
.menu-btn span {
  height: 1.5px; background: var(--gold);
  transition: all 0.35s var(--ease-luxe);
  display: block;
}
.menu-btn span:nth-child(1) { width: 26px; }
.menu-btn span:nth-child(2) { width: 18px; }
.menu-btn span:nth-child(3) { width: 22px; }
.menu-btn:hover span { width: 26px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 26px; }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }
.menu-btn-label {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  color: var(--cream); font: 500 11px/1 var(--f-body); letter-spacing: 0.24em;
  text-transform: uppercase; pointer-events: none;
  transition: opacity 0.3s;
}
.menu-btn[aria-expanded="true"] + .menu-btn-label,
.menu-btn[aria-expanded="true"] .menu-btn-label { opacity: 0; }

@media (max-width: 900px) {
  .nav-phone .num-text { display: none; }
  .nav-cta-btn { display: none; }
  .nav-actions { gap: 12px; }
}
@media (max-width: 520px) {
  .brand-word { display: none; }
  .brand img { height: 40px; }
  header.site.scrolled .brand img { height: 34px; }
  header.site .container { padding-left: 20px; padding-right: 20px; }
  header.site .brand {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-luxe);
  }
  header.site.scrolled .brand {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ========================================================================
   NAV OVERLAY — fullscreen luxury panel, sliding from right
   ======================================================================== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
  color: var(--cream);
}
.nav-overlay-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.6);
  opacity: 0; transition: opacity 0.5s var(--ease-luxe);
}
.nav-overlay-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 780px;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-luxe);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line);
}
.nav-overlay.open { visibility: visible; pointer-events: auto; }
.nav-overlay.open .nav-overlay-backdrop { opacity: 1; }
.nav-overlay.open .nav-overlay-panel { transform: translateX(0); }

.nav-overlay-close {
  position: absolute; top: 24px; right: 24px;
  width: 52px; height: 52px;
  color: var(--gold); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: all 0.3s;
}
.nav-overlay-close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.nav-overlay-close svg { width: 20px; height: 20px; }

.nav-overlay-inner {
  flex: 1;
  padding: 88px 60px 40px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-content: start;
}
@media (max-width: 720px) {
  .nav-overlay-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 32px 32px; }
}

.nav-overlay-side {
  display: flex; flex-direction: column;
  padding-right: 40px;
  border-right: 1px solid var(--line);
}
@media (max-width: 720px) {
  .nav-overlay-side { padding-right: 0; border-right: 0; padding-bottom: 32px; border-bottom: 1px solid var(--line); order: 2; }
}
.side-eyebrow {
  font: 500 10px/1 var(--f-body); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.side-h {
  font: 400 32px/1.15 var(--f-display); font-style: italic;
  color: var(--cream); margin-bottom: 28px;
}
.side-h em { color: var(--gold); font-style: italic; font-weight: 400; }
.side-blurb {
  font: 400 14px/1.65 var(--f-body); color: rgba(245,239,228,0.65);
  margin-bottom: 32px;
}
.side-contact { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.side-contact-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream); font-size: 15px;
}
.side-contact-item svg { color: var(--gold); flex-shrink: 0; }
.side-contact-item a { color: var(--cream); transition: color 0.25s; }
.side-contact-item a:hover { color: var(--gold); }
.side-social {
  margin-top: auto; padding-top: 24px;
  display: flex; gap: 10px;
}
.side-social a {
  width: 40px; height: 40px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,228,0.6); transition: all 0.3s;
}
.side-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.side-cta {
  margin-top: 24px; padding: 20px 24px;
  border: 1px solid var(--gold); background: rgba(201,161,94,0.06);
}
.side-cta .l {
  font: 500 10px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.side-cta .v {
  font: 400 18px/1.35 var(--f-display); color: var(--cream);
}

.nav-overlay-main { display: flex; flex-direction: column; }
.nav-overlay-main ul { list-style: none; }
.nav-overlay-main .nav-link {
  display: flex; align-items: center;
  padding: 14px 0;
  color: var(--cream);
  font: 300 clamp(22px, 2.6vw, 34px)/1.15 var(--f-display);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(201,161,94,0.12);
  transition: color 0.3s, padding-left 0.4s var(--ease-luxe);
  position: relative;
  white-space: nowrap;
}
.nav-overlay-main .nav-link::before {
  content: ''; display: inline-block;
  width: 0; height: 1px; background: var(--gold);
  margin-right: 0;
  transition: width 0.4s var(--ease-luxe), margin-right 0.4s var(--ease-luxe);
  vertical-align: middle;
}
.nav-overlay-main .nav-link:hover {
  color: var(--gold);
  padding-left: 8px;
}
.nav-overlay-main .nav-link:hover::before,
.nav-overlay-main .nav-link[aria-current="page"]::before {
  width: 40px; margin-right: 20px;
}
.nav-overlay-main .nav-link[aria-current="page"] { color: var(--gold); }
.nav-overlay-main .nav-number {
  font: 500 11px/1 var(--f-body); letter-spacing: 0.24em; color: var(--gold-dim);
  margin-right: 20px; width: 32px;
  transition: color 0.3s;
}
.nav-overlay-main .nav-link:hover .nav-number { color: var(--gold); }

/* Services sub-list — expandable inline */
.nav-sub {
  padding: 8px 0 20px 52px;
  display: none;
}
.nav-sub.open { display: block; }
.nav-sub a {
  display: block; padding: 8px 0;
  color: rgba(245,239,228,0.65);
  font: 500 13px/1.4 var(--f-body); letter-spacing: 0.06em;
  transition: color 0.25s, padding-left 0.3s;
}
.nav-sub a:hover { color: var(--gold); padding-left: 6px; }
.nav-toggle {
  margin-left: auto; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--line);
  font: 300 22px/1 var(--f-display);
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.nav-toggle.open { transform: rotate(45deg); }
@media (max-width: 720px) {
  .nav-overlay-main .nav-link { font-size: 22px; padding: 12px 0; }
  .nav-overlay-main .nav-number { display: none; }
  .nav-sub { padding-left: 16px; }
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font: 600 13px/1 var(--f-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-luxe);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn.primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn.primary:hover { background: var(--gold-warm); border-color: var(--gold-warm); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(201,161,94,0.28); }
.btn.ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn.ghost:hover { background: var(--gold); color: var(--ink); }
.btn.dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn.dark:hover { background: var(--ink-2); border-color: var(--gold); color: var(--gold); }
.btn.link { padding: 8px 0; background: transparent; color: var(--gold); border: 0; letter-spacing: 0.12em; }
.btn.link::after { content: ' →'; transition: transform 0.3s; }
.btn.link:hover::after { transform: translateX(4px); }

/* ========================================================================
   HERO — home page
   ======================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.62;
  transform-origin: 55% 60%;
  animation: heroZoom 32s ease-out forwards;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
}
@keyframes heroZoom {
  0% { transform: scale(1.00); }
  100% { transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; transform: none; }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.50) 55%, rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(201,161,94,0.08) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 140px 0 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 11px/1.4 var(--f-body); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  flex-wrap: nowrap;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0;
}
@media (max-width: 720px) {
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.22em; gap: 8px; margin-bottom: 24px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
}
@media (max-width: 480px) {
  .hero-eyebrow { font-size: 8px; letter-spacing: 0.18em; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 12px; }
}
.hero h1 {
  color: var(--cream);
  font-weight: 300;
  max-width: 1100px;
}
.hero h1 em { color: var(--gold); font-weight: 400; }
.hero .sub {
  margin-top: 32px; max-width: 620px;
  font: 400 18px/1.7 var(--f-body); color: rgba(245,239,228,0.78);
}
.hero-cta { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta .btn.ghost { color: var(--cream); border-color: rgba(245,239,228,0.4); }
.hero-cta .btn.ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero-meta {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border-top: 1px solid rgba(201,161,94,0.2);
  padding-top: 40px;
  max-width: 780px;
}
.hero-meta .m-label {
  font: 500 10px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.hero-meta .m-value {
  font: 400 clamp(20px, 2.2vw, 28px)/1.3 var(--f-display); color: var(--cream);
}
@media (max-width: 720px) {
  .hero { min-height: 88vh; }
  .hero-inner { padding-top: 72px; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; padding-top: 32px; }
}

.brand-mark-inline {
  display: block;
  max-width: 480px;
  margin-bottom: 44px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5));
}
@media (max-width: 720px) { .brand-mark-inline { max-width: 320px; margin-bottom: 32px; } }

/* Hero brand mark — transparent-alpha PNG so the logo sits cleanly over the hero photo. */
.hero-brand-mark {
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 0 8px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.55));
}
@media (max-width: 720px) { .hero-brand-mark { max-width: 100%; margin-bottom: 4px; } }

/* Brand-pause — logo inside a shaded translucent-black card, sitting on the paper
   section so the card feels intentional. */
.brand-pause {
  background: var(--paper);
  padding: var(--sp-6) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-pause::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,161,94,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.brand-pause .container { position: relative; z-index: 1; }
.brand-pause-card {
  display: inline-block;
  padding: 48px 72px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  max-width: 100%;
}
.brand-pause-card::before, .brand-pause-card::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--gold);
}
.brand-pause-card::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.brand-pause-card::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.brand-pause-card img {
  display: block; margin: 0 auto;
  max-width: 520px; width: 100%; height: auto;
}
.brand-pause .rule-row {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 32px;
  font: 500 10px/1 var(--f-body); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-dim);
}
.brand-pause .rule-row::before, .brand-pause .rule-row::after {
  content: ''; width: 48px; height: 1px; background: var(--gold-dim);
}
@media (max-width: 720px) {
  .brand-pause-card { padding: 32px 24px; }
  .brand-pause-card img { max-width: 100%; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--gold); font: 500 10px/1 var(--f-body); letter-spacing: 0.28em;
  text-transform: uppercase; text-align: center;
}
.scroll-indicator .line {
  display: block; width: 1px; height: 40px; background: var(--gold); margin: 12px auto 0;
  transform-origin: top; animation: sIndicator 2.4s ease-in-out infinite;
}
@keyframes sIndicator { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

/* ========================================================================
   INTERIOR PAGE HERO
   ======================================================================== */
.page-hero {
  position: relative;
  min-height: 56vh;
  padding: 160px 0 80px;
  color: var(--cream);
  background-color: var(--ink);
  display: flex; align-items: end;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* No-image variant — editorial ink treatment with gold accents */
.page-hero:not(.has-image)::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 85% 25%, rgba(201,161,94,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 8% 90%, rgba(201,161,94,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.35) 100%);
  pointer-events: none;
}
.page-hero:not(.has-image)::after {
  content: ''; position: absolute; top: 46%; left: 0; width: 72px; height: 1px;
  background: var(--gold); opacity: 0.55; z-index: 1;
}
/* Has-image variant — ken-burns photo bg + darkening gradient */
.page-hero.has-image .page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform-origin: 50% 55%;
  animation: pageHeroZoom 40s ease-out forwards;
  will-change: transform;
}
@keyframes pageHeroZoom {
  0% { transform: scale(1.00); }
  100% { transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero.has-image .page-hero-bg { animation: none; transform: none; }
}
.page-hero.has-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.82) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(201,161,94,0.06) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }

/* Eyebrow with flanking gold lines — inherits from homepage pattern */
.page-hero .eyebrow[style*="gold"], .page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: nowrap;
  font: 500 11px/1.4 var(--f-body); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.page-hero .eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0;
}
@media (max-width: 720px) {
  .page-hero .eyebrow { font-size: 9px; letter-spacing: 0.22em; gap: 10px; }
  .page-hero .eyebrow::before { width: 20px; }
}

/* Ghost section number top-right — editorial signature */
.page-hero-ghost {
  position: absolute; top: 120px; right: 40px; z-index: 1;
  pointer-events: none;
  text-align: right;
  color: var(--cream);
  line-height: 0.9;
}
.page-hero-ghost .pg-num {
  display: block;
  font: 300 clamp(120px, 18vw, 240px)/0.9 var(--f-display);
  color: rgba(245,239,228,0.05);
  letter-spacing: -0.02em;
}
.page-hero-ghost .pg-lbl {
  display: block; margin-top: 8px;
  font: 500 10px/1 var(--f-body); letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(201,161,94,0.4);
}
@media (max-width: 720px) {
  .page-hero-ghost { top: 100px; right: 20px; }
  .page-hero-ghost .pg-num { font-size: clamp(88px, 26vw, 140px); }
  .page-hero-ghost .pg-lbl { font-size: 9px; letter-spacing: 0.28em; }
}

/* Gold corner brackets — matches the brand-pause card language */
.hero-bracket {
  position: absolute; width: 20px; height: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.hero-bracket.tl {
  top: 100px; left: 0;
  border-right: 0; border-bottom: 0;
}
.hero-bracket.br {
  bottom: 0; right: 0;
  border-left: 0; border-top: 0;
}
@media (max-width: 720px) {
  .hero-bracket { width: 14px; height: 14px; }
  .hero-bracket.tl { top: 92px; }
}

.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--cream); margin-top: 20px; max-width: 900px; font-weight: 300; position: relative; }
.page-hero h1 em { color: var(--gold); font-weight: 400; }
.page-hero .page-sub { margin-top: 24px; max-width: 640px; color: rgba(245,239,228,0.78); font: 400 18px/1.65 var(--f-body); }
.page-hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .page-hero { min-height: 68vh; padding: 130px 0 60px; }
  .page-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .page-hero .page-sub { font-size: 16px; margin-top: 20px; }
  .page-hero-cta { margin-top: 32px; }
  .page-hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

.crumb { margin-bottom: 32px; }
.crumb ol { list-style: none; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.crumb li { font: 500 11px/1 var(--f-body); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,239,228,0.5); display: flex; gap: 10px; align-items: center; }
.crumb a { color: var(--gold-dim); }
.crumb a:hover { color: var(--gold); }
.crumb span[aria-hidden] { color: rgba(245,239,228,0.3); }

/* ========================================================================
   SECTIONS
   ======================================================================== */
section { position: relative; }

.divider {
  width: 60px; height: 1px; background: var(--gold); margin: 0 auto 24px;
}
.divider.left { margin: 0 0 24px; }

/* Featured intro strip */
.intro-strip {
  padding: var(--sp-7) 0;
  background: var(--paper);
  position: relative;
}
.intro-strip .grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 88px; align-items: center;
}
.intro-strip .cap {
  font: 400 20px/1.6 var(--f-display); font-style: italic; color: var(--gold-dim);
  margin-bottom: 20px;
}
.intro-strip .section { margin-bottom: 32px; }
.intro-strip .badges {
  margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.intro-strip .badge-item .n {
  font: 400 44px/1 var(--f-display); color: var(--gold); margin-bottom: 6px;
}
.intro-strip .badge-item .l {
  font: 500 11px/1.4 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate);
}
@media (max-width: 900px) {
  .intro-strip .grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-strip { padding: var(--sp-6) 0; }
}

/* Photo showcase — full-bleed feature */
.photo-feature {
  position: relative; overflow: hidden;
  height: min(88vh, 780px);
  background: var(--ink);
}
.photo-feature img { width: 100%; height: 100%; object-fit: cover; }
.photo-feature .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.25) 60%, rgba(10,10,10,0.05) 100%);
  display: flex; align-items: center;
}
.photo-feature .overlay .container { color: var(--cream); }
.photo-feature h2 { color: var(--cream); font-weight: 300; max-width: 560px; }
.photo-feature h2 em { color: var(--gold); font-weight: 400; }
.photo-feature p { margin-top: 24px; max-width: 460px; color: rgba(245,239,228,0.82); font: 400 17px/1.7 var(--f-body); }
.photo-feature .cta { margin-top: 36px; }

/* ========================================================================
   SERVICES — index tiles
   ======================================================================== */
.svc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.svc {
  background: var(--paper);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 0.4s var(--ease-luxe);
  position: relative;
}
.svc:hover { background: var(--ink); color: var(--cream); }
.svc:hover h3 { color: var(--cream); }
.svc:hover p { color: rgba(245,239,228,0.7); }
.svc:hover .go { color: var(--gold); }
.svc h3 { font-size: 28px; color: var(--ink); transition: color 0.4s; }
.svc p { color: var(--slate-dark); font-size: 15px; line-height: 1.6; transition: color 0.4s; }
.svc .go {
  margin-top: auto; padding-top: 20px;
  font: 500 11px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-dim); transition: all 0.4s;
  border-top: 1px solid var(--line);
}
.svc .go::after { content: ' →'; }

/* Featured (bigger) service card variant */
.svc-featured {
  background: var(--ink); color: var(--cream); padding: 60px 44px;
  border: 1px solid var(--line-strong);
  position: relative; overflow: hidden;
}
.svc-featured h3 { color: var(--gold); font-size: 32px; }
.svc-featured p { color: rgba(245,239,228,0.75); font-size: 16px; margin-top: 16px; line-height: 1.65; }

/* ========================================================================
   SERVICE DETAIL BODY
   ======================================================================== */
.service-body, .area-body, .contact-body, .faq-hub, .about-story {
  padding: var(--sp-7) 0;
  background: var(--paper);
}
@media (max-width: 900px) { .service-body, .area-body, .contact-body, .faq-hub, .about-story { padding: var(--sp-6) 0; } }

.included-list, .who-list, .rail-links {
  list-style: none; margin-top: 12px;
}
.included-list li, .who-list li {
  padding: 16px 0; border-bottom: 1px solid var(--line); font: 400 16px/1.55 var(--f-body); color: var(--slate-dark);
  position: relative; padding-left: 32px;
}
.included-list li::before {
  content: ''; position: absolute; left: 0; top: 24px; width: 18px; height: 1px; background: var(--gold);
}
.who-list li::before {
  content: '—'; position: absolute; left: 0; top: 16px; color: var(--gold); font-family: var(--f-display);
}
.who-list li strong { color: var(--ink); font-weight: 600; }

.when-list { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.when-item { padding: 28px; background: var(--white); border-left: 2px solid var(--gold); }
.when-item h4 { font: 500 20px/1.3 var(--f-display); color: var(--ink); margin-bottom: 8px; }
.when-item p { color: var(--slate-dark); font-size: 15px; line-height: 1.65; }

/* Right rail */
.rail { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.rail-card {
  padding: 32px 28px; background: var(--white); border: 1px solid var(--line-strong);
}
.rail-eyebrow {
  font: 500 10px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 12px;
}
.rail-card h4 { font-size: 24px; margin-bottom: 12px; }
.rail-card p { font-size: 14px; color: var(--slate-dark); line-height: 1.55; }
.rail-trust {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.rail-trust > div { display: flex; justify-content: space-between; font-size: 13px; color: var(--slate); gap: 12px; }
.rail-trust strong { color: var(--ink); font-weight: 600; letter-spacing: 0.02em; }
.rail-links li a {
  display: block; padding: 10px 0; border-bottom: 1px solid rgba(201,161,94,0.15);
  color: rgba(245,239,228,0.75); font-size: 14px;
}
.rail-links li a:hover { color: var(--gold); padding-left: 6px; }
@media (max-width: 900px) { .rail { position: static; } }

/* ========================================================================
   ABOUT
   ======================================================================== */
.about-values { padding: var(--sp-7) 0; background: var(--ink); color: var(--cream); }
.about-values .section { color: var(--cream); }
.about-values .head { text-align: center; max-width: 700px; margin: 0 auto; }
.value-card {
  background: var(--ink-2); padding: 48px 32px; border: 1px solid var(--line);
  transition: all 0.35s var(--ease-luxe);
}
.value-card:hover { background: var(--ink-3); border-color: var(--gold); }
.value-card .n {
  font: 400 32px/1 var(--f-display); color: var(--gold); margin-bottom: 20px; letter-spacing: -0.02em;
}
.value-card h4 { color: var(--cream); font-size: 22px; margin-bottom: 12px; }
.value-card p { color: rgba(245,239,228,0.65); font-size: 14px; line-height: 1.65; }

.img-frame {
  overflow: hidden; border: 1px solid var(--line-strong); position: relative;
}
.img-frame img { width: 100%; height: auto; display: block; transition: transform 1.2s var(--ease-luxe); }
.img-frame:hover img { transform: scale(1.03); }

.creds-box {
  margin-top: 32px; padding: 32px; background: var(--white); border: 1px solid var(--line);
}
.cred-line {
  display: flex; justify-content: space-between; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid var(--line); font-size: 14px; color: var(--slate-dark);
}
.cred-line:last-child { border-bottom: 0; }
.cred-line strong { color: var(--ink); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ========================================================================
   PROJECTS / GALLERY
   ======================================================================== */
.projects-hub, .services-grid { padding: var(--sp-7) 0; background: var(--paper); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin-top: 56px;
}
.gallery-tile {
  position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--ink);
  cursor: pointer;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-luxe); }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile .tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: var(--cream); font: 500 11px/1 var(--f-body);
  letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2; opacity: 0; transform: translateY(8px);
  transition: all 0.4s var(--ease-luxe);
}
.gallery-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.75) 100%);
  opacity: 0; transition: opacity 0.4s;
  z-index: 1;
}
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile:hover .tag { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Before/after pair */
.before-after {
  padding: var(--sp-7) 0; background: var(--ink); color: var(--cream);
  position: relative;
}
.before-after .section { color: var(--cream); }
.before-after .pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 56px;
}
.before-after .pair-item { position: relative; overflow: hidden; }
.before-after .pair-item img { width: 100%; height: 100%; object-fit: cover; }
.before-after .pair-item .label {
  position: absolute; top: 24px; left: 24px;
  background: var(--gold); color: var(--ink);
  padding: 8px 16px; font: 600 11px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
}
@media (max-width: 720px) { .before-after .pair { grid-template-columns: 1fr; } }

/* ========================================================================
   FAQ
   ======================================================================== */
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  background: var(--white);
}
.faq-item summary {
  padding: 28px 28px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  list-style: none;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span:first-child {
  font: 500 18px/1.35 var(--f-display); color: var(--ink); flex: 1;
}
.faq-item summary .caret {
  font: 300 32px/1 var(--f-display); color: var(--gold);
  transition: transform 0.35s var(--ease-luxe);
  flex-shrink: 0;
}
.faq-item[open] summary .caret { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--gold); }
.faq-body { padding: 0 28px 28px; }
.faq-body p { font: 400 16px/1.7 var(--f-body); color: var(--slate-dark); }

/* ========================================================================
   SERVICE AREAS
   ======================================================================== */
.areas-hub { padding: var(--sp-7) 0; background: var(--paper); }
.area-county-block { }
.area-tile {
  display: block; padding: 40px 32px;
  background: var(--white); border: 1px solid var(--line);
  transition: all 0.35s var(--ease-luxe);
}
.area-tile:hover { background: var(--ink); color: var(--cream); border-color: var(--gold); transform: translateY(-2px); }
.area-tile:hover h3 { color: var(--cream); }
.area-tile:hover p { color: rgba(245,239,228,0.7); }
.area-tile:hover .area-tile-county { color: var(--gold); }
.area-tile:hover .go { color: var(--gold); }
.area-tile-county {
  font: 500 10px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 12px; transition: color 0.35s;
}
.area-tile h3 { font-size: 28px; color: var(--ink); margin-bottom: 12px; transition: color 0.35s; }
.area-tile p { font-size: 14px; color: var(--slate-dark); line-height: 1.6; transition: color 0.35s; }
.area-tile .go {
  margin-top: 20px; display: inline-block;
  font: 500 11px/1 var(--f-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-dim); transition: color 0.35s;
}

.area-landmarks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.landmark-chip {
  padding: 8px 16px; background: var(--paper-2); border: 1px solid var(--line);
  font: 500 12px/1 var(--f-body); letter-spacing: 0.1em; color: var(--slate-dark);
}
code { font-family: var(--f-mono); font-size: 12px; padding: 3px 8px; background: var(--paper-2); border-radius: 3px; color: var(--slate-dark); }

/* ========================================================================
   PILLARS / STRIP / CTA
   ======================================================================== */
.pillars { padding: var(--sp-7) 0; background: var(--paper-2); }
.pillars .head { max-width: 780px; }
.pillars .lede { max-width: 640px; }

.final-cta {
  padding: var(--sp-6) 0;
  background: var(--ink); color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,161,94,0.06) 0%, transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font: 400 clamp(32px, 4vw, 56px)/1.15 var(--f-display); color: var(--cream); max-width: 780px; margin: 0 auto 20px; }
.final-cta h2 em { color: var(--gold); font-weight: 400; }
.final-cta p { max-width: 620px; margin: 0 auto; color: rgba(245,239,228,0.7); font-size: 17px; line-height: 1.65; }
.cta-row { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .cta-row .btn.dark { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.final-cta .cta-row .btn.dark:hover { background: var(--gold-warm); border-color: var(--gold-warm); }

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact-body .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .contact-body .grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-chan {
  display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line);
}
.contact-chan:last-of-type { border-bottom: 0; }
.chan-icon {
  width: 44px; height: 44px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  flex-shrink: 0;
}
.contact-chan h3 { font: 500 20px/1.2 var(--f-display); color: var(--ink); margin-bottom: 6px; }
.contact-chan p { margin: 0; }
.contact-chan a { color: var(--gold); font-weight: 600; }
.contact-chan a:hover { color: var(--gold-dim); }

.social-btn {
  width: 44px; height: 44px; border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--ink); }

.contact-form {
  padding: 44px 40px; background: var(--white); border: 1px solid var(--line-strong);
}
.contact-form h3 { font-size: 28px; margin-bottom: 10px; }
.form-sub { color: var(--slate-dark); font-size: 14px; margin-bottom: 28px; }
.contact-form label {
  display: block; margin-top: 18px;
  font: 500 11px/1 var(--f-body); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-dark);
}
.contact-form label span { color: var(--gold); margin-left: 4px; }
.contact-form input, .contact-form textarea, .contact-form select {
  display: block; width: 100%; margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font: 400 15px/1.4 var(--f-body); color: var(--ink);
  transition: border 0.25s, background 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 0; border-color: var(--gold); background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.contact-form .btn { margin-top: 28px; }
.form-fine { margin-top: 16px; font-size: 12px; color: var(--slate); line-height: 1.55; }

/* ========================================================================
   FOOTER + FLOATING BUTTONS
   ======================================================================== */
footer.site {
  background: var(--ink); color: rgba(245,239,228,0.65);
  padding: var(--sp-6) 0 32px;
  border-top: 1px solid var(--line);
}
footer.site .grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 60px;
}
@media (max-width: 900px) { footer.site .grid { grid-template-columns: 1fr 1fr; gap: 40px; } .foot-brand { grid-column: span 2; } }
@media (max-width: 560px) { footer.site .grid { grid-template-columns: 1fr; } }
.foot-brand img { height: 56px; margin-bottom: 20px; filter: brightness(1.1); }
.foot-brand p { font-size: 14px; line-height: 1.7; max-width: 380px; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,228,0.6); transition: all 0.25s;
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
footer.site h5 { color: var(--gold); margin-bottom: 20px; letter-spacing: 0.18em; font-size: 11px; }
footer.site ul { list-style: none; }
footer.site ul li { padding: 6px 0; }
footer.site ul a { color: rgba(245,239,228,0.7); font-size: 14px; }
footer.site ul a:hover { color: var(--gold); }
.nap p { padding: 8px 0; font-size: 14px; }
.nap a { color: rgba(245,239,228,0.85); font-weight: 500; }
.nap a:hover { color: var(--gold); }
.bar {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: rgba(245,239,228,0.5); letter-spacing: 0.02em;
}
.bar a { color: rgba(245,239,228,0.6); }
.bar a:hover { color: var(--gold); }

.floating-contact {
  position: fixed; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(8px) scale(0.9); pointer-events: none;
  transition: all 0.4s var(--ease-luxe);
}
body.scrolled .floating-contact { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-contact svg { width: 22px; height: 22px; }
.floating-contact.call { right: 20px; }
.floating-contact.text { left: 20px; background: var(--ink); color: var(--gold); border: 1px solid var(--gold); }
.floating-contact .label {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--cream); padding: 6px 12px;
  font: 500 11px/1 var(--f-body); letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.floating-contact.call .label { right: 68px; }
.floating-contact.text .label { left: 68px; }
.floating-contact:hover .label { opacity: 1; }
.floating-contact .pulse-ring {
  position: absolute; inset: -4px; border: 1px solid var(--gold); border-radius: 50%;
  animation: pulseRing 2.2s var(--ease-luxe) infinite; opacity: 0;
}
@keyframes pulseRing { 0% { transform: scale(0.85); opacity: 0.6; } 100% { transform: scale(1.35); opacity: 0; } }
@media (max-width: 640px) { .floating-contact .label { display: none; } }

/* ========================================================================
   REVEAL animation
   ======================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* Utility */
.center { text-align: center; }
.grid.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid.g3 { grid-template-columns: repeat(2, 1fr); } .grid.g2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid.g3 { grid-template-columns: 1fr; } }

/* View transitions for page navigation */
@supports (view-transition-name: none) {
  ::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.35s; }
}

/* ========================================================================
   BODY GRID — shared 2-col layout for interior page bodies
   ======================================================================== */
.body-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.body-grid.body-grid-aside-left {
  grid-template-columns: 1fr 1.4fr;
  gap: 88px;
}
@media (max-width: 960px) {
  .body-grid, .body-grid.body-grid-aside-left {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
@media (max-width: 560px) {
  .body-grid, .body-grid.body-grid-aside-left { gap: 40px; }
}

/* Belt-and-suspenders horizontal overflow guard */
html, body { max-width: 100vw; overflow-x: hidden; }

/* ========================================================================
   SVC LIST — fix orphan (7 tiles = 3+3+1). Last tile spans full width as "start here" CTA row.
   ======================================================================== */
@media (min-width: 900px) {
  .svc-list {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .svc-list .svc:last-child {
    grid-column: 1 / -1;
    background: var(--ink);
    color: var(--cream);
    padding: 56px 60px;
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center;
    position: relative;
  }
  .svc-list .svc:last-child::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 85% 30%, rgba(201,161,94,0.12) 0%, transparent 55%);
    pointer-events: none;
  }
  .svc-list .svc:last-child h3 {
    color: var(--gold);
    font-size: 34px;
    position: relative;
  }
  .svc-list .svc:last-child p {
    color: rgba(245,239,228,0.78);
    font-size: 16px;
    line-height: 1.65;
    position: relative;
  }
  .svc-list .svc:last-child .go {
    color: var(--gold);
    border-top: 1px solid rgba(201,161,94,0.28);
    position: relative;
    justify-self: start;
    margin-top: 20px;
    padding-top: 20px;
  }
  .svc-list .svc:last-child:hover {
    background: #050505;
  }
  .svc-list .svc:last-child:hover h3 { color: var(--gold); }
}
@media (max-width: 899px) {
  .svc-list {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================================================
   AREAS BROWARD ORPHAN — 7 tiles in 3-col grid. Last tile spans full width.
   ======================================================================== */
@media (min-width: 900px) {
  .area-county-block:first-of-type .grid.g3 .area-tile:last-child {
    grid-column: 1 / -1;
  }
}
