/* =========================================
   Lake Ozarks Remodeling Co — premium site CSS
   ========================================= */

:root {
  --navy-900: #08121c;
  --navy-800: #0c1f2e;
  --navy-700: #142d40;
  --navy-600: #1c3d57;
  --gold-500: #c8a464;
  --gold-400: #d8b87a;
  --gold-300: #e6cd9d;
  --cream-50: #fbf8f2;
  --cream-100: #f4ede0;
  --stone-200: #e7e1d4;
  --stone-300: #cbc3b3;
  --stone-400: #8a8270;
  --stone-700: #3a3a36;
  --ink: #14181d;
  --muted: #5b6470;
  --line: rgba(20,40,60,.10);
  --line-dark: rgba(255,255,255,.12);
  --shadow-lg: 0 20px 60px -20px rgba(8,18,28,.4);
  --shadow-md: 0 10px 30px -10px rgba(8,18,28,.25);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1280px;
  --container-pad: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: #fff; padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--navy-900);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy-700); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section.dark { background: var(--navy-900); color: #d4dde6; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark p { color: #aebbc8; }

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,18,28,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.topbar {
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
  color: var(--gold-300);
}
.topbar-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 8px var(--container-pad);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.topbar-tag { letter-spacing: 0.18em; text-transform: uppercase; opacity: .8; font-size: 11px; }
.topbar-links { display: flex; gap: 22px; }
.topbar-links a { color: var(--gold-300); }
.topbar-links a:hover { color: #fff; }
@media (max-width: 640px) { .topbar-tag { display:none; } }

.nav {
  max-width: var(--max); margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  background: var(--gold-500); color: var(--navy-900);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.25rem;
  border-radius: 4px; letter-spacing: .02em;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-text strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.nav-brand-text em { font-style: normal; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-300); }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  color: #d4dde6; font-size: 15px; font-weight: 500;
}
.nav-links a { color: #d4dde6; padding: 8px 0; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.nav-links > a:hover { color: #fff; border-bottom-color: var(--gold-500); }
.nav-phone { color: var(--gold-300) !important; font-weight: 600; }
.nav-cta {
  background: var(--gold-500); color: var(--navy-900) !important;
  padding: 11px 20px !important; border-radius: 2px;
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: 13px;
  border-bottom: none !important;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold-400); transform: translateY(-1px); border-bottom: none !important; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  min-width: 240px;
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  padding: 8px;
  display: none;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px;
  color: #d4dde6; font-size: 14px;
  border-bottom: none; border-radius: 3px;
}
.nav-dropdown-menu a:hover { background: var(--navy-700); color: #fff; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--line-dark);
  border-radius: 3px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--navy-800); padding: 16px var(--container-pad);
    gap: 6px;
    border-top: 1px solid var(--line-dark);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
  .nav-cta { text-align: center; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; background: transparent; }
}

/* ============== HERO ============== */
.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media (max-width: 900px) { .parallax { background-attachment: scroll; } }

.hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.hero-service { min-height: 78vh; }
.hero-inner {
  max-width: 980px; padding: clamp(80px, 12vh, 140px) var(--container-pad) clamp(60px, 8vh, 100px);
}
.hero-kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-300); padding: 8px 14px;
  border: 1px solid rgba(216,184,122,.45);
  margin-bottom: 28px;
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero-accent {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: #cbd5e0; max-width: 760px; margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-300);
}
.hero-trust span { position: relative; padding: 0 0; }
.hero-trust span:not(:last-child)::after {
  content: ""; position: absolute; right: -16px; top: 50%; width: 4px; height: 4px;
  background: var(--gold-500); border-radius: 50%; transform: translateY(-50%);
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(216,184,122,.65);
  writing-mode: vertical-rl;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; font-weight: 600; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--gold-300); color: var(--gold-300); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* ============== SECTION HEAD ============== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #aebbc8; }
.section-kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 16px;
}
.section-kicker.gold { color: var(--gold-300); }
.section-cta { text-align: center; margin-top: 48px; }

/* ============== VALUE PROP ============== */
.value-prop { background: linear-gradient(180deg, var(--cream-50) 0%, #fff 100%); text-align: center; }
.vp-eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 12px; }
.vp-title { margin-bottom: 16px; }
.vp-lead { max-width: 720px; margin: 0 auto 56px; font-size: 1.1rem; color: var(--muted); }
.vp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}
.vp-card {
  background: #fff; border: 1px solid var(--line); padding: 36px 28px;
  border-radius: 4px; transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.vp-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 60px; background: var(--gold-500);
}
.vp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vp-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 500;
  color: var(--gold-500); line-height: 1; margin-bottom: 18px;
}
.vp-card h3 { color: var(--navy-900); margin-bottom: 10px; }
.vp-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============== SERVICES GRID ============== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  min-height: 380px;
  background-size: cover; background-position: center;
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card-body { padding: 28px 24px; width: 100%; }
.service-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.4rem; }
.service-card p { color: #cbd5e0; font-size: 0.92rem; margin-bottom: 12px; }
.service-card-link {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300);
  font-weight: 600;
}

