/* ==========================================================================
   Ashworth Building Co. — demo trade site for WinNorth Digital
   Palette: warm charcoal + cream + brass. Type: Fraunces + Inter.
   ========================================================================== */

/* ---- Self-hosted fonts (no third-party requests — GDPR-clean, faster) ---- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/fraunces-var.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/fraunces-italic-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  --ink: #17130f;
  --ink-2: #221b15;
  --ink-3: #33291f;
  --cream: #f6f2ea;
  --cream-2: #efe8dc;
  --paper: #fbf9f4;
  --brass: #a9762e;
  --brass-2: #c6963f;
  --stone: #7c7062;
  --muted: #8b8073;
  --line: #e4dccd;
  --line-dark: rgba(255, 255, 255, 0.14);
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --max: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -20px rgba(23, 19, 15, 0.35);
  --shadow-soft: 0 10px 30px -18px rgba(23, 19, 15, 0.3);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(70px, 9vw, 130px) 0; }
.section.alt { background: var(--cream); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}
.eyebrow-light { color: var(--brass-2); }

.section-head { max-width: 680px; margin: 0 0 56px; }
.section-sub { color: var(--stone); font-size: 1.12rem; margin-top: 4px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brass); color: #fff; box-shadow: 0 10px 24px -12px rgba(169, 118, 46, 0.9); }
.btn-primary:hover { background: var(--ink); box-shadow: 0 14px 30px -12px rgba(23, 19, 15, 0.6); transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brass); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--ink);
  border-bottom: 1.5px solid var(--brass);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease), color 0.25s;
}
.link-arrow svg { transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--brass); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; transition: color 0.35s; }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--radius);
  border: 1.5px solid currentColor; color: var(--brass-2);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; letter-spacing: -0.01em; }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 4px; opacity: 0.85; }

.nav { display: flex; gap: 30px; }
.nav a {
  color: rgba(255, 255, 255, 0.92); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 4px 0; transition: color 0.25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--brass-2); transition: width 0.28s var(--ease);
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 0.95rem; }
.header-phone svg { color: var(--brass-2); }

/* scrolled state */
.site-header.scrolled {
  background: var(--paper);
  box-shadow: 0 4px 24px -12px rgba(23, 19, 15, 0.28);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled .brand,
.site-header.scrolled .nav a,
.site-header.scrolled .header-phone { color: var(--ink); }
.site-header.scrolled .brand-mark { color: var(--brass); }
.site-header.scrolled .nav a { color: var(--ink-2); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 6px; width: 40px;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: #fff; transition: transform 0.3s var(--ease), opacity 0.3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 12, 9, 0.86) 0%, rgba(15, 12, 9, 0.55) 45%, rgba(15, 12, 9, 0.2) 100%),
              linear-gradient(0deg, rgba(15, 12, 9, 0.6), rgba(15, 12, 9, 0) 40%);
}
.hero-content { position: relative; padding-top: 120px; padding-bottom: 90px; max-width: 760px; }
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-2); margin-bottom: 22px;
}
.hero-title { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); }
.hero-title em { color: var(--brass-2); font-weight: 500; }
.hero-lead { font-size: 1.22rem; color: rgba(255, 255, 255, 0.9); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-trust {
  list-style: none; margin: 0; padding: 26px 0 0; display: flex; flex-wrap: wrap; gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-trust li { font-size: 0.95rem; color: rgba(255, 255, 255, 0.82); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: #fff; font-weight: 500; line-height: 1.1; }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.hero-scroll span {
  display: block; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.55); border-radius: 14px; position: relative;
}
.hero-scroll span::after {
  content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 7px; margin-left: -2px;
  background: #fff; border-radius: 2px; animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(14px); } }

/* ---------------- Accreditations ---------------- */
.accreds { background: var(--ink); color: #fff; padding: 26px 0; }
.accreds-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.accreds-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-2); font-weight: 600; }
.accreds-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 40px; margin: 0; padding: 0; }
.accreds-list li { position: relative; font-weight: 500; color: rgba(255, 255, 255, 0.85); font-size: 0.98rem; }
.accreds-list li::before { content: "✦"; color: var(--brass-2); margin-right: 12px; font-size: 0.7rem; vertical-align: middle; }

