/* ============================================================
   TANAGER — Concept A Redesign: Hospitality IT, Editorial
   Palette: Deep Navy / Warm Ivory / Tanager Red / Muted Gold
   Built on the Concept A design language, with a larger header,
   bigger logo, a dedicated "Why Tanager" band, and About Us
   copy from the brand brief.
   ============================================================ */

:root {
  --navy:        #0B1B2B;
  --navy-2:      #102A40;
  --ivory:       #F5EFE6;
  --ivory-2:     #EBE3D5;
  --red:         #C8102E;
  --red-deep:    #A30D26;
  --gold:        #B89968;
  --ink:         #1B2733;
  --muted:       #5A6573;
  --line:        rgba(11,27,43,0.10);
  --line-dark:   rgba(245,239,230,0.14);
  --serif:       'Fraunces', 'Times New Roman', serif;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --maxw:        1240px;
  --pad:         clamp(1.25rem, 4vw, 2.5rem);
  /* Header sizing — single fixed size (no shrink-on-scroll) */
  --nav-h:       120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold); }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 1.2rem;
  color: var(--navy);
}
h2 em { font-style: italic; color: var(--gold); }
h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
  color: var(--navy);
}
p { margin: 0 0 1rem; }

.section-header { max-width: 760px; margin-bottom: 3rem; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.section-header__lead--light { color: rgba(245,239,230,0.78); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.btn--primary {
  background: var(--red);
  color: var(--ivory);
}
.btn--primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245,239,230,0.35);
}
.btn--ghost:hover { background: rgba(245,239,230,0.08); border-color: var(--ivory); }
.btn--link {
  background: transparent;
  color: var(--ivory);
  padding: 0.85rem 0.4rem;
}
.btn--link span { transition: transform 200ms ease; display: inline-block; }
.btn--link:hover span { transform: translateX(4px); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1rem; }

/* ============ NAV (LARGER HEADER) ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  /* Always show the deep-navy background (per team feedback) so the header
     never "disappears" into the page behind it. */
  background: rgba(11,27,43,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.nav.is-scrolled {
  background: rgba(11,27,43,0.99);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--ivory);
}

.brand { display: inline-flex; align-items: center; }
/* Bigger logo per feedback — single fixed size (header no longer resizes on scroll).
   max-width:none overrides the global `img { max-width:100% }` rule, which was
   constraining the logo's width and squishing its aspect ratio. */
.brand__logo { height: 84px; width: auto; max-width: none; display: block; }
/* The logo is designed for a white/light background. To keep its real colors
   (red wing + dark wordmark) intact while the rest of the nav/footer is dark,
   we wrap the image in a small white "chip" that gives it the background it
   expects. This preserves brand integrity without requiring a separate white
   logo asset. */
.brand__logo--light {
  background: var(--ivory);
  padding: 10px 18px;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.foot__logo { height: 75px; margin-bottom: 1rem; }
.nav__links {
  display: flex;
  gap: 2.4rem;
  font-size: 1.06rem;
  margin-left: auto;
}
.nav__links a {
  color: var(--ivory);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 160ms ease;
  position: relative;
  padding: 0.3rem 0;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { font-size: 0.9rem; padding: 0.75rem 1.2rem; white-space: nowrap; flex-shrink: 0; }

/* Active state for current page in nav */
.nav__links a.is-active { opacity: 1; color: var(--gold); }
.nav__links a.is-active::after { transform: scaleX(1); }

/* ---- Social icons in header ---- */
.nav__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  border: 1px solid rgba(245,239,230,0.22);
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 160ms ease, border-color 160ms ease, background 160ms ease;
}
.nav__social a:hover {
  opacity: 1;
  border-color: var(--gold);
  background: rgba(184,153,104,0.12);
}
.nav__social svg { width: 14px; height: 14px; fill: currentColor; display: block; }
@media (max-width: 980px) { .nav__social { display: none; } }


/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(245,239,230,0.35);
  border-radius: 6px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px; width: 22px;
  margin: 0 auto;
  background: var(--ivory);
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem var(--pad) 1.6rem;
  background: rgba(11,27,43,0.98);
  border-bottom: 1px solid var(--line-dark);
}
.nav__mobile a {
  color: var(--ivory);
  text-decoration: none;
  padding: 0.7rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--line-dark);
}
.nav__mobile a:last-child { border-bottom: 0; margin-top: 0.6rem; justify-content: center; }
.nav__mobile.is-open { display: flex; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--ivory);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4rem) var(--pad) 4rem;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,27,43,0.35) 0%, rgba(11,27,43,0.55) 55%, rgba(11,27,43,0.92) 100%),
    linear-gradient(90deg, rgba(11,27,43,0.55) 0%, rgba(11,27,43,0.0) 50%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(245,239,230,0.4);
  border-radius: 999px;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 800ms 200ms ease forwards;
}
.hero__badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,153,104,0.18);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  max-width: 16ch;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms 380ms ease forwards;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(245,239,230,0.85);
  margin: 0 0 2.2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms 560ms ease forwards;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms 740ms ease forwards;
}
.hero__scroll {
  position: absolute;
  right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: rgba(245,239,230,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2.6s 1.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ============ STATS ============ */
.stats {
  background: var(--navy);
  color: var(--ivory);
  padding: 3.2rem var(--pad);
  border-bottom: 1px solid var(--line-dark);
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; } }
.stat { border-left: 1px solid var(--line-dark); padding-left: 1.4rem; }
.stat:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 880px) {
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat { padding-left: 1rem; }
}
.stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}
.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(245,239,230,0.72);
  max-width: 22ch;
}

