/* ============================================================
   Tipton & Company — Site Stylesheet
   Navy + gold editorial design system. Shared across all pages.
   ============================================================ */

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

:root {
  --navy:       #1B2B4B;
  --navy-mid:   #243864;
  --navy-deep:  #0F1A2E;
  --gold:       #B8965A;
  --gold-light: #CFA96C;
  --cream:      #F7F4EF;
  --sand:       #EDE9E2;
  --text:       #22222E;
  --grey:       #6C6E7A;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img { max-width: 100%; }

/* ─────────────── SCROLL REVEAL ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.16,.84,.36,1),
              transform 0.9s cubic-bezier(.16,.84,.36,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16,.84,.36,1),
              transform 0.8s cubic-bezier(.16,.84,.36,1);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 90ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 180ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 260ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 340ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 420ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 580ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 660ms; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ─────────────── TOPBAR ─────────────── */
.topbar { background: var(--navy); padding: 7px 0; }
.topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: flex-end; gap: 32px;
}
.topbar a {
  font-size: 0.76rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.topbar a:hover { color: var(--gold-light); }
.topbar svg { flex-shrink: 0; }

/* ─────────────── HEADER ─────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid #E5E0D8;
  position: sticky; top: 0; z-index: 200;
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  height: 76px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.logo-link { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark { height: 44px; width: 44px; flex-shrink: 0; }
.logo-mark svg { height: 100%; width: 100%; display: block; }
.logo-mark svg path { fill: var(--navy); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text-name {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.42rem; font-weight: 700; color: var(--navy); letter-spacing: -0.005em;
}
.logo-text-tag {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-top: 7px;
}

/* NAV */
nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: static; }
.nav-trigger {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); padding: 8px 16px;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.nav-trigger:hover { color: var(--gold); }
.nav-trigger svg { transition: transform 0.2s; }
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }
.nav-plain {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  padding: 8px 16px; transition: color 0.2s;
}
.nav-plain:hover { color: var(--gold); }
.nav-plain.active, .nav-trigger.active { color: var(--gold); }
.nav-cta {
  margin-left: 12px;
  background: var(--navy); color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 24px; border-radius: 2px;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); }

/* MEGA PANEL */
.mega-panel {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid #E5E0D8;
  box-shadow: 0 24px 60px rgba(27,43,75,0.12);
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 150;
}
.nav-item.open .mega-panel {
  visibility: visible; opacity: 1; pointer-events: all; transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}
.mega-inner {
  max-width: 1240px; margin: 0 auto; padding: 48px 40px;
  display: grid; grid-template-columns: 340px 1fr; gap: 80px;
}
.mega-left { border-right: 1px solid var(--sand); padding-right: 80px; }
.mega-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.mega-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 600; line-height: 1.3;
  color: var(--navy); margin-bottom: 16px;
}
.mega-sub { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }
.mega-links { display: flex; flex-direction: column; gap: 0; }
.mega-link {
  display: block; padding: 22px 0;
  border-bottom: 1px solid var(--sand);
  text-decoration: none; transition: padding-left 0.2s;
}
.mega-link:first-child { border-top: 1px solid var(--sand); }
.mega-link:hover { padding-left: 8px; }
.mega-link-name {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  display: block; margin-bottom: 4px; transition: color 0.2s;
}
.mega-link:hover .mega-link-name { color: var(--gold); }
.mega-link-desc { font-size: 0.83rem; color: var(--grey); line-height: 1.5; }

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: var(--navy);
}
.nav-toggle svg { width: 100%; height: 100%; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 84vw);
    background: var(--white);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 88px 28px 40px;
    box-shadow: -20px 0 60px rgba(27,43,75,0.18);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.16,.84,.36,1);
    overflow-y: auto; z-index: 300;
  }
  body.nav-open nav { transform: translateX(0); }
  /* Lift the header (which contains the nav drawer) above the backdrop so the
     menu links stay clickable instead of being covered by the dim overlay. */
  body.nav-open #site-header { z-index: 400; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(15,26,46,0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 250;
  }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: all; }
  .nav-close {
    position: absolute; top: 22px; right: 22px;
    background: none; border: none; cursor: pointer; color: var(--navy);
    width: 32px; height: 32px;
  }
  .nav-trigger, .nav-plain {
    width: 100%; padding: 16px 0; font-size: 0.95rem;
    border-bottom: 1px solid var(--sand); justify-content: space-between;
  }
  .nav-cta { margin: 20px 0 0; text-align: center; padding: 15px 24px; }
  .mega-panel {
    position: static; opacity: 1; visibility: visible; pointer-events: all;
    transform: none; box-shadow: none; border-top: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-item.open .mega-panel { max-height: 1200px; }
  .mega-inner { grid-template-columns: 1fr; gap: 0; padding: 0 0 8px; }
  .mega-left { display: none; }
  .mega-link { padding: 14px 0 14px 12px; }
  .mega-link:first-child { border-top: none; }
}
.nav-close { display: none; }
@media (max-width: 940px) { .nav-close { display: block; } }

