/* Willard Concrete Co. — brand system + motion */
:root {
  --bg: #0c0e11;
  --bg-elevated: #12151a;
  --surface: #181c22;
  --surface-2: #1e232b;
  --border: #2a313c;
  --border-bright: rgba(232, 163, 23, 0.35);
  --text: #eef0f3;
  --text-muted: #949dad;
  --accent: #e8a317;
  --accent-soft: #f0b52e;
  --accent-deep: #9a6b0a;
  --accent-dim: rgba(232, 163, 23, 0.12);
  --accent-glow: rgba(232, 163, 23, 0.45);
  --steel: #6b7c90;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 76px;
  --max: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .grain {
    display: none;
  }
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.02;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2.85rem, 7vw, 4.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: 0.06em;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Reveal on scroll (only when JS runs: html.enhanced) —— */
.enhanced .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

.enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal[data-reveal-delay] {
  --reveal-delay: 0;
}

.reveal[data-reveal-delay="60"] {
  --reveal-delay: 60;
}

.reveal[data-reveal-delay="70"] {
  --reveal-delay: 70;
}

.reveal[data-reveal-delay="80"] {
  --reveal-delay: 80;
}

.reveal[data-reveal-delay="100"] {
  --reveal-delay: 100;
}

.reveal[data-reveal-delay="120"] {
  --reveal-delay: 120;
}

.reveal[data-reveal-delay="140"] {
  --reveal-delay: 140;
}

.reveal[data-reveal-delay="160"] {
  --reveal-delay: 160;
}

.reveal[data-reveal-delay="180"] {
  --reveal-delay: 180;
}

.reveal[data-reveal-delay="210"] {
  --reveal-delay: 210;
}

.reveal[data-reveal-delay="240"] {
  --reveal-delay: 240;
}

.reveal[data-reveal-delay="300"] {
  --reveal-delay: 300;
}

@media (prefers-reduced-motion: reduce) {
  .enhanced .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(12, 14, 17, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(12, 14, 17, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  display: flex;
  flex-shrink: 0;
}

.logo-svg {
  display: block;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.35s;
}

.logo:hover .logo-svg {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(232, 163, 23, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.5);
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: var(--border-bright);
  background: var(--surface-2);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  position: relative;
  padding: 0.55rem 1.2rem !important;
  background: linear-gradient(135deg, var(--accent) 0%, #c99210 100%);
  color: #140f05 !important;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px var(--accent-dim);
  overflow: hidden;
}

.nav-cta::after {
  display: none;
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  opacity: 0;
  transition: opacity 0.35s;
}

.nav-cta:hover {
  color: #140f05 !important;
}

.nav-cta:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(18, 21, 26, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav li:last-child {
    border-bottom: 0;
    margin-top: 0.85rem;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .site-header.nav-open .nav-toggle-bar:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle-bar:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s,
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c99210 100%);
  color: #140f05;
  box-shadow: 0 6px 28px rgba(232, 163, 23, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 163, 23, 0.38);
  color: #140f05;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-spring);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--steel);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }

  .btn-primary:hover .btn-arrow {
    transform: none;
  }

  .logo:hover .logo-svg {
    transform: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 11vw, 6.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--bg) 0%, #0e1116 50%, var(--bg-elevated) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-float 18s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb {
    animation: none;
    opacity: 0.35;
  }
}

.hero-orb-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -8%;
  right: -5%;
}

.hero-orb-b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  background: radial-gradient(circle, rgba(107, 124, 144, 0.35) 0%, transparent 70%);
  bottom: 10%;
  left: -10%;
  animation-delay: -7s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-3%, 4%) scale(1.05);
  }
  70% {
    transform: translate(2%, -3%) scale(0.96);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, black 20%, transparent 75%);
  animation: grid-drift 40s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid {
    animation: none;
  }
}

@keyframes grid-drift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(56px);
  }
}

.hero-inner {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr min(360px, 38%);
    gap: 3rem;
    align-items: center;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s;
}

.pill:hover {
  border-color: var(--border-bright);
  background: rgba(232, 163, 23, 0.06);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .pill-dot {
    animation: none;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.85);
  }
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.cta-band .eyebrow.light {
  color: rgba(232, 163, 23, 0.9);
}