/* ============ INTRO ============ */
.intro {
  background: var(--ivory);
  padding: 7rem var(--pad);
}
.intro__inner { max-width: 940px; margin: 0 auto; text-align: center; }
.intro__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.intro__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--navy);
}
.intro__title em { font-style: italic; color: var(--gold); }
.intro__body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============ SERVICES ============ */
.services {
  background: var(--ivory-2);
  padding: 7rem var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services__inner { max-width: var(--maxw); margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }
.service {
  background: var(--ivory);
  padding: 2.4rem 2rem;
  transition: background 200ms ease, transform 200ms ease;
}
.service:hover { background: #FAF5EC; }
.service__icon {
  width: 44px; height: 44px;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.service__icon svg { width: 100%; height: 100%; }
.service p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
/* "And more…" card — visually distinct, invites a conversation */
.service--more { background: var(--navy); }
.service--more:hover { background: var(--navy-2); }
.service--more .service__icon { color: var(--gold); }
.service--more h3 { color: var(--ivory); }
.service--more p { color: rgba(245,239,230,0.74); margin-bottom: 1.1rem; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.service__link span { transition: transform 200ms ease; display: inline-block; }
.service__link:hover span { transform: translateX(4px); }


/* ============ WHY TANAGER ============ */
.why {
  background: var(--navy-2);
  color: var(--ivory);
  padding: 7rem var(--pad);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -180px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(184,153,104,0.16), transparent 70%);
  pointer-events: none;
}
.why__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.why h2 { color: var(--ivory); }
.why h2 em { color: var(--gold); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }
.why__card {
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.6rem;
  background: rgba(255,255,255,0.02);
  transition: background 200ms ease, transform 200ms ease;
}
.why__card:hover { background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.why__stat {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}
.why__card h3 { color: var(--ivory); font-size: 1.1rem; margin-bottom: 0.6rem; }
.why__card p {
  color: rgba(245,239,230,0.74);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ============ STORY / ABOUT ============ */
.story {
  background: var(--ivory);
  padding: 7rem var(--pad);
}
.story__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .story__inner { grid-template-columns: 1fr; } }
.story__media {
  position: relative;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
@media (max-width: 880px) { .story__media { position: relative; top: 0; } }
.story__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.92);
}
.story__media::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
.story__copy h2 { margin-bottom: 1.5rem; }
.story__copy p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.02rem; }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.pillar {
  display: grid;
  grid-template-columns: 56px 160px 1fr;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (max-width: 600px) {
  .pillar { grid-template-columns: 56px 1fr; }
  .pillar p { grid-column: 2; }
}
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.pillar__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
}
.pillar p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============ INDUSTRIES ============ */
.industries {
  background: var(--navy);
  color: var(--ivory);
  padding: 7rem var(--pad);
}
.industries__inner { max-width: var(--maxw); margin: 0 auto; }
.industries .eyebrow { color: var(--gold); }
.industries h2 { color: var(--ivory); }
.industries h2 em { color: var(--gold); }

.industries__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  height: clamp(380px, 50vw, 520px);
}
@media (max-width: 880px) { .industries__grid { grid-template-columns: 1fr; height: auto; } }
.industry {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  min-height: 260px;
}
.industry img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
  transition: transform 700ms ease, filter 400ms ease;
}
.industry:hover img { transform: scale(1.04); filter: brightness(0.65) saturate(1); }
.industry__overlay {
  position: relative;
  z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industry__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: auto;
}
.industry h3 {
  color: var(--ivory);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.4rem;
}
.industry p {
  color: rgba(245,239,230,0.78);
  margin: 0;
  font-size: 0.95rem;
  max-width: 32ch;
}

