/*
Theme Name: BMT Heritage
Theme URI: https://bmtllc.com
Author: Broadcast Management & Technology LLC
Description: Bespoke theme for Broadcast Management & Technology LLC. Old-school authority, private-bank aesthetic — deep navy, serif display typography, engraved detailing.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: bmt-heritage
*/

/* =========================================================
   1. Custom properties & base
   ========================================================= */
:root {
  --navy-950: #041a2e;
  --navy-900: #071f36;
  --navy-800: #092c4b;
  --navy-700: #0c3a63;
  --navy-600: #0f4c82;
  --navy-100: #dce6f0;
  --ivory: #f6f4ef;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #1d2d3e;
  --ink-soft: #46586c;
  --copper: #c05a1b;
  --copper-bright: #dd6420;
  --hairline: rgba(9, 44, 75, 0.16);
  --hairline-light: rgba(255, 255, 255, 0.18);
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --container-wide: 1360px;
}

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

html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-600); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--copper); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.4em; }

::selection { background: var(--navy-600); color: #fff; }

/* Layout helpers */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container--wide { max-width: var(--container-wide); }

/* Small-caps eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.75); }

/* Section heading */
.section-title {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
}
.section-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--navy-800);
  color: var(--navy-800);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.btn::after {
  content: "\2192";
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.35s var(--ease);
}
.btn:hover::after { transform: translateX(5px); }
.btn--solid { background: var(--navy-800); color: #fff; }
.btn--solid:hover { background: var(--navy-600); border-color: var(--navy-600); color: #fff; }
.btn--ghost:hover { background: var(--navy-800); color: #fff; }
.btn--light { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--navy-800); }
.btn--copper { background: var(--copper); border-color: var(--copper); color: #fff; }
.btn--copper:hover { background: var(--copper-bright); border-color: var(--copper-bright); color: #fff; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   2. Announcement bar
   ========================================================= */
.announce {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 20px;
}
.announce a { color: #fff; border-bottom: 1px solid var(--copper-bright); padding-bottom: 1px; }
.announce a:hover { color: var(--copper-bright); }
.announce .announce-label { color: var(--copper-bright); font-weight: 600; margin-right: 10px; }

/* =========================================================
   3. Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(4, 26, 46, 0.35); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 86px;
}
.site-logo img { width: auto; height: 46px; }
.site-logo { display: block; line-height: 0; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.site-nav a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--copper-bright);
  transition: right 0.35s var(--ease);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { right: 0; }
.site-nav .nav-phone {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 11px 20px;
  color: #fff;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.site-nav .nav-phone::after { display: none; }
.site-nav .nav-phone:hover { background: #fff; border-color: #fff; color: var(--navy-800); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-open .site-header { z-index: 140; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 120;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 26px; text-transform: none; letter-spacing: 0.02em; }
  .site-nav .nav-phone { font-family: var(--sans); font-size: 14px; letter-spacing: 0.14em; }
  .nav-open body { overflow: hidden; }
}

/* =========================================================
   4. Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 54, 0.55) 0%, rgba(7, 31, 54, 0.25) 45%, rgba(7, 31, 54, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 31, 54, 0.72) 0%, rgba(7, 31, 54, 0.25) 60%, rgba(7, 31, 54, 0.1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(110px, 16vh, 190px);
  padding-bottom: clamp(90px, 13vh, 150px);
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 30px;
}
.hero h1 em {
  font-style: italic;
  color: #f0c9a8;
}
.hero-rotator {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  min-height: 22px;
  margin-bottom: 44px;
}
.hero-rotator::before { content: ""; width: 44px; height: 1px; background: var(--copper-bright); }
.hero-rotator .rotator-word { display: inline-block; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.hero-rotator .rotator-word.is-out { opacity: 0; transform: translateY(10px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.hero-phone {
  font-family: var(--serif);
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.04em;
}
.hero-phone span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-phone:hover { color: #f0c9a8; }

/* Hero bottom strip — the four pillars */
.hero-pillars {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline-light);
  background: rgba(4, 26, 46, 0.72);
}
.hero-pillars-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.pillar {
  padding: 28px 28px 28px 0;
  border-left: 1px solid var(--hairline-light);
  padding-left: 28px;
}
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar .pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--copper-bright);
  display: block;
  margin-bottom: 6px;
}
.pillar .pillar-label {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  color: #fff;
  letter-spacing: 0.01em;
}
@media (max-width: 860px) {
  .hero-pillars-inner { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(3) { border-left: 0; padding-left: 0; }
  .pillar { padding-top: 20px; padding-bottom: 20px; }
}
@media (max-width: 480px) {
  .hero-pillars-inner { grid-template-columns: 1fr; }
  .pillar { border-left: 0; padding-left: 0; border-top: 1px solid var(--hairline-light); }
  .pillar:first-child { border-top: 0; }
}

/* =========================================================
   5. Sections — shared
   ========================================================= */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy-800); color: rgba(255, 255, 255, 0.88); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head--center { text-align: center; }
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

/* Decorative arc motif (echo of logo) */
.arc-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
}

/* =========================================================
   6. About — three principles
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.principle { border-top: 1px solid var(--hairline); padding-top: 30px; }
.principle .principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--copper);
  display: block;
  margin-bottom: 16px;
}
.principle h3 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 14px; }
.principle p { color: var(--ink-soft); margin: 0; font-size: 16px; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* About intro split */
.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 100px);
}
.about-intro-media { position: relative; }
.about-intro-media img { width: 100%; box-shadow: 0 30px 70px rgba(9, 44, 75, 0.28); }
.about-intro-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--hairline);
  z-index: -1;
}
.about-stat {
  position: absolute;
  left: -20px;
  bottom: -28px;
  background: var(--navy-800);
  color: #fff;
  padding: 22px 30px;
  box-shadow: 0 20px 50px rgba(9, 44, 75, 0.35);
}
.about-stat .stat-num { font-family: var(--serif); font-size: 34px; line-height: 1; display: block; }
.about-stat .stat-label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-media { order: -1; max-width: 560px; }
}

