/* ---------- Foundation ---------- */
:root {
  --forest-950: #302b21;
  --forest-900: #493c2b;
  --forest-800: #65543a;
  --forest-700: #6d7451;
  --sage: #a8ad83;
  --cream: #efe6d3;
  --cream-deep: #dfd0b4;
  --paper: #fbf6eb;
  --ink: #332c22;
  --muted: #756b5d;
  --copper: #b85f36;
  --copper-light: #e09966;
  --line: rgba(23, 35, 31, .14);
  --shadow: 0 24px 70px rgba(63, 48, 29, .15);
  --radius: 24px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open, body.lightbox-open { overflow: hidden; }

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--forest-950);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span { width: 38px; height: 2px; background: var(--copper); }
.eyebrow-light { color: #c9d8d1; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
}

h1 em, h2 em { color: var(--copper); font-weight: 400; }
h2 { margin-bottom: 26px; font-size: clamp(46px, 6vw, 78px); }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 3px;
}

.button-primary { background: var(--copper); color: white; }
.button-primary:hover { background: #a95e2d; }
.button-ghost { border-color: rgba(255,255,255,.55); color: white; }
.button-ghost:hover { background: white; color: var(--forest-950); }

/* ---------- Navigation ---------- */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: var(--forest-950);
  color: white;
}

.site-header.is-scrolled {
  position: fixed;
  height: 76px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  animation: slide-down .35s ease both;
}

@keyframes slide-down { from { transform: translateY(-100%); } }

.navbar { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex-shrink: 0; }

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: #aebdb6; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 34px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.nav-links > a:not(.nav-cta) { position: relative; padding: 28px 0; }
.nav-links > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--copper); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); }
.nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.45); }
.nav-cta:hover { border-color: var(--copper-light); color: var(--copper-light); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 6px 0; background: white; transition: transform .25s, opacity .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding: 180px 0 110px;
  overflow: hidden;
  background: var(--forest-950);
  color: white;
}