/* ============== PROCESS ============== */
.process { padding: clamp(80px, 11vw, 160px) 0; color: #fff; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px; margin: 0 auto;
}
.process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216,184,122,.18);
  padding: 36px 28px;
  text-align: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.process-card:hover { background: rgba(216,184,122,.10); border-color: var(--gold-500); transform: translateY(-4px); }
.process-num {
  font-family: var(--serif); font-size: 2.6rem; color: var(--gold-300); margin-bottom: 16px;
}
.process-card h3 { color: #fff; }
.process-card p { color: #aebbc8; font-size: 0.95rem; margin: 0; }

/* ============== PROJECTS ============== */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.project-card {
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; transition: transform .35s, box-shadow .35s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-image {
  height: 280px; background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.project-card:hover .project-image { transform: scale(1.04); }
.project-body { padding: 28px; }
.project-tag {
  display: inline-block; padding: 4px 10px; background: var(--cream-100);
  color: var(--navy-700); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 12px;
}
.project-card h3 { color: var(--navy-900); margin-bottom: 8px; }
.project-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============== TRUST ============== */
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; gap: 48px; } }
.trust-text h2 { color: #fff; }
.trust-list { list-style: none; padding: 0; margin: 28px 0 36px; }
.trust-list li {
  position: relative; padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line-dark);
  color: #aebbc8;
}
.trust-list li::before {
  content: "✦"; position: absolute; left: 0; top: 14px; color: var(--gold-500);
}
.trust-list strong { color: #fff; font-weight: 600; }
.trust-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.trust-stats div {
  display: flex; flex-direction: column; gap: 4px;
}
.trust-stats strong {
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold-300); line-height: 1;
}
.trust-stats span {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #8a99a8;
}
.trust-image {
  height: 520px; background-size: cover; background-position: center;
  border-radius: 4px;
}

/* ============== REVIEWS ============== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff; border: 1px solid var(--line); padding: 32px 28px;
  border-radius: 4px;
  border-top: 3px solid var(--gold-500);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold-500); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 0.1em; }
.review-card p {
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.55; color: var(--stone-700);
  font-style: italic; margin: 0 0 20px;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-meta strong { color: var(--navy-900); font-family: var(--sans); font-size: 0.95rem; }
.review-meta span { color: var(--muted); font-size: 0.85rem; }

/* ============== AREA ============== */
.area-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.area-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216,184,122,.25);
  color: #d4dde6;
  font-size: 14px;
  border-radius: 50px;
  transition: all .25s;
}
.area-pill:hover {
  background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500);
}
.area-pin { font-size: 12px; opacity: .7; }

/* ============== FAQ ============== */
.faq-inner { max-width: 880px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 0; overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--gold-500); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--serif); font-size: 1.25rem; color: var(--navy-900);
  font-weight: 600;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold-500); font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 28px 24px;
  margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.65;
}

/* ============== CONTACT ============== */
.contact { background: linear-gradient(180deg, #fff 0%, var(--cream-50) 100%); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.contact-block { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-call { font-family: var(--serif); font-size: 2rem; color: var(--gold-500); font-weight: 600; }
.contact-call:hover { color: var(--navy-900); }
.contact-block span { color: var(--stone-700); font-size: 0.95rem; }
.contact-bullets { list-style: none; padding: 0; margin: 0; }
.contact-bullets li { padding: 6px 0; color: var(--stone-700); font-size: 0.95rem; }
.contact-form {
  background: #fff; padding: 12px;
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md);
}

/* ============== FINAL CTA ============== */
.final-cta {
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center; color: #fff;
}
.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.6rem); margin-bottom: 16px; }
.final-cta p { color: #cbd5e0; max-width: 640px; margin: 0 auto 36px; font-size: 1.1rem; }
.final-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============== SERVICE PAGE: PROBLEM/SOLUTION ============== */
.ps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .ps-grid { grid-template-columns: 1fr; gap: 40px; } }
.ps-image {
  height: 540px; background-size: cover; background-position: center;
  border-radius: 4px;
}
.ps-text h2 { margin-bottom: 18px; }
.ps-text .lede { font-size: 1.15rem; color: var(--muted); margin-bottom: 24px; }
.checks { list-style: none; padding: 0; margin: 0 0 28px; }
.checks li {
  padding: 10px 0 10px 28px; position: relative; color: var(--stone-700); font-size: 0.98rem;
  border-bottom: 1px solid var(--line);
}
.checks li:last-child { border-bottom: none; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 10px; color: var(--gold-500); font-weight: 700;
}

/* ============== VISUALS ============== */
.visuals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .visuals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .visuals-grid { grid-template-columns: 1fr; } }
.visual {
  height: 280px; background-size: cover; background-position: center;
  border-radius: 4px;
  transition: transform .5s;
}
.visual:hover { transform: scale(1.02); }

/* ============== LOCAL CONTEXT ============== */
.local-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .local-grid { grid-template-columns: 1fr; gap: 40px; } }
.local-image { height: 480px; background-size: cover; background-position: center; border-radius: 4px; }

