  :root {
    --ink: #1a1814;
    --ink-soft: #3d3a33;
    --ink-muted: #6b6457;
    --paper: #f4ede0;
    --paper-warm: #ebe0cc;
    --paper-deep: #ddd0b8;
    --navy: #142838;
    --navy-deep: #0a1822;
    --rust: #b04826;
    --rust-deep: #8a3417;
    --gold: #c9a35c;
    --gold-soft: #e0c388;
    --line: #c8b89a;
    --line-soft: rgba(20, 40, 56, 0.12);
    --shadow-sm: 0 1px 0 rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px -10px rgba(20, 40, 56, 0.18);
    --shadow-lg: 0 30px 60px -20px rgba(20, 40, 56, 0.35), 0 18px 36px -18px rgba(20, 40, 56, 0.18);
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-in-out: cubic-bezier(0.6, 0, 0.4, 1);
    --container: 1400px;
    --gutter: clamp(20px, 4vw, 32px);
  }

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
  }

  body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern", "liga", "calt", "ss01";
  }

  /* Selection */
  ::selection { background: var(--rust); color: var(--paper); }
  ::-moz-selection { background: var(--rust); color: var(--paper); }

  /* Focus visibility — WCAG */
  :focus-visible {
    outline: 2px solid var(--rust);
    outline-offset: 3px;
    border-radius: 2px;
  }
  button:focus-visible, a:focus-visible { outline-offset: 4px; }

  /* Skip to main */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 18px;
    z-index: 999;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: top 0.2s var(--ease-out);
  }
  .skip-link:focus { top: 16px; }

  /* Image defaults */
  img { display: block; max-width: 100%; height: auto; }

  /* Decorative paper texture */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(176, 72, 38, 0.03) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(20, 40, 56, 0.04) 0%, transparent 50%);
    mix-blend-mode: multiply;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }

  .display { font-family: 'Fraunces', Georgia, serif; }
  .mono { font-family: 'DM Mono', 'Courier New', monospace; }

  /* ===== TOP BANNER ===== */
  .top-banner {
    background: var(--navy-deep);
    color: var(--paper);
    padding: 9px 0;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(201, 163, 92, 0.18);
  }
  .top-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .top-banner span { display: flex; align-items: center; gap: 8px; }
  .top-banner .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .top-banner a {
    color: var(--paper); text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s ease;
  }
  .top-banner a:hover { color: var(--gold); }
  .top-banner .hide-mobile { display: none; }

  /* ===== NAV ===== */
  body > nav {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 22px 0;
    border-bottom: 1px solid transparent;
    background: rgba(244, 237, 224, 0.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    transition: padding 0.3s var(--ease-out),
                background 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out);
  }
  body > nav.scrolled {
    padding: 12px 0;
    background: rgba(244, 237, 224, 0.94);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 24px -18px rgba(20, 40, 56, 0.2);
  }
  body > nav.scrolled .logo-mark {
    width: 36px; height: 36px; font-size: 16px;
  }
  body > nav.scrolled .logo-text .name { font-size: 17px; }
  body > nav.scrolled .logo-text .sub { font-size: 8px; }
  .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
  }
  .logo-mark {
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -1px;
    position: relative;
    transition: width 0.3s var(--ease-out),
                height 0.3s var(--ease-out),
                font-size 0.3s var(--ease-out),
                background 0.3s ease;
  }
  .logo:hover .logo-mark { background: var(--rust-deep); }
  .logo-mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gold);
    pointer-events: none;
    transition: inset 0.3s var(--ease-out);
  }
  .logo:hover .logo-mark::after { inset: 2px; }
  .logo-text {
    line-height: 1;
  }
  .logo-text .name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    display: block;
  }
  .logo-text .sub {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 3px;
    display: block;
  }
  .nav-links {
    display: none;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
    transition: color 0.25s ease;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1.5px;
    background: var(--rust);
    transition: width 0.35s var(--ease-out);
  }
  .nav-links a:hover { color: var(--rust-deep); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.25s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }
  .nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--rust);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-cta:hover::before { transform: translateX(0); }
  .nav-cta > * { position: relative; z-index: 1; }
  .nav-cta svg { width: 14px; height: 14px; }
  .nav-cta:active { transform: scale(0.97); }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    z-index: 10;
    padding: 48px 0 80px;
    overflow: hidden;
  }
  .hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media"
      "cities";
    gap: 48px;
    align-items: start;
  }
  .hero-content { grid-area: content; position: relative; z-index: 2; }
  .hero-media { grid-area: media; }
  .hero-cities { grid-area: cities; margin-top: 16px; }
  .hero-meta {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: rise 0.8s var(--ease-out) 0.1s both;
  }
  .hero-meta .line {
    height: 1px;
    width: 48px;
    background: var(--rust);
    animation: line-grow 1s var(--ease-out) 0.2s both;
    transform-origin: left;
  }
  @keyframes line-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(52px, 8.4vw, 116px);
    font-variation-settings: "opsz" 144;
    line-height: 0.9;
    letter-spacing: -0.045em;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--ink);
    animation: rise 1s var(--ease-out) 0.2s both;
    text-wrap: balance;
  }
  .hero h1 .italic {
    font-style: italic;
    font-weight: 300;
    color: var(--rust-deep);
    font-variation-settings: "opsz" 144;
  }
  .hero h1 .swash {
    font-style: italic;
    font-weight: 500;
    position: relative;
    font-variation-settings: "opsz" 144;
  }
  .hero-lede {
    font-size: 17.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 540px;
    font-weight: 400;
    margin-bottom: 40px;
    animation: rise 1s var(--ease-out) 0.4s both;
    text-wrap: pretty;
  }
  .hero-lede strong {
    color: var(--ink);
    font-weight: 600;
  }

  .hero-cta-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: rise 1s ease-out 0.5s both;
    margin-bottom: 40px;
  }

  /* Hero service-area grid */
  .hero-cities {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    animation: rise 1s ease-out 0.7s both;
  }
  .hero-cities-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-cities-label .line {
    flex: 1;
    height: 1px;
    background: var(--line);
    max-width: 80px;
  }
  .hero-cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px 14px;
  }
  .hero-city {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -0.01em;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }
  .hero-city:hover {
    color: var(--rust-deep);
    border-bottom-color: var(--line);
  }
  .hero-city::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-3px);
  }
  .hero-city .it {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-soft);
  }
  @media (max-width: 900px) {
    .hero-cities-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-city { font-size: 15px; }
  }
  @media (max-width: 480px) {
    .hero-cities-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* Hero media (image stack) */
  .hero-media {
    position: relative;
    animation: rise 1.1s ease-out 0.3s both;
  }
  .hero-image-main {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--paper-deep);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
  }
  .hero-image-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(201, 163, 92, 0.18) 0%,
      transparent 40%
    );
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  .hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.06) contrast(1.03);
    transition: transform 1.6s var(--ease-out);
  }
  .hero-image-main:hover img {
    transform: scale(1.04);
  }
  .hero-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 55%,
      rgba(10, 24, 34, 0.55) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  /* Frame caption */
  .hero-image-caption {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--paper);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
  }
  .hero-image-caption .left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.92;
  }
  .hero-image-caption .left strong {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 17px;
    text-transform: none;
    letter-spacing: -0.01em;
    font-weight: 500;
  }
  .hero-image-caption .right {
    text-align: right;
    opacity: 0.78;
    line-height: 1.5;
    border-left: 1px solid rgba(244, 237, 224, 0.4);
    padding-left: 12px;
  }

  /* Editorial badge */
  .hero-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold-soft) 0%, var(--gold) 60%);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    box-shadow:
      0 10px 28px -6px rgba(176, 130, 50, 0.55),
      inset 0 -2px 6px rgba(0,0,0,0.08);
    transform: rotate(-8deg);
    transition: transform 0.5s var(--ease-out);
  }
  .hero-badge::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(20, 40, 56, 0.35);
    pointer-events: none;
  }
  .hero-media:hover .hero-badge {
    transform: rotate(-2deg) scale(1.05);
  }
  .hero-badge-inner {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }
  .hero-badge-inner .top {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }
  .hero-badge-inner .big {
    font-style: italic;
    font-size: 26px;
    display: block;
    line-height: 1;
  }
  .hero-badge-inner .bot {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
  }
  @keyframes badge-spin {
    from { transform: rotate(-8deg); }
    to { transform: rotate(352deg); }
  }

  /* Detail inset */
  .hero-image-inset {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 38%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 6px solid var(--paper);
    box-shadow: 0 18px 40px -15px rgba(20, 40, 56, 0.4);
    z-index: 4;
    display: none;
    transform-origin: bottom left;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.45s ease;
    cursor: pointer;
  }
  .hero-image-inset:hover {
    transform: scale(1.08);
    box-shadow: 0 28px 56px -16px rgba(20, 40, 56, 0.5);
  }
  .hero-image-inset img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05);
    transition: filter 0.45s ease;
  }
  .hero-image-inset:hover img {
    filter: saturate(1.05) contrast(1.05);
  }
  .hero-image-inset .inset-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--rust);
    color: var(--paper);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
  }
  .phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--rust);
    color: var(--paper);
    padding: 22px 30px;
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.5px;
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    border: 2px solid var(--rust);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px -10px rgba(176, 72, 38, 0.5);
  }
  .phone-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform 0.45s var(--ease-out);
    z-index: 0;
  }
  .phone-cta:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -12px rgba(20, 24, 20, 0.45);
  }
  .phone-cta:hover::before { transform: translateY(0); }
  .phone-cta:active { transform: translateY(0); }
  .phone-cta > * { position: relative; z-index: 1; }
  .phone-cta-icon {
    width: 44px; height: 44px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease-out);
  }
  .phone-cta:hover .phone-cta-icon {
    transform: rotate(12deg) scale(1.05);
  }
  .phone-cta-icon svg { width: 18px; height: 18px; }
  .phone-cta-text { display: flex; flex-direction: column; line-height: 1; }
  .phone-cta-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .phone-cta-label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }
  .secondary-cta {
    color: var(--ink);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    padding: 4px 2px;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .secondary-cta:hover {
    color: var(--rust-deep);
    border-bottom-color: var(--rust);
  }
  .secondary-cta::after {
    content: "→";
    transition: transform 0.35s var(--ease-out);
    font-family: 'Fraunces', serif;
    font-size: 18px;
  }
  .secondary-cta:hover::after { transform: translateX(8px); }

  @keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== TICKER ===== */
  .ticker {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    border-top: 1px solid var(--rust);
    border-bottom: 1px solid var(--rust);
    position: relative;
    z-index: 10;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  }
  .ticker-track {
    display: flex;
    gap: 64px;
    padding: 20px 0;
    animation: scroll 50s linear infinite;
    width: max-content;
  }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  .ticker-track span {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 64px;
    letter-spacing: -0.01em;
  }
  .ticker-track span::after {
    content: "✦";
    color: var(--gold);
    font-style: normal;
    font-size: 13px;
    transform: translateY(-2px);
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== SERVICES ===== */
  .services {
    padding: 120px 0;
    position: relative;
    z-index: 10;
  }

  /* Ghost section numerals */
  section[data-ghost] { position: relative; overflow: hidden; }
  section[data-ghost]::before {
    content: attr(data-ghost);
    position: absolute;
    top: 20px;
    right: -1%;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(180px, 24vw, 340px);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--line);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
  }
  section[data-ghost] > * { position: relative; z-index: 1; }
  .area[data-ghost]::before {
    right: auto;
    top: auto;
    left: -2%;
    bottom: -30px;
    opacity: 0.35;
  }
  .section-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rust);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-tag .num {
    background: var(--rust);
    color: var(--paper);
    padding: 3px 8px;
    font-weight: 500;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--ink);
  }
  .section-title .it {
    font-style: italic;
    color: var(--rust-deep);
    font-weight: 300;
  }

  .services-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .service {
    border-bottom: 1px solid var(--line);
    padding: 44px 0;
    display: grid;
    grid-template-columns: clamp(64px, 9vw, 120px) 1fr;
    gap: 28px;
    align-items: start;
    transition: background 0.45s var(--ease-out),
                padding 0.45s var(--ease-out);
    cursor: pointer;
    position: relative;
  }
  .service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--rust);
    transition: width 0.4s var(--ease-out);
  }
  .service:hover {
    background: linear-gradient(90deg, var(--paper-warm) 0%, transparent 100%);
    padding-left: 24px;
    padding-right: 16px;
  }
  .service:hover::before { width: 3px; }
  .service-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 1.2px var(--rust);
    padding-top: 4px;
    transition: transform 0.4s var(--ease-out), color 0.35s ease;
  }
  .service:hover .service-num {
    transform: translateX(4px);
    color: var(--rust);
  }
  @supports not (-webkit-text-stroke: 1px black) {
    .service-num { color: var(--rust); opacity: 0.45; }
    .service:hover .service-num { opacity: 1; }
  }
  .service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-wrap: balance;
  }
  .service h3 .it { font-style: italic; color: var(--rust-deep); font-weight: 300; }
  .service-desc {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    text-wrap: pretty;
  }
  .service-meta {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 8px;
  }
  .service-meta strong { color: var(--rust); font-weight: 500; }
  .service-arrow {
    grid-column: 2;
    justify-self: end;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: var(--line);
    transform: rotate(-45deg);
    transition: transform 0.4s var(--ease-out),
                color 0.3s ease,
                letter-spacing 0.4s var(--ease-out);
    line-height: 1;
    margin-top: -8px;
  }
  .service:hover .service-arrow {
    transform: rotate(0deg) translateX(8px);
    color: var(--rust);
  }

  /* ===== TRUST / WHY US ===== */
  .why {
    background: var(--navy);
    color: var(--paper);
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
  }
  .why::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 163, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .why::after {
    content: "EST. 2026";
    position: absolute;
    bottom: 24px;
    right: 32px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.5;
  }
  .why-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
  }
  .why-intro {
    display: grid;
    gap: 24px;
  }
  .why-intro .section-tag { color: var(--gold); }
  .why-intro .section-tag .num { background: var(--gold); color: var(--navy-deep); }
  .why-intro h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--paper);
  }
  .why-intro h2 .it { font-style: italic; color: var(--gold); font-weight: 300; }
  .why-intro p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(244, 237, 224, 0.78);
    max-width: 540px;
  }
  .why-call {
    margin-top: 16px;
    padding: 26px 28px;
    border: 1px solid rgba(201, 163, 92, 0.4);
    background: rgba(201, 163, 92, 0.06);
    display: grid;
    gap: 8px;
    max-width: 380px;
  }
  .why-call .label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
  }
  .why-call a {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    color: var(--paper);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.1;
    transition: color 0.25s ease;
  }
  .why-call a:hover { color: var(--gold); }
  .why-call .hours {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(244, 237, 224, 0.6);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(244, 237, 224, 0.15);
  }
  .why-item {
    padding: 36px 0;
    border-bottom: 1px solid rgba(244, 237, 224, 0.15);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
  }
  .why-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 64px;
    line-height: 0.85;
    color: var(--gold);
    letter-spacing: -2px;
    min-width: 56px;
    transition: transform 0.4s var(--ease-out), color 0.3s ease;
  }
  .why-item:hover .why-num {
    transform: translateY(-4px);
    color: var(--gold-soft);
  }
  .why-item {
    transition: padding 0.4s var(--ease-out);
  }
  .why-body h4 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--paper);
    letter-spacing: -0.01em;
  }
  .why-body p {
    color: rgba(244, 237, 224, 0.78);
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
  }

  /* ===== TESTIMONIAL ===== */
  .testimonial {
    background: var(--paper-warm);
    padding: 140px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
  }
  .testimonial::before {
    content: "“";
    position: absolute;
    top: -100px;
    left: 5%;
    font-family: 'Fraunces', serif;
    font-size: 520px;
    line-height: 1;
    color: var(--rust);
    opacity: 0.07;
    pointer-events: none;
    font-weight: 900;
    font-style: italic;
  }
  .testimonial::after {
    content: "";
    position: absolute;
    bottom: 32px;
    right: 5%;
    width: 120px;
    height: 1px;
    background: var(--rust);
    opacity: 0.3;
    pointer-events: none;
  }
  .testimonial-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
  }
  .testimonial blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4.2vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 48px;
    text-wrap: balance;
    position: relative;
  }
  .testimonial blockquote .it {
    font-style: italic;
    color: var(--rust-deep);
  }
  .testimonial-attribution {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    max-width: 480px;
  }
  .stars {
    color: var(--rust);
    font-size: 18px;
    letter-spacing: 4px;
    line-height: 1;
  }
  .attr-info {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .attr-info strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2px;
    font-weight: 500;
  }
  .review-source {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-source .line { flex: 1; height: 1px; background: var(--line); max-width: 80px; }

  /* ===== SERVICE AREA ===== */
  .area {
    padding: 120px 0;
    position: relative;
    z-index: 10;
  }
  .area-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .area-copy h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin-bottom: 24px;
  }
  .area-copy h2 .it { font-style: italic; color: var(--rust-deep); font-weight: 300; }
  .area-copy p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
  }
  .zip-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .zip {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 18px;
    align-items: baseline;
    transition: padding 0.35s var(--ease-out);
  }
  .zip:hover { padding-left: 12px; }
  .zip-code {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 300;
    color: var(--rust);
    letter-spacing: -1px;
    line-height: 1;
    transition: color 0.3s ease;
  }
  .zip:hover .zip-code { color: var(--rust-deep); }
  .zip-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .zip-meta {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .area-map {
    background: var(--paper-deep);
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .area-map svg { width: 100%; height: 100%; display: block; }
  .area-map-label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--paper);
    padding: 6px 10px;
    border: 1px solid var(--line);
  }
  .area-map-coords {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--ink-soft);
    text-align: right;
    line-height: 1.6;
  }

  /* ===== FAQ ===== */
  .faq {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    background: var(--paper-warm);
    overflow: hidden;
  }
  .faq::before {
    content: "?";
    position: absolute;
    top: -60px;
    left: -2%;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 560px;
    line-height: 1;
    color: var(--rust);
    opacity: 0.06;
    pointer-events: none;
  }
  .faq-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    position: relative;
  }
  .faq-intro { display: grid; gap: 24px; align-content: start; }
  .faq-intro .section-title { text-wrap: balance; }
  .faq-intro-note {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
    max-width: 380px;
    text-wrap: pretty;
  }
  .faq-cta-note {
    margin-top: 8px;
    display: grid;
    gap: 10px;
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--rust);
    box-shadow: var(--shadow-md);
    max-width: 380px;
  }
  .faq-cta-note > span {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .faq-cta-note a {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 24px;
    letter-spacing: -0.01em;
    color: var(--rust-deep);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.2;
  }
  .faq-cta-note a:hover { color: var(--ink); }

  .faq-list {
    border-top: 1px solid var(--line);
    background: transparent;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
    transition: background 0.35s var(--ease-out);
  }
  .faq-item[open] {
    background: linear-gradient(90deg, var(--paper) 0%, transparent 120%);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 4px;
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-family: 'Fraunces', serif;
    font-size: clamp(19px, 2.2vw, 24px);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--ink);
    transition: color 0.25s ease, padding 0.35s var(--ease-out);
    position: relative;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--rust-deep); padding-left: 12px; }
  .faq-item[open] summary { color: var(--rust-deep); padding-left: 12px; }
  .faq-q-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: var(--rust);
    flex-shrink: 0;
    min-width: 36px;
    transform: translateY(-1px);
  }
  .faq-toggle {
    margin-left: auto;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 300;
    color: var(--ink-soft);
    transition: transform 0.4s var(--ease-out),
                background 0.25s ease,
                color 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
    align-self: center;
  }
  .faq-item summary:hover .faq-toggle {
    border-color: var(--rust);
    color: var(--rust);
  }
  .faq-item[open] .faq-toggle {
    transform: rotate(135deg);
    background: var(--rust);
    border-color: var(--rust);
    color: var(--paper);
    box-shadow: 0 6px 14px -4px rgba(176, 72, 38, 0.45);
  }
  .faq-answer {
    padding: 4px 56px 30px 66px;
    max-width: 640px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.68;
    text-wrap: pretty;
    animation: faq-reveal 0.45s var(--ease-out);
    position: relative;
  }
  .faq-answer::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 8px;
    bottom: 34px;
    width: 1.5px;
    background: linear-gradient(180deg, var(--rust) 0%, transparent 100%);
    opacity: 0.45;
  }
  .faq-answer strong { color: var(--ink); font-weight: 600; }
  .faq-answer a { color: var(--rust-deep); }
  @keyframes faq-reveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (min-width: 900px) {
    .faq { padding: 160px 0; }
    .faq-inner {
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
    }
    .faq-intro {
      position: sticky;
      top: 120px;
    }
  }
  @media (max-width: 540px) {
    .faq { padding: 80px 0; }
    .faq-answer { padding: 4px 8px 26px 8px; }
    .faq-answer::before { display: none; }
    .faq::before { font-size: 320px; top: -30px; }
  }

  /* ===== CTA STRIP ===== */
  .cta-strip {
    background: var(--rust);
    color: var(--paper);
    padding: 80px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
  }
  .cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 60px,
      rgba(0,0,0,0.03) 60px,
      rgba(0,0,0,0.03) 61px
    );
    pointer-events: none;
  }
  .cta-strip-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
  }
  .cta-strip h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .cta-strip h2 .it { font-style: italic; font-weight: 300; }
  .cta-strip h2 br { display: none; }
  .cta-strip h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(244, 237, 224, 0.35);
    min-width: 40px;
  }
  .cta-strip-phone {
    display: block;
    color: var(--paper);
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(52px, 10.5vw, 150px);
    font-weight: 300;
    letter-spacing: -0.045em;
    line-height: 1.05;
    white-space: nowrap;
    transition: letter-spacing 0.5s var(--ease-out), text-shadow 0.4s ease;
  }
  .cta-strip-phone:hover {
    letter-spacing: -0.028em;
    text-shadow: 0 14px 50px rgba(10, 24, 34, 0.45);
  }
  .cta-strip-phone svg { display: none; }
  .cta-strip-sub {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(244, 237, 224, 0.78);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
  }

  /* ===== FOOTER ===== */
  .footer-word {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 7.5vw, 104px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--paper);
    padding-bottom: 48px;
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(244, 237, 224, 0.15);
    text-wrap: balance;
  }
  .footer-word .it {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  footer {
    background: var(--navy-deep);
    color: var(--paper);
    padding: 80px 0 32px;
    position: relative;
    z-index: 10;
  }
  .footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(244, 237, 224, 0.15);
  }
  .footer-brand .logo-mark { background: var(--gold); color: var(--navy-deep); }
  .footer-brand .logo-mark::after { border-color: var(--navy-deep); }
  .footer-brand .logo-text .name { color: var(--paper); }
  .footer-brand .logo-text .sub { color: rgba(244, 237, 224, 0.5); }
  .footer-brand p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(244, 237, 224, 0.65);
    max-width: 320px;
  }
  .footer-col h5 {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(244, 237, 224, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-col p {
    color: rgba(244, 237, 224, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .footer-col p strong { color: var(--paper); font-weight: 600; }
  .footer-phone {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--paper) !important;
    letter-spacing: -0.5px;
    margin-top: 6px;
  }

  .footer-bottom {
    padding-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(244, 237, 224, 0.5);
  }
  .footer-bottom-right { display: flex; gap: 24px; flex-wrap: wrap; }

  /* ===== RESPONSIVE ===== */
  @media (min-width: 640px) {
    .top-banner .hide-mobile { display: flex; }
    .footer-bottom { grid-template-columns: 1fr auto; }
  }

  @media (min-width: 768px) {
    .nav-links { display: flex; }
    .hero-cta-block { flex-direction: row; align-items: center; }
    .area-inner { grid-template-columns: 1fr 1fr; align-items: start; }
    .why-inner { grid-template-columns: 1fr 1.4fr; align-items: start; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
    .hero-image-inset { display: block; }
    .services { padding: 140px 0; }
    .why { padding: 140px 0; }
    .area { padding: 140px 0; }
  }

  @media (min-width: 1024px) {
    .hero { padding: 88px 0 120px; }
    .hero-inner {
      grid-template-columns: 1.15fr 1fr;
      grid-template-areas:
        "content media"
        "cities cities";
      column-gap: 80px;
      row-gap: 96px;
    }
    .hero-content {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .hero h1 {
      font-size: clamp(72px, 8.8vw, 142px);
      width: calc(100% + 260px);
      position: relative;
      z-index: 4;
      margin-bottom: 0;
    }
    .hero-lede { margin-top: auto; padding-top: 48px; }
    /* Soft paper glow where the headline crosses the photo */
    .hero h1 .italic,
    .hero h1 .swash {
      text-shadow:
        0 0 18px rgba(244, 237, 224, 0.65),
        0 0 42px rgba(244, 237, 224, 0.45);
    }
    .phone-cta { font-size: 32px; padding: 24px 34px; }
    /* Bleed photo to the right viewport edge */
    .hero-media {
      margin-right: calc(-1 * (max(0px, (100vw - var(--container)) / 2) + var(--gutter)));
    }
    .hero-badge { right: 32px; }
    .hero-image-main { aspect-ratio: 4 / 4.6; }
    /* Cities as a full-width base strip: label left, grid right */
    .hero-cities {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 40px;
      align-items: start;
      margin-top: 0;
      padding-top: 32px;
    }
    .hero-cities-label {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 0;
    }
    .hero-cities-label .line {
      flex: none;
      width: 48px;
      height: 1px;
    }
    .services { padding: 160px 0; }
    .why { padding: 160px 0; }
    .area { padding: 160px 0; }
    .cta-strip { padding: 100px 0; }
  }

  /* Tighten on small screens */
  @media (max-width: 540px) {
    .services { padding: 80px 0; }
    .why { padding: 80px 0; }
    .testimonial { padding: 80px 0; }
    .area { padding: 80px 0; }
    .cta-strip { padding: 56px 0; }
    .section-header { margin-bottom: 56px; }
    .why-inner { gap: 48px; }
    .hero { padding: 32px 0 64px; }
    .hero-image-main { aspect-ratio: 4 / 5; }
    .hero-badge { width: 90px; height: 90px; top: -10px; right: -10px; }
    .hero-badge-inner .big { font-size: 22px; }
    .hero h1 { letter-spacing: -0.04em; }
    .top-banner { padding: 7px 0; font-size: 10px; letter-spacing: 1.2px; }
    .logo-text .name { font-size: 17px; white-space: nowrap; }
    .logo-text .sub { display: none; }
    .nav-cta { padding: 10px 16px; font-size: 13px; }
    .testimonial::before { font-size: 360px; top: -60px; }
  }

  /* ===== FLOATING CHAT ===== */
  .chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--rust);
    color: var(--paper);
    padding: 14px 20px 14px 16px;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow:
      0 12px 28px -8px rgba(176, 72, 38, 0.5),
      0 6px 14px -6px rgba(20, 24, 20, 0.3);
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.25s ease,
                background 0.25s ease;
    border: none;
    cursor: pointer;
    animation: fab-in 0.6s var(--ease-out) 1.4s both;
  }
  @keyframes fab-in {
    from { transform: translateY(80px) scale(0.8); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }
  .chat-fab:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--rust-deep);
    box-shadow:
      0 18px 36px -8px rgba(176, 72, 38, 0.55),
      0 10px 18px -6px rgba(20, 24, 20, 0.35);
  }
  .chat-fab-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .chat-fab-icon svg { width: 18px; height: 18px; }
  .chat-fab-icon::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--rust);
    animation: chat-pulse 2s ease-in-out infinite;
  }
  @keyframes chat-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.85; }
  }
  .chat-fab-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
  }
  .chat-fab-text .top {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 3px;
  }
  .chat-fab-text .bot {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
  }

  @media (max-width: 540px) {
    .chat-fab {
      padding: 12px;
      gap: 0;
    }
    .chat-fab-text { display: none; }
    .chat-fab-icon { width: 32px; height: 32px; }
  }

  /* ===== CALLBACK MODAL ===== */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 24, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .modal {
    background: var(--paper);
    width: 100%;
    max-width: 460px;
    padding: 44px 36px 32px;
    position: relative;
    transform: translateY(28px) scale(0.96);
    transition: transform 0.45s var(--ease-out);
    box-shadow:
      0 30px 80px -20px rgba(20, 24, 20, 0.5),
      0 14px 30px -14px rgba(20, 24, 20, 0.3);
    border-top: 4px solid var(--rust);
    overflow: hidden;
  }
  .modal::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rust) 0%, var(--gold) 50%, var(--rust) 100%);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
  }
  @keyframes shimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
  }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--ink-soft);
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
  }
  .modal-close:hover { background: var(--paper-warm); color: var(--ink); }
  .modal-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .modal-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }
  .modal h3 {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .modal h3 .it { font-style: italic; color: var(--rust-deep); font-weight: 300; }
  .modal p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .modal-form { display: flex; flex-direction: column; gap: 14px; }
  .modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }
  .modal-field label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .modal-field input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--line);
    padding: 8px 0;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    letter-spacing: -0.01em;
  }
  .modal-field input:focus { border-bottom-color: var(--rust); }
  .modal-field input::placeholder {
    color: var(--ink-soft);
    opacity: 0.4;
    font-style: italic;
  }
  .modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .modal-submit {
    margin-top: 12px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 18px 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.2s;
  }
  .modal-submit:hover { background: var(--rust-deep); }
  .modal-submit:disabled { opacity: 0.55; cursor: not-allowed; }
  .modal-submit svg { width: 16px; height: 16px; }
  .modal-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .modal-foot a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rust); }

  /* Success state */
  .modal-success {
    text-align: center;
    padding: 12px 0 6px;
    display: none;
  }
  .modal.is-success .modal-form,
  .modal.is-success .modal-foot,
  .modal.is-success .modal-eyebrow,
  .modal.is-success h3,
  .modal.is-success > p { display: none; }
  .modal.is-success .modal-success { display: block; }
  .modal-success-mark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1);
  }
  .modal-success-mark svg { width: 28px; height: 28px; }
  @keyframes pop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .modal-success h3 {
    display: block !important;
    margin-bottom: 14px;
  }
  .modal-success p {
    display: block;
    color: var(--ink-soft);
    font-size: 15px;
    margin: 0 auto 22px;
    max-width: 320px;
  }
  .modal-success .num-echo {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--rust-deep);
    font-weight: 500;
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .ticker-track { animation: none !important; }
    html { scroll-behavior: auto; }
  }

  /* Print */
  @media print {
    body { background: white; color: black; }
    body::before, body::after { display: none; }
    nav, .top-banner, .ticker, .chat-fab, .modal-backdrop,
    .cta-strip, .hero-badge { display: none !important; }
    .hero, .services, .why, .testimonial, .area {
      page-break-inside: avoid;
      padding: 24px 0 !important;
    }
    .why { background: white !important; color: black !important; }
    .testimonial { background: white !important; }
    a { text-decoration: underline; color: inherit; }
    a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
  }