/* =========================================================
   7. Services
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(48px, 6vw, 96px);
}
.service {
  border-top: 1px solid var(--hairline);
  padding: 38px 0 42px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--copper);
  padding-top: 4px;
}
.service h3 { font-size: clamp(20px, 2vw, 25px); margin-bottom: 12px; }
.service p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.8; margin: 0; }
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   8. Who we work with
   ========================================================= */
.audience-list { border-top: 1px solid var(--hairline); }
.audience {
  display: grid;
  grid-template-columns: 90px 320px 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
}
.audience-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--copper);
  padding-top: 4px;
}
.audience h3 { font-size: clamp(20px, 2vw, 26px); margin: 0; }
.audience p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
@media (max-width: 900px) {
  .audience { grid-template-columns: 60px 1fr; }
  .audience p { grid-column: 2; }
}

/* =========================================================
   9. Clients — wall of names
   ========================================================= */
.clients-band { position: relative; overflow: hidden; }
.clients-band .arc-motif { right: -140px; top: -140px; width: 560px; }
.clients-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  line-height: 1.5;
}
.clients-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline-light);
  border-left: 1px solid var(--hairline-light);
  margin-top: clamp(40px, 5vw, 64px);
}
.client-name {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.client-name:hover { background: rgba(255, 255, 255, 0.05); }
.clients-note {
  margin-top: 34px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 900px) { .clients-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .clients-wall { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   10. Team
   ========================================================= */
.team-profile {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.team-profile + .team-profile { margin-top: clamp(72px, 9vw, 130px); }
.team-media { position: relative; }
.team-media img { width: 100%; filter: saturate(0.88); box-shadow: 0 30px 70px rgba(9, 44, 75, 0.25); }
.team-media::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--hairline);
  z-index: -1;
}
.team-media--logo {
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vw, 70px);
  box-shadow: none;
}
.team-media--logo img { box-shadow: none; max-width: 300px; filter: none; }
.team-body h3 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 6px; }
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 26px;
}
.team-body p { color: var(--ink-soft); font-size: 16px; }
.team-honors { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.honor {
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--copper);
  padding: 22px 24px;
  background: #fff;
}
.honor .honor-title { font-family: var(--serif); font-size: 18px; color: var(--navy-800); display: block; margin-bottom: 4px; }
.honor .honor-sub { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 900px) {
  .team-profile { grid-template-columns: 1fr; }
  .team-media { max-width: 460px; }
  .team-honors { grid-template-columns: 1fr; }
}