/* ─────────────── HERO (home) ─────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; }
.hero-skyline {
  position: absolute; inset: -8% 0 -8% 0;
  background-image: url('img/houston-skyline.jpg');
  background-size: cover; background-position: center 60%;
  opacity: 0.55; filter: saturate(0.85) contrast(1.05);
  transform: scale(1.05);
  animation: hero-kenburns 28s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0; will-change: transform;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.05) translate3d(-1%, 0, 0); }
  100% { transform: scale(1.14) translate3d(2%, -2%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(27,43,75,0.65) 0%, rgba(27,43,75,0.45) 35%, rgba(15,26,46,0.78) 100%),
    linear-gradient(100deg, rgba(27,43,75,0.85) 0%, rgba(27,43,75,0.55) 45%, rgba(27,43,75,0.20) 100%);
  z-index: 0; pointer-events: none;
}
.hero-overlay::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
  background: radial-gradient(circle at 80% 30%, rgba(184,150,90,0.16) 0%, rgba(184,150,90,0) 60%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .hero-skyline { animation: none; transform: scale(1.05); } }
.hero-bg-mark {
  position: absolute; top: 50%; right: -8%;
  width: 760px; height: 760px; transform: translateY(-50%);
  opacity: 0.10; pointer-events: none; z-index: 0;
}
.hero-bg-mark svg { width: 100%; height: 100%; display: block; }
.hero-bg-mark svg path { fill: var(--gold); }
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 130px 40px 140px;
  position: relative; z-index: 1; width: 100%;
}
.hero-content { max-width: 760px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700; line-height: 1.08; color: var(--white); margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-rule { width: 72px; height: 2px; background: var(--gold); margin-bottom: 32px; }
.hero-sub {
  font-size: 1.12rem; font-weight: 300; color: rgba(255,255,255,0.8);
  max-width: 620px; line-height: 1.8; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ─────────────── PAGE BANNER (interior pages) ─────────────── */
.page-banner {
  background: var(--navy); position: relative; overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.30; filter: saturate(0.85); pointer-events: none; z-index: 0;
}
.page-banner-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(105deg, rgba(27,43,75,0.92) 0%, rgba(27,43,75,0.7) 55%, rgba(27,43,75,0.45) 100%);
}
.page-banner-mark {
  position: absolute; top: 50%; right: -6%; width: 480px; height: 480px;
  transform: translateY(-50%); opacity: 0.08; z-index: 0; pointer-events: none;
}
.page-banner-mark svg { width: 100%; height: 100%; }
.page-banner-mark svg path { fill: var(--gold); }
.page-banner-inner {
  max-width: 1240px; margin: 0 auto; padding: 96px 40px 86px;
  position: relative; z-index: 1;
}
.breadcrumb {
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-banner-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.page-banner-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.12; color: var(--white);
  max-width: 800px; margin-bottom: 22px;
}
.page-banner h1 em { font-style: italic; color: var(--gold-light); }
.page-banner-sub {
  font-size: 1.08rem; font-weight: 300; color: rgba(255,255,255,0.78);
  max-width: 640px; line-height: 1.75;
}