/* ===== SUBPAGE COMPONENTS ===== */
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter) 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.breadcrumb a { color: var(--rust); text-decoration: none; }
.breadcrumb a:hover { color: var(--rust-deep); }
.breadcrumb .sep { color: var(--line); }

.page-hero {
  position: relative;
  z-index: 10;
  padding: 56px 0 72px;
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 32px;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 7vw, 96px);
  font-variation-settings: "opsz" 144;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: balance;
  max-width: 18ch;
}
.page-hero h1 .it { font-style: italic; font-weight: 300; color: var(--rust-deep); }
.page-hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  text-wrap: pretty;
}
.page-hero .lede strong { color: var(--ink); font-weight: 600; }
.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.page-hero-meta strong { color: var(--rust); font-weight: 500; }

.prose-section {
  position: relative;
  z-index: 10;
  padding: 72px 0;
}
.prose-section.alt { background: var(--paper-warm); }
.prose-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .prose-inner { grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
  .prose-side { position: sticky; top: 110px; }
}
.prose-side h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-wrap: balance;
}
.prose-side h2 .it { font-style: italic; font-weight: 300; color: var(--rust-deep); }
.prose-body { max-width: 640px; }
.prose-body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.prose-body p strong { color: var(--ink); font-weight: 600; }
.prose-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.prose-body ul { padding-left: 22px; margin-bottom: 20px; }
.prose-body li { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-bottom: 8px; }
.prose-body li::marker { color: var(--rust); }

.signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.sign {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.sign-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--rust);
}
.sign h4 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; margin-bottom: 4px; }
.sign p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.price-table {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.price-row:last-child { border-bottom: none; }
.price-row .what { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; }
.price-row .what small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 2px;
}
.price-row .amount {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--rust-deep);
  white-space: nowrap;
}
.price-note {
  padding: 14px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--paper-warm);
}

.steps { counter-reset: step; display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step::before {
  content: "0" counter(step);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--rust);
}
.step h4 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 540px; }

.related-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .related-services { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  display: grid;
  gap: 8px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rust);
}
.related-card .k {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rust);
}
.related-card .t { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.related-card .d { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* Service rows as links */
a.service { text-decoration: none; color: inherit; }

/* ===== PREMIUM MOTION LAYER ===== */

/* Headline line-mask reveal (replaces block rise) */
.hero h1 { animation: none; }
.hero h1 .hl {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero h1 .hl-in {
  display: inline-block;
  animation: hl-up 1s var(--ease-out) backwards;
  will-change: transform;
}
.hero h1 .hl:nth-child(1) .hl-in { animation-delay: 0.12s; }
.hero h1 .hl:nth-child(2) .hl-in { animation-delay: 0.26s; }
.hero h1 .hl:nth-child(3) .hl-in { animation-delay: 0.4s; }
@keyframes hl-up { from { transform: translateY(118%); } }

/* Hero photo curtain reveal */
.hero-image-main { animation: curtain 1.15s var(--ease-in-out) 0.5s backwards; }
@keyframes curtain { from { clip-path: inset(0 0 100% 0); } }
.hero-image-inset { animation: inset-in 0.85s var(--ease-out) 1.35s backwards; }
@keyframes inset-in { from { opacity: 0; transform: translateY(26px); } }
.hero-badge { animation: badge-in 0.7s cubic-bezier(0.2, 1.4, 0.4, 1) 1.5s backwards; }
@keyframes badge-in { from { opacity: 0; transform: rotate(-8deg) scale(0.5); } }

/* Scroll-linked depth — ghost numerals & quote mark drift (Chromium, motion-safe) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    section[data-ghost]::before,
    .testimonial::before,
    .faq::before {
      animation: ghost-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
  }
}
@keyframes ghost-drift {
  from { transform: translateY(70px); }
  to { transform: translateY(-70px); }
}

/* Scroll progress bar (invisible where unsupported) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 80;
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-progress {
      animation: progress-grow linear both;
      animation-timeline: scroll();
    }
  }
}
@keyframes progress-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Cross-page view transitions (Chromium MPA) */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-out 0.22s ease both; }
  ::view-transition-new(root) { animation: vt-in 0.32s var(--ease-out) both; }
}
@keyframes vt-out { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(12px); } }