.headline-line {
  display: block;
}

.headline-line.accent {
  color: var(--accent);
  margin-top: 0.15em;
  text-shadow: 0 0 40px var(--accent-dim);
}

.lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  padding: 0;
}

.hero-trust li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-trust strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-card {
  position: relative;
  background: linear-gradient(155deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.65rem 1.5rem 1.4rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.hero-card-shine {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: rotate(25deg);
  animation: shine 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-card-shine {
    display: none;
  }
}

@keyframes shine {
  0%,
  100% {
    left: -80%;
  }
  50% {
    left: 120%;
  }
}

.hero-card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.hero-highlights li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.hero-card:hover .hero-highlights li {
  border-left-color: var(--accent-soft);
}

.hero-highlights strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}

.hero-card-link:hover {
  color: var(--accent-soft);
}

/* Stats */
.section-stats {
  padding: 0 0 2.5rem;
  margin-top: -0.5rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.65rem 1.5rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* Credentials strip */
.section-credentials {
  padding: 0 0 2.5rem;
}

.cred-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), background 0.3s;
}

.cred-item:hover {
  border-color: var(--border-bright);
  background: rgba(232, 163, 23, 0.04);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .cred-item:hover {
    transform: none;
  }
}

.cred-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #140f05;
  background: var(--accent);
  border-radius: 8px;
}

.cred-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.cred-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.25rem) 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.85rem;
}

.section-head-inline {
  display: grid;
  gap: 1rem;
  text-align: left;
  max-width: none;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .section-head-inline {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .section-head-inline .section-intro {
    margin: 0;
    text-align: right;
    justify-self: end;
  }
}

.section-intro {
  color: var(--text-muted);
  margin: 0;
}

.section-intro.left {
  text-align: left;
}

.section-intro.narrow {
  max-width: 44ch;
}

/* Services */
.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.service-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.35rem;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 163, 23, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover {
    transform: none;
  }
}

.service-icon {
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 20px var(--accent-dim);
}

.service-card h3 {
  position: relative;
  z-index: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 0;
}