/* =========================================================
   11. Media
   ========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px);
}
.media-grid--featured { grid-template-columns: 1fr 1fr; }
.media-card {
  background: #fff;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(9, 44, 75, 0.16);
}
.media-card-thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.media-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.media-card:hover .media-card-thumb img { transform: scale(1.045); }
.media-kicker {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy-800);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.media-card-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.media-card-body h3 { font-size: 21px; line-height: 1.3; margin-bottom: 8px; }
.media-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.media-card-body p { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.media-cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.media-cta::after { content: "\2192"; transition: transform 0.3s var(--ease); }
.media-card:hover .media-cta { color: var(--copper); }
.media-card:hover .media-cta::after { transform: translateX(5px); }
.media-card audio { width: 100%; margin-bottom: 22px; }
@media (max-width: 1000px) { .media-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .media-grid, .media-grid--featured { grid-template-columns: 1fr; } }
.media-more { text-align: center; margin-top: clamp(44px, 6vw, 70px); }

/* =========================================================
   12. CTA band
   ========================================================= */
.cta-band {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-bg, .cta-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(7, 31, 54, 0.55); }
.cta-inner { position: relative; z-index: 2; padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(90px, 12vw, 160px); }
.cta-inner h2 {
  color: #fff;
  font-size: clamp(32px, 4.6vw, 56px);
  max-width: 18ch;
  margin: 0 auto 18px;
}
.cta-inner p { color: rgba(255, 255, 255, 0.75); max-width: 520px; margin: 0 auto 40px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center; }

/* =========================================================
   13. Footer
   ========================================================= */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 24px; }
.footer-brand p { max-width: 380px; line-height: 1.8; margin: 0; }
.footer-col h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); }
.footer-col a:hover { color: #fff; }
.footer-phone { font-family: var(--serif); font-size: 22px; color: #fff; letter-spacing: 0.03em; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
.footer-legal { display: flex; gap: 26px; }
.footer-legal a { color: rgba(255, 255, 255, 0.45); }
.footer-legal a:hover { color: #fff; }
@media (max-width: 860px) { .footer-main { grid-template-columns: 1fr; } }

/* =========================================================
   14. Interior pages (Media / Contact / Legal)
   ========================================================= */
.page-hero {
  background: var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 2; padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(70px, 9vw, 120px); }
.page-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 62px); margin: 0; }
.page-hero .arc-motif { right: -160px; bottom: -220px; width: 620px; opacity: 0.08; }
.page-hero .page-hero-lede { color: rgba(255,255,255,0.72); max-width: 640px; margin: 20px 0 0; font-size: clamp(16px, 1.6vw, 19px); }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.contact-aside h2 { font-size: clamp(26px, 3vw, 36px); }
.contact-aside p { color: var(--ink-soft); }
.contact-direct { border-top: 1px solid var(--hairline); margin-top: 36px; padding-top: 30px; }
.contact-direct .contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper); display: block; margin-bottom: 8px; }
.contact-direct .contact-value { font-family: var(--serif); font-size: 26px; color: var(--navy-800); }
.contact-expect { margin-top: 40px; }
.contact-expect li { margin-bottom: 14px; color: var(--ink-soft); }
.contact-expect { padding-left: 20px; }
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--navy-800);
  padding: clamp(30px, 4vw, 54px);
  box-shadow: 0 30px 70px rgba(9, 44, 75, 0.08);
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

/* Gravity Forms restyle */
.gform_wrapper { font-family: var(--sans); }
.gform_wrapper .gform_title { font-family: var(--serif); font-size: 28px; color: var(--navy-800); }
.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100%;
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 14px 16px !important;
  font-family: var(--sans);
  font-size: 15px !important;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(15, 76, 130, 0.12);
}
.gform_wrapper .gfield { margin-bottom: 8px; }
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_button {
  background: var(--navy-800);
  color: #fff;
  border: 1px solid var(--navy-800);
  padding: 17px 40px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.gform_wrapper .gform_footer input[type="submit"]:hover { background: var(--navy-600); }
.gform_wrapper .gfield_radio label,
.gform_wrapper .gfield_checkbox label {
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400 !important;
  color: var(--ink);
}
.gform_wrapper .gfield_required { color: var(--copper); }

/* Legal / default page */
.entry-plain { max-width: 800px; margin: 0 auto; padding: clamp(60px, 8vw, 100px) 0; }
.entry-plain h1 { font-size: clamp(32px, 4vw, 46px); }
.entry-plain h2 { font-size: 26px; margin-top: 1.6em; }

/* =========================================================
   15. Utilities
   ========================================================= */
/* Hide wpautoterms plugin's injected footer (theme footer already links legal pages) */
.wpautoterms-footer { display: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--navy-800);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px;
}
