/* Make A Call Today — site.css v2026.05.08j
   Design philosophy: Quiet Confidence.
   One typeface. Tight rhythm. Asymmetric. Cinematic.
*/

:root {
  --green: #0A6B47;
  --green-dark: #064F33;
  --green-soft: #4D8B6E;
  --green-tint: #E8F1EC;
  --navy: #0B1C36;
  --navy-mid: #14294D;
  --navy-soft: #56627A;
  --paper: #FAFAF6;
  --paper-2: #F2EFE8;
  --silver: #DEE0E2;
  --silver-soft: #EFF0EC;
  --gold: #B8860B;
  --gold-soft: #D4B05A;
  --red: var(--green);
  --red-dark: var(--green-dark);
  --ink: var(--navy);
  --ink-soft: var(--navy-soft);
  --max-width: 1180px;
  --max-prose: 640px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(11,28,54,0.06);
  --shadow-md: 0 4px 16px -4px rgba(11,28,54,0.10);
  --shadow-lg: 0 22px 48px -18px rgba(11,28,54,0.20);
  --shadow-xl: 0 32px 80px -24px rgba(11,28,54,0.30);
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: var(--sans);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'tnum' 1, 'cv11' 1;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.2s var(--ease-out); }
a:hover { color: var(--green-dark); }
a:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
ul, ol { padding-left: 1.2em; }
li + li { margin-top: 0.4em; }
::selection { background: var(--green); color: var(--paper); }

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h1 { font-size: clamp(38px, 5vw, 68px); letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
strong { font-weight: 600; color: var(--navy); }
em { font-style: normal; }

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--navy-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-soft);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }
.eyebrow--paper { color: rgba(250,250,246,0.55); }
.eyebrow--paper::before { background: var(--gold-soft); }

blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--green);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(48px, 6vw, 80px) 0; position: relative; }
.section--tight { padding: clamp(32px, 4vw, 56px) 0; }
.section--ink { background: var(--navy); color: var(--paper); position: relative; }
.section--ink::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,90,0.4), transparent);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p, .section--ink li { color: rgba(250,250,246,0.78); }
.section--ink strong { color: var(--paper); }
.section--ink a { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--paper-2); }
.section--green-tint { background: var(--green-tint); }
.section--gradient {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(10,107,71,0.07), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(184,134,11,0.05), transparent 60%),
    var(--paper);
}
.prose { max-width: var(--max-prose); }
.prose p, .prose ul, .prose ol { font-size: 17px; line-height: 1.65; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,246,0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(11,28,54,0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad); max-width: var(--max-width); margin: 0 auto; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__icon {
  width: 32px; height: 32px; object-fit: cover;
  border-radius: 5px; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(11,28,54,0.18);
}
.brand__text {
  font-size: 16px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1; white-space: nowrap;
}
.brand__text em { font-style: normal; color: var(--navy); font-weight: 600; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 200px; height: auto; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: var(--navy); font-weight: 500; font-size: 14px;
  position: relative; padding: 4px 0;
}
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--green);
  transition: width 0.25s var(--ease-out);
}
.nav a:not(.nav__cta):hover { color: var(--green); text-decoration: none; }
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--navy); color: var(--paper) !important;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.nav__cta:hover { background: var(--green); transform: translateY(-1px); }
@media (max-width: 760px) {
  .nav { gap: 14px; }
  .nav a:not(.nav__cta) { display: none; }
  .brand__icon { width: 28px; height: 28px; }
  .brand__text { font-size: 14px; }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--paper); box-shadow: 0 4px 14px -4px rgba(11,28,54,0.4); }
.btn-primary:hover { background: var(--green); box-shadow: 0 8px 22px -6px rgba(10,107,71,0.5); }
.btn-secondary { background: transparent; color: var(--navy); border-color: rgba(11,28,54,0.18); }
.btn-secondary:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); padding: 13px 0; }
.btn-ghost::after { content: " →"; opacity: 0.55; transition: transform 0.2s var(--ease-out); }
.btn-ghost:hover { color: var(--green); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero {
  padding: clamp(48px, 6vw, 88px) 0 clamp(32px, 4vw, 64px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 100% at 90% 10%, rgba(10,107,71,0.06), transparent 60%),
    radial-gradient(50% 70% at 10% 100%, rgba(184,134,11,0.05), transparent 60%),
    var(--paper);
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero__h1 {
  font-size: clamp(38px, 5vw, 68px); letter-spacing: -0.04em;
  line-height: 1.02; font-weight: 700; margin-bottom: 24px;
}
.hero__h1 em { font-style: normal; color: var(--navy); font-weight: 700; }
.hero__sub { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; color: var(--navy-soft); max-width: 520px; }
.hero__photo-wrap { position: relative; justify-self: end; width: 100%; max-width: 460px; }
.hero__photo {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); display: block;
  transition: transform 0.6s var(--ease-out);
}
.hero__photo:hover { transform: translateY(-4px); }
.hero__photo--full { aspect-ratio: 4/5; object-fit: cover; }
.hero__decor { display: none; }
.hero__badge {
  position: absolute; bottom: 24px; left: -28px;
  background: var(--paper); border: 1px solid rgba(11,28,54,0.08);
  box-shadow: var(--shadow-md);
  padding: 14px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; color: var(--navy); z-index: 2;
}
.hero__badge-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(10,107,71,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(10,107,71,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(10,107,71,0.06); }
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo-wrap { max-width: 320px; margin-top: 8px; justify-self: center; }
  .hero__badge { left: 12px; bottom: 12px; }
}

.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  background: var(--paper);
}
.stat {
  text-align: left;
  padding: clamp(28px, 3.5vw, 44px) clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--silver); position: relative;
  transition: background 0.3s var(--ease-out);
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(10,107,71,0.03); }
.stat__num {
  font-size: clamp(28px, 3.6vw, 48px); font-weight: 600;
  letter-spacing: -0.04em; color: var(--navy);
  line-height: 1; margin-bottom: 10px;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.stat__label {
  font-size: 11px; color: var(--navy-soft);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 600; display: inline-block;
}
.stat-bar__caption { margin-top: 24px; color: var(--navy-soft); font-size: 13px; text-align: center; }
@media (max-width: 720px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--silver); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--silver); }
}

