/* =========================================================
   SportsCenter All Purpose Landscaping
   Earth-tone editorial system — Fraunces + Libre Franklin
   ========================================================= */

:root {
  /* palette */
  --soil:        #1C1A15;
  --soil-2:      #25221b;
  --pine:        #2A3D2E;
  --pine-deep:   #1A271C;
  --pine-soft:   #38503b;
  --moss:        #6B7A55;
  --limestone:   #EAE4D5;
  --cream:       #F3EEE2;
  --paper:       #F8F4EB;
  --rust:        #C4622D;
  --rust-deep:   #A84E20;

  /* roles */
  --bg:          var(--paper);
  --ink:         #211E18;
  --ink-soft:    #5b554a;
  --line:        rgba(33, 30, 24, 0.14);
  --line-strong: rgba(33, 30, 24, 0.28);

  /* type */
  --display: "Fraunces", "Hoefler Text", Georgia, "Times New Roman", serif;
  --body:    "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* easing */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--rust); color: var(--paper); }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--pine); color: var(--paper); padding: 0.6rem 1.2rem;
  border-radius: 0 0 10px 10px; z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2.5px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  width: min(var(--shell), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

/* =========================================================
   Typography helpers
   ========================================================= */
.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.eyebrow .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--ink);
  opacity: 0.5;
}
.eyebrow-light { color: #d8a07a; }
.eyebrow-light .num { color: var(--cream); opacity: 0.65; }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 1.3rem + 3.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--pine);
  font-optical-sizing: auto;
}
.section--dark .section-title,
.section--dark .contact-title { color: var(--cream); }

.section-intro {
  margin-top: 1.4rem;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.section--dark .section-intro { color: rgba(243, 238, 226, 0.72); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-bg: var(--rust);
  --btn-fg: #fff7ef;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.08s; }
.btn .ico { flex: none; }
.btn-primary { box-shadow: 0 10px 24px -12px rgba(168, 78, 32, 0.9); }
.btn-primary:hover { background: var(--rust-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(168, 78, 32, 0.95); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; }
.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.88rem; }

.btn-ghost { background: transparent; color: var(--pine); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--pine); color: var(--cream); border-color: var(--pine); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(243, 238, 226, 0.5); }
.btn-outline-light:hover { background: var(--cream); color: var(--pine); border-color: var(--cream); transform: translateY(-2px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.1rem;
}
.site-header.scrolled {
  background: rgba(248, 244, 235, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -24px rgba(33, 30, 24, 0.5);
}
.site-header.scrolled .header-inner { padding-block: 0.75rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; color: var(--cream); transition: color 0.35s; }
.site-header.scrolled .brand { color: var(--pine); }
.brand-mark { color: var(--moss); display: grid; place-items: center; }
.site-header.scrolled .brand-mark { color: var(--pine); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.72;
  margin-top: 0.32rem;
}

.main-nav { display: flex; gap: 1.7rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.85;
}
.site-header.scrolled .main-nav a { color: var(--pine); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

/* mobile menu toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.site-header.scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span { background: var(--pine); }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 1.25rem var(--gutter) 2rem;
  box-shadow: 0 22px 30px -22px rgba(33, 30, 24, 0.5);
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--pine);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-cta { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.mobile-cta .btn { justify-content: center; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  color: var(--cream);
  padding-top: clamp(8rem, 13vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-hills { width: 100%; height: 100%; object-fit: cover; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-content { max-width: 38rem; }
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.8rem, 1.2rem + 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  font-optical-sizing: auto;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #e6b486;
}
.hero-lede {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  max-width: 42ch;
  color: rgba(243, 238, 226, 0.85);
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.8rem;
  border-top: 1px solid rgba(243, 238, 226, 0.18);
  padding-top: 1.6rem;
  max-width: 30rem;
}

/* hero photo placeholder (swap with a real photo via background-image) */
.hero-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--pine-soft);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(243, 238, 226, 0.16);
  box-shadow: 0 40px 80px -45px rgba(0, 0, 0, 0.7);
  isolation: isolate;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hero-photo.reveal:hover {
  transform: translateY(-4px);
  box-shadow: 0 52px 92px -45px rgba(0, 0, 0, 0.78);
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(110% 80% at 20% 12%, rgba(140, 160, 110, 0.5), transparent 55%),
    repeating-radial-gradient(circle at 85% 115%, rgba(243, 238, 226, 0.06) 0 1px, transparent 1px 24px),
    linear-gradient(150deg, #46603f 0%, #233220 85%);
}
.ph-photo {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: rgba(243, 238, 226, 0.6); text-align: center; padding: 1.5rem;
}
.ph-photo span {
  font-size: 0.78rem; letter-spacing: 0.08em; font-weight: 600;
  max-width: 15rem; line-height: 1.4;
}
/* once a real photo is set on a spot, hide its placeholder hint + duotone fill
   (the duotone ::before sits above the element's own background image and would
   otherwise cover the real photo) */
.hero-photo[style*="url"] .ph-photo,
.about-portrait[style*="url"] .ph-person { display: none; }
.hero-photo[style*="url"]::before,
.service-photo[style*="url"]::before,
.about-portrait[style*="url"]::before { display: none; }

/* skeleton loader — shimmer shown over a photo spot until its image loads */
@keyframes sc-shimmer { from { background-position: -150% 0, 0 0; } to { background-position: 150% 0, 0 0; } }
.sc-skeleton {
  position: absolute; inset: 0; z-index: 4;
  border-radius: inherit;
  background:
    linear-gradient(100deg, rgba(243,238,226,0) 35%, rgba(243,238,226,0.18) 50%, rgba(243,238,226,0) 65%),
    linear-gradient(150deg, var(--pine-soft) 0%, var(--pine-deep) 82%);
  background-size: 200% 100%, 100% 100%;
  background-repeat: no-repeat;
  animation: sc-shimmer 1.25s ease-in-out infinite;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.sc-skeleton.is-done { opacity: 0; }
.hero-trust li {
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(243, 238, 226, 0.7);
  font-weight: 500;
}
.hero-trust span {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--cream);
  font-weight: 500;
}

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

/* =========================================================
   Sections base
   ========================================================= */
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.section--dark { background: var(--pine-deep); color: var(--cream); overflow: hidden; isolation: isolate; }
.section--soft { background: var(--limestone); }
.section-head { max-width: 50rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* =========================================================
   Services — 7 equal photo cards + wide CTA card
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -30px rgba(33, 30, 24, 0.6);
  border-color: transparent;
}

/* photo spot — styled placeholder until a real photo is dropped in */
.service-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--pine);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.service-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 95% at 14% 6%, rgba(106,122,85,0.55), transparent 55%),
    repeating-radial-gradient(circle at 82% 120%, rgba(243,238,226,0.05) 0 1px, transparent 1px 22px),
    linear-gradient(150deg, var(--pine-soft) 0%, var(--pine-deep) 78%);
}
.service-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,28,20,0.45) 0%, transparent 55%);
  transition: opacity 0.4s var(--ease);
}
.service-card:hover .service-photo::after { opacity: 0.55; }
.service-ico {
  position: absolute; left: 1rem; bottom: 1rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(248, 244, 235, 0.94);
  color: var(--pine);
  box-shadow: 0 8px 18px -10px rgba(0,0,0,0.5);
}
.service-flag {
  position: absolute; right: 1rem; top: 1rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  color: #fff7ef; background: var(--rust);
  padding: 0.32rem 0.65rem; border-radius: 999px;
}
.service-body {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  flex: 1;
}
.service-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--pine);
  letter-spacing: -0.01em;
}
.service-body p { color: var(--ink-soft); font-size: 0.96rem; }