/* ============ QUOTES ============ */
.quotes {
  background: var(--ivory-2);
  padding: 6rem var(--pad);
  border-bottom: 1px solid var(--line);
}
.quotes__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 880px) { .quotes__inner { grid-template-columns: 1fr; gap: 2.4rem; } }
.quote { position: relative; padding-left: 3rem; }
.quote__mark {
  position: absolute;
  left: 0; top: -1.2rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
/* Closing quote mark — sits inline right after the text, baseline-aligned.
   font-size matches the opening .quote__mark (5rem) so both ends are equal. */
.quote__mark--end {
  position: static;
  display: inline-block;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.7em;
  margin-left: 0.05em;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 1rem;
  font-weight: 400;
}
.quote footer {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============ CTA ============ */
.cta {
  background: var(--navy);
  color: var(--ivory);
  padding: 7rem var(--pad);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,153,104,0.18), transparent 70%);
  pointer-events: none;
}
.cta__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.cta h2 { color: var(--ivory); max-width: 22ch; }
.cta h2 em { color: var(--gold); }
.cta p {
  color: rgba(245,239,230,0.78);
  max-width: 52ch;
  font-size: 1.05rem;
  margin: 0 0 2.4rem;
}
.cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.cta__contact {
  font-size: 0.92rem;
  color: rgba(245,239,230,0.7);
  line-height: 1.6;
  border-left: 1px solid var(--line-dark);
  padding-left: 1.4rem;
}