/* Richer reveal entrance */
.reveal { transform: translateY(28px) scale(0.995); }

/* ===== TOP-TIER DETAIL ROUND ===== */

/* Stat band */
.stats {
  position: relative;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
@media (min-width: 900px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat { display: grid; gap: 10px; align-content: start; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--rust-deep);
  font-variant-numeric: tabular-nums;
}
.stat-cap {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 200px;
}

/* Cinematic photo grade */
.hero-image-main img { filter: saturate(0.95) sepia(0.07) contrast(1.05) brightness(1.01); }
.hero-image-inset img { filter: saturate(0.9) sepia(0.08) contrast(1.05); }

/* Primary CTA pulse ring */
.phone-cta-icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0;
  animation: ping 3s ease-out 2.4s infinite;
  pointer-events: none;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.65; }
  60%, 100% { transform: scale(1.6); opacity: 0; }
}

/* Card sheen sweep */
.related-card { position: relative; overflow: hidden; }
.related-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 252, 245, 0.5), transparent);
  transform: skewX(-15deg);
  transition: left 0.65s var(--ease-out);
  pointer-events: none;
}
.related-card:hover::before { left: 135%; }

/* Current-page nav state */
.nav-links a.current { color: var(--rust-deep); }
.nav-links a.current::after { width: 100%; }