/* ─────────────── BUTTONS ─────────────── */
.btn-gold {
  background: var(--gold); color: var(--white);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-gold-outline {
  border: 1.5px solid var(--gold); color: var(--gold);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }
.btn-navy {
  background: var(--navy); color: var(--white);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block; border: none; cursor: pointer;
}
.btn-navy:hover { background: var(--gold); transform: translateY(-2px); }

/* ─────────────── STATEMENT BAND ─────────────── */
.statement-section {
  background: var(--cream); padding: 80px 0;
  border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
}
.statement-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: start;
}
.statement-aside { padding-top: 8px; }
.statement-aside-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px;
}
.statement-aside-line { width: 32px; height: 2px; background: var(--gold); }
.statement-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.55;
}
.statement-text strong { font-style: normal; font-weight: 700; }

/* ─────────────── SHARED SECTION STYLES ─────────────── */
section { padding: 100px 0; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section-narrow { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 20px;
}
.section-lead { font-size: 1.05rem; color: var(--grey); max-width: 620px; line-height: 1.75; }

/* Prose blocks for content pages */
.prose p { font-size: 1rem; color: #444; line-height: 1.9; margin-bottom: 20px; }
.prose h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin: 40px 0 16px;
}
.prose strong { color: var(--navy); }

/* ─────────────── SERVICES (home) ─────────────── */
.services-section { background: var(--white); position: relative; overflow: hidden; }
.services-section::before {
  content: ''; position: absolute; top: -120px; right: -180px;
  width: 540px; height: 540px; background: var(--cream);
  transform: rotate(18deg); z-index: 0; pointer-events: none;
}
.services-section .section-inner { position: relative; z-index: 1; }
.services-header {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 96px;
  align-items: center; margin-bottom: 88px;
}
.services-header-text .eyebrow { margin-bottom: 18px; }
.services-header-text h2.section-title { margin-bottom: 24px; }
.services-header-text .services-lead {
  font-size: 1.02rem; color: var(--grey); line-height: 1.85; max-width: 480px; margin-bottom: 28px;
}
.services-header-stat {
  display: inline-flex; align-items: baseline; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--sand);
}
.services-header-stat .stat-figure {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.services-header-stat .stat-text { font-size: 0.86rem; color: var(--grey); line-height: 1.4; max-width: 200px; }
.services-visual { position: relative; width: 100%; aspect-ratio: 4/3; padding: 40px 40px 40px 0; }
.services-visual-mark { position: absolute; top: -8%; right: -12%; width: 78%; height: 110%; z-index: 0; pointer-events: none; }
.services-visual-mark svg { width: 100%; height: 100%; display: block; }
.services-visual-mark svg path { fill: var(--gold); opacity: 0.14; }
.services-visual::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 38%; height: 38%; background: var(--gold); opacity: 0.95; z-index: 1;
}
.services-visual-photo {
  position: relative; width: 100%; height: 100%; overflow: hidden; z-index: 2;
  box-shadow: 0 24px 48px rgba(27,43,75,0.18); transform: translate(-32px, 32px);
}
.services-visual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.services-visual-photo:hover img { transform: scale(1.04); }
.services-visual-card {
  position: absolute; left: -24px; bottom: -32px; z-index: 3;
  background: var(--white); padding: 22px 28px;
  box-shadow: 0 18px 40px rgba(27,43,75,0.16); border-left: 3px solid var(--gold); max-width: 240px;
}
.services-visual-card .card-eyebrow {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.services-visual-card .card-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); line-height: 1.35; }
@media (max-width: 880px) {
  .services-header { grid-template-columns: 1fr; gap: 64px; }
  .services-visual { max-width: 460px; margin: 0 auto; }
}
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand); }
.service-card { background: var(--white); padding: 52px 44px; position: relative; overflow: hidden; transition: background 0.25s; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold); transition: width 0.35s ease;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700;
  color: var(--sand); line-height: 1; margin-bottom: 24px; display: block;
}
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600;
  color: var(--navy); line-height: 1.3; margin-bottom: 16px;
}
.service-card > p { font-size: 0.92rem; color: var(--grey); line-height: 1.75; margin-bottom: 28px; }
.service-items { list-style: none; margin-bottom: 36px; }
.service-items li {
  font-size: 0.84rem; color: #555; padding: 8px 0;
  border-bottom: 1px solid var(--sand); display: flex; align-items: center; gap: 10px;
}
.service-items li::before { content: ''; flex-shrink: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.service-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.service-link:hover { color: var(--gold); gap: 14px; }
@media (max-width: 880px) { .services-cards { grid-template-columns: 1fr; } }

/* ─────────────── SERVICE DETAIL (interior) ─────────────── */
.svc-detail { background: var(--white); }
.svc-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.svc-detail-main .eyebrow { margin-bottom: 16px; }
.svc-feature-list { list-style: none; margin: 32px 0; }
.svc-feature-list li {
  position: relative; padding: 18px 0 18px 40px; border-bottom: 1px solid var(--sand);
  font-size: 0.98rem; color: #444; line-height: 1.6;
}
.svc-feature-list li strong { color: var(--navy); display: block; margin-bottom: 2px; }
.svc-feature-list li::before {
  content: ''; position: absolute; left: 0; top: 22px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--gold);
}
.svc-feature-list li::after {
  content: ''; position: absolute; left: 6px; top: 28px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.svc-aside {
  position: sticky; top: 100px;
  background: var(--cream); border: 1px solid var(--sand);
  border-top: 3px solid var(--gold); padding: 40px 36px;
}
.svc-aside h4 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 8px;
}
.svc-aside p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 24px; }
.svc-aside-contact { border-top: 1px solid var(--sand); padding-top: 22px; margin-top: 8px; }
.svc-aside-contact .label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.svc-aside-contact a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.svc-aside-contact a:hover { color: var(--gold); }
@media (max-width: 880px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-aside { position: static; }
}