/* Projects */
.section-projects {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.project-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.project-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
  border-color: rgba(232, 163, 23, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .project-card:hover {
    transform: none;
  }
}

.project-visual-wrap {
  position: relative;
  overflow: hidden;
}

.project-visual {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s var(--ease-out);
}

.project-card:hover .project-visual {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .project-card:hover .project-visual {
    transform: none;
  }
}

.project-visual.p1 {
  background-image:
    linear-gradient(135deg, rgba(12, 14, 17, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #2f3640 0%, #1a1d22 45%, #4a3518 100%);
}

.project-visual.p2 {
  background-image:
    linear-gradient(160deg, rgba(12, 14, 17, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, #2a3038 0%, #1e2228 40%, #5c4a30 100%);
}

.project-visual.p3 {
  background-image:
    linear-gradient(120deg, rgba(12, 14, 17, 0.2) 0%, transparent 50%),
    linear-gradient(120deg, #2c323c 0%, #23272e 50%, #3d4a5c 100%);
}

.project-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(12, 14, 17, 0.85);
  color: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 14, 17, 0.92) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.55rem 1rem;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  background: rgba(232, 163, 23, 0.12);
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-spring);
}

.project-card:hover .project-cta {
  transform: translateY(0);
}

.project-card h3 {
  padding: 1.05rem 1.2rem 0;
}

.project-card p {
  padding: 0.35rem 1.2rem 1.35rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonials */
.section-testimonials {
  position: relative;
}

.testimonial-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  position: relative;
  padding: 1.6rem 1.45rem 1.4rem;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(232, 163, 23, 0.12);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(232, 163, 23, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stars {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.testimonial-card blockquote {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cite-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Process */
.process-steps {
  display: grid;
  gap: 1.35rem;
  position: relative;
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .process-steps::before {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    opacity: 0.5;
    z-index: 0;
    animation: process-line 2.5s var(--ease-out) forwards;
    transform: scaleX(0);
    transform-origin: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-steps::before {
    animation: none;
    transform: scaleX(1);
    opacity: 0.35;
  }
}

@keyframes process-line {
  to {
    transform: scaleX(1);
  }
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 1.55rem 1.3rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.process-step:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .process-step:hover {
    transform: none;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.55rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 24px var(--accent-dim);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0;
}

/* Service area */
.section-area {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-block: 1px solid var(--border);
}

.area-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .area-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.area-pills li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.area-pills li:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  background: rgba(232, 163, 23, 0.06);
}

.area-map {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.area-map-inner {
  position: relative;
  width: 100%;
  height: 280px;
  background:
    radial-gradient(circle at 50% 45%, rgba(232, 163, 23, 0.15) 0%, transparent 45%),
    linear-gradient(165deg, #1a1f27 0%, #12151c 100%);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(232, 163, 23, 0.25), 0 0 40px var(--accent-glow);
  z-index: 2;
  animation: pin-bob 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .map-pin {
    animation: none;
  }
}

@keyframes pin-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 46%;
  border: 1px solid rgba(232, 163, 23, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-ring-1 {
  width: 120px;
  height: 120px;
  animation: ring-pulse 4s ease-out infinite;
}

.map-ring-2 {
  width: 200px;
  height: 200px;
  animation: ring-pulse 4s ease-out infinite 1.3s;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .map-ring-1,
  .map-ring-2 {
    animation: none;
    opacity: 0.4;
  }
}

@keyframes ring-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0;
  }
}

.map-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* CTA */
.section-cta {
  padding: 2.75rem 0;
}

.cta-band {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 2.25rem 2rem;
  background: linear-gradient(120deg, rgba(232, 163, 23, 0.14) 0%, var(--surface) 38%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 50%;
  margin-top: -140px;
  background: radial-gradient(circle, rgba(232, 163, 23, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: cta-pulse 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .cta-glow {
    animation: none;
    opacity: 0.5;
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cta-copy h2 {
  margin-bottom: 0.45rem;
}

.cta-copy p {
  color: var(--text-muted);
  margin: 0;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1.08fr;
    align-items: start;
  }
}

.contact-intro p:not(.eyebrow) {
  color: var(--text-muted);
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.contact-details a {
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  padding: 1.85rem;
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.form-head {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.35rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--steel);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form .btn {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--accent-soft);
  margin: 0;
  min-height: 1.25em;
}

@media (max-width: 560px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-logo:hover {
  color: var(--text);
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.07em;
  font-weight: 400;
}

.footer-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-blurb {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  color: var(--text);
}

.footer-links li {
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0 1.75rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-top {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-top:hover {
  color: var(--accent-soft);
}

/* —— Brand story & pillars —— */
.section-story {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 55%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.story-layout {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
  .story-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }
}

.story-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.story-main > p:not(.story-lead):not(.brand-line) {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.brand-line {
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--accent);
  background: rgba(232, 163, 23, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.55;
}

.brand-line-inner {
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
}

.story-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pullquote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.pullquote p {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.pullquote footer {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.story-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-facts li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.story-facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-facts strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.pillar-band {
  padding: 2.5rem 1.75rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pillar-band-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.pillar-band-head h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.pillar-intro {
  margin-top: 0.75rem;
}

.pillar-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pillar-card {
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.pillar-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .pillar-card:hover {
    transform: none;
  }
}

.pillar-word {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 28px var(--accent-dim);
}

.pillar-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* What’s included */
.section-included {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.included-grid {
  display: grid;
  gap: 1rem 1.5rem;
}

@media (min-width: 640px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.included-grid li {
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.included-grid strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

/* Portfolio wide grid */
.project-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.project-visual.p4 {
  background-image:
    linear-gradient(140deg, rgba(12, 14, 17, 0.2) 0%, transparent 50%),
    linear-gradient(140deg, #2a323c 0%, #1c2028 45%, #3d3530 100%);
}

.project-visual.p5 {
  background-image:
    linear-gradient(125deg, rgba(12, 14, 17, 0.25) 0%, transparent 55%),
    linear-gradient(125deg, #252b35 0%, #1a1e26 50%, #4a4035 100%);
}

/* Why Willard */
.section-difference {
  background: var(--bg);
}

.diff-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.diff-col {
  padding: 1.65rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.diff-col-willard {
  background: linear-gradient(165deg, rgba(232, 163, 23, 0.08) 0%, var(--surface) 55%);
  border-color: rgba(232, 163, 23, 0.25);
}

.diff-col-generic {
  background: var(--surface);
}

.diff-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin: 0 0 1.1rem;
}

.diff-title.muted {
  color: var(--text-muted);
}

.diff-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diff-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.45;
}

.diff-list.muted li {
  color: var(--text-muted);
}

.diff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.diff-list.muted li::before {
  background: var(--steel);
}

.diff-foot {
  margin: 2rem 0 0;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* FAQ */
.section-faq {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--steel);
}

.faq-item[open] {
  border-color: var(--border-bright);
}

.faq-item summary {
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Team */
.section-team {
  background: var(--bg);
}

.team-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-card {
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  border-color: rgba(232, 163, 23, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #140f05;
  background: linear-gradient(135deg, var(--accent), #c99210);
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px var(--accent-dim);
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.team-card p:last-child {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* —— Subpages, maps, deep links —— */
.service-card h3 a {
  color: var(--text);
  transition: color 0.2s var(--ease-out);
}

.service-card h3 a:hover {
  color: var(--accent-soft);
}

.service-card-link-row {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.inline-service-link {
  font-weight: 600;
  color: var(--accent);
}

.inline-service-link:hover {
  color: var(--accent-soft);
}

.area-pills a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}

.area-pills a:hover {
  color: var(--accent-soft);
}

.subpage-main {
  padding: calc(var(--header-h) + 1.5rem) 0 4rem;
  min-height: 60vh;
}

.subpage-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--accent-soft);
}

.subpage-header {
  margin-bottom: 2rem;
}

.subpage-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.75rem;
}

.subpage-body p,
.subpage-header .section-intro {
  color: var(--text-muted);
  max-width: 65ch;
}

.subpage-body p {
  margin-bottom: 1rem;
}

.subpage-section {
  margin-top: 2.5rem;
}

.subpage-section h2,
.subpage-h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  margin: 2rem 0 1rem;
}

.combo-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.combo-link-list a {
  display: inline-block;
  padding: 0.45rem 0;
  font-weight: 500;
}

.subpage-cta {
  margin-top: 2.5rem;
}

.subpage-map-block {
  margin: 1rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed {
  position: relative;
  width: 100%;
  background: var(--surface);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

.map-embed-tall iframe {
  min-height: 400px;
}

.area-map-embed-wrap {
  border: none;
  min-height: auto;
}

.locations-index-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.location-card {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s;
}

.location-card:hover {
  border-color: var(--border-bright);
}

.location-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.location-card h2 a {
  color: var(--text);
}

.location-card h2 a:hover {
  color: var(--accent-soft);
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0 0 0.75rem;
}

.service-grid-sub {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-grid-sub .service-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.service-grid-sub .service-card h2 a {
  color: var(--text);
}

.service-grid-sub .service-card h2 a:hover {
  color: var(--accent-soft);
}

/* —— Service page long-form article —— */
.longform-wrap {
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.service-longform {
  max-width: 52rem;
}

.longform-h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
}

.longform-h2:first-child {
  margin-top: 0;
}

.longform-h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin: 2rem 0 0.65rem;
  color: var(--accent-soft);
}

.longform-p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.1rem;
}

.local-service-block {
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.local-service-block:last-of-type {
  border-bottom: none;
}

.longform-cta {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.combo-longform-wrap {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}

.combo-lead {
  margin-top: 0.5rem;
  max-width: 52rem;
}

.combo-spec-snapshot {
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.combo-spec-snapshot .subpage-body p:last-child {
  margin-bottom: 0;
}

/* Skip link (visible on keyboard focus) */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #0c0e11;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  clip-path: none;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.contact-form.form-submitting button[type="submit"] {
  opacity: 0.65;
  pointer-events: none;
}