.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(270deg, rgba(43,36,25,.92), rgba(43,36,25,.68) 43%, rgba(43,36,25,.08) 78%), linear-gradient(0deg, rgba(43,36,25,.32), transparent 55%); }
.hero::before { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 55%, rgba(255,255,255,.1) 55.15%, transparent 55.3%); content: ""; pointer-events: none; }
.hero-content { display: grid; justify-items: end; text-align: right; position: relative; z-index: 2; }
.hero-content > * { max-width: 650px; }
.hero-eyebrow { margin-bottom: 26px; color: #d6e0dc; flex-direction: row-reverse;}
.hero h1 { max-width: 760px; margin: 0 0 28px; font-size: clamp(56px, 7.5vw, 96px); }
.hero h1 em { color: var(--copper-light); }
.hero-copy { max-width: 650px; margin-bottom: 38px; color: #e1e8e4; font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end;}
.hero-services { display: flex; gap: 0; margin-top: 62px; color: #d2dcd7; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; justify-content: flex-end; }
.hero-services span { display: flex; align-items: center; }
.hero-services span + span::before { width: 4px; height: 4px; margin: 0 16px; border-radius: 50%; background: var(--copper-light); content: ""; }
.scroll-cue { position: absolute; right: 36px; bottom: 35px; z-index: 2; display: grid; justify-items: center; gap: 8px; color: #ced9d4; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 1px; height: 50px; background: linear-gradient(var(--copper-light) 50%, rgba(255,255,255,.3) 50%); }

/* ---------- Trust ---------- */
.trust { background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-block: 20px;}
.trust-card { display: flex; min-height: 142px; border: 0; border-radius: 4px; background: rgba(255,255,255,.36); align-items: center; gap: 22px; padding: 42px; border-right: 1px solid var(--line); }
.trust-card:first-child { border-left: 1px solid var(--line); }
.trust-icon { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; border: 1px solid rgba(200,119,60,.45); color: var(--copper); font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 700; }
.trust-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.2; }
.trust-card p { margin: 6px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Sections ---------- */
.services-intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .75fr 1.65fr; gap: 60px; align-items: start; }
.intro-grid > p { margin-top: 15px; }
.intro-grid > div > p { max-width: 690px; color: var(--muted); font-size: 18px; }

.portfolio { padding-top: 55px; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 6px; color: var(--muted); font-size: 17px; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-card { position: relative; grid-column: span 4; min-height: 320px; padding: 0; overflow: hidden; border: 0; border-radius: 6px; background: var(--forest-900); cursor: zoom-in; text-align: left; }
.gallery-card-wide { grid-column: span 8; grid-row: span 2; min-height: 656px; }
.gallery-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1), opacity .4s; }
.gallery-card::after { position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(6,22,17,.8)); content: ""; }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.045); }
.gallery-label { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 2; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 23px; line-height: 1.2; }
.gallery-label small { display: block; margin-bottom: 7px; color: #d5dfda; font-family: Arial, Helvetica, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery-open { position: absolute; top: 18px; right: 18px; z-index: 2; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.6); color: white; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.gallery-card:hover .gallery-open, .gallery-card:focus-visible .gallery-open { opacity: 1; transform: translateY(0); }

.feature-line { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-line span { position: relative; padding: 20px 12px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px; }
.feature-line span::before { width: 6px; height: 6px; border: 1px solid var(--copper); transform: rotate(45deg); content: ""; flex-shrink: 0;}

.portfolio-dark { margin-top: 40px; background: var(--forest-950); color: white; }
.portfolio-dark .section-heading > p { color: #aebeb7; }
.gallery-fences .gallery-card { grid-column: span 4; min-height: 300px; }
.gallery-fences .gallery-card-tall { grid-column: span 8; grid-row: span 2; min-height: 616px; }

/* ---------- Project materials ---------- */
.materials { background: var(--cream-deep); }
.materials-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.materials-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); font-size: 17px; }
.materials-copy .materials-lead { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.5; }
.button-materials { margin-top: 18px; background: var(--forest-900); color: white; }
.button-materials:hover { background: var(--copper); }
.materials-panel { padding: 18px 42px 24px; border-top: 5px solid var(--copper); background: var(--paper); box-shadow: var(--shadow); }
.material-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.material-card > span { color: var(--copper); font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.material-card h3 { margin: 0 0 9px; font-size: 27px; line-height: 1.1; }
.material-card p { margin: 0; color: var(--muted); font-size: 14px; }
.materials-note { margin: 20px 0 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; line-height: 1.5; text-transform: uppercase; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.about-image { position: relative; min-height: 650px; }
.about-image::before { position: absolute; inset: -16px 45px 45px -16px; border: 1px solid rgba(200,119,60,.42); border-radius: 8px; content: ""; }
.about-image img { position: absolute; inset: 25px 0 0 25px; border-radius: 8px; width: calc(100% - 25px); height: calc(100% - 25px); object-fit: cover; }
.about-badge { position: absolute; right: -18px; bottom: 0; display: grid; width: 180px; height: 142px; align-content: center; padding: 26px; background: var(--copper); color: white; }
.about-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 34px; line-height: 1; }
.about-badge span { margin-top: 10px; font-size: 10px; font-weight: 800; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.about-copy .lead { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.5; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.about-values { margin-top: 34px; border-top: 1px solid var(--line); }
.about-values > div { display: grid; grid-template-columns: 52px 1fr; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.about-values span { color: var(--copper); font-family: Georgia, "Times New Roman", serif; }
.about-values strong { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }

/* ---------- Frequently asked questions ---------- */
.faq { background: var(--paper); }
.faq-heading { display: grid; grid-template-columns: .8fr 1.4fr; gap: 24px 70px; align-items: end; margin-bottom: 50px; }
.faq-heading .eyebrow { align-self: start; margin-top: 15px; }
.faq-heading h2 { margin-bottom: 0; }
.faq-heading > p:last-child { grid-column: 2; max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.faq-item { min-height: 245px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-item h3 { margin-bottom: 18px; color: var(--forest-900); font-size: 27px; line-height: 1.15; }
.faq-item p { margin-bottom: 0; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { position: relative; overflow: hidden; background: var(--forest-900); color: white; }
.contact-texture { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(135deg, transparent 49.6%, rgba(255,255,255,.12) 49.8%, transparent 50%), linear-gradient(45deg, transparent 49.6%, rgba(255,255,255,.05) 49.8%, transparent 50%); background-size: 160px 160px; }
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy { padding-top: 32px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #c8d5cf; font-size: 17px; }
.contact-details { display: grid; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-details > * { position: relative; display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto auto; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-details address { font-style: normal; }
.contact-details > * > span { grid-row: 1 / 3; color: var(--copper-light); font-family: Georgia, "Times New Roman", serif; }
.contact-details small { color: #9dafA7; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; line-height: 1.45; }
.contact-details a:hover strong { color: var(--copper-light); }
.quote-form { padding: 48px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); border-radius: 6px; }
.form-heading { padding-bottom: 25px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-heading > span { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.form-heading h3 { margin: 8px 0 10px; font-size: 39px; }
.form-heading p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 16px; }
.quote-form label > span { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d9d8d0; border-radius: 0; background: white; color: var(--ink); outline: 0; transition: border-color .2s, box-shadow .2s; }
.quote-form input, .quote-form select { height: 52px; padding: 0 15px; }
.quote-form textarea { min-height: 125px; padding: 13px 15px; resize: vertical; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9b9f9c; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(36,92,73,.1); }
.quote-form .invalid { border-color: #ac3e30; }
.turnstile-wrap { min-height: 65px; margin: 4px 0 16px; }
.button-submit { width: 100%; margin-top: 5px; border: 0; background: var(--copper); color: white; cursor: pointer; }
.button-submit:hover { background: #a95e2d; }
.button-submit:disabled { cursor: wait; opacity: .72; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-status { display: none; margin: 16px 0 0; padding: 12px; background: #efe5d5; color: #694222; font-size: 13px; line-height: 1.45; }
.form-status.show { display: block; }
.form-status.success { background: #e1eee7; color: #1f5a40; }
.form-status.error { background: #f4e2de; color: #7a2f24; }

/* ---------- Footer & lightbox ---------- */
.footer { padding: 45px 0 26px; background: var(--forest-950); color: white; }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,.13); }
.brand-footer { justify-self: start; }
.footer-top > p { margin: 0; color: #9cafA5; font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.footer-phone { justify-self: end; font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.footer-phone:hover { color: var(--copper-light); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding-top: 24px; color: #82948c; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom > a { justify-self: end; }
.footer-bottom a:hover { color: white; }

.lightbox { width: min(1050px, calc(100% - 36px)); max-width: none; padding: 0; overflow: visible; border: 0; background: transparent; color: white; }
.lightbox::backdrop { background: rgba(4,15,12,.93); backdrop-filter: blur(5px); }
.lightbox img { max-height: 78vh; object-fit: contain; background: var(--forest-950); }
.lightbox p { margin: 12px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 17px; }
.lightbox-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.5); background: transparent; color: white; font-size: 27px; line-height: 1; cursor: pointer; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section { padding: 92px 0; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 14px; background: var(--forest-950); font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 500; letter-spacing: -.03em; text-transform: none; opacity: 0; pointer-events: none; transform: translateY(-14px); transition: opacity .25s, transform .25s; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links > a:not(.nav-cta) { padding: 9px; }
  .nav-links > a:not(.nav-cta)::after { bottom: 4px; }
  .nav-cta { margin-top: 12px; font-family: Arial, Helvetica, sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
  .trust-card { padding: 32px 22px; }
  .trust-icon { width: 50px; height: 50px; flex-basis: 50px; }
  .trust-card strong { font-size: 18px; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 700px; }
  .about-grid { gap: 55px; }
  .about-image { min-height: 560px; }
  .contact-grid { gap: 48px; }
  .quote-form { padding: 36px; }
  .faq-heading { grid-template-columns: 1fr; gap: 14px; }
  .faq-heading .eyebrow { margin-top: 0; }
  .faq-heading > p:last-child { grid-column: 1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  h2 { font-size: clamp(44px, 14vw, 60px); }
  .site-header { height: 76px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 740px; padding: 145px 0 85px; }
  .hero-media { object-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,25,20,.92), rgba(7,25,20,.54)), linear-gradient(0deg, rgba(7,25,20,.55), transparent 48%); }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { display: grid; max-width: 350px; }
  .hero-services { flex-wrap: wrap; row-gap: 8px; margin-top: 40px; }
  .hero-services span:nth-child(3) { width: 100%; }
  .hero-services span:nth-child(3)::before { display: none; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr; padding: 0; }
  .trust-card { min-height: 125px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-card:first-child { border-left: 0; }
  .portfolio { padding-top: 30px; }
  .gallery { gap: 12px; }
  .gallery-card, .gallery-card-wide, .gallery-fences .gallery-card, .gallery-fences .gallery-card-tall { grid-column: 1 / -1; grid-row: auto; min-height: 340px; }
  .gallery-card-wide, .gallery-fences .gallery-card-tall { min-height: 440px; }
  .gallery-open { opacity: 1; transform: none; }
  .feature-line { grid-template-columns: 1fr 1fr; }
  .portfolio-dark { margin-top: 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 470px; margin-right: 8px; }
  .about-badge { right: -8px; width: 160px; height: 120px; }
  .about-copy { margin-top: 22px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { min-height: 0; padding: 30px 24px; }
  .contact-copy { padding-top: 0; }
  .quote-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .brand-footer, .footer-phone, .footer-bottom > a { justify-self: center; }
  .footer-bottom div { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 420px) {
  .brand-copy strong { max-width: 180px; }
  .hero-services { font-size: 9px; }
  .feature-line { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card-wide, .gallery-fences .gallery-card, .gallery-fences .gallery-card-tall { min-height: 310px; }
}

/* ---------- Interactive layout preview ---------- */
/* .style-switcher {
  position: absolute;
  top: 104px;
  right: 22px;
  z-index: 55;
  width: 230px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  background: rgba(8, 25, 21, .94);
  color: white;
  box-shadow: 0 16px 42px rgba(8, 25, 21, .2);
  backdrop-filter: blur(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.style-switcher label {
  display: block;
  margin: 0 0 7px;
  color: #bdcac4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.style-select-wrap { position: relative; }
.style-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--copper-light);
  content: "\25BE";
  pointer-events: none;
  transform: translateY(-54%);
}

#site-style {
  width: 100%;
  height: 40px;
  padding: 0 34px 0 11px;
  appearance: none;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 3px;
  background: rgba(255,255,255,.07);
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

#site-style option { background: #102a23; color: white; }
#style-description { margin: 8px 1px 0; color: #bdcac4; font-size: 10px; line-height: 1.35; }
.menu-open .style-switcher { opacity: 0; pointer-events: none; transform: translateY(8px); } */

/* Blue Mountains: scenic, cool, and open. */
/* html[data-style="blue-mountains"] {
  --forest-950: #102b3d;
  --forest-900: #17364a;
  --forest-800: #244c63;
  --forest-700: #35687f;
  --sage: #9db5be;
  --cream: #edf2f1;
  --cream-deep: #dbe5e5;
  --paper: #f9fbfa;
  --ink: #142d3a;
  --muted: #61747c;
  --copper: #c28a45;
  --copper-light: #e5bd7c;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(16,43,61,.16);
}

html[data-style="blue-mountains"] .hero {
  min-height: 780px;
  align-items: flex-end;
  padding-bottom: 92px;
  background-image: url('../assets/images/fence7.webp');
  background-position: center 54%;
}

html[data-style="blue-mountains"] .hero-shade { background: linear-gradient(0deg, rgba(8,29,43,.95), rgba(8,29,43,.16) 76%), linear-gradient(90deg, rgba(8,29,43,.35), transparent 65%); }
html[data-style="blue-mountains"] .hero-content { display: grid; justify-items: center; text-align: center; }
html[data-style="blue-mountains"] .hero h1 { max-width: 940px; font-size: clamp(58px, 8vw, 102px); }
html[data-style="blue-mountains"] .hero-copy { max-width: 700px; }
html[data-style="blue-mountains"] .hero-services { justify-content: center; margin-top: 38px; }
html[data-style="blue-mountains"] .scroll-cue { display: none; }
html[data-style="blue-mountains"] .section-heading { grid-template-columns: 1fr; max-width: 820px; gap: 18px; }
html[data-style="blue-mountains"] .gallery { gap: 20px; }
html[data-style="blue-mountains"] .gallery-card,
html[data-style="blue-mountains"] .about-image img,
html[data-style="blue-mountains"] .quote-form { border-radius: 16px; }
html[data-style="blue-mountains"] .about-image::before { border-radius: 18px; }
html[data-style="blue-mountains"] .about-badge { border-radius: 12px 0 12px 0; }
html[data-style="blue-mountains"] .trust-card { border-color: rgba(20,45,58,.12); } */

/* High Desert: warm earth, sage, and wide rural horizons. */
/* html[data-style="high-desert"] {
  --forest-950: #302b21;
  --forest-900: #493c2b;
  --forest-800: #65543a;
  --forest-700: #6d7451;
  --sage: #a8ad83;
  --cream: #efe6d3;
  --cream-deep: #dfd0b4;
  --paper: #fbf6eb;
  --ink: #332c22;
  --muted: #756b5d;
  --copper: #b85f36;
  --copper-light: #e09966;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(63,48,29,.16);
}

html[data-style="high-desert"] .hero {
  min-height: 760px;
  background-image: url('../assets/images/fence2.webp');
  background-position: center 60%;
}

html[data-style="high-desert"] .style-switcher { right: auto; left: 22px; }
html[data-style="high-desert"] .hero-shade { background: linear-gradient(270deg, rgba(43,36,25,.92), rgba(43,36,25,.68) 43%, rgba(43,36,25,.08) 78%), linear-gradient(0deg, rgba(43,36,25,.32), transparent 55%); }
html[data-style="high-desert"] .hero-content { display: grid; justify-items: end; text-align: right; }
html[data-style="high-desert"] .hero-content > * { max-width: 650px; }
html[data-style="high-desert"] .hero h1 { font-size: clamp(56px, 7.5vw, 96px); }
html[data-style="high-desert"] .hero-actions,
html[data-style="high-desert"] .hero-services { justify-content: flex-end; }
html[data-style="high-desert"] .hero-eyebrow { flex-direction: row-reverse; }
html[data-style="high-desert"] .gallery-card,
html[data-style="high-desert"] .quote-form { border-radius: 24px 6px; }
html[data-style="high-desert"] .trust-grid { gap: 12px; padding-block: 20px; }
html[data-style="high-desert"] .trust-card { min-height: 142px; border: 0; border-radius: 18px 4px; background: rgba(255,255,255,.36); }
html[data-style="high-desert"] .about-image img { border-radius: 100px 8px 8px; }
html[data-style="high-desert"] .about-image::before { border-radius: 110px 8px 8px; }
html[data-style="high-desert"] .contact-texture { background-size: 160px 160px; } */

/* Ranch Ledger: bold, practical, and distinctly hand-built. */
/* html[data-style="ranch-ledger"] {
  --forest-950: #241a14;
  --forest-900: #2f241c;
  --forest-800: #49382b;
  --forest-700: #74553c;
  --sage: #ad9c82;
  --cream: #eee2cc;
  --cream-deep: #dcc8a8;
  --paper: #f8f0df;
  --ink: #2b2119;
  --muted: #746556;
  --copper: #a83f27;
  --copper-light: #d88055;
  --radius: 0;
  --shadow: 12px 12px 0 rgba(43,33,25,.14);
}

html[data-style="ranch-ledger"] h1,
html[data-style="ranch-ledger"] h2,
html[data-style="ranch-ledger"] h3 { font-weight: 700; letter-spacing: -.025em; }
html[data-style="ranch-ledger"] h1 em,
html[data-style="ranch-ledger"] h2 em { font-style: normal; }
html[data-style="ranch-ledger"] .hero {
  min-height: 740px;
  background-color: var(--forest-950);
  background-image: url('../assets/images/shelter3.webp');
  background-position: 78% center;
  background-size: 58% 100%;
}

html[data-style="ranch-ledger"] .hero-shade { background: linear-gradient(90deg, rgba(36,26,20,1) 0%, rgba(36,26,20,1) 41%, rgba(36,26,20,.88) 52%, rgba(36,26,20,.06) 74%); }
html[data-style="ranch-ledger"] .hero-content > * { max-width: 570px; }
html[data-style="ranch-ledger"] .hero h1 { font-size: clamp(58px, 7.6vw, 98px); line-height: .9; text-transform: uppercase; }
html[data-style="ranch-ledger"] .eyebrow { letter-spacing: .22em; }
html[data-style="ranch-ledger"] .trust { border-top: 10px solid var(--copper); }
html[data-style="ranch-ledger"] .trust-card { min-height: 150px; }
html[data-style="ranch-ledger"] .gallery-card,
html[data-style="ranch-ledger"] .gallery-card-wide,
html[data-style="ranch-ledger"] .gallery-fences .gallery-card,
html[data-style="ranch-ledger"] .gallery-fences .gallery-card-tall { grid-column: span 6; grid-row: auto; min-height: 390px; }
html[data-style="ranch-ledger"] .gallery-label { padding-top: 14px; border-top: 3px solid var(--copper-light); }
html[data-style="ranch-ledger"] .about-image { min-height: 540px; }
html[data-style="ranch-ledger"] .about-badge { background: var(--ink); }
html[data-style="ranch-ledger"] .feature-line { border-width: 3px; border-color: var(--ink); } */

/* Workshop Clean: crisp, contemporary, and capability-first. */
/* html[data-style="workshop-clean"] {
  --forest-950: #101214;
  --forest-900: #171a1d;
  --forest-800: #282d31;
  --forest-700: #4c565e;
  --sage: #aab1b5;
  --cream: #eceeef;
  --cream-deep: #d9dddf;
  --paper: #ffffff;
  --ink: #15191c;
  --muted: #697278;
  --copper: #e56b2f;
  --copper-light: #ff9a62;
  --radius: 2px;
  --shadow: 0 18px 44px rgba(15,18,20,.18);
}

html[data-style="workshop-clean"] h1,
html[data-style="workshop-clean"] h2,
html[data-style="workshop-clean"] h3 { font-family: Arial, Helvetica, sans-serif; font-weight: 900; letter-spacing: -.055em; }
html[data-style="workshop-clean"] h1 em,
html[data-style="workshop-clean"] h2 em { font-style: normal; }
html[data-style="workshop-clean"] .hero {
  min-height: 700px;
  background-image: url('../assets/images/fence5.webp');
  background-position: center;
}

html[data-style="workshop-clean"] .hero-shade { background: linear-gradient(90deg, rgba(16,18,20,.97), rgba(16,18,20,.8) 54%, rgba(16,18,20,.15)); }
html[data-style="workshop-clean"] .hero-content { padding: 52px; border-left: 8px solid var(--copper); background: rgba(16,18,20,.64); }
html[data-style="workshop-clean"] .hero h1 { max-width: 780px; font-size: clamp(58px, 8vw, 104px); line-height: .88; text-transform: uppercase; }
html[data-style="workshop-clean"] .button { letter-spacing: .13em; }
html[data-style="workshop-clean"] .section { padding-block: 94px; }
html[data-style="workshop-clean"] .trust-grid { gap: 16px; padding-block: 24px; }
html[data-style="workshop-clean"] .trust-card { border: 1px solid var(--line); background: white; }
html[data-style="workshop-clean"] .gallery-card,
html[data-style="workshop-clean"] .gallery-card-wide,
html[data-style="workshop-clean"] .gallery-fences .gallery-card,
html[data-style="workshop-clean"] .gallery-fences .gallery-card-tall { grid-column: span 4; grid-row: auto; min-height: 360px; }
html[data-style="workshop-clean"] .gallery-label { font-family: Arial, Helvetica, sans-serif; font-weight: 900; }
html[data-style="workshop-clean"] .feature-line { background: var(--ink); border: 0; }
html[data-style="workshop-clean"] .feature-line span { color: white; }
html[data-style="workshop-clean"] .about-image::before { inset: -10px 35px 35px -10px; border-width: 6px; border-color: var(--copper); }
html[data-style="workshop-clean"] .about-badge { background: var(--ink); }

@media (max-width: 980px) {
  .style-switcher { top: 90px; }
  html[data-style="ranch-ledger"] .hero { background-position: 72% center; background-size: cover; }
  html[data-style="ranch-ledger"] .hero-shade { background: linear-gradient(90deg, rgba(36,26,20,.96), rgba(36,26,20,.72) 58%, rgba(36,26,20,.2)); }
  html[data-style="workshop-clean"] .hero-content { padding: 40px; }
}

@media (max-width: 760px) {
  .style-switcher {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: 14px;
    left: 16px;
    display: grid;
    width: auto;
    grid-template-columns: auto minmax(150px, 1fr);
    align-items: center;
    gap: 8px 12px;
    padding: 10px 12px;
  }
  .style-switcher label { margin: 0; }
  #style-description { display: none; }
  html[data-style="high-desert"] .style-switcher { right: 16px; left: 16px; }
  html[data-style="blue-mountains"] .hero { min-height: 760px; padding-bottom: 86px; }
  html[data-style="blue-mountains"] .hero-content { text-align: left; justify-items: start; }
  html[data-style="blue-mountains"] .hero-services { justify-content: flex-start; }
  html[data-style="high-desert"] .hero { background-position: 42% center; }
  html[data-style="high-desert"] .hero-shade { background: linear-gradient(90deg, rgba(43,36,25,.9), rgba(43,36,25,.5)); }
  html[data-style="high-desert"] .hero-content { justify-items: start; text-align: left; }
  html[data-style="high-desert"] .hero-actions,
  html[data-style="high-desert"] .hero-services { justify-content: flex-start; }
  html[data-style="high-desert"] .hero-eyebrow { flex-direction: row; }
  html[data-style="ranch-ledger"] .gallery-card,
  html[data-style="ranch-ledger"] .gallery-card-wide,
  html[data-style="ranch-ledger"] .gallery-fences .gallery-card,
  html[data-style="ranch-ledger"] .gallery-fences .gallery-card-tall,
  html[data-style="workshop-clean"] .gallery-card,
  html[data-style="workshop-clean"] .gallery-card-wide,
  html[data-style="workshop-clean"] .gallery-fences .gallery-card,
  html[data-style="workshop-clean"] .gallery-fences .gallery-card-tall { grid-column: 1 / -1; min-height: 340px; }
  html[data-style="workshop-clean"] .hero-content { width: calc(100% - 32px); padding: 30px 22px; }
  html[data-style="workshop-clean"] .hero h1 { font-size: clamp(50px, 15vw, 70px); }
} */