/* ============ FOOTER ============ */
.foot {
  background: #07131F;
  color: rgba(245,239,230,0.7);
  padding: 4rem var(--pad) 1.4rem;
  border-top: 1px solid var(--line-dark);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 3rem;
}
@media (max-width: 880px) { .foot__inner { grid-template-columns: 1fr; } }
.foot__brand p { font-size: 0.85rem; margin: 0; max-width: 36ch; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.foot__cols h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 1rem;
  font-weight: 600;
}
.foot__cols a {
  display: block;
  color: rgba(245,239,230,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.32rem 0;
  transition: color 160ms ease;
}
.foot__cols a:hover { color: var(--gold); }
.foot__legal {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
  color: rgba(245,239,230,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============ MOBILE REFINEMENTS ============ */
@media (max-width: 700px) {
  body { font-size: 16px; }
  .intro, .services, .why, .story, .industries, .cta { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .quotes { padding-top: 4rem; padding-bottom: 4rem; }
  .hero__scroll { display: none; }
  .cta__contact { border-left: 0; padding-left: 0; }
  .cta__row { gap: 1.4rem; }
  .foot__legal { flex-direction: column; }
}

/* ============================================================
   INNER PAGE COMPONENTS (About / Commercial / Government /
   Careers / Benefits) — built on the same palette + type.
   ============================================================ */

/* ---- Page hero (shorter than the homepage full-bleed hero) ---- */
.page-hero {
  position: relative;
  min-height: 64vh;
  color: var(--ivory);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 16s ease-out forwards;
}
.page-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,27,43,0.45) 0%, rgba(11,27,43,0.6) 55%, rgba(11,27,43,0.94) 100%),
    linear-gradient(90deg, rgba(11,27,43,0.55) 0%, rgba(11,27,43,0.0) 55%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(184,153,104,0.4);
  background: rgba(184,153,104,0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  max-width: 18ch;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  max-width: 60ch;
  font-size: 1.05rem;
  color: rgba(245,239,230,0.85);
  margin: 0 0 2rem;
  line-height: 1.65;
}
.page-hero__cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ---- Generic section wrappers ---- */
.section { padding: 7rem var(--pad); }
.section--ivory { background: var(--ivory); }
.section--ivory2 { background: var(--ivory-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--navy { background: var(--navy); color: var(--ivory); }
.section--navy2 { background: var(--navy-2); color: var(--ivory); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section--navy h2, .section--navy2 h2 { color: var(--ivory); }
.section--navy .eyebrow, .section--navy2 .eyebrow { color: var(--gold); }
.section--navy .section-header__lead, .section--navy2 .section-header__lead { color: rgba(245,239,230,0.78); }
@media (max-width: 700px) { .section { padding-top: 4.5rem; padding-bottom: 4.5rem; } }

/* ---- Split layout (text + image) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse { direction: ltr; } }
.split__media { overflow: hidden; position: relative; }
.split__media img { width: 100%; height: clamp(320px, 40vw, 460px); object-fit: cover; }
.split__media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 55%; height: 55%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
.split__copy p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.02rem; }
.section--navy .split__copy p, .section--navy2 .split__copy p { color: rgba(245,239,230,0.75); }

/* ---- Values / feature cards (3-up) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--ivory);
  padding: 2.6rem 2rem;
  text-align: center;
  transition: background 200ms ease;
}
.feature-card:hover { background: #FAF5EC; }
.feature-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(184,153,104,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
/* navy variant */
.feature-grid--navy { background: var(--line-dark); border-color: var(--line-dark); }
.feature-grid--navy .feature-card { background: var(--navy-2); }
.feature-grid--navy .feature-card:hover { background: rgba(255,255,255,0.04); }
.feature-grid--navy .feature-card h3 { color: var(--ivory); }
.feature-grid--navy .feature-card p { color: rgba(245,239,230,0.7); }

/* ---- Timeline ---- */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 880px) { .timeline-track { grid-template-columns: 1fr; } }
.timeline-item { position: relative; }
.timeline-item__dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.timeline-item__dot svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.timeline-item__year {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
}
.timeline-item__label { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ---- Service list cards (icon + bulleted list) ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--ivory); padding: 2.4rem 1.8rem; transition: background 200ms ease; }
.svc-card:hover { background: #FAF5EC; }
.svc-card__icon { width: 40px; height: 40px; color: var(--red); margin-bottom: 1.3rem; }
.svc-card__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.svc-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.svc-card li { font-size: 0.9rem; color: var(--muted); line-height: 1.5; padding-left: 1rem; position: relative; }
.svc-card li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 1px; background: var(--gold); }

/* ---- Capability cards (icon + description + tag chips) ---- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.cap-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,27,43,0.08); }
.cap-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.cap-card__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(200,16,46,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.cap-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.cap-card h3 { margin: 0; font-size: 1.35rem; }
.cap-card > p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; margin: 0 0 1.4rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.chip {
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: rgba(11,27,43,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.cap-card:hover .chip { background: rgba(184,153,104,0.10); border-color: rgba(184,153,104,0.4); }
/* navy variant for the government page */
.cap-card--navy {
  background: var(--navy-2);
  border-color: var(--line-dark);
  border-top-color: var(--gold);
}
.cap-card--navy h3 { color: var(--ivory); }
.cap-card--navy > p { color: rgba(245,239,230,0.72); }
.cap-card--navy .cap-card__icon { background: rgba(184,153,104,0.14); color: var(--gold); }
.cap-card--navy .chip { color: var(--ivory); background: rgba(255,255,255,0.05); border-color: var(--line-dark); }
.cap-card--navy:hover .chip { background: rgba(184,153,104,0.18); border-color: rgba(184,153,104,0.45); }

/* ---- Expertise grid (icon + single title) ---- */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card { background: var(--ivory); padding: 1.8rem; display: flex; gap: 1rem; align-items: center; transition: background 200ms ease; }
.exp-card:hover { background: #FAF5EC; }
.exp-card__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(200,16,46,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.exp-card__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.exp-card h3 { font-size: 1.02rem; margin: 0; }

/* ---- Logo grid (vendors / agencies) ---- */
.logo-grid {
  display: grid;
  gap: 1px;
}
.logo-grid--6 { grid-template-columns: repeat(6, 1fr); }
.logo-grid--4 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .logo-grid--6 { grid-template-columns: repeat(3, 1fr); } .logo-grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-grid--6, .logo-grid--4 { grid-template-columns: repeat(2, 1fr); } }
.logo-cell {
  background: var(--ivory);
  padding: 1.8rem 1.4rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 96px;
  transition: background 200ms ease;
}
.logo-cell:hover { background: #FAF5EC; }
.logo-cell img { max-height: 48px; max-width: 110px; object-fit: contain; filter: grayscale(1) opacity(0.6); transition: filter 300ms ease; }
.logo-cell:hover img { filter: grayscale(0) opacity(1); }
.logo-cell--text { font-family: var(--serif); font-style: italic; color: var(--navy); font-size: 1.1rem; }

/* Partner logo grid — bigger, full-color, centered (flex-wrap so an odd
   final row stays centered rather than left-aligned in a rigid grid) */
.logo-grid--partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
}
.logo-grid--partners .logo-cell {
  flex: 0 1 230px;
  min-height: 150px;
  padding: 2rem;
}
.logo-grid--partners .logo-cell img {
  max-height: 80px;
  max-width: 170px;
  filter: none;
  opacity: 1;
}
@media (max-width: 560px) {
  .logo-grid--partners .logo-cell { flex-basis: 45%; min-height: 120px; }
}

/* Vendor logo grid — fixed 3-column layout (3 across, wraps to new rows).
   Easy to adjust: change `repeat(3, 1fr)` to repeat(N, 1fr) for a different
   number of columns. Cells are big, full-color, and centered. */
.logo-grid--vendors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}
.logo-grid--vendors .logo-cell {
  min-height: 150px;
  padding: 2rem;
}
.logo-grid--vendors .logo-cell img {
  max-height: 80px;
  max-width: 170px;
  filter: none;
  opacity: 1;
}
@media (max-width: 700px) {
  .logo-grid--vendors { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .logo-grid--vendors { grid-template-columns: 1fr; }
}


/* ---- Logo marquee (continuously scrolling agency carousel) ---- */
.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 1px;
  width: max-content;
  animation: logo-scroll 45s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee .logo-cell {
  flex: 0 0 auto;
  width: 240px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1px;
}
/* Marquee logos: larger and always full-color (no grayscale) */
.logo-marquee .logo-cell img {
  max-height: 90px;
  max-width: 170px;
  filter: none;
}
.logo-marquee .logo-cell:hover img { filter: none; }
.logo-marquee__note {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
  opacity: 0.7;
  font-size: 1.05rem;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 560px) {
  .logo-marquee .logo-cell { width: 150px; min-height: 100px; }
}


/* ---- Photo break band ---- */
.photo-break {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem var(--pad);
}
.photo-break__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.photo-break__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,27,43,0.72), rgba(11,27,43,0.9)); }
.photo-break__content { position: relative; z-index: 1; max-width: 680px; }
.photo-break__content h2 { color: var(--ivory); margin-bottom: 1rem; }
.photo-break__content h2 em { color: var(--gold); }
.photo-break__content p { color: rgba(245,239,230,0.78); margin: 0; font-size: 1.12rem; line-height: 1.65; }

/* ---- CTA banner (thin) ---- */
.cta-banner {
  background: var(--ivory-2);
  padding: 3.4rem var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.cta-banner h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin: 0; }
.cta-banner h3 em { font-style: italic; color: var(--gold); }
.cta-banner--navy { background: var(--navy); border-color: var(--line-dark); }
.cta-banner--navy h3 { color: var(--ivory); }

/* ---- Benefits: highlights bar ---- */
.highlights {
  background: var(--navy);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-dark);
}
.highlights__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .highlights__inner { grid-template-columns: 1fr; } }
.highlight {
  display: flex; align-items: center; gap: 1rem;
  padding: 2rem var(--pad);
  border-left: 1px solid var(--line-dark);
}
.highlight:first-child { border-left: 0; }
@media (max-width: 880px) { .highlight { border-left: 0; border-top: 1px solid var(--line-dark); } .highlight:first-child { border-top: 0; } }
.highlight__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(184,153,104,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.highlight__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.highlight strong { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--ivory); display: block; }
.highlight span { font-size: 0.85rem; color: rgba(245,239,230,0.6); }