/* wide "don't see it listed?" card */
.service-card--cta {
  grid-column: span 2;
  background: var(--pine);
  border-color: var(--pine);
  color: var(--cream);
  justify-content: center;
}
.service-card--cta:hover { box-shadow: 0 24px 45px -28px rgba(0,0,0,0.6); }
.service-card--cta .service-body { padding: clamp(1.8rem, 3vw, 2.6rem); gap: 0.7rem; }
.service-card--cta h3 { color: var(--cream); font-size: clamp(1.5rem, 1rem + 1.6vw, 2rem); }
.service-card--cta p { color: rgba(243, 238, 226, 0.8); font-size: 1.05rem; max-width: 46ch; }
.service-card--cta .btn { align-self: flex-start; margin-top: 0.5rem; }

/* =========================================================
   Where we serve
   ========================================================= */
.serve { background: var(--pine-deep); }
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.serve-copy .section-intro { color: rgba(243, 238, 226, 0.72); }
.serve-copy .area-note { margin-top: 1.6rem; color: rgba(243, 238, 226, 0.62); font-size: 0.95rem; }
.serve-copy .area-note a { color: #e6b486; text-decoration: underline; text-underline-offset: 3px; }

.serve-panel {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  position: relative;
  overflow: hidden;
}
.serve-panel::after {
  content: "";
  position: absolute; right: -50px; bottom: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(42, 61, 46, 0.18);
  box-shadow: 0 0 0 24px rgba(42, 61, 46, 0.05);
}
.serve-panel .eyebrow { margin-bottom: 1.3rem; }
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  position: relative;
}
.area-list li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  background: rgba(42, 61, 46, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--pine);
  font-weight: 600;
  font-size: 0.95rem;
}
.area-list li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust); flex: none;
}

/* =========================================================
   About Shawn
   ========================================================= */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--pine);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 26px 55px -40px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.about-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 44px 75px -42px rgba(0, 0, 0, 0.62);
}
.about-portrait::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 95% at 16% 8%, rgba(106,122,85,0.5), transparent 55%),
    repeating-radial-gradient(circle at 84% 118%, rgba(243,238,226,0.05) 0 1px, transparent 1px 22px),
    linear-gradient(150deg, var(--pine-soft) 0%, var(--pine-deep) 80%);
}
.about-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,28,20,0.9) 0%, rgba(20,28,20,0.05) 55%, transparent 100%);
}
.about-portrait .ph-person {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
  color: rgba(243, 238, 226, 0.45);
}
.about-portrait figcaption {
  position: relative;
  padding: 1.6rem 1.7rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-name { font-family: var(--display); font-weight: 600; font-size: 1.6rem; }
.about-name-sub {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(243, 238, 226, 0.78); font-weight: 600;
}
.about-copy .section-title { margin-bottom: 1.2rem; }
.about-text p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 54ch; }
.about-text p:first-child { margin-top: 0; }

