

/* ══════════════════════════════════════
   HEADER TOKENS
   Add these to your existing :root {}
   ══════════════════════════════════════ */
:root {
  --navy:        #1b2d3e;
  --navy-mid:    #22374a;
  --crimson:     #640505;
  --gold:        #c48416;
  --gold-light:  #dfa535;
  --off-white:   #e8e2d9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Barlow Condensed', 'Arial Narrow', sans-serif;

  --header-top-h: 76px;
  --header-nav-h: 44px;
  --header-z:     5000;
}

/* ══════════════════════════════════════
   WRAPPER
   ══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--header-z);
  background: var(--navy);
  border-bottom: 3px solid var(--crimson);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 3px,
    rgba(255,255,255,.012) 3px, rgba(255,255,255,.012) 4px
  );
}

/* ══════════════════════════════════════
   ROW 1 — IDENTITY
   ══════════════════════════════════════ */
.header-row--top {
  height: var(--header-top-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(196,132,22,.22);
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img {
  display: block;
  width: 52px;
  height: auto;
  filter: brightness(1.15);
  transition: opacity .2s;
}
.header-logo:hover img { opacity: .8; }

/* Title */
.header-title { text-align: center; line-height: 1; user-select: none; }

#company-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  letter-spacing: 0.28em;
  color: #fff;
  white-space: nowrap;
}

.header-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 5px 0 4px;
}
.header-title-rule::before,
.header-title-rule::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.header-title-rule-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: .7;
}

#location-maker-1 {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  letter-spacing: 0.35em;
  color: var(--off-white);
  opacity: .65;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Phone pill */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(196,132,22,.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.header-phone:hover {
  background: rgba(196,132,22,.12);
  border-color: var(--gold);
  color: var(--gold-light);
}
.header-phone:visited { color: var(--gold); }

.phone-icon {
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 14px;
}
.phone-icon i { font-size: 13px; }

/* Hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: transparent;
  align-items: center; justify-content: center;
  color: var(--off-white);
  font-size: 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.nav-toggle:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.35);
}
.nav-toggle[aria-expanded="true"] {
  background: rgba(196,132,22,.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════
   ROW 2 — DESKTOP NAV
   ══════════════════════════════════════ */
.header-row--nav {
  height: var(--header-nav-h);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: stretch;
  height: var(--header-nav-h);
  padding: 0 8px;
  gap: 0;
}

.nav-list > li {
  display: flex;
  align-items: stretch;
}

/* Nav links — navy base, gold on hover, hold till mouseout via JS class */
.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  border-radius: 8px;
  position: relative;

  /* Gradient set up but invisible until hover */
  background: linear-gradient(45deg, var(--navy-mid), var(--gold));
  background-size: 200% 200%;
  background-position: 0% 0%;
  transition: color .15s;
}

/* Vertical separator between items */
.nav-list > li + li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%; height: 50%;
  width: 1px;
  background: rgba(255,255,255,.10);
}

/* JS adds .is-lit when mouse enters; removes on mouseleave */
@keyframes nav-flicker {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

.nav-list a.is-lit {
  animation: nav-flicker .45s ease forwards;
  color: #fff;
}

/* Active page — always gold */
.nav-list a[aria-current="page"] {
  color: var(--gold);
  background-position: 200% 200%;
}

/* ══════════════════════════════════════
   MOBILE SLIDE-DOWN PANEL
   ══════════════════════════════════════ */
.nav-panel {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  z-index: calc(var(--header-z) + 1);
  background: var(--navy);
  border-bottom: 2px solid var(--crimson);
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
}


.nav-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-panel-list { padding: 6px 0 12px; }

.nav-panel-list a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px 24px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  border-left: 3px solid transparent;
  transition: color .18s, border-color .18s, background .18s;
}

.nav-panel-list li + li a {
  border-top: 1px solid rgba(255,255,255,.07);
}

.nav-panel-list a:hover,
.nav-panel-list a:focus-visible {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(196,132,22,.07);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 760px) {
  .header-row--top {
    grid-template-columns: 44px 1fr auto;
    padding: 0 14px;
    gap: 10px;
  }
  .header-logo img { width: 40px; }
  #company-title { font-size: clamp(0.95rem, 5vw, 1.35rem); letter-spacing: 0.18em; }

  /* Phone collapses to icon-only circle */
  .header-phone .phone-text { display: none; }
  .header-phone {
    padding: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    justify-content: center;
  }

  /* Show hamburger */
  .nav-toggle { display: inline-flex; }

  /* Hide desktop nav row */
  .header-row--nav { display: none; }
}

@media (max-width: 400px) {
  #company-title    { font-size: 0.95rem; letter-spacing: 0.12em; }
  #location-maker-1 { letter-spacing: 0.2em; }
  .header-title-rule::before,
  .header-title-rule::after { max-width: 24px; }
}