/* Process steps */
.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.process-step { position: relative; padding-top: 28px; border-top: 2px solid var(--sand); }
.process-step .step-num {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ─────────────── ABOUT ─────────────── */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 460px 1fr; gap: 96px; align-items: center; }
.about-content h2 { margin-bottom: 8px; }
.about-name-sub { font-size: 0.9rem; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; margin-bottom: 28px; }
.about-content p { font-size: 0.98rem; color: #444; line-height: 1.85; margin-bottom: 18px; }
.about-quote-wrap { margin: 28px 0; border-left: 3px solid var(--gold); padding: 4px 0 4px 28px; }
.about-quote { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.6; }
.about-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cred-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; color: var(--navy);
  background: var(--white); border: 1px solid #D8D3CB; padding: 8px 14px;
}
.about-photo-col { position: relative; width: 100%; aspect-ratio: 4/5; }
.about-photo-img { position: relative; z-index: 2; width: 100%; height: 100%; display: block; object-fit: cover; }
.about-photo-placeholder {
  position: relative; z-index: 2; width: 100%; height: 100%;
  background: linear-gradient(150deg, #C8BFB2 0%, #8E8579 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: rgba(255,255,255,0.85); text-align: center; padding: 20px;
}
.about-photo-placeholder svg { width: 58px; height: 58px; opacity: 0.45; }
.about-photo-placeholder .placeholder-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: rgba(255,255,255,0.95); }
.about-photo-placeholder .placeholder-hint {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); max-width: 240px; line-height: 1.6;
}
.about-photo-frame { position: absolute; top: 24px; left: -24px; bottom: -24px; right: 24px; border: 2px solid var(--gold); z-index: 1; pointer-events: none; }
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-photo-col { max-width: 380px; margin: 0 auto; }
}