/* ---------------- Intro ---------------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.intro-badge {
  position: absolute; right: -18px; bottom: -22px; background: var(--brass); color: #fff;
  border-radius: var(--radius-lg); padding: 22px 26px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); max-width: 220px;
}
.intro-badge-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
.intro-badge-txt { font-size: 0.86rem; line-height: 1.3; }
.intro-copy h2 { margin-bottom: 22px; }
.intro-copy > p { color: var(--stone); margin-bottom: 1.1em; }
.intro-stats { display: flex; gap: 40px; margin: 34px 0; flex-wrap: wrap; }
.intro-stats strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); font-weight: 600; line-height: 1; }
.intro-stats span { font-size: 0.9rem; color: var(--muted); }

/* ---------------- Services ---------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.section.alt .service-card { background: #fff; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { aspect-ratio: 16 / 11; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 26px 26px 30px; position: relative; }
.service-body h3 { margin-bottom: 8px; }
.service-body p { color: var(--stone); font-size: 0.98rem; margin: 0; }
.service-tag {
  position: absolute; top: -13px; right: 22px; background: var(--brass); color: #fff;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

/* ---------------- Featured project ---------------- */
.feature { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 560px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-panel { background: var(--ink); color: #fff; display: flex; align-items: center; padding: clamp(40px, 6vw, 90px); }
.feature-panel h2 { color: #fff; }
.feature-panel p { color: rgba(255, 255, 255, 0.78); }
.feature-facts { display: flex; gap: 36px; flex-wrap: wrap; margin: 30px 0 36px; padding: 0; }
.feature-facts div { border-left: 2px solid var(--brass); padding-left: 16px; }
.feature-facts dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 6px; }
.feature-facts dd { margin: 0; font-weight: 600; color: #fff; }

/* ---------------- Portfolio ---------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--stone);
  background: transparent; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 22px;
  cursor: pointer; transition: all 0.25s var(--ease);
}
.filter:hover { border-color: var(--brass); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 18px; }
.tile {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tile.wide { grid-column: span 2; }
.tile.tall { grid-row: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15, 12, 9, 0.78) 0%, rgba(15, 12, 9, 0) 55%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.tile:hover img { transform: scale(1.07); }
.tile:hover::after { opacity: 1; }
.tile figcaption {
  position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff;
  opacity: 0; transform: translateY(10px); transition: all 0.35s var(--ease);
}
.tile:hover figcaption { opacity: 1; transform: translateY(0); }
.tile figcaption span { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.tile figcaption em { font-size: 0.82rem; font-style: normal; color: var(--brass-2); letter-spacing: 0.05em; }
.tile.is-hidden { display: none; }

/* ---------------- Process ---------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.step-num { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--brass); letter-spacing: 0.1em; display: block; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--stone); font-size: 0.98rem; margin: 0; }
.step::before {
  content: ""; position: absolute; top: -8px; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: var(--brass); box-shadow: 0 0 0 4px var(--cream);
}

/* ---------------- Why us ---------------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: start; }
.why-copy { position: sticky; top: 110px; }
.why-copy h2 { margin-bottom: 20px; }
.why-copy > p { color: var(--stone); margin-bottom: 30px; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; }
.why-ico {
  flex-shrink: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brass); color: #fff; font-weight: 700; font-size: 0.95rem;
}
.why-list strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 4px; }
.why-list p { margin: 0; color: var(--stone); font-size: 0.96rem; }

/* ---------------- Reviews ---------------- */
.reviews-score { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.stars { color: var(--brass); letter-spacing: 2px; font-size: 1.05rem; }
.reviews-score span:last-child { color: var(--stone); font-size: 0.98rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-soft); }
.review .stars { display: block; margin-bottom: 16px; }
.review p { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; color: var(--ink-2); font-weight: 400; }
.review footer { margin-top: 22px; }
.review footer strong { display: block; color: var(--ink); }
.review footer span { font-size: 0.86rem; color: var(--muted); }

/* ---------------- FAQ ---------------- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.faq-intro { position: sticky; top: 110px; align-self: start; }
.faq-intro p { color: var(--stone); }
.faq-intro a { color: var(--brass); font-weight: 600; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 22px; font-size: 1.6rem; color: var(--brass);
  transition: transform 0.3s var(--ease); font-family: var(--font-body); font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--stone); padding-bottom: 24px; margin: 0; max-width: 620px; }

/* ---------------- Contact ---------------- */
.contact { background: var(--ink); color: #fff; }
.contact .eyebrow { color: var(--brass-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: rgba(255, 255, 255, 0.75); max-width: 440px; margin-bottom: 36px; }
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.c-ico { flex-shrink: 0; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-dark); color: var(--brass-2); }
.contact-details span { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 3px; }
.contact-details a, .contact-details p { color: #fff; font-weight: 500; margin: 0; }
.contact-details a:hover { color: var(--brass-2); }

.contact-form { background: var(--paper); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(169, 118, 46, 0.14);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { margin-top: 8px; }
.form-status { margin: 14px 0 0; font-weight: 600; font-size: 0.95rem; min-height: 1px; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c0392b; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin: 14px 0 0; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: 70px 0 30px; border-top: 1px solid var(--line-dark); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.brand-footer { color: #fff; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; font-size: 0.94rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-dark); color: #fff; transition: all 0.25s var(--ease); }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 11px; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--brass-2); }
.footer-hours { font-size: 0.92rem; margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 10px; font-size: 0.86rem; }
.footer-credit a { color: var(--brass-2); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(12, 9, 6, 0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { margin: 0; max-width: 1000px; max-height: 86vh; text-align: center; }
.lb-figure img { max-width: 100%; max-height: 78vh; border-radius: var(--radius); object-fit: contain; }
.lb-figure figcaption { color: #fff; margin-top: 16px; font-family: var(--font-display); font-size: 1.15rem; }
.lb-close { position: absolute; top: 24px; right: 30px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: 0.8; transition: opacity 0.2s; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(255, 255, 255, 0.3); color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; transition: all 0.25s var(--ease); }
.lb-nav:hover { background: var(--brass); border-color: var(--brass); }
.lb-close:hover { opacity: 1; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 12px 0; background: var(--paper); box-shadow: 0 2px 20px -14px rgba(0,0,0,.4); }
  .site-header .brand, .site-header .header-phone { color: var(--ink); }
  .site-header .brand-mark { color: var(--brass); }
  .nav {
    position: fixed; inset: 0 0 0 auto; top: 68px; width: min(320px, 82vw); height: calc(100vh - 68px);
    flex-direction: column; gap: 0; background: var(--paper); box-shadow: var(--shadow);
    padding: 20px 28px; transform: translateX(110%); transition: transform 0.35s var(--ease);
  }
  .nav.open { display: flex; transform: translateX(0); }
  .nav a { color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .hero-content { padding-top: 130px; }

  .intro-grid, .why-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-copy, .faq-intro { position: static; }
  .feature { grid-template-columns: 1fr; }
  .feature-media { min-height: 320px; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .tile.wide { grid-column: span 2; }
  .tile.tall { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero { min-height: 92vh; }
  .hero-trust { gap: 20px; }
  .hero-trust strong { font-size: 1.35rem; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .tile.wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .intro-badge { right: 12px; bottom: -18px; padding: 16px 18px; }
  .intro-stats { gap: 24px; }
  .contact-form { padding: 26px 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .accreds-inner { gap: 16px; }
  .btn { width: 100%; }
  .hero-cta .btn { width: auto; flex: 1; }
  .header-actions .btn { width: auto; padding: 10px 16px; font-size: 0.82rem; }
}

@media (max-width: 400px) {
  .header-actions .btn { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