/* ── SITE TOKENS (copy from your :root block) ── */
    :root {
      --primary-color: #2e5f84;
      --accent-color:  #c48416;
      --accent-2:      #640505;
      --text-color:    #333;
      --bg:            #fff;
      --shadow-1:      0 4px 6px rgba(0,0,0,.1);
      --shadow-2:      0 6px 12px rgba(0,0,0,.15);

      --header-top-h:  72px;
      --header-nav-h:  48px;
      --header-z:      5000;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background: var(--bg);
    }
    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }
    button { font: inherit; }

    /* ── PASTE YOUR FULL SITE CSS HERE (header, nav, footer, etc.) ── */
    /* Everything below this line is About-page-specific and safe to
       remove if those rules already exist in your global sheet.     */

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ABOUT PAGE — supplemental rules only
       (mirrors site conventions; adds nothing foreign)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

    /* Page hero banner — styled like .booking-section bg + .booking-heading */
    .about-hero {
      background-color: var(--primary-color);
      padding: 3rem 1.5rem 2.75rem;
      text-align: center;
      border-bottom: 3px solid var(--accent-2);
    }
    .about-hero .eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-color);
      margin-bottom: 0.75rem;
    }
    .about-hero h1 {
      font-weight: 100;
      letter-spacing: 3px;
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 0.85rem;
    }
    .about-hero p {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,.82);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.65;
      letter-spacing: 0.5px;
    }

    /* Pullquote — sits inside .about-card like site cards */
    .about-pullquote {
      border-left: 4px solid var(--accent-color);
      background: #f7f8fb;
      padding: 1rem 1.25rem;
      margin: 1.25rem 0;
      border-radius: 0 8px 8px 0;
    }
    .about-pullquote p {
      font-size: 1rem;
      font-style: italic;
      color: var(--primary-color);
      margin: 0;
      line-height: 1.6;
    }

    /* Credential badges — pill shape matching .btn-reviews */
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 1.25rem 0 0.5rem;
    }
    .cred-badge {
      display: inline-block;
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
    }

    /* Section divider rule */
    .about-section-rule {
      border: none;
      border-top: 1px solid rgba(0,0,0,.10);
      margin: 0;
    }

    /* Service sub-blocks inside the services card */
    .service-entry {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0,0,0,.07);
    }
    .service-entry:last-child { border-bottom: none; padding-bottom: 0; }
    .service-entry h3 {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 0.4rem;
    }
    .service-entry p { color: #555; font-size: 0.97rem; margin: 0; line-height: 1.65; }

    /* Process list */
    .process-list {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 0;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .process-list li {
      padding-left: 1.5rem;
      position: relative;
      color: #555;
      font-size: 0.97rem;
      line-height: 1.65;
    }
    .process-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-color);
    }
    .process-list li strong { color: var(--text-color); }

    /* Contact CTA band — mirrors .booking-section */
    .about-cta {
      background-color: #f7f8fb;
      border-top: 3px solid var(--accent-2);
      padding: 3rem 1.5rem;
    }
    .about-cta-inner {
      max-width: 740px;
      margin: 0 auto;
    }
    .about-cta h2 {
      color: var(--primary-color);
      font-weight: 200;
      letter-spacing: 2px;
      font-size: clamp(1.45rem, 3vw, 1.9rem);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }
    .about-cta p { color: #384047; font-size: 0.98rem; margin-bottom: 1rem; }
    .about-cta .cta-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-top: 1.25rem;
    }
    .about-cta .license-line {
      margin-top: 1.5rem;
      font-size: 0.78rem;
      color: #888;
      letter-spacing: 0.04em;
    }

    /* Phone / email secondary link — matches #call-link in site CSS */
    .call-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--primary-color);
      text-decoration: underline;
    }
    .call-link:hover, .call-link:focus-visible { color: var(--accent-color); }

    /* Mobile responsive */
    @media (max-width: 760px) {
      .about-hero { padding: 2.25rem 1.1rem 2rem; }
      .about-cta   { padding: 2.25rem 1.1rem; }
      .badge-row   { gap: 0.35rem; }
    }

    /* ── DEMO: site classes replicated for standalone preview ──
       Remove this entire block when pasting your global CSS.   */
    .about          { max-width: 1200px; margin: 28px auto; padding: 0 14px 18px; }
    .about-inner    { display: grid; gap: 18px; }
    .about-card     { background: #fff; border-radius: 12px; box-shadow: var(--shadow-1); padding: 20px; }
    .about-title    {
      color: var(--primary-color);
      margin-bottom: 12px;
      font-weight: 200;
      letter-spacing: 2px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.2;
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }
    .about-text     { color: #555; margin: 0 0 12px; font-size: clamp(0.9rem, 1.5vw, 1.1rem); line-height: 1.65; }
    .about-text:last-of-type { margin-bottom: 0; }

    .internal-link {
      color: var(--primary-color);
      border-bottom: 1px solid rgba(46,95,132,.35);
      padding-bottom: 0.05em;
      font-weight: 500;
    }
    .internal-link:hover, .internal-link:focus-visible {
      color: var(--accent-color);
      border-bottom-color: var(--accent-color);
    }

    @keyframes gradient-bg {
      0%   { background-position: 0% 0%; }
      100% { background-position: 200% 200%; }
    }
    .btn-booking {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 1.9rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 600;
      font-size: 0.98rem;
      text-decoration: none;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(45deg, #2e5f84, #c48416);
      background-size: 200% 200%;
      box-shadow: 0 8px 18px rgba(0,0,0,.12);
      transition: background-position .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    @media (hover:hover) and (pointer:fine) {
      .btn-booking:hover {
        animation: gradient-bg .5s ease;
        border-color: #c48416;
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0,0,0,.16);
      }
    }
    .btn-booking:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(0,0,0,.12); }
    .btn-booking:focus-visible { outline: 2px solid #c48416; outline-offset: 3px; }
    /* ── end demo block ── */