/* ---- Benefits: insurance / detail cards ---- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-card { background: var(--ivory); padding: 2rem 1.6rem; text-align: center; transition: background 200ms ease; }
.detail-card:hover { background: #FAF5EC; }
.detail-card__icon { width: 46px; height: 46px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(200,16,46,0.07); display: flex; align-items: center; justify-content: center; color: var(--red); }
.detail-card__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.detail-card h4 { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--navy); margin: 0 0 0.3rem; }
.detail-card .detail-card__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.detail-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 0.6rem 0 0; }

/* ---- Benefits: simple dot list cards ---- */
.dot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
@media (max-width: 880px) { .dot-grid { grid-template-columns: 1fr; } }
.dot-card { background: var(--navy-2); padding: 2rem 1.8rem; display: flex; gap: 1rem; align-items: flex-start; transition: background 200ms ease; }
.dot-card:hover { background: rgba(255,255,255,0.04); }
.dot-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.5rem; }
.dot-card h4 { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--ivory); margin: 0 0 0.3rem; }
.dot-card p { font-size: 0.88rem; color: rgba(245,239,230,0.7); line-height: 1.55; margin: 0; }

/* ---- "To" cards (time off) ---- */
.tocard-list { display: flex; flex-direction: column; gap: 1rem; }
.tocard {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.4rem 1.6rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: border-color 200ms ease;
}
.tocard:hover { border-color: var(--gold); }
.tocard__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px; background: rgba(184,153,104,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.tocard__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tocard h4 { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--navy); margin: 0 0 0.25rem; }
.tocard p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ---- Embedded recruiter portal (iframe) ---- */
.portal {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 50px rgba(11,27,43,0.08);
  overflow: hidden;
}
.portal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.4rem;
  background: var(--navy);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-dark);
}
.portal__bar-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ivory);
}
.portal__bar-title svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.portal__bar-link {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.portal__bar-link span { display: inline-block; transition: transform 200ms ease; }
.portal__bar-link:hover span { transform: translateX(4px); }
.portal__frame-wrap {
  position: relative;
  width: 100%;
  background: var(--ivory);
}
.portal__frame {
  display: block;
  width: 96%;
  height: 720px;
  border: 0;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .portal__frame { height: 900px; }
}

/* ---- Inset card (careers portal CTA / transparency) ---- */
.inset-card { background: var(--navy); color: var(--ivory); border-radius: 4px; padding: 2.6rem 2.2rem; }
.inset-card h3 { color: var(--ivory); margin-bottom: 0.8rem; }
.inset-card p { color: rgba(245,239,230,0.7); font-size: 0.95rem; margin-bottom: 1.4rem; }

.note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.note h3 { color: var(--navy); margin-bottom: 0.6rem; }
.note p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }
.note a { color: var(--red); font-weight: 500; text-decoration: none; }
.note a:hover { text-decoration: underline; }

