/* ==========================================================================
   Wasatch Ridge Remodeling & Kitchen , Design System
   Tone: Bold , high-contrast, oversized type, direct declarative copy, industrial
   Signature: the diagonal "cut line" , a chop-saw stroke through every section
              break, plus oversized numeral stats. Precision remodeling, made visible.
   ========================================================================== */

:root {
  /* --- Color: burnt orange / navy / cream, pushed to Bold contrast --- */
  --navy: #14213B;
  --navy-deep: #0D162A;
  --orange: #C4501E;
  --orange-deep: #9E3E16;
  --cream: #F7F7F5;
  --cream-dim: #E6E6E2;
  --ink: #1B1A17;
  --white: #FFFFFF;

  /* --- Type --- */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --step-hero: clamp(1.9rem, 4.5vw, 4.2rem);
  --step-h1: clamp(2.2rem, 4.5vw, 3.6rem);
  --step-h2: clamp(2rem, 4vw, 3.2rem);
  --step-h3: clamp(1.3rem, 2.2vw, 1.8rem);
  --step-body: 1.05rem;
  --step-small: 0.85rem;

  /* --- Layout --- */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 2px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-small);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
}

/* ---------- The signature cut line ---------- */
.cut-line {
  position: relative;
  height: 46px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
}
.cut-line.flip { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 45%); }
.cut-line.navy { background: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--navy); }
.btn-dark {
  background: var(--navy);
  color: var(--cream);
}
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--orange);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  gap: 2rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.brand img { height: 84px; width: auto; display: block; }
.brand span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav > ul { display: flex; gap: 1.75rem; align-items: center; }
.main-nav > ul > li { position: relative; }
.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-link:hover { color: var(--orange); }
button.nav-link { -webkit-appearance: none; appearance: none; }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--white);
  border-top: 4px solid var(--orange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  padding: 1.5rem;
  display: none;
  min-width: 320px;
  max-height: 70vh;
  overflow-y: auto;
}
.dropdown-panel.open { display: grid; }
.dropdown-panel.two-col { grid-template-columns: 1fr 1fr; gap: 0.4rem 2rem; }
.dropdown-panel a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 1px solid var(--cream-dim);
}
.dropdown-panel a:hover { color: var(--orange); }
.dropdown-group-title {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-top: 0.6rem;
}
.dropdown-group-title:first-child { margin-top: 0; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
}

/* ==========================================================================
   Hero , split layout: bold text left, full-height photo right
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}
.hero-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}
.hero-copy { max-width: 640px; text-align: left; }
.hero-copy .eyebrow { color: var(--orange); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0.75rem 0 1.5rem;
  max-width: 12ch;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 42ch;
  color: var(--cream-dim);
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo-col {
  position: relative;
  overflow: hidden;
}
.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo-col { aspect-ratio: 4/3; order: -1; }
}

/* ==========================================================================
   Trust strip , oversized numerals, the "structure is information" device
   ========================================================================== */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dim);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
}
.trust-item { text-align: left; border-left: 3px solid var(--orange); padding-left: 1.1rem; }
.trust-number {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--navy);
  display: block;
}
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  opacity: 0.75;
}

/* ==========================================================================
   Section base + asymmetric two-up
   ========================================================================== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h2 { color: var(--white); }
.section-head { max-width: 46ch; margin-bottom: 3rem; }
.section-head h2 { margin-top: 0.6rem; }

.split-asym {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-asym.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-asym.reverse .split-media { order: 2; }

.split-media {
  position: relative;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 94%);
}
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }

/* ---------- Symmetric (non-asymmetric) split, for service page heroes ---------- */
.split-even {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media-even {
  border-left: 6px solid var(--orange);
}
.split-media-even img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-grid img { width: 100%; aspect-ratio: 4/3.3; object-fit: cover; border-radius: 2px; }
.gallery-note {
  grid-column: 1 / -1;
  background: var(--cream-dim);
  border-left: 4px solid var(--orange);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  opacity: 0.85;
}
.family-photo-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  align-items: start;
}
.family-photo-grid img { width: 100%; height: auto; display: block; }
@media (max-width: 700px) {
  .family-photo-grid { grid-template-columns: 1fr; }
}

/* ---------- Services grid (legacy, kept for service/location pages) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-top: 4px solid var(--orange);
  padding: 1.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(20,33,59,0.12); }
.service-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 0.9rem; }
.service-card .card-link { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; color: var(--orange); }

/* ---------- Category cards: photo-led, hover reveal, chip-style service links ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.category-card { display: flex; flex-direction: column; }
.category-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-photo img { transform: scale(1.08); }
.category-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,22,42,0.9) 0%, rgba(13,22,42,0.35) 55%, transparent 100%);
}
.category-photo-overlay .eyebrow { color: var(--orange); display: block; margin-bottom: 0.25rem; }
.category-photo-overlay h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0;
}
.category-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translate(6px, -6px) scale(0.85);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.category-card:hover .category-arrow { transform: translate(0,0) scale(1); opacity: 1; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.chip {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.chip:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(196,80,30,0.3);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.category-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.category-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.category-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.trust-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.trust-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.trust-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.process-list .reveal:nth-child(2) { transition-delay: 0.08s; }
.process-list .reveal:nth-child(3) { transition-delay: 0.16s; }
.process-list .reveal:nth-child(4) { transition-delay: 0.24s; }
.process-list .reveal:nth-child(5) { transition-delay: 0.32s; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.testimonial-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .category-photo img, .category-arrow { transition: none; }
}

/* ---------- Mountain motif (pulled from the logo mark) ---------- */
.footer-mountain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  pointer-events: none;
}
.footer-mountain svg { width: 100%; height: 100%; display: block; }
.footer-mountain path { fill: rgba(247,247,245,0.05); }