/* =========================================================
   Reviews
   ========================================================= */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px -30px rgba(33, 30, 24, 0.45);
  border-color: transparent;
}
.quote-card::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.7;
  color: var(--rust);
  opacity: 0.35;
}
.quote-card p { color: var(--ink); font-size: 1.02rem; flex: 1; }
.quote-card footer { display: flex; flex-direction: column; gap: 0.1rem; }
.q-name { font-family: var(--display); font-weight: 600; color: var(--pine); font-size: 1.05rem; }
.q-loc { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

/* =========================================================
   Mini CTA band (between Service area and About)
   ========================================================= */
.cta-mini {
  background: var(--rust);
  color: #fff7ef;
  padding-block: clamp(1.5rem, 3vw, 2.3rem);
  position: relative;
  isolation: isolate;
}
.cta-mini-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem 2.2rem; flex-wrap: wrap;
}
.cta-mini-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.2rem, 0.95rem + 1vw, 1.7rem);
  line-height: 1.18; letter-spacing: -0.01em;
  max-width: 42ch;
}
.cta-mini-text strong { font-style: italic; font-weight: 500; color: #ffe9d6; }
.cta-mini-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cta-mini .btn-primary { background: var(--cream); color: var(--rust-deep); box-shadow: 0 12px 26px -16px rgba(0,0,0,0.55); }
.cta-mini .btn-primary:hover { background: #fff; color: var(--rust-deep); }
.cta-mini .btn-outline-light { color: #fff7ef; border-color: rgba(255,247,239,0.55); }
.cta-mini .btn-outline-light:hover { background: #fff7ef; color: var(--rust-deep); border-color: #fff7ef; }

/* =========================================================
   Contact / CTA — call + text only
   ========================================================= */
.contact { background: var(--pine); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.contact-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--cream); margin-bottom: 1.3rem;
}
.contact-lede { color: rgba(243,238,226,0.78); max-width: 44ch; font-size: 1.08rem; }
.contact-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 40px 60px -40px rgba(0,0,0,0.6);
}
.contact-card-label {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
}
.contact-phone {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3rem);
  color: var(--pine);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1.6rem;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--rust); }
.contact-buttons { display: grid; gap: 0.7rem; }
.contact-buttons .btn { justify-content: center; }
.contact-buttons .btn-outline-light { color: var(--pine); border-color: var(--line-strong); }
.contact-buttons .btn-outline-light:hover { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.contact-card-foot { margin-top: 1.4rem; font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--soil); color: rgba(243,238,226,0.7); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(243,238,226,0.12);
}
.footer-brand .brand-name { font-family: var(--display); font-size: 1.7rem; color: var(--cream); display: block; }
.footer-brand .brand-sub {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(243,238,226,0.6); display: block; margin-top: 0.4rem;
}
.footer-tag { margin: 1.2rem 0; max-width: 34ch; font-size: 0.95rem; }
.footer-phone {
  font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: #e6b486;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--rust); }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); font-weight: 700; margin-bottom: 0.5rem;
}
.footer-col a, .footer-col span { font-size: 0.92rem; color: rgba(243,238,226,0.7); transition: color 0.2s; }
.footer-col a:hover { color: #e6b486; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding-block: 1.6rem;
  font-size: 0.82rem; color: rgba(243,238,226,0.5);
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 26px));
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
/* settle to --reveal-y:0 (not transform:none) so hover transforms can win */
.reveal.is-visible { opacity: 1; --reveal-y: 0px; }
.service-grid .reveal.is-visible,
.quote-grid .reveal.is-visible { transition-delay: var(--d, 0s); }

/* hero load animation */
.hero .reveal { opacity: 0; transform: translateY(var(--reveal-y, 22px)); }
.hero.loaded .reveal { opacity: 1; --reveal-y: 0px; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.hero.loaded .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero.loaded .reveal:nth-child(2) { transition-delay: 0.16s; }
.hero.loaded .reveal:nth-child(3) { transition-delay: 0.30s; }
.hero.loaded .reveal:nth-child(4) { transition-delay: 0.42s; }
.hero.loaded .reveal:nth-child(5) { transition-delay: 0.54s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { max-width: 42rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--cta { grid-column: span 2; }
  .serve-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --radius: 12px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card--cta { grid-column: span 1; }
  .about-grid { gap: 1.8rem; }
  .about-portrait { max-width: 20rem; width: 100%; margin-inline: auto; }
  .area-list { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .hero .reveal { opacity: 1 !important; transform: none !important; }
}