/* ===== HEADING-HIERARCHY ALIASES ===== */
/* h3s that carry former-h4 visual weight */
.why-body h3.h4-style {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.sign h3.h4-style {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--ink);
}
.step h3.h4-style {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 0;
  color: var(--ink);
}
/* footer column labels (former h5s) */
.footer-col .footer-h {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ===== THE LAST 1% ===== */
/* No faux bold/italic while fonts load */
body { font-synthesis: none; }
/* No gray flash on mobile taps */
a, button, summary { -webkit-tap-highlight-color: transparent; }
/* Native form UI in brand color (checkboxes, radio, progress) */
:root { accent-color: var(--rust); }
/* Branded scrollbar */
html { scrollbar-color: var(--rust) var(--paper-warm); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-warm); }
::-webkit-scrollbar-thumb {
  background: var(--rust);
  border-radius: 6px;
  border: 2px solid var(--paper-warm);
}
::-webkit-scrollbar-thumb:hover { background: var(--rust-deep); }
/* Modal labels warm up when their field has focus */
.modal-field:focus-within label { color: var(--rust); }
/* Underlines skip descenders cleanly */
a { text-decoration-skip-ink: auto; }

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ===== MOBILE MENU ===== */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-burger { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: var(--navy-deep);
  padding: 120px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 2px; }
.mobile-menu a {
  color: var(--paper);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s ease, color 0.2s ease;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu nav a:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu nav a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu nav a:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu nav a:nth-child(6) { transition-delay: 0.26s; }
.mobile-menu nav a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu nav a:nth-child(8) { transition-delay: 0.34s; }
.mobile-menu nav a:nth-child(9) { transition-delay: 0.38s; }
.mobile-menu a.sub {
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(244, 237, 224, 0.75);
  padding-left: 20px;
  border-bottom-color: rgba(244, 237, 224, 0.06);
}
.mobile-menu-call {
  margin-top: 32px;
  display: grid;
  gap: 6px;
}
.mobile-menu-call .l {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu-call a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--paper);
  text-decoration: none;
  border: none;
  padding: 0;
  transform: none;
  opacity: 1;
}
body.menu-open { overflow: hidden; }
@media (min-width: 768px) { .mobile-menu { display: none; } }

/* Nested navs (mobile menu, breadcrumbs) never inherit header chrome */
.mobile-menu nav, nav.breadcrumb {
  position: static;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