.eyebrow-mountain {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.eyebrow-mountain svg { width: 18px; height: 14px; flex-shrink: 0; }
.eyebrow-mountain svg path { fill: var(--orange); }

/* ---------- Owner intro popup ---------- */
.intro-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 320px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(13,22,42,0.28);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  border-top: 4px solid var(--orange);
}
.intro-popup.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.intro-popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.5;
  cursor: pointer;
  padding: 0.2rem;
}
.intro-popup-close:hover { opacity: 1; color: var(--orange); }
.intro-popup-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream-dim);
  margin-bottom: 0.9rem;
}
.intro-popup-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.intro-popup-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}
.intro-popup-cta { width: 100%; justify-content: center; }
@media (max-width: 480px) {
  .intro-popup { left: 1rem; right: 1rem; width: auto; bottom: 1rem; }
}

/* ---------- Case study preview ---------- */
.case-preview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.case-media { clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); }
.case-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.case-flag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  padding: 2rem;
  max-width: 62ch;
}
.testimonial-card p { font-size: 1.15rem; font-family: var(--font-display); line-height: 1.4; }
.testimonial-name { margin-top: 1.2rem; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--orange); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-grid .testimonial-card {
  max-width: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.testimonial-grid .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20,33,59,0.1);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.testimonial-grid .testimonial-card p {
  font-size: 1.02rem;
  flex-grow: 1;
}
.testimonial-meta {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.testimonial-source {
  font-size: 0.78rem;
  opacity: 0.6;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process-list { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 980px) {
  .process-list { grid-template-columns: repeat(5, 1fr); }
}
.process-item { position: relative; padding-top: 1.5rem; border-top: 3px solid var(--orange); }
.process-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--orange); display: block; margin-bottom: 0.4rem; }
.process-item h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-item p { font-size: 0.95rem; opacity: 0.85; }

/* ---------- FAQ (details/summary) ---------- */
.faq-list { max-width: 74ch; }
.faq-item {
  border-bottom: 1px solid var(--cream-dim);
  padding: 1.1rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 1.4rem; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 0.75rem; opacity: 0.85; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--white);
}
.cta-band h2 { color: var(--white); }
.cta-form-placeholder {
  background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.5);
  padding: 2.5rem;
  text-align: center;
  font-weight: 700;
}

/* ---------- Contact form (mailto-based, no backend) ---------- */
.contact-form {
  background: var(--white);
  padding: 2.25rem;
  text-align: left;
  border-radius: var(--radius);
  color: var(--ink);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form .form-field { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--cream-dim);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-embed-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 720px;
}
.form-embed-wrap iframe { width: 100%; height: 720px; border: none; display: block; }
.contact-form .form-note {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.contact-form button[type="submit"] {
  width: 100%;
}
@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ---------- Community / sponsorship badge ---------- */
.community-strip {
  background: var(--cream-dim);
  padding: 1.5rem 0;
  text-align: left;
  font-size: 0.95rem;
}
.community-strip a { color: var(--orange); font-weight: 700; text-decoration: underline; }

/* ---------- Credentials strip ---------- */
.credentials-strip {
  background: var(--navy-deep);
  padding: 1.5rem 0;
}
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(247,247,245,0.06);
  border: 1px solid rgba(247,247,245,0.18);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.credential-badge .dot { color: var(--orange); font-size: 1.1rem; line-height: 0; }

/* ---------- Sister brand strip ---------- */
.sister-brand-strip {
  background: var(--cream);
  padding: 2.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--cream-dim);
}
.sister-brand-strip p { max-width: 60ch; margin: 0.5rem 0 0; opacity: 0.85; }
.sister-brand-strip a.brand-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: var(--cream-dim); padding-top: 4rem; position: relative; overflow: hidden; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,247,245,0.15);
  position: relative;
  z-index: 1;
}
.footer-brand h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-brand .logo-badge {
  background: var(--cream);
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-brand img { height: 78px; width: auto; margin: 0; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--orange); }
.footer-nap p { font-size: 0.9rem; margin-bottom: 0.4rem; opacity: 0.85; }
.footer-map { margin-top: 0.75rem; border: 1px solid rgba(247,247,245,0.2); }
.footer-map iframe { width: 100%; height: 220px; border: 0; display: block; }
.map-placeholder {
  background: rgba(247,247,245,0.08);
  border: 2px dashed rgba(247,247,245,0.3);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.75rem 0;
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer-bottom ul { display: flex; gap: 1.5rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: var(--cream); flex-direction: column; align-items: stretch; padding: 5.5rem 1.5rem 2rem; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; box-shadow: -10px 0 30px rgba(0,0,0,0.15); }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid rgba(20,33,59,0.08); }
  .nav-link { padding: 0.9rem 0; justify-content: space-between; }
  .dropdown-panel { position: static; box-shadow: none; border-top: none; padding: 0 0 0.5rem 0.5rem; min-width: 0; }
  .dropdown-panel.two-col { grid-template-columns: 1fr; }
  .mobile-toggle { display: block; }

  .split-asym, .split-asym.reverse, .case-preview { grid-template-columns: 1fr; }
  .split-asym.reverse .split-media { order: 0; }
  .split-even { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand img { height: 68px; }
  .footer-mountain { height: 70px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .nav-row { padding: 0.6rem var(--gutter); }
  .brand img { height: 52px; }
  .hero h1 { max-width: none; }
}