/* ============== RELATED ============== */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }
.related-col h4 { color: var(--navy-900); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-500); display: inline-block; }
.related-col ul { list-style: none; padding: 0; margin: 0; }
.related-col li { padding: 8px 0; }
.related-col li a { color: var(--stone-700); font-size: 0.96rem; transition: color .2s, padding-left .2s; display: inline-block; }
.related-col li a:hover { color: var(--navy-900); padding-left: 4px; }

/* ============== GALLERY ============== */
.gallery-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px;
}
.gallery-pill {
  background: transparent; border: 1px solid var(--line);
  color: var(--stone-700); padding: 10px 18px; font-size: 13px;
  font-weight: 500; cursor: pointer; border-radius: 50px;
  transition: all .2s;
}
.gallery-pill:hover { border-color: var(--gold-500); color: var(--navy-900); }
.gallery-pill.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; height: 320px; overflow: hidden; border-radius: 4px;
  display: block;
}
.gallery-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(8,18,28,0) 50%, rgba(8,18,28,.92) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 8px; }
.gallery-overlay h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; font-family: var(--sans); }
.gallery-cta { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300); }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-900); color: #aebbc8;
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-col h4 { color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: #aebbc8; font-size: 0.92rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-300); }
.footer-brand strong { color: #fff; font-family: var(--serif); font-size: 1.4rem; display: block; margin-bottom: 12px; }
.footer-brand p { color: #aebbc8; font-size: 0.92rem; margin: 0 0 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: var(--gold-300); font-size: 1.05rem; font-weight: 600; }
.footer-contact span { color: #aebbc8; font-size: 0.9rem; line-height: 1.5; }
.footer-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.footer-bottom {
  max-width: var(--max); margin: 56px auto 0;
  padding: 24px var(--container-pad) 0;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; letter-spacing: 0.06em; color: #6f7c8a;
}

/* ============== ANIMATIONS ============== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .parallax { background-attachment: scroll; }
}

/* ============== MODAL FORM ============== */
.form-modal {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  padding: 0;
}
.form-modal .form-modal-inner {
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.form-modal #formFrame {
  flex: 1 1 auto;
  min-height: 600px;
}
@media (max-width: 640px) {
  .form-modal .form-modal-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }
  .form-modal #formFrame {
    height: calc(100vh - 50px) !important;
    min-height: 0;
  }
}

/* ============== CONTACT CTA CARD (replaces embedded iframe) ============== */
.contact-cta-card {
  background: linear-gradient(160deg, #fff 0%, var(--cream-50) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.contact-cta-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.contact-cta-card .section-kicker { margin-bottom: 4px; }
.contact-cta-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.15;
}
.contact-cta-card > p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 12px;
}
.contact-cta-card .btn-lg {
  padding: 18px 26px;
  font-size: 15px;
  width: 100%;
  justify-content: center;
}
.contact-cta-card .contact-cta-fineprint {
  color: var(--stone-400);
  font-size: 0.85rem;
  margin: 8px 0 0;
  text-align: center;
  font-style: italic;
}

/* button.btn — ensure native buttons match anchor .btn styles */
button.btn { font-family: inherit; line-height: 1; }

/* ============== FORMSPREE FORM ============== */
.fs-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 8px 48px -12px rgba(8,18,28,.18), 0 2px 12px rgba(8,18,28,.06);
  border: 1px solid var(--line);
  max-width: 700px;
  width: 100%;
}
.fs-form { display: flex; flex-direction: column; gap: 18px; }
.fs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .fs-row { grid-template-columns: 1fr; } }
.fs-field { display: flex; flex-direction: column; gap: 7px; }
.fs-field label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy-700);
}
.fs-req { color: var(--gold-500); }
.fs-field input,
.fs-field select,
.fs-field textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--stone-200);
  border-radius: 6px;
  background: var(--cream-50);
  color: var(--ink);
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  appearance: auto;
  -webkit-appearance: auto;
}
.fs-field input:focus,
.fs-field select:focus,
.fs-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200,164,100,.18);
  background: #fff;
}
.fs-field input::placeholder,
.fs-field textarea::placeholder { color: var(--stone-300); }
.fs-field textarea { resize: vertical; min-height: 110px; }
.fs-submit {
  background: var(--navy-900);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.fs-submit:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(8,18,28,.35);
}
.fs-submit:active { transform: translateY(0); }
.fs-trust {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
  letter-spacing: 0.04em;
}

/* ============== IMAGE PERFORMANCE ============== */
img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
/* Reserve space for parallax / background-image sections to prevent CLS */
.hero { min-height: 92vh; background-color: var(--navy-800); }
.hero-service { min-height: 78vh; }
.final-cta { min-height: 320px; background-color: var(--navy-800); }
.process { min-height: 340px; background-color: var(--navy-800); }
.trust-image { background-color: var(--stone-200); }
.local-image { background-color: var(--stone-200); }
.ps-image { background-color: var(--stone-200); }
.project-image { background-color: var(--stone-200); }
.service-card { background-color: var(--navy-700); }
.visual { background-color: var(--stone-200); }
.gallery-img { background-color: var(--stone-200); }

/* Prevent FOUC on sections with background images */
.parallax { will-change: transform; }
