/* =====================================================================
   TOPS ROOFING — STYLESHEET
   Pure CSS, no build step. Charcoal + tan/gold palette derived from the
   business-card logo. Validate WCAG AA on any new color combination
   (see conventions/accessibility.md).
   ===================================================================== */


/* =========================================================
   TOKENS
   ========================================================= */
:root{
  /* Surfaces */
  --bg: #ffffff;
  --surface: #f4f5f7;          /* light cool-grey section background */
  --charcoal: #1a1d21;         /* near-black brand dark */
  --charcoal-2: #24282e;       /* raised dark surface */

  /* Brand accent (gold/tan from the logo) */
  --gold: #fadc9e;             /* accent on dark surfaces + button bg */
  --gold-soft: #fadc9e;        /* lighter gold for icons/details on dark */
  --gold-ink: #fadc9e;         /* pale gold (note: low contrast as text on white) */

  /* Text */
  --ink: #1a1d21;              /* primary text on light */
  --ink-soft: #555b63;         /* secondary text on light (AA on white) */
  --ink-invert: #f3f1ec;       /* primary text on dark */
  --ink-invert-soft: #c3c8cf;  /* secondary text on dark (AA on charcoal) */

  /* Lines */
  --rule: rgba(0,0,0,.10);
  --rule-strong: rgba(0,0,0,.16);
  --rule-dark: rgba(255,255,255,.14);

  /* Type */
  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gut: clamp(20px, 4vw, 56px);
  --radius: 12px;
  --shadow: 0 14px 40px rgba(20,22,26,.12);
  --header-h: 120px;         /* header height; heroes tuck up under it */
}


/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--gold-ink); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; margin: 0; line-height: 1.08; letter-spacing: .01em; }

/* Global content width: 85% of the viewport (reviews overrides to 90%). */
.wrap{ width: 85%; max-width: none; margin: 0 auto; padding-inline: 0; }

.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--charcoal);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }


/* =========================================================
   SHARED BITS
   ========================================================= */
.eyebrow{
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 14px;
  color: #c8a05a;
  margin: 0 0 14px;
}
.eyebrow-on-dark{ color: var(--gold-soft); }

.section{ padding: clamp(56px, 8vw, 104px) 0; }
.section-head{ max-width: 60ch; margin: 0 0 clamp(32px, 5vw, 56px); }
.section-head h2,
.why-copy h2,
.contact-info h2{ font-size: clamp(30px, 4.4vw, 46px); }
.section-sub{ color: var(--ink-soft); font-size: 17px; margin: 14px 0 0; }

/* Buttons */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: 15px;
  padding: 14px 26px; border-radius: 8px; border: 2px solid transparent;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-primary:hover{ background: var(--gold-soft); border-color: var(--gold-soft); color: var(--charcoal); }
