/* ── TOKENS — The Clean Edit Co. brand palette ── */
  :root {
    --bg:        #FCFBF8;  /* warm white */
    --bg2:       #EFE9E1;  /* soft greige */
    --surface:   #FFFFFF;
    --text:      #3F4345;  /* charcoal */
    --text-muted:#6E7570;  /* charcoal, sage-tinted for readability */
    --accent:    #7D896E;  /* logo sage */
    --accent-dk: #62705A;  /* deeper sage, hover states */
    --accent-light:#D8E0D3;/* light sage, tints/badges */
    --accent-gold:#CDBA8C; /* muted gold, special callouts */
    --taupe:     #B7A99A;  /* soft taupe */
    --border:    rgba(63,67,69,0.14);
    --nav-h:     60px;
    --radius:    2px;
    --transition: 0.35s ease;
  }
  [data-theme="dark"] {
    --bg:        #24262A;
    --bg2:       #2C2F31;
    --surface:   #33363A;
    --text:      #F2F0EA;
    --text-muted:#ABB2AA;
    --accent:    #A8B7A3;  /* dusty sage pops on dark bg */
    --accent-dk: #C4D0BF;
    --accent-light: rgba(168,183,163,0.16);
    --border:    rgba(242,240,234,0.12);
  }

  /* ── RESET ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
  }
  img { display: block; width: 100%; height: 100%; object-fit: cover; }
  a { color: inherit; text-decoration: none; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
  }
  .nav-brand {
    display: flex; align-items: center; gap: 9px;
  }
  .nav-brand img { width: 30px; height: 30px; flex-shrink: 0; }
  .nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
  .nav-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px; letter-spacing: 0.08em; font-weight: 500;
    color: var(--text);
  }
  .nav-brand-sub {
    font-size: 9px; letter-spacing: 0.18em; color: var(--text-muted);
    text-transform: uppercase;
  }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  .theme-toggle {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--bg2); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 15px;
    transition: background var(--transition);
  }
  .hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--text); transition: var(--transition);
  }

  /* ── MOBILE MENU ── */
  .menu-overlay {
    position: fixed; inset: 0; z-index: 99;
    background: var(--bg);
    display: flex; flex-direction: column;
    padding: var(--nav-h) 0 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .menu-overlay.open { transform: translateX(0); }
  .menu-links {
    display: flex; flex-direction: column;
    padding: 40px 28px; gap: 0;
  }
  .menu-links a {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 400;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: color 0.2s;
  }
  .menu-links a:first-child { border-top: 1px solid var(--border); }
  .menu-links a:hover { color: var(--accent); }
  .menu-contact {
    padding: 32px 28px; margin-top: auto;
    border-top: 1px solid var(--border);
  }
  .menu-contact p { font-size: 12px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
  .menu-contact a { display: block; font-size: 14px; color: var(--text); margin-bottom: 5px; }

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 48px) 24px 60px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 10px; letter-spacing: 0.22em; color: var(--text-muted);
    text-transform: uppercase; margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 14vw, 72px);
    line-height: 1.0; font-weight: 400;
    color: var(--text); margin-bottom: 28px;
  }
  .hero-headline em { font-style: italic; }
  .hero-body {
    font-size: 15px; line-height: 1.65;
    color: var(--text-muted); max-width: 320px;
    margin-bottom: 36px; font-weight: 300;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    padding: 14px 24px;
    background: var(--text); color: var(--bg);
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    border: 1.5px solid var(--text);
    cursor: pointer; transition: var(--transition);
  }
  .btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .btn-ghost {
    padding: 14px 24px;
    background: transparent; color: var(--text);
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    border: 1.5px solid var(--border);
    cursor: pointer; transition: var(--transition);
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
  .hero-image-wrap {
    margin: 40px -24px -60px;
    position: relative;
  }
  .hero-arch {
    width: 85%; margin: 0 auto;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    overflow: hidden; aspect-ratio: 3/4;
    max-height: 460px;
    background: var(--bg2);
  }
  .hero-arch img { object-position: center 20%; }
  .hero-caption {
    position: absolute; bottom: 20px; left: 36px; right: 36px;
    background: transparent;
    padding: 14px 18px;
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-style: italic;
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0,0,0,0.55), 0 2px 14px rgba(0,0,0,0.4);
    border-left: 2px solid var(--accent);
    text-align: center;
  }
  .ticker {
    padding: 16px 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    overflow: hidden; white-space: nowrap;
    background: var(--bg);
  }
  .ticker-inner {
    display: inline-flex; gap: 40px;
    animation: ticker 18s linear infinite;
  }
  .ticker-item {
    font-size: 10px; letter-spacing: 0.20em; color: var(--text-muted);
    text-transform: uppercase; flex-shrink: 0;
  }
  .ticker-dot { color: var(--accent); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section { padding: 72px 24px; }
  .section-eyebrow {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px; font-weight: 500;
  }
  .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.15; font-weight: 400;
    color: var(--text); margin-bottom: 20px;
  }
  .section-heading em { font-style: italic; }
  .section-body {
    font-size: 15px; line-height: 1.7;
    color: var(--text-muted); font-weight: 300;
  }
  .divider { height: 1px; background: var(--border); margin: 0 24px; }

  /* ── ABOUT ── */
  #about { background: var(--bg2); }
  .about-grid { display: flex; flex-direction: column; gap: 32px; }

  /* Service area */
  .area-block { margin-top: 8px; }
  .area-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 16px; }
  .area-badge {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 12px; border: 1px solid var(--accent); color: var(--accent);
  }
  .area-badge--home { background: var(--accent); color: #fff; border-color: var(--accent); }
  .area-map-card {
    background: #FCFBF8; border: 1px solid var(--border);
    padding: 14px 14px 10px; margin-top: 4px;
  }
  .area-map-card svg { width: 100%; height: auto; display: block; }

  /* Team */
  .team-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
  .team-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 24px; display: flex; flex-direction: column; gap: 16px;
  }
  .team-photo {
    width: 108px; height: 108px; border-radius: 50%; overflow: hidden;
    flex-shrink: 0; border: 2px solid var(--accent-light);
  }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-name {
    font-family: 'Playfair Display', serif; font-size: 19px;
    color: var(--text); margin-bottom: 12px;
  }
  .team-bio { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
  .team-bio p + p { margin-top: 10px; }

  .about-stat-row { display: flex; gap: 0; margin-top: 36px; }
  .about-stat {
    flex: 1; padding: 20px 16px;
    border-left: 1px solid var(--border);
  }
  .about-stat:first-child { padding-left: 0; border-left: none; }
  .about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 400; color: var(--accent);
    line-height: 1;
  }
  .about-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.08em; }
  .about-values { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
  .about-value {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: flex; gap: 16px; align-items: flex-start;
  }
  .about-value-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
  .about-value-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
  .about-value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

  /* ── SERVICES ── */
  #services { background: var(--bg); }
  .services-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
  .service-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .service-item:first-child { border-top: 1px solid var(--border); }
  .service-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0; cursor: pointer; gap: 12px;
  }
  .service-title-wrap { display: flex; flex-direction: column; gap: 3px; }
  .service-num { font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 400; color: var(--text);
  }
  .service-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted);
    flex-shrink: 0; transition: var(--transition);
  }
  .service-item.open .service-toggle { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(45deg); }
  .service-body {
    font-size: 14px; line-height: 1.7; color: var(--text-muted);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .service-body-inner { padding: 0 0 22px; }
  .service-item.open .service-body { max-height: 520px; }
  .service-best-for { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }
  .service-best-for strong { color: var(--text); }
  .service-tag {
    display: inline-block; font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 4px 10px;
    border: 1px solid var(--accent); color: var(--accent);
    margin-top: 12px;
  }
  .service-tag--gold { border-color: var(--accent-gold); color: var(--accent-gold); }

  /* ── WORK / PORTFOLIO ── */
  #work { background: var(--bg2); }
  .work-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
  .work-card {
    background: var(--surface);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .work-img {
    aspect-ratio: 4/3; background: var(--bg);
    overflow: hidden; position: relative;
    cursor: zoom-in;
  }
  .work-img img { transition: transform 0.4s ease; }
  .work-img:hover img { transform: scale(1.04); }

  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 999;
    background: rgba(20, 20, 18, 0.92);
    align-items: center; justify-content: center;
    padding: 40px 20px;
  }
  .lightbox-overlay.open { display: flex; }
  .lightbox-figure { max-width: 90vw; max-height: 88vh; margin: 0; text-align: center; }
  .lightbox-figure img {
    width: auto; height: auto;
    max-width: 90vw; max-height: 78vh;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .lightbox-figure figcaption {
    color: #F4F2EC; font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 15px; margin-top: 14px; letter-spacing: 0.01em;
  }
  .lightbox-close {
    position: fixed; top: 22px; right: 26px;
    background: none; border: none; color: #F4F2EC;
    font-size: 34px; line-height: 1; cursor: pointer;
    font-family: 'Playfair Display', serif; font-weight: 300;
  }
  .lightbox-close:hover { opacity: 0.7; }
  .work-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
  }
  .work-img-icon { font-size: 28px; opacity: 0.3; }
  .work-img-label { font-size: 10px; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; opacity: 0.6; }
  .work-info { padding: 20px; }
  .work-type { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
  .work-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 400; color: var(--text); margin-bottom: 8px;
  }
  .work-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .work-note {
    margin-top: 32px; padding: 18px; background: var(--bg);
    border-left: 2px solid var(--accent);
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
  }
  .work-note strong { color: var(--text); }

  /* ── REVIEWS ── */
  #reviews { background: var(--bg); }
  .reviews-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
  .review-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 22px;
  }
  .review-stars { color: var(--accent-gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
  .review-quote { font-size: 14px; line-height: 1.65; color: var(--text); margin-bottom: 14px; }
  .review-author { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
  .review-author strong { color: var(--text); font-weight: 600; }
  .review-source {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 4px;
  }
  .review-note {
    margin-top: 24px; padding: 16px 18px; background: var(--accent-light);
    border-left: 2px solid var(--accent);
    font-size: 12.5px; color: var(--text); line-height: 1.6;
  }
  [data-theme="dark"] .review-note { color: var(--text); }

  /* ── REVIEWS: TEXT MESSAGE STYLE CARD ── */
  .review-card--text { display: flex; flex-direction: column; }
  .review-msg-bubble {
    position: relative;
    background: var(--bg2);
    border-radius: 16px 16px 16px 4px;
    padding: 12px 16px;
    font-size: 14px; line-height: 1.55; color: var(--text);
    margin-bottom: 16px;
  }
  .review-msg-meta { display: flex; align-items: center; gap: 10px; margin-top: auto; }
  .review-msg-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0; border: 1px solid var(--border);
  }
  .review-msg-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .review-msg-name { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
  .review-msg-name strong { color: var(--text); font-weight: 600; display: block; font-size: 13px; letter-spacing: 0.01em; }

  /* ── FAQ ── */
  #faq { background: var(--bg2); }

  /* ── CONTACT ── */
  #contact { background: var(--bg); }
  .contact-card {
    margin-top: 36px; background: var(--bg2);
    border: 1px solid var(--border); padding: 28px;
  }
  .contact-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--border);
  }
  .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-icon { flex-shrink: 0; margin-top: 1px; width: 20px; height: 20px; color: var(--accent); }
  .contact-icon svg { width: 100%; height: 100%; display: block; }
  .contact-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
  .contact-val { font-size: 15px; color: var(--text); font-weight: 400; }
  .contact-val a { color: var(--text); }
  .contact-cta {
    margin-top: 28px; display: flex; flex-direction: column; gap: 10px;
  }
  .contact-cta .btn-primary, .contact-cta .btn-ghost {
    text-align: center; display: block; width: 100%;
  }

  /* ── BOOKING FORM ── */
  .quote-form-wrap {
    margin-top: 36px; background: var(--surface);
    border: 1px solid var(--border); padding: 28px;
  }
  .quote-form-title {
    font-family: 'Playfair Display', serif; font-size: 20px;
    color: var(--text); margin-bottom: 6px;
  }
  .quote-form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; }
  .form-row { display: flex; flex-direction: column; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label {
    font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); font-weight: 500;
  }
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="number"],
  .form-group input[type="date"],
  .form-group select,
  .form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px; color: var(--text);
    background: var(--bg); border: 1px solid var(--border);
    padding: 12px 14px; border-radius: var(--radius);
    width: 100%; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-2col { display: flex; gap: 12px; }
  .form-2col .form-group { flex: 1; min-width: 0; }
  .form-file {
    border: 1.5px dashed var(--border); padding: 18px; text-align: center;
    background: var(--bg); cursor: pointer; transition: border-color 0.2s;
  }
  .form-file:hover { border-color: var(--accent); }
  .form-file input[type="file"] { font-size: 12px; width: 100%; }
  .form-file-hint { font-size: 11px; color: var(--text-muted); margin-top: 6px; }
  .form-submit {
    margin-top: 6px; width: 100%; border: none; font-family: inherit;
  }
  .form-consent { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-top: 4px; }
  .form-consent a { color: var(--accent); text-decoration: underline; }
  .form-status {
    display: none; margin-top: 16px; padding: 14px 16px;
    font-size: 13px; line-height: 1.5; border-left: 2px solid var(--accent);
    background: var(--accent-light); color: var(--text);
  }
  .form-status.show { display: block; }
  .form-status.error { border-left-color: #b3564a; background: rgba(179,86,74,0.12); }
  .divider-or { display: flex; align-items: center; gap: 14px; margin: 32px 0 8px; }
  .divider-or::before, .divider-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .divider-or span { font-size: 10px; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 36px 24px 28px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
  .footer-logo img { width: 26px; height: 26px; }
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 500; letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .footer-sub { font-size: 10px; letter-spacing: 0.18em; color: var(--text-muted); text-transform: uppercase; margin-left: 36px; }
  .footer-links {
    display: flex; flex-wrap: wrap; gap: 18px;
    margin: 24px 0; padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .footer-links a { font-size: 12px; color: var(--text-muted); letter-spacing: 0.10em; text-transform: uppercase; }
  .footer-bottom {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center;
    padding-top: 20px;
  }
  .footer-copy { font-size: 11px; color: var(--text-muted); }
  .footer-accent { font-size: 11px; color: var(--accent); font-style: italic; }

  /* ── SCROLL FADE IN ── */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; }
    .ticker-inner { animation: none; }
  }

  /* ── PAGE HEADER (non-home pages) ── */
  .page-header { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 8px; }
  .page-header .section-eyebrow { margin-bottom: 14px; }

  /* ── DESKTOP NAV ── */
  .nav-right-group { display: flex; align-items: center; gap: 32px; }
  .nav-links-desktop { display: none; align-items: center; gap: 30px; }
  .nav-link {
    font-size: 13px; letter-spacing: 0.03em; color: var(--text);
    padding: 6px 0; transition: color 0.2s;
  }
  .nav-link:hover, .nav-link.active { color: var(--accent); }
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle {
    display: flex; align-items: center; gap: 5px; cursor: pointer;
    background: none; border: none; font: inherit; color: var(--text);
    font-size: 13px; letter-spacing: 0.03em; padding: 6px 0;
  }
  .nav-dropdown-toggle:hover { color: var(--accent); }
  .nav-dropdown-caret { font-size: 9px; transition: transform 0.2s; position: relative; top: -1px; }
  .nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    padding-top: 14px; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav-dropdown-menu-inner {
    background: var(--surface); border: 1px solid var(--border);
    min-width: 250px; padding: 10px;
    box-shadow: 0 16px 32px rgba(20,20,18,0.10);
  }
  .nav-dropdown-menu a {
    display: block; padding: 10px 12px; font-size: 13px; color: var(--text);
  }
  .nav-dropdown-menu a:hover { background: var(--bg2); color: var(--accent); }
  .nav-dropdown-menu .nav-dropdown-divider { height: 1px; background: var(--border); margin: 8px 4px; }
  .nav-dropdown-menu .nav-dropdown-all { font-weight: 600; letter-spacing: 0.03em; }

  /* ── CONTAINER / DESKTOP LAYOUT ── */
  .container { max-width: 1100px; margin: 0 auto; width: 100%; }
  .container--narrow { max-width: 720px; }

  @media (min-width: 860px) {
    nav { padding: 0 40px; }
    .hamburger, .menu-overlay { display: none !important; }
    .nav-links-desktop { display: flex; }

    section { padding: 110px 40px; }
    .page-header { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 10px; }
    .divider { margin: 0 40px; }

    .section-body { max-width: 640px; }
    .section-heading { max-width: 720px; }

    #hero { padding: 0 40px; }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .hero-text { max-width: 480px; }
    .hero-body { max-width: 100%; }
    .hero-headline { font-size: clamp(48px, 5.5vw, 76px); }
    .hero-image-wrap { margin: 0; }
    .hero-arch { width: 100%; max-height: 600px; }

    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 900px; }
    .services-list { max-width: 780px; }
    .about-values { max-width: 780px; }
    .about-stat-row { max-width: 500px; }

    .area-map-card { max-width: 640px; }

    .contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
    .quote-form-wrap { margin-top: 0; }
    .contact-side { display: flex; flex-direction: column; gap: 24px; }
    .contact-card { margin-top: 0; }
    .divider-or { display: none; }

    .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
    .footer-links { margin: 0; padding: 0; border: none; flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-bottom { border-top: 1px solid var(--border); margin-top: 32px; padding-top: 20px; }

    .service-pills { display: grid !important; grid-template-columns: repeat(5, 1fr); }
  }

  @media (min-width: 1300px) {
    .team-grid, .work-grid { gap: 28px; }
  }

  /* ── HOME: SERVICE TEASER PILLS ── */
  .service-pills {
    display: flex; flex-direction: column; gap: 14px; margin-top: 36px;
  }
  .service-pill {
    display: block; border: 1px solid var(--border); padding: 20px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .service-pill:hover { border-color: var(--accent); transform: translateY(-2px); }
  .service-pill-name {
    font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text); margin-bottom: 6px;
  }
  .service-pill-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .service-pill-arrow { color: var(--accent); font-size: 13px; margin-top: 10px; display: inline-block; }
  .view-all-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
    font-size: 13px; letter-spacing: 0.05em; color: var(--text); font-weight: 500;
    border-bottom: 1.5px solid var(--accent); padding-bottom: 3px;
  }
  .view-all-link:hover { color: var(--accent); }

  /* ── HOME: MINI ABOUT TEASER ── */
  .about-teaser-photos {
    display: flex; gap: 10px; margin-top: 28px; max-width: 420px;
  }
  .about-teaser-photos .team-photo { width: 76px; height: 76px; border-width: 2px; margin-right: -14px; }
  .about-teaser-photos .team-photo:last-child { margin-right: 0; }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--text); color: var(--bg); text-align: left;
  }
  [data-theme="dark"] .cta-band { background: var(--surface); }
  .cta-band .section-eyebrow { color: var(--accent-gold); }
  .cta-band .section-heading { color: var(--bg); }
  .cta-band .section-body { color: rgba(252,251,248,0.72); }
  .cta-band-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
  .cta-band .btn-primary { background: var(--bg); color: var(--text); border-color: var(--bg); }
  .cta-band .btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .cta-band .btn-ghost { color: var(--bg); border-color: rgba(252,251,248,0.35); }
  .cta-band .btn-ghost:hover { border-color: var(--bg); color: var(--bg); }

  /* ── FOOTER WORDMARK ── */
  .footer-wordmark { max-width: 260px; width: 100%; margin-bottom: 10px; }
  .footer-brand-block { max-width: 320px; }

  /* ── PROSE (Terms page) ── */
  .prose { max-width: 720px; }
  .prose .updated { font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; }
  .prose h2 {
    font-family: 'Playfair Display', serif; font-weight: 500; font-size: 19px;
    margin: 36px 0 12px; color: var(--text);
  }
  .prose p, .prose li { font-size: 14.5px; line-height: 1.75; color: var(--text-muted); }
  .prose p + p { margin-top: 12px; }
  .prose ul, .prose ol { margin: 10px 0 10px 20px; }
  .prose li { margin-bottom: 6px; }
  .prose strong { color: var(--text); font-weight: 600; }
  .prose a { color: var(--accent); text-decoration: underline; }
  .prose .callout {
    margin-top: 40px; padding: 18px 20px; background: var(--accent-light);
    border-left: 2px solid var(--accent); font-size: 13px; line-height: 1.6; color: var(--text);
  }