.split { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.split--reverse { grid-template-columns: 1.2fr 1fr; }
.split__sticky { position: sticky; top: 96px; }
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 28px; }
  .split__sticky { position: static; }
}

.three-up {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.three-up .card {
  padding: 32px 28px; background: var(--paper);
  border: 1px solid rgba(11,28,54,0.08); border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  position: relative; overflow: hidden;
}
.three-up .card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 32px; height: 2px; background: var(--green);
  transition: width 0.3s var(--ease-out);
}
.three-up .card:hover {
  border-color: rgba(11,28,54,0.16);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.three-up .card:hover::before { width: 64px; }
.card .card__num {
  font-size: 12px; color: var(--green);
  font-weight: 700; letter-spacing: 0.16em;
  margin-bottom: 16px; display: block; text-transform: uppercase;
}
.card h3 { color: var(--navy); margin-bottom: 12px; font-size: 18px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--navy-soft); margin: 0; }
@media (max-width: 880px) {
  .three-up { grid-template-columns: 1fr; gap: 12px; }
}

.numbered {
  counter-reset: stepcount;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 48px; padding: 0; list-style: none;
}
.numbered li {
  counter-increment: stepcount;
  position: relative; padding: 28px 28px 28px 80px;
  background: var(--paper);
  border: 1px solid rgba(11,28,54,0.08);
  border-radius: var(--radius-lg);
  font-size: 15px; line-height: 1.55; color: var(--navy-soft);
  transition: border-color 0.25s var(--ease-out);
}
.numbered li:hover { border-color: rgba(10,107,71,0.25); }
.numbered li::before {
  content: counter(stepcount, decimal-leading-zero);
  position: absolute; left: 28px; top: 28px;
  font-size: 13px; font-weight: 700; color: var(--green);
  letter-spacing: 0.08em;
}
.numbered strong {
  display: block; font-size: 16px; font-weight: 600;
  margin-bottom: 6px; color: var(--navy);
}
@media (max-width: 720px) {
  .numbered { grid-template-columns: 1fr; }
  .numbered li { padding: 24px 24px 24px 72px; }
  .numbered li::before { left: 24px; top: 24px; }
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  background: var(--paper); color: var(--navy);
  padding: 7px 14px;
  border: 1px solid rgba(11,28,54,0.12);
  border-radius: 999px; font-size: 12px; font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}
.chip:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); transform: translateY(-1px); }

.rent {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(212,176,90,0.08), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(10,107,71,0.10), transparent 60%),
    var(--navy);
  color: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}
.rent::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,90,0.4), transparent);
}
.rent__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.rent__quote {
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--paper); margin: 0 0 8px;
}
.rent__quote em { font-style: normal; color: var(--gold-soft); font-weight: 600; }
.rent__poster {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) {
  .rent__grid { grid-template-columns: 1fr; }
  .rent__poster { max-width: 320px; margin: 0 auto; }
}

.signoff {
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 0;
  background:
    radial-gradient(50% 80% at 50% 0%, rgba(10,107,71,0.06), transparent 60%),
    var(--paper);
}
.signoff__line {
  font-size: clamp(32px, 4.4vw, 56px); font-weight: 700;
  letter-spacing: -0.035em; color: var(--navy);
  margin-bottom: 16px; line-height: 1.02;
}
.signoff__line em { font-style: normal; color: var(--green); font-weight: 700; }
.signoff__line span { font-style: normal; color: var(--green); font-weight: 700; }
.signoff__credit {
  color: var(--navy-soft); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-top: 20px;
}

.article {
  max-width: var(--max-prose); margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--pad);
}
.article h2 { margin-top: 1.4em; font-size: clamp(24px, 2.8vw, 32px); }
.article p { font-size: 17px; line-height: 1.7; color: var(--navy); }

.featured-video {
  margin-top: 40px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--navy);
  box-shadow: var(--shadow-xl);
  position: relative; aspect-ratio: 16 / 9;
  border: 1px solid rgba(11,28,54,0.08);
}
.featured-video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- VIDEO GRID — 2 columns desktop, 1 on mobile ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(11,28,54,0.08);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  position: relative;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,28,54,0.16);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(11,28,54,0) 50%, rgba(11,28,54,0.6) 100%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.video-card:hover .video-card__overlay { opacity: 1; }
.video-card__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.video-card__play::after {
  content: "";
  width: 0; height: 0;
  border-left: 12px solid var(--navy);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.video-card__shorts-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--navy);
  color: var(--paper);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.video-card__body {
  padding: 24px 24px 28px;
}
.video-card__title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card__meta { display: none; }
@media (max-width: 540px) {
  .video-grid { grid-template-columns: 1fr; }
}

.pullquote {
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 600;
  line-height: 1.2; letter-spacing: -0.025em;
  color: var(--navy); margin: 48px 0;
  padding: 0; border: 0; font-style: normal;
}
.pullquote em { font-style: normal; color: var(--green); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--navy-soft); }
.green { color: var(--green); }
.italic { font-style: normal; }
.serif { font-family: var(--sans); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