.btn-ghost{ background: transparent; color: var(--ink-invert); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover{ background: rgba(255,255,255,.10); color: #fff; border-color: #fff; }
.btn-block{ width: 100%; }
.btn-square{ border-radius: 2px; padding: 16px 34px; font-size: 16px; }
.btn-light{ background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-light:hover{ background: var(--surface); color: var(--charcoal); border-color: var(--surface); }


/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(20, 22, 26, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color .25s ease;
}
.header-inner{ display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); transition: min-height .25s ease; }
/* Condense the header once scrolled past the hero. */
.site-header.is-scrolled{ background: rgba(20, 22, 26, .95); }
.site-header.is-scrolled .header-inner{ min-height: calc(var(--header-h) - 24px); }
.site-header.is-scrolled .brand-logo{ height: 54px; }
/* Offset anchor jumps so targets aren't hidden under the fixed header. */
[id]{ scroll-margin-top: var(--header-h); }

.brand{ display: inline-flex; align-items: center; }
.brand-logo{ height: 64px; width: auto; display: block; transition: height .25s ease; }
.brand-footer .brand-logo{ height: 60px; }

.nav{ display: flex; align-items: center; }
.nav-links{ display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a{
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .07em; font-size: 15px; color: var(--ink-invert-soft);
}
.nav-links a:hover{ color: #fff; }
.nav-phone{
  color: var(--charcoal) !important; background: var(--gold);
  padding: 9px 16px; border-radius: 8px; font-weight: 600;
}
.nav-phone:hover{ background: var(--gold-soft); }

.menu-btn{
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 10px; margin-right: -10px;
}
.menu-bar{ width: 24px; height: 2px; background: var(--ink-invert); transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 860px){
  .menu-btn{ display: flex; }
  .nav-links{
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--charcoal-2); border-top: 1px solid var(--rule-dark);
    padding: 8px var(--gut) 18px;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .25s ease;
  }
  #nav[data-open="true"] .nav-links{ max-height: 360px; visibility: visible; }
  .nav-links a{ padding: 14px 0; border-bottom: 1px solid var(--rule-dark); font-size: 17px; }
  .nav-phone{ margin-top: 14px; text-align: center; border-bottom: 0 !important; }
  #nav[data-open="true"] .menu-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  #nav[data-open="true"] .menu-bar:nth-child(2){ opacity: 0; }
  #nav[data-open="true"] .menu-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}


/* =========================================================
   HERO  (full-bleed photo, text anchored bottom-left)
   ========================================================= */
.hero{
  position: relative;
  display: flex; align-items: flex-end;
  min-height: clamp(600px, 94vh, 940px);
  background: var(--charcoal); color: #fff; overflow: hidden;
}
/* On phones, center the hero content vertically instead of anchoring it to the
   bottom — reads better on tall, narrow screens. */
@media (max-width: 700px){
  .hero{ align-items: center; }
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-overlay{
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,22,26,.20) 0%,
    rgba(20,22,26,0) 32%,
    rgba(20,22,26,.55) 66%,
    rgba(20,22,26,.92) 100%);
}
.hero-inner{
  position: relative; z-index: 2;
  padding-block: clamp(40px, 7vw, 88px);
}
/* Keep the text from running too wide, but start it at the same left gutter
   as the sections below (.wrap), rather than centering a narrow column. */
.hero-inner > *{ max-width: 780px; }
.hero-eyebrow{
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .05em; line-height: 1.1;
  /* 6vw keeps "Minot & North Dakota's Top" on one line at every width (its
     rendered width is ~13x the font size, and the column is ~82vw): 6vw hits
     ~24px at 400px (the largest single-line size there) and scales down on
     narrower phones. Caps at 32px, the prior desktop max. */
  font-size: clamp(19px, 6vw, 32px);
  color: rgba(255,255,255,.92); margin: 0 0 4px;
}
.hero h1{
  /* Single line at every width: "Roofing Contractor" is ~9.3x the font size
     wide in Oswald 700; 9vw keeps it inside the ~85vw column with margin down
     to 320px (36px at 400px). */
  font-size: clamp(20px, 9vw, 84px); line-height: 1.04;
  text-transform: uppercase; letter-spacing: -.005em;
  white-space: nowrap; max-width: none;
  margin: 0 0 22px; color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero-lede{
  font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,.9);
  max-width: none; margin: 0 0 30px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
/* On desktop, keep the hero paragraph to ~62% of the viewport (full width on mobile). */
@media (min-width: 900px){ .hero-lede{ max-width: 62vw; } }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; }
/* Periodic shimmer sweep across the CTAs (mirrors the gold sweeps elsewhere). */
.hero-actions .btn-primary,
.why .btn-primary,
.about-copy .btn-light{ position: relative; overflow: hidden; }
.hero-actions .btn-primary::after,
.why .btn-primary::after,
.about-copy .btn-light::after{
  content: ""; position: absolute; top: 0; left: -160%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.7) 50%, transparent 100%);
  transform: skewX(-20deg); pointer-events: none;
  animation: hero-shimmer 4s ease-in-out infinite;
}
/* The About CTA is a light button, so use a soft gold streak instead of white. */
.about-copy .btn-light::after{
  background: linear-gradient(100deg, transparent 0%, rgba(200,160,90,.55) 50%, transparent 100%);
}
@keyframes hero-shimmer{ 0%{ left: -160%; } 55%, 100%{ left: 160%; } }
@media (prefers-reduced-motion: reduce){
  .hero-actions .btn-primary::after,
  .why .btn-primary::after,
  .about-copy .btn-light::after{ animation: none; display: none; }
}


/* =========================================================
   REVIEWS (Google reviews slider)
   ========================================================= */
.visually-hidden{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.svg-sprite{ position: absolute; width: 0; height: 0; overflow: hidden; }

.reviews{ background: var(--surface); padding: clamp(52px, 7vw, 88px) 0 0; }
/* Reviews section spans 90% of the viewport (overrides the 1200px .wrap cap). */
.reviews .wrap{ max-width: none; width: 90%; padding-inline: 0; }
.reviews-inner{ display: flex; flex-direction: column; gap: clamp(22px, 4vw, 40px); align-items: center; }
@media (min-width: 900px){ .reviews-inner{ flex-direction: row; align-items: center; } }

.reviews-summary{ flex: none; text-align: center; }
@media (min-width: 900px){ .reviews-summary{ width: 200px; } }
.reviews-rateword{
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(22px, 2.6vw, 28px); color: var(--ink); margin: 0 0 6px;
}
.stars{ color: #f5a623; letter-spacing: 2px; line-height: 1; white-space: nowrap; }
.stars-lg{ font-size: 26px; display: inline-block; }
.reviews-count{ margin: 10px 0 12px; color: var(--ink-soft); font-size: 15px; }
.reviews-count strong{ color: var(--ink); }
/* "Real" gets an italic + hand-drawn bent underline that animates in on a loop. */
.rev-real{ position: relative; display: inline-block; font-style: italic; }
.rev-real svg{ position: absolute; left: 0; bottom: -3px; width: 100%; height: 9px; overflow: visible; }
.rev-real path{
  fill: none; stroke: #c8a05a; stroke-width: 2; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: rev-underline 4s ease-in-out infinite;
}
@keyframes rev-underline{
  0%{ stroke-dashoffset: 100; }
  30%, 80%{ stroke-dashoffset: 0; }
  100%{ stroke-dashoffset: 100; }
}
@media (prefers-reduced-motion: reduce){ .rev-real path{ animation: none; stroke-dashoffset: 0; } }
.g-wordmark{ font-family: var(--sans); font-weight: 700; font-size: 22px; letter-spacing: -.5px; }

.reviews-slider{ position: relative; flex: 1; min-width: 0; width: 100%; }
.reviews-track{
  list-style: none; margin: 0; padding: 6px 2px; display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar{ display: none; }
.review-card{
  flex: 0 0 300px; max-width: 300px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 20px;
  box-shadow: 0 8px 24px rgba(20,22,26,.06);
}
@media (max-width: 480px){ .review-card{ flex-basis: 82%; max-width: 82%; } }
.review-head{ display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-avatar{
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--c, #888); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.review-meta{ flex: 1; min-width: 0; line-height: 1.25; }
.review-meta strong{ display: block; font-size: 15px; color: var(--ink); }
.review-meta span{ font-size: 12.5px; color: var(--ink-soft); }
.review-g{ width: 20px; height: 20px; flex: none; }
.review-stars{ display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.review-stars .stars{ font-size: 17px; }
.review-verified{ width: 15px; height: 15px; flex: none; }
.review-text{
  margin: 0; font-size: 14.5px; color: #3a3f47; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

.rev-arrow{
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--rule);
  background: #fff; color: var(--ink); box-shadow: 0 6px 18px rgba(20,22,26,.16);
  display: flex; align-items: center; justify-content: center; font-size: 22px; padding: 0;
}
.rev-arrow:hover{ background: var(--surface); }
.rev-prev{ left: -6px; }
.rev-next{ right: -6px; }


/* =========================================================
   SERVICES
   ========================================================= */
.services{ background: var(--surface); padding-top: clamp(52px, 7vw, 88px); }
.services .section-head{ text-align: center; margin-left: auto; margin-right: auto; }
.services-actions{ text-align: center; margin-top: clamp(34px, 4.5vw, 54px); }
.svc-viewall{ gap: 10px; }
.svc-viewall-arrow{ display: inline-block; transition: transform .25s ease; }
.svc-viewall:hover .svc-viewall-arrow,
.svc-viewall:focus-visible .svc-viewall-arrow{ transform: translateX(7px); }
.svc-grid{
  display: grid; gap: clamp(20px, 2.4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.svc-card{
  position: relative; background: #fff; border: 1px solid var(--rule);
  border-radius: 16px; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20,22,26,.16); border-color: transparent; }

.svc-media{ position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-media img{ transform: scale(1.06); }

.svc-body{ position: relative; padding: 40px 24px 26px; }
.svc-icon{
  position: absolute; top: -28px; left: 24px;
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--charcoal); border: 1px solid var(--rule);
  box-shadow: 0 8px 20px rgba(20,22,26,.16);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.svc-icon svg{ width: 28px; height: 28px; }
.svc-card:hover .svc-icon{ background: var(--charcoal); color: var(--gold); border-color: var(--charcoal); }

.svc-body h3{ position: relative; display: inline-block; font-size: 23px; margin-bottom: 10px; color: var(--ink); }
/* Gold underline that streaks in from the left on hover (text stays black). */
.svc-body h3::after{
  content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .65s ease;
}
.svc-card:hover .svc-body h3::after{ transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){ .svc-body h3::after{ transition: none; } }
.svc-body > p{ color: var(--ink-soft); margin: 0 0 18px; font-size: 15.5px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.svc-tags{ list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags li{ border: 1px solid var(--rule-strong); border-radius: 6px; padding: 6px 11px; font-size: 13px; color: var(--ink-soft); }
.svc-tags .svc-more{ border: none; padding: 6px 2px; }

.svc-explore{ font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  font-size: 15.5px; color: #c8a05a; display: inline-flex; align-items: center; gap: 8px; }
.svc-explore span{ transition: transform .18s ease; }
.svc-card:hover .svc-explore span{ transform: translateX(4px); }
/* Make the whole card clickable via the explore link */
.svc-explore::after{ content: ""; position: absolute; inset: 0; }


/* =========================================================
   SERVICE TILES (services page — image cards, hover reveal)
   ========================================================= */
.svc-tiles{
  display: grid; gap: clamp(16px, 1.8vw, 26px);
  grid-template-columns: 1fr;
}
@media (min-width: 620px){ .svc-tiles{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .svc-tiles{ grid-template-columns: repeat(3, 1fr); } }

.svc-tile{
  position: relative; display: block; text-decoration: none; color: #fff;
  border-radius: 16px;
}
/* Solid gold panel BEHIND the tile that slides out bottom-left on hover
   (reference's accent block — sits behind, not over, the image). */
.svc-tile::before{
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: #c8a05a; opacity: 0;
  transform: translate(0, 0); pointer-events: none; z-index: -1;
  transition: opacity .3s ease, transform .3s ease;
}
.svc-tile:hover::before,
.svc-tile:focus-visible::before{ opacity: 1; transform: translate(-22px, 22px); }
.svc-tile:focus-visible{ outline: none; }

.svc-tile-inner{
  position: relative; overflow: hidden; border-radius: inherit;
  aspect-ratio: 5 / 5.4; min-height: 300px;
  box-shadow: 0 14px 34px rgba(20,22,26,.12);
}
.svc-tile picture{ position: absolute; inset: 0; }
.svc-tile picture img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.svc-tile:hover picture img{ transform: scale(1.06); }
/* Dark gradient for text legibility (deepens on hover) */
.svc-tile-inner::after{
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(12,14,17,.94) 6%, rgba(12,14,17,.6) 34%, rgba(12,14,17,.06) 62%, rgba(12,14,17,.12) 100%);
  transition: background .3s ease;
}
.svc-tile:hover .svc-tile-inner::after{
  background: linear-gradient(to top, rgba(12,14,17,.96) 12%, rgba(12,14,17,.72) 46%, rgba(12,14,17,.3) 78%, rgba(12,14,17,.35) 100%);
}

/* Circular arrow button, top-right */
.svc-tile-arrow{
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92); color: var(--charcoal);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.svc-tile-arrow svg{ width: 22px; height: 22px; }
.svc-tile:hover .svc-tile-arrow{ background: var(--gold); color: var(--charcoal); transform: scale(1.08); }

/* Text block, bottom-anchored */
.svc-tile-text{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(20px, 2.4vw, 28px);
}
.svc-kicker{
  display: block; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em; font-size: 12.5px;
  color: var(--gold-soft); margin-bottom: 6px;
}
.svc-tile-text h3{
  font-family: var(--display); font-weight: 700;
  font-size: clamp(21px, 2.3vw, 27px); line-height: 1.1; color: #fff; margin: 0;
}
.svc-tile-desc{
  color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.55;
  margin: 10px 0 0;
}
/* On hover-capable devices, hide the description until hover/focus. */
@media (hover: hover){
  .svc-tile-desc{
    max-height: 0; opacity: 0; margin-top: 0;
    overflow: hidden; transform: translateY(6px);
    transition: max-height .35s ease, opacity .3s ease, transform .3s ease, margin-top .35s ease;
  }
  .svc-tile:hover .svc-tile-desc,
  .svc-tile:focus-within .svc-tile-desc{
    max-height: 220px; opacity: 1; margin-top: 10px; transform: none;
  }
}
@media (prefers-reduced-motion: reduce){
  .svc-tile::before, .svc-tile picture img, .svc-tile-arrow,
  .svc-tile-inner::after, .svc-tile-desc{ transition: none; }
  .svc-tile:hover .svc-tile-arrow{ transform: none; }
}


/* =========================================================
   ABOUT (Who We Are + counters)
   ========================================================= */
.about{ background: var(--charcoal); color: var(--ink-invert); padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 6vw, 64px); }
.about-inner{ display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px){ .about-inner{ grid-template-columns: 1fr 1fr; } }
.about-copy h2{ color: #fff; font-size: clamp(30px, 4.4vw, 46px); }
.accent-rule{ display: block; width: 74px; height: 2px; background: var(--gold); margin: 16px 0 24px; }
.about-copy p:not(.eyebrow){ color: var(--ink-invert-soft); font-size: 17px; margin: 0 0 18px; max-width: 54ch; }
.about-copy .btn{ margin-top: 12px; }

.about-media{ position: relative; }
.about-media img{ width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 32% 22%; border-radius: 10px; }
/* Silver shield badge (blank PNG shield with text overlaid) */
.about-badge{
  position: absolute; left: -18px; bottom: -22px; isolation: isolate;
  width: clamp(108px, 10.8vw, 140px); aspect-ratio: 400 / 480;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 32px 12px 25px; color: var(--charcoal);
  filter: drop-shadow(0 10px 18px rgba(20, 22, 26, .4));
}
.shield-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: -1; }
.about-badge-title{ display: block; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(12.5px, 1.3vw, 15.5px); line-height: 1.1; text-shadow: 0 1px 0 rgba(255,255,255,.7); }
.about-badge-sub{ display: block; font-size: clamp(9px, .82vw, 10.5px); color: rgba(20, 22, 26, .82); margin-top: 7px; line-height: 1.3; text-shadow: 0 1px 0 rgba(255,255,255,.6); }

.about-stats{
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 40px);
  margin-top: clamp(40px, 6vw, 72px); padding-top: clamp(32px, 4vw, 48px);
  text-align: center;
}
/* Animated divider: faint base line with a gold highlight that sweeps across,
   mirroring the serving-card border glow. */
.about-stats::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg,
    rgba(255,255,255,.08) 0%,
    rgba(255,255,255,.08) 64%,
    rgba(200,160,90,.20) 76%,
    rgba(250,220,158,.45) 82%,
    rgba(255,246,224,.55) 84%,
    rgba(250,220,158,.45) 86%,
    rgba(200,160,90,.20) 92%,
    rgba(255,255,255,.08) 100%);
  background-size: 200% 100%; background-repeat: repeat;
  animation: about-line 11s linear infinite;
  pointer-events: none;
}
@keyframes about-line{ from{ background-position: 0 0; } to{ background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce){
  .about-stats::before{ animation: none; background: var(--rule-dark); }
}
.stat-num{ display: block; font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.5vw, 64px); color: #fff; line-height: 1; }
.stat-label{ display: block; margin-top: 8px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: 14px; color: var(--gold-soft); }

/* Light-background variant of the about/story block (used on the About page). */
.about-light{ background: var(--bg); color: var(--ink); }
.about-light .about-copy h2{ color: var(--ink); }
.about-light .about-copy p:not(.eyebrow){ color: var(--ink-soft); }
.about-light .stat-num{ color: var(--ink); }
.about-light .stat-label{ color: #c8a05a; }
/* Recolor the animated divider line for a light background (dark base + gold sweep). */
.about-light .about-stats::before{
  background-image: linear-gradient(90deg,
    rgba(20,22,26,.10) 0%,
    rgba(20,22,26,.10) 64%,
    rgba(200,160,90,.30) 76%,
    rgba(200,160,90,.6) 82%,
    rgba(216,170,90,.72) 84%,
    rgba(200,160,90,.6) 86%,
    rgba(20,22,26,.10) 92%,
    rgba(20,22,26,.10) 100%);
}
@media (prefers-reduced-motion: reduce){
  .about-light .about-stats::before{ background: var(--rule); }
}

/* Story variant (About page): copy + single large image + pull quote. */
.about-story .about-inner{ align-items: center; }
@media (min-width: 900px){
  .about-story .about-inner{ grid-template-columns: 1.02fr .98fr; align-items: stretch; }
}
.about-story .about-copy h2{ margin-bottom: clamp(18px, 2.2vw, 26px); }
.about-story .about-copy p.about-lead{ font-size: 18px; margin-bottom: 20px; }
.about-story .about-copy p.about-emphasis{
  font-weight: 700; font-style: italic; color: var(--ink);
  font-size: clamp(18px, 2.1vw, 21px); line-height: 1.5; margin-bottom: 22px;
}
.about-story .about-copy .about-quote{
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding: 2px 0 2px clamp(20px, 2vw, 26px);
  border-left: 4px solid var(--gold);
}
.about-story .about-copy .about-quote p{
  font-family: var(--display); font-weight: 600; font-style: italic; color: var(--ink);
  font-size: clamp(17px, 1.9vw, 21px); line-height: 1.3; margin: 0; max-width: none;
}
.about-story .about-copy .btn{ margin-top: clamp(26px, 3vw, 34px); }

.about-media-single{
  position: relative; margin: 0; height: 100%; min-height: 360px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 48px rgba(20, 22, 26, .22);
}
.about-media-single img{ width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
@media (max-width: 899px){
  .about-media-single{ aspect-ratio: 4 / 3; height: auto; min-height: 0; }
}


/* =========================================================
   CORE VALUES (About page — "What We Stand For")
   ========================================================= */
.values{ background: var(--surface); }
.values-head{ text-align: center; margin-left: auto; margin-right: auto; }
.values-grid{
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(16px, 1.8vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.value-card{
  display: flex; flex-direction: column;
  padding: clamp(24px, 2.4vw, 32px) clamp(20px, 2vw, 26px) clamp(28px, 3vw, 36px);
  border-radius: 18px; border: 1px solid var(--rule);
  background: linear-gradient(155deg, #ffffff 0%, #faf6ee 54%, #f4ecd9 100%);
  box-shadow: 0 12px 30px rgba(20,22,26,.07);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.value-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 44px rgba(20,22,26,.13); background: #ffffff; }
.value-icon{
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal); color: var(--gold);
  box-shadow: 0 8px 18px rgba(20,22,26,.18);
  margin-bottom: clamp(22px, 2.6vw, 30px);
}
.value-icon svg{ width: 26px; height: 26px; }
.value-card h3{ font-size: 21px; color: var(--ink); margin-bottom: 10px; line-height: 1.15; }
.value-card p{ color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin: 0; }


/* =========================================================
   MATERIALS (manufacturer logo band — dark)
   ========================================================= */
.materials{ background: var(--charcoal); color: var(--ink-invert); overflow: hidden; }
.materials-head{ text-align: center; max-width: none; margin-left: auto; margin-right: auto; }
.materials .section-sub{ color: var(--ink-invert-soft); }

/* Continuous horizontal marquee of brand names */
.mat-marquee{
  margin-top: clamp(34px, 5vw, 58px);
  overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mat-track{
  display: flex; width: max-content;
  animation: mat-scroll 45s linear infinite;
}
.mat-marquee:hover .mat-track{ animation-play-state: paused; }
.mat-set{
  display: flex; align-items: center; list-style: none; margin: 0; padding: 0;
}
.mat-set li{
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; font-size: clamp(20px, 3vw, 34px); line-height: 1;
  color: var(--ink-invert); white-space: nowrap; opacity: .85;
  display: flex; align-items: center;
}
/* Gold dot separator after every item — consistent across the loop seam. */
.mat-set li::after{
  content: "\2022"; color: var(--gold); opacity: .9;
  margin: 0 clamp(26px, 4vw, 52px); font-size: .28em;
}
@keyframes mat-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .mat-track{ animation: none; justify-content: center; flex-wrap: wrap; width: 100%; }
  .mat-set:last-child{ display: none; }
  .mat-set{ flex-wrap: wrap; justify-content: center; gap: 0 12px; }
}


/* =========================================================
   SERVING (intro + why-trust card)
   ========================================================= */
/* Outlined frame whose border is "broken" by the title (top) and CTA (bottom).
   The card interior is the same colour as the section; the title and button
   carry that same colour so they mask the border line behind them. */
.serving{ background: var(--surface); padding: clamp(64px, 9vw, 116px) 0; }
.serving-card{
  position: relative; z-index: 0; max-width: 1000px; margin: clamp(28px, 4vw, 48px) auto 0;
  background: transparent; border-radius: 28px;
  padding: clamp(40px, 4.5vw, 46px) clamp(26px, 5vw, 72px) clamp(62px, 7vw, 88px);
}
/* Animated outline: a gold highlight that slowly sweeps around the border. */
@property --serving-angle{ syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.serving-card::before{
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--serving-angle),
    rgba(20,22,26,.24) 0deg,
    rgba(20,22,26,.24) 235deg,
    rgba(200,160,90,.45) 295deg,
    var(--gold-soft) 330deg,
    #fff6e0 348deg,
    var(--gold-soft) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: serving-border 8s linear infinite;
}
@keyframes serving-border{ to{ --serving-angle: 360deg; } }
@media (prefers-reduced-motion: reduce){ .serving-card::before{ animation: none; } }
.serving-title{
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  margin: 0; width: max-content; max-width: 90%;
  background: var(--surface); padding: 4px clamp(16px, 3vw, 30px);
  text-align: center; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.14; color: var(--ink);
}
.accent-rule-center{ width: 102px; height: 3px; border-radius: 2px; margin: clamp(14px, 2vw, 20px) auto clamp(26px, 3vw, 34px); }
.serving-lead{ margin: 0 0 clamp(26px, 3.4vw, 36px); color: var(--ink-soft); font-size: clamp(16px, 1.7vw, 18px); line-height: 1.7; }
.serving-lead a{ color: var(--gold-ink); font-weight: 600; }
.serving-subhead{ font-weight: 500; text-align: center; font-size: clamp(18px, 2.1vw, 23px); color: var(--ink); margin: 0; }
.serving-list{ margin: 0; padding-left: 22px; display: grid; gap: 12px; }
.serving-list li{ color: var(--ink-soft); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.5; }
.serving-list li::marker{ color: var(--gold); }
.serving-list a{ color: var(--gold-ink); font-weight: 600; }
/* Service-area cities in 3 columns */
.serving-areas{ grid-template-columns: repeat(3, 1fr); column-gap: clamp(16px, 3vw, 36px); list-style-position: inside; padding-left: 0; text-align: center; }
@media (max-width: 680px){ .serving-areas{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px){ .serving-areas{ grid-template-columns: 1fr; } }
.serving-cta{
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  border-radius: 999px; white-space: nowrap; box-shadow: 0 12px 26px rgba(20,22,26,.20);
}
/* Keep the straddle offset on hover so the lift doesn't reset the centering. */
.serving-cta:hover{ transform: translate(-50%, calc(50% - 2px)); }


/* =========================================================
   WHY US
   ========================================================= */
.why{ background: var(--charcoal); color: var(--ink-invert); }
.why-inner{ display: grid; gap: clamp(36px, 6vw, 72px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px){ .why-inner{ grid-template-columns: 1fr 1fr; } }
.why-copy h2{ color: #fff; margin-bottom: 18px; }
.why-copy p{ color: var(--ink-invert-soft); font-size: 17px; margin: 0 0 28px; }
.why-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.why-list li{ display: flex; gap: 16px; align-items: flex-start; }
.why-check{
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.why-list strong{ display: block; font-family: var(--display); font-size: 19px; color: #fff; letter-spacing: .02em; }
.why-list p{ margin: 4px 0 0; color: var(--ink-invert-soft); font-size: 16px; }


/* =========================================================
   GALLERY (sliding mosaic)
   ========================================================= */
.gallery{ background: var(--bg); overflow: hidden; }
.gallery-head{ text-align: center; margin-left: auto; margin-right: auto; }

.gallery-slider{ position: relative; }
.gallery-actions{ text-align: center; margin-top: clamp(28px, 4vw, 46px); }
/* Two-row mosaic that flows into horizontal columns and scrolls sideways.
   `.tall` tiles fill a whole column; pairs of default tiles stack to fill one. */
.gallery-track{
  list-style: none; margin: 0; padding: 0 clamp(20px, 7.5vw, 112px);
  display: grid; grid-auto-flow: column dense;
  grid-template-rows: repeat(2, clamp(148px, 18vw, 224px));
  grid-auto-columns: clamp(190px, 23vw, 290px);
  gap: 14px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; scroll-padding-left: clamp(20px, 7.5vw, 112px);
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar{ display: none; }
.gallery-track .ph{
  position: relative; overflow: hidden; border-radius: 16px;
  background: #e9edf1; scroll-snap-align: start; cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 22, 26, .12);
}
.gallery-track .ph.tall{ grid-row: span 2; }
.gallery-track .ph img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.gallery-track .ph:hover img,
.gallery-track .ph:focus-visible img{ transform: scale(1.06); }
/* Subtle modern overlay sheen on hover */
.gallery-track .ph::after{
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(20,22,26,.28));
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.gallery-track .ph:hover::after,
.gallery-track .ph:focus-visible::after{ opacity: 1; }

.gal-arrow{
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--rule); background: #fff; color: var(--charcoal);
  font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(20, 22, 26, .18); transition: background-color .18s ease, transform .18s ease;
}
.gal-arrow:hover{ background: var(--surface); }
.gal-arrow:active{ transform: translateY(-50%) scale(.94); }
.gal-prev{ left: clamp(8px, 3vw, 40px); }
.gal-next{ right: clamp(8px, 3vw, 40px); }
@media (max-width: 640px){ .gal-arrow{ width: 40px; height: 40px; font-size: 20px; } }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(12, 14, 17, .9); opacity: 0; transition: opacity .2s ease;
}
.lightbox[data-open="true"]{ display: flex; opacity: 1; }
.lb-img{ max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close{
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  border: none; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; transition: background-color .18s ease;
}
.lb-close:hover{ background: rgba(255,255,255,.24); }
body.lb-open{ overflow: hidden; }

/* ---- Breadcrumbs (interior pages) ---- */
.crumbs{ font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.crumbs a{ color: #c8a05a; }
.crumbs span[aria-hidden]{ margin: 0 6px; color: var(--rule-strong); }

.gallery-page{ background: var(--bg); }
.gallery-page-grid{ list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px){ .gallery-page-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .gallery-page-grid{ grid-template-columns: 1fr; } }
.gallery-page-grid .ph{
  margin: 0; position: relative; cursor: pointer;
  border-radius: 16px; overflow: hidden; background: #e9edf1;
  box-shadow: 0 6px 18px rgba(20, 22, 26, .12);
  aspect-ratio: 4 / 3;
}
.gallery-page-grid .ph img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.gallery-page-grid .ph:hover img,
.gallery-page-grid .ph:focus-visible img{ transform: scale(1.05); }
.gallery-page-grid .ph::after{
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(20,22,26,.28));
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.gallery-page-grid .ph:hover::after,
.gallery-page-grid .ph:focus-visible::after{ opacity: 1; }

.gallery-page-cta{ text-align: center; margin-top: clamp(36px, 5vw, 56px); }
.gallery-page-cta p{ font-family: var(--display); font-size: clamp(18px, 2.2vw, 24px); color: var(--ink); margin: 0 0 18px; }

/* ---- Photo hero for interior pages (about, etc.) ---- */
.page-hero{
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(274px, 22vw + 84px, 384px);
  background: var(--charcoal); color: #fff; text-align: center;
  padding: calc(var(--header-h) + clamp(20px, 3vw, 36px)) 0 clamp(36px, 5vw, 56px);
}
.page-hero-media{ position: absolute; inset: 0; z-index: -2; }
.page-hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay{
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(rgba(20,22,26,.74), rgba(20,22,26,.8));
}
.page-hero h1{ font-size: clamp(38px, 6vw, 74px); color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.page-hero .accent-rule-center{ margin-left: auto; margin-right: auto; }
.page-hero-intro{ max-width: 60ch; margin: 18px auto 0; color: rgba(255,255,255,.9); font-size: 17px; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.crumbs-on-dark{ color: rgba(255,255,255,.7); }
.crumbs-on-dark a{ color: var(--gold-soft); }
.crumbs-on-dark span[aria-hidden]{ color: rgba(255,255,255,.45); }

/* ---- Shared interior-page sections + CTA ---- */
.services-page{ background: var(--bg); }
.subpage-cta{ text-align: center; margin-top: clamp(40px, 5vw, 64px); }
.subpage-cta p{ font-family: var(--display); font-size: clamp(18px, 2.2vw, 24px); color: var(--ink); margin: 0 0 18px; }
.subpage-cta-band{ background: var(--surface); }
.subpage-cta-band .subpage-cta{ margin-top: 0; }

/* ---- Legal pages (Privacy Policy): plain heading band, no imagery, readable text column ---- */
.legal-hero{
  background: var(--charcoal); color: #fff; text-align: center;
  padding: calc(var(--header-h) + clamp(28px, 4vw, 44px)) 0 clamp(32px, 4vw, 48px);
}
.legal-hero h1{ font-size: clamp(32px, 4.5vw, 52px); }
.legal-hero p{ margin: 10px 0 0; color: var(--ink-invert-soft); font-size: 15px; }
.legal-content{ background: var(--bg); padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 88px); }
.legal-content .wrap{ max-width: 760px; width: 85%; }
.legal-content h2{ font-size: clamp(20px, 2.4vw, 25px); color: var(--ink); margin: 2.2em 0 .6em; }
.legal-content h2:first-child{ margin-top: 0; }
.legal-content p{ color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 1em; }
.legal-content ul{ margin: 0 0 1em; padding-left: 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.legal-content li{ margin-bottom: .4em; }
.legal-content a{ color: var(--gold-ink); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover{ color: var(--ink); }
.legal-content strong{ color: var(--ink); }

/* ---- Service details (alternating image/text rows, rule-separated) ---- */
.services-detail{ background: var(--surface); }
.svc-detail-intro{ max-width: 46ch; }
.svc-detail-list{ display: grid; }
.svc-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 6vw, 72px) 0;
}
.svc-detail:first-child{ padding-top: 0; }
.svc-detail:last-child{ padding-bottom: 0; }
.svc-detail + .svc-detail{ border-top: 1px solid var(--rule); }
.svc-detail:nth-child(even) .svc-detail-media{ order: 2; }

.svc-detail-media{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.svc-detail-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.svc-detail-kicker{
  display: block; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; font-size: 13px;
  color: #c8a05a; margin: 0 0 12px;
}
.svc-detail-copy h3{
  font-family: var(--display); font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.08;
  color: var(--ink); margin: 0 0 16px;
}
.svc-detail-copy p{
  color: var(--ink-soft); font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7; margin: 0 0 16px;
}
.svc-detail-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: 14px;
  color: #c8a05a;
}
.svc-detail-link svg{ width: 16px; height: 16px; transition: transform .2s ease; }
.svc-detail-link:hover svg{ transform: translate(3px, -3px); }

@media (max-width: 760px){
  .svc-detail{ grid-template-columns: 1fr; gap: clamp(18px, 5vw, 26px); }
  .svc-detail:nth-child(even) .svc-detail-media{ order: 0; }
}
@media (prefers-reduced-motion: reduce){
  .svc-detail-link svg{ transition: none; }
}

/* ---- Full-bleed image CTA band (interior pages) ---- */
.cta-band{
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; background: var(--charcoal);
  padding: clamp(64px, 10vw, 124px) 0;
}
.cta-band-media{ position: absolute; inset: 0; z-index: -2; }
.cta-band-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-band-overlay{
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(20,22,26,.9) 0%, rgba(26,29,33,.8) 46%, rgba(58,44,22,.72) 100%);
}
.cta-band-inner{ max-width: 760px; }
.cta-band h2{ font-size: clamp(30px, 5vw, 54px); color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.cta-band p{
  margin: clamp(14px, 2vw, 20px) auto 0; max-width: 60ch;
  color: rgba(255,255,255,.92); font-size: clamp(16px, 1.8vw, 19px);
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.cta-band-actions{ display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: clamp(26px, 3.5vw, 38px); }
@media (max-width: 480px){ .cta-band-actions .btn{ width: 100%; } }
.contact-page{ background: var(--bg); }

/* Full-bleed Google Map embed */
.map-embed{ display: block; line-height: 0; }
.map-embed iframe{ width: 100%; height: clamp(320px, 40vw, 460px); border: 0; display: block; }


/* =========================================================
   CONTACT
   ========================================================= */
.contact{ background: var(--surface); }
.contact-inner{ display: grid; gap: clamp(32px, 5vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px){ .contact-inner{ grid-template-columns: 1fr 1fr; } }

.contact-list{ list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 20px; }
.contact-list li{ display: flex; flex-direction: column; gap: 2px; }
.contact-label{
  font-family: var(--display); text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; color: #c8a05a;
}
.contact-phone{ font-family: var(--display); font-size: clamp(26px, 3.4vw, 36px); color: var(--ink); }
.contact-phone:hover{ color: var(--gold-ink); }

.form-card{ background: var(--bg); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(24px, 3.4vw, 36px); }
.qf-form{ display: block; width: 100%; min-height: 553px; border: none; border-radius: 3px; }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-family: var(--display); font-weight: 500; letter-spacing: .03em; font-size: 14px; text-transform: uppercase; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea{
  width: 100%; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--rule-strong); border-radius: 8px;
  padding: 12px 14px;
}
.field textarea{ resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(250,220,158,.25); }
.form-note{ margin: 14px 0 0; font-size: 13px; color: var(--ink-soft); text-align: center; }


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: #14171a; color: var(--ink-invert-soft); }
.footer-inner{
  display: grid; gap: clamp(28px, 5vw, 48px);
  grid-template-columns: 1fr; padding: clamp(48px, 7vw, 72px) 0 clamp(28px, 3vw, 36px);
}
@media (min-width: 720px){ .footer-inner{ grid-template-columns: 2fr 1fr 1fr; } }
.brand-footer{ margin-bottom: 14px; }
.footer-tag{ max-width: 40ch; margin: 0 0 16px; font-size: 15px; }
.footer-social{ display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--ink-invert-soft); }
.footer-social:hover{ background: var(--gold-soft); color: #14171a; }
.footer-col h3{ font-size: 16px; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.footer-col a, .footer-col p{ display: block; margin: 0 0 10px; color: var(--ink-invert-soft); font-size: 15px; }
.footer-col a:hover{ color: var(--gold-soft); }

.footer-bottom{
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  padding: 20px 0 32px; border-top: 1px solid var(--rule-dark);
  font-size: 13px;
}
.footer-bottom p{ margin: 0; }
.footer-bottom a{ color: var(--ink-invert-soft); }
.footer-bottom a:hover{ color: var(--gold-soft); }
.footer-agency{ display: inline-flex; align-items: center; line-height: 0; }
.footer-agency img{ display: block; height: 22px; width: auto; opacity: .8; transition: opacity .2s ease; }
.footer-agency:hover img{ opacity: 1; }


/* =========================================================
   MOTION PREFERENCES
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
}