/* ─────────────── FULL STATEMENT ─────────────── */
.full-statement { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
.full-statement::before {
  content: '"'; position: absolute; top: -40px; left: 40px;
  font-family: 'Playfair Display', serif; font-size: 24rem; line-height: 1;
  color: rgba(184,150,90,0.06); pointer-events: none;
}
.full-statement-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1;
  display: grid; grid-template-columns: 160px 1fr; gap: 56px; align-items: start;
}
.full-statement-aside { padding-top: 14px; }
.full-statement-aside-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.full-statement-aside-line { width: 36px; height: 2px; background: var(--gold); }
.full-statement-text {
  font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400; color: rgba(255,255,255,0.92); line-height: 1.5; max-width: 820px;
}
.full-statement-text em { font-style: italic; color: var(--gold-light); }
.full-statement-cta { margin-top: 40px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.full-statement-contact { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.full-statement-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.full-statement-contact a:hover { color: var(--gold-light); }
@media (max-width: 760px) { .full-statement-inner { grid-template-columns: 1fr; gap: 24px; } }

/* ─────────────── WHY US ─────────────── */
.why-section { background: var(--white); }
.why-header { max-width: 640px; margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.why-card { border: 1px solid var(--sand); border-radius: 2px; padding: 44px 36px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.why-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(27,43,75,0.07); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.why-icon svg { color: var(--gold); width: 22px; height: 22px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.why-card p { font-size: 0.92rem; color: var(--grey); line-height: 1.8; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ─────────────── STATS ─────────────── */
.stats-band { background: var(--gold); padding: 56px 0; }
.stats-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-block { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.25); }
.stat-block:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.8); margin-top: 10px; letter-spacing: 0.04em; }
@media (max-width: 720px) { .stats-inner { grid-template-columns: 1fr 1fr; gap: 36px 0; } .stat-block:nth-child(2) { border-right: none; } }

/* ─────────────── WHO WE SERVE ─────────────── */
.serve-section { background: var(--cream); }
.serve-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.serve-header .eyebrow { justify-content: center; }
.serve-header .eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.serve-header .section-lead { margin: 16px auto 0; }
.serve-subhead { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 28px; text-align: center; }
.serve-subhead::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); margin: 14px auto 0; }
.org-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
.org-type { background: var(--white); border: 1px solid var(--sand); padding: 24px 22px; display: flex; align-items: center; gap: 16px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.org-type:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(27,43,75,0.06); }
.org-type-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.org-type-icon svg { width: 20px; height: 20px; }
.org-type-label { font-size: 0.94rem; font-weight: 500; color: var(--navy); line-height: 1.3; }
.org-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.org-box { background: var(--white); border: 1px solid #DDD8CF; padding: 20px 16px; text-align: center; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.org-box:hover { border-color: var(--gold); transform: translateY(-2px); }
.org-code { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.org-name { font-size: 0.74rem; color: var(--grey); line-height: 1.4; }
@media (max-width: 980px) { .org-types-grid { grid-template-columns: repeat(2, 1fr); } .org-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .org-types-grid { grid-template-columns: 1fr; } .org-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────── MISSION BAND ─────────────── */
.mission-band { position: relative; min-height: 480px; background-image: url('img/volunteer.jpg'); background-size: cover; background-position: center 40%; overflow: hidden; will-change: background-position; }
.mission-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(27,43,75,0.85) 0%, rgba(27,43,75,0.55) 45%, rgba(27,43,75,0.15) 100%); }
.mission-band-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 110px 40px; }
.mission-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 14px; }
.mission-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.mission-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 400; color: var(--white); line-height: 1.35; max-width: 760px; }
.mission-quote em { font-style: italic; color: var(--gold-light); }
.mission-attribution { margin-top: 28px; font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }

/* ─────────────── CREDENTIALS ─────────────── */
.creds-section { background: var(--white); }
.creds-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.creds-header .eyebrow { justify-content: center; }
.creds-header .eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.creds-header p { font-size: 0.98rem; color: var(--grey); line-height: 1.8; margin: 16px auto 0; }
.peer-badge { display: inline-flex; align-items: center; gap: 16px; background: var(--cream); border: 1px solid var(--gold); padding: 18px 28px; margin: 0 auto 56px; }
.peer-badge-wrap { text-align: center; }
.peer-badge svg { color: var(--gold); flex-shrink: 0; }
.peer-badge-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); display: block; text-align: left; }
.peer-badge-value { font-size: 0.92rem; font-weight: 600; color: var(--navy); display: block; margin-top: 2px; text-align: left; }
.memb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto; }
.memb-card { background: var(--cream); border: 1px solid var(--sand); padding: 24px 22px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.memb-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.memb-card-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--gold); }
.memb-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.memb-desc { font-size: 0.76rem; color: var(--grey); line-height: 1.55; }
@media (max-width: 920px) { .memb-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────── CTA ─────────────── */
.cta-section { position: relative; background: var(--navy) url('img/handshake.jpg') center/cover no-repeat; background-blend-mode: multiply; padding: 130px 0; text-align: center; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(27,43,75,0.78) 0%, rgba(27,43,75,0.92) 70%, rgba(15,26,46,0.96) 100%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 40px; }
.cta-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.cta-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.cta-headline em { font-style: normal; color: var(--gold-light); }
.cta-sub { font-size: 1.02rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 48px; }
.cta-btn { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 18px 44px; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.cta-btn:hover { background: var(--gold-light); }
.cta-divider { width: 48px; height: 1px; background: rgba(255,255,255,0.2); margin: 48px auto; }
.cta-contacts { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-contact-item a { color: rgba(255,255,255,0.65); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.cta-contact-item a:hover { color: var(--gold-light); }
.cta-contact-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }

/* ─────────────── CONTACT ─────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info > p { font-size: 1rem; color: var(--grey); line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.contact-detail { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--sand); }
.contact-detail:first-of-type { border-top: 1px solid var(--sand); }
.contact-detail-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail .label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.contact-detail .value, .contact-detail a { font-size: 1rem; color: var(--navy); text-decoration: none; font-weight: 500; line-height: 1.5; }
.contact-detail a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--cream); border: 1px solid var(--sand); border-top: 3px solid var(--gold); padding: 44px 40px; }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--grey); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid #D8D3CB; background: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text); border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--grey); margin-top: 8px; }
.map-band { height: 420px; width: 100%; filter: grayscale(0.2) contrast(1.05); border: none; display: block; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } .form-row { grid-template-columns: 1fr; gap: 0; } }

/* ─────────────── FOOTER ─────────────── */
footer { background: #0F1A2E; padding: 72px 0 32px; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-svg { height: 32px; width: auto; opacity: 0.75; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.65; margin-top: 16px; }
.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 8px; }
.footer-address { margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.25); line-height: 1.6; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* responsive paddings */
@media (max-width: 980px) {
  .hero-inner { padding: 96px 32px 108px; }
  .hero-bg-mark { width: 460px; height: 460px; right: -22%; top: 50%; }
  section { padding: 72px 0; }
  .topbar-inner, .header-inner, .section-inner, .statement-inner, .footer-inner,
  .page-banner-inner, .mission-band-inner, .full-statement-inner { padding-left: 24px; padding-right: 24px; }
  .statement-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────── Editable page content (the_content) ─────────────── */
.tipton-page-content > p, .prose > p { font-size: 1rem; color: #444; line-height: 1.9; margin-bottom: 20px; }
.tipton-page-content > h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,2.4vw,2rem); font-weight: 700; color: var(--navy); margin: 8px 0 16px; }
.tipton-page-content > h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 40px 0 16px; }
.tipton-page-content > ul { list-style: none; margin: 0 0 24px; padding: 0; }
.tipton-page-content > ul > li { position: relative; padding: 8px 0 8px 22px; color: #444; line-height: 1.7; }
.tipton-page-content > ul > li::before { content: ''; position: absolute; left: 0; top: 16px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.tipton-page-content strong { color: var(--navy); }
.tipton-page-content a { color: var(--gold); }
.about-content.tipton-page-content > p { font-size: 0.98rem; color: #444; line-height: 1.85; }