/* ---- Contact footer (address / hours / contact) ---- */
.contact-footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 6rem var(--pad);
  position: relative;
  overflow: hidden;
}
.contact-footer__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.1; }
.contact-footer__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; text-align: center; }
.contact-footer__inner h2 { color: var(--ivory); margin-bottom: 2.5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-col {
  padding: 2.2rem 1.8rem;
  text-align: left;
  border-right: 1px solid var(--line-dark);
}
.contact-col:last-child { border-right: 0; }
@media (max-width: 760px) { .contact-col { border-right: 0; border-bottom: 1px solid var(--line-dark); } .contact-col:last-child { border-bottom: 0; } }
.contact-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 0.8rem; }
.contact-col p { font-size: 0.95rem; color: rgba(245,239,230,0.7); line-height: 1.65; margin: 0; }
.contact-col a { color: rgba(245,239,230,0.85); text-decoration: none; }
.contact-col a:hover { color: var(--gold); }

/* ============ FLOATING CALL WIDGET ============ */
.callfab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.callfab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.callfab__main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--red);
  color: var(--ivory);
  text-decoration: none;
  padding: 0.85rem 1.3rem 0.85rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(11,27,43,0.32);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.callfab__main:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11,27,43,0.4);
}
.callfab__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.callfab__icon svg { width: 22px; height: 22px; }
.callfab__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: callfab-ring 2.4s ease-out infinite;
}
@keyframes callfab-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.callfab__text { display: flex; flex-direction: column; line-height: 1.15; }
.callfab__label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}
.callfab__num { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em; }
@media (max-width: 480px) {
  .callfab__text { display: none; }
  .callfab__main { padding: 0.7rem; }
  .callfab__icon { width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .callfab__icon::after { animation: none; }
}

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }



@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
