/* ===================================================================
   BASHON HILL FARMS — New England Fieldstone & Masonry
   =================================================================== */

:root {
  --char: #16181a;        /* near-black charcoal */
  --char-2: #1f2326;      /* raised charcoal */
  --slate: #2b3033;
  --stone: #6f7479;       /* mid stone gray */
  --stone-lt: #b9b3a8;    /* warm light stone */
  --paper: #f4f1ec;       /* warm off-white */
  --paper-2: #ece7df;     /* warm sand */
  --gold: #c2a163;        /* granite gold accent */
  --gold-dk: #a8884a;
  --line: rgba(0,0,0,.10);
  --line-lt: rgba(255,255,255,.12);
  --ink: #20242a;         /* body text on light */
  --ink-soft: #4f555c;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --r: 4px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .01em;
}

/* ---- shared section bits ---- */
.kicker {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-dk);
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  text-transform: uppercase;
}
.section-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.02rem; }
.section-head--light .kicker { color: var(--gold); }
.section-head--light h2 { color: var(--paper); }
.section-head--light .section-sub { color: var(--stone-lt); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  font-size: .92rem;
  padding: 15px 30px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: var(--gold); color: var(--char); }
.btn--gold:hover { background: #d2b271; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--dark { background: var(--char); color: var(--paper); }
.btn--dark:hover { background: var(--slate); }
.btn--block { width: 100%; }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--char);
  color: var(--stone-lt);
  font-size: .78rem;
  border-bottom: 1px solid var(--line-lt);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__tag { letter-spacing: .04em; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { color: var(--stone-lt); transition: color .2s, transform .2s; }
.topbar__social a:hover { color: var(--gold); transform: translateY(-2px); }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,241,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, padding .3s, background .3s;
}
.nav.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.10); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; transition: height .3s; }
.nav.is-scrolled .nav__inner { height: 64px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark { color: var(--char); display: grid; place-items: center; }
.logo-mono { height: 50px; width: 83px; display: block; transition: height .3s, width .3s; }
.nav.is-scrolled .logo-mono { height: 42px; width: 70px; }
.logo-mono__l { fill: currentColor; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: 138px; }
.logo-mono__line { stroke: currentColor; stroke-width: 3; stroke-linecap: round; }
.logo-mono__s { fill: var(--gold); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.3rem; color: var(--char);
}
.brand__text em {
  font-style: normal; font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--stone); margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: .08em; font-size: .9rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold-dk); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--char); color: var(--paper) !important;
  padding: 11px 22px !important; border-radius: var(--r);
  transition: background .25s, transform .25s;
}
.nav__cta:hover { background: var(--gold); color: var(--char) !important; transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--char); border-radius: 2px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 40%;
  transform: scale(1.06); animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,18,.55) 0%, rgba(15,16,18,.35) 45%, rgba(15,16,18,.82) 100%),
    linear-gradient(90deg, rgba(15,16,18,.7) 0%, rgba(15,16,18,0) 60%);
}
.hero__content { position: relative; z-index: 2; padding: 80px 24px; color: #fff; max-width: 880px; }
.hero__eyebrow {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: .35em; font-size: .8rem; color: var(--gold);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  text-transform: uppercase; font-weight: 700; line-height: .98;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__title span { color: var(--gold); }
.hero__lead {
  margin-top: 26px; max-width: 600px; font-size: 1.16rem; color: rgba(255,255,255,.9);
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero__actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__quote { margin-top: 18px; }
.hero__quote a { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; font-weight: 500; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.hero__quote a:hover { border-color: var(--gold); }
.hero__stats {
  margin-top: 56px; display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 26px;
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); font-size: 1.05rem;
}
.hero__stats span { font-size: .9rem; color: rgba(255,255,255,.75); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: #fff; font-size: 1.4rem; opacity: .8;
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  display: grid; place-items: center; animation: bob 2s infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ===================== INTRO ===================== */
.intro { background: var(--paper); padding: 84px 0; border-bottom: 1px solid var(--line); }
.intro__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.intro__lead h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; }
.intro__body { font-size: 1.12rem; color: var(--ink-soft); }
.intro__body strong { color: var(--gold-dk); }

/* ===================== SERVICES ===================== */
.services { background: var(--paper-2); padding: 100px 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 40px 32px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; color: inherit;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card--feature { background: var(--char); color: var(--paper); border-color: transparent; }
.card--feature p { color: var(--stone-lt); }
.card__icon {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(194,161,99,.14); color: var(--gold-dk); margin-bottom: 22px;
}
.card--feature .card__icon { background: rgba(194,161,99,.18); color: var(--gold); }
.card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card__list { list-style: none; margin-top: 20px; border-top: 1px solid var(--line); padding-top: 18px; }
.card--feature .card__list { border-color: var(--line-lt); }
.card__list li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: .94rem; }
.card__list li::before { content: '\25C6'; position: absolute; left: 0; color: var(--gold-dk); font-size: .7rem; top: 3px; }
.card--feature .card__list li::before { color: var(--gold); }
.card__more { margin-top: auto; padding-top: 22px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 600; color: var(--gold-dk); display: inline-flex; align-items: center; gap: 6px; transition: gap .25s var(--ease); }
.card:hover .card__more { gap: 12px; }
.card--feature .card__more { color: var(--gold); }

/* ===================== STONE YARD ===================== */
.yard { background: var(--char); color: var(--paper); padding: 100px 0; position: relative; }
.yard::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 0%, rgba(194,161,99,.10), transparent 50%);
}
.yard .container { position: relative; z-index: 1; }
.yard__blend {
  background: linear-gradient(120deg, var(--char-2), var(--slate));
  border: 1px solid var(--line-lt); border-left: 4px solid var(--gold);
  border-radius: var(--r); padding: 38px 40px; margin-bottom: 40px;
}
.badge {
  display: inline-block; background: var(--gold); color: var(--char);
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .14em;
  font-size: .68rem; font-weight: 700; padding: 5px 12px; border-radius: 2px; margin-bottom: 14px;
}
.yard__blend h3 { font-size: 1.9rem; text-transform: uppercase; color: var(--paper); margin-bottom: 10px; }
.yard__blend p { color: var(--stone-lt); max-width: 720px; }

.yard__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product {
  background: var(--char-2); border: 1px solid var(--line-lt); border-radius: var(--r);
  padding: 28px 26px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.product:hover { transform: translateY(-6px); border-color: var(--gold); background: #23282c; }
.product h4 { font-size: 1.2rem; text-transform: uppercase; color: var(--paper); margin-bottom: 8px; }
.product p { color: var(--stone-lt); font-size: .92rem; min-height: 42px; }
.product__price {
  display: flex; align-items: baseline; gap: 8px; margin-top: 16px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.3rem; color: var(--gold);
  border-top: 1px solid var(--line-lt); padding-top: 14px;
}
.product__price small { font-size: .7rem; color: var(--stone); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }

/* ===================== GALLERY ===================== */
.gallery { background: var(--paper); padding: 100px 0; }
.gallery__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; font-weight: 500; padding: 9px 18px; border-radius: 40px;
  background: transparent; border: 1.5px solid var(--line); color: var(--ink-soft);
  cursor: pointer; transition: all .25s;
}
.filter:hover { border-color: var(--gold-dk); color: var(--gold-dk); }
.filter.is-active { background: var(--char); border-color: var(--char); color: var(--paper); }

.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  grid-auto-flow: dense;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer;
  aspect-ratio: 1/1; background: var(--paper-2);
  transition: transform .4s var(--ease), opacity .35s;
}
.tile.tile--tall { grid-row: span 2; aspect-ratio: 1/2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,16,18,.72));
  opacity: 0; transition: opacity .35s;
}
.tile__cap {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 16px 18px;
  color: #fff; font-size: .86rem; font-family: 'Oswald', sans-serif; letter-spacing: .03em;
  transform: translateY(8px); opacity: 0; transition: .35s var(--ease);
}
.tile:hover { transform: translateY(-4px); }
.tile:hover img { transform: scale(1.09); }
.tile:hover::after { opacity: 1; }
.tile:hover .tile__cap { transform: translateY(0); opacity: 1; }
.tile.is-hidden { display: none; }
.gallery__credit { margin-top: 28px; text-align: center; color: var(--stone); font-size: .9rem; }
.gallery__credit a { color: var(--gold-dk); font-weight: 600; }

/* ===================== ABOUT ===================== */
.about { background: var(--paper-2); padding: 100px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about__img { position: relative; }
.about__img img { border-radius: var(--r); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about__img::before {
  content: ''; position: absolute; inset: -16px -16px 16px 16px; border: 2px solid var(--gold);
  border-radius: var(--r); z-index: -1;
}
.about__text h2 { font-size: clamp(2rem, 4.4vw, 3rem); text-transform: uppercase; margin-bottom: 18px; }
.about__text p { color: var(--ink-soft); margin-bottom: 16px; }
.about__points { list-style: none; margin: 24px 0 30px; }
.about__points li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: .98rem; }
.about__points li::before {
  content: '\2714'; position: absolute; left: 0; top: 0; color: var(--gold-dk); font-weight: 700;
}
.about__points strong { color: var(--ink); }

/* ===================== CTA BAND ===================== */
.cta-band {
  background:
    linear-gradient(rgba(15,16,18,.86), rgba(15,16,18,.86)),
    url('../images/gallery/wall-fieldstone-drive.webp') center/cover fixed;
  padding: 90px 0; text-align: center; color: #fff;
}
.cta-band h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); text-transform: uppercase; }
.cta-band p { margin: 16px auto 30px; max-width: 560px; color: rgba(255,255,255,.85); }

/* ===================== CONTACT ===================== */
.contact { background: var(--paper); padding: 100px 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.contact__info h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); text-transform: uppercase; margin-bottom: 16px; }
.contact__info > p { color: var(--ink-soft); margin-bottom: 30px; }
.contact__list { list-style: none; margin-bottom: 28px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.contact__ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-2); color: var(--gold-dk); font-size: 1.2rem;
}
.contact__list a { color: var(--gold-dk); font-weight: 600; }
.contact__socials { display: flex; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem;
  padding: 11px 18px; border: 1.5px solid var(--line); border-radius: var(--r);
  color: var(--ink); transition: all .25s;
}
.social-btn:hover { background: var(--char); color: var(--paper); border-color: var(--char); transform: translateY(-2px); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 36px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-size: .76rem; color: var(--ink-soft); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r);
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--paper);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; color: var(--gold-dk); font-weight: 600; font-size: .92rem; text-align: center; }

/* ===================== FOOTER ===================== */
.footer { background: var(--char); color: var(--stone-lt); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 40px; align-items: start; padding-bottom: 44px; }
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand .brand__mark { color: var(--paper); }
.footer__brand .logo-mono { height: 46px; width: 76px; }
.footer__brand strong {
  font-family: 'Playfair Display', Georgia, serif; text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.3rem; color: var(--paper); display: block; margin-bottom: 6px;
}
.footer__brand p { font-size: .92rem; max-width: 320px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; transition: color .2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 42px; height: 42px; border: 1px solid var(--line-lt); border-radius: 50%;
  display: grid; place-items: center; color: var(--stone-lt); transition: all .25s;
}
.footer__social a:hover { background: var(--gold); color: var(--char); border-color: var(--gold); transform: translateY(-3px); }
.footer__bar { border-top: 1px solid var(--line-lt); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 16px; font-size: .8rem; color: var(--stone); }
.footer__phone { margin-top: 10px; }
.footer__phone a { font-family: 'Oswald', sans-serif; font-size: 1.1rem; letter-spacing: .04em; color: var(--gold); transition: color .2s; }
.footer__phone a:hover { color: #d9bd7e; }
.footer__email { margin-top: 5px; }
.footer__email a { color: var(--stone-lt); font-size: .92rem; transition: color .2s; }
.footer__email a:hover { color: var(--gold); }

/* ===================== SUBPAGE HERO ===================== */
.hero--sub { min-height: 66vh; }
.hero--sub .hero__title { font-size: clamp(2.3rem, 6vw, 4.2rem); }
.breadcrumb { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; color: var(--stone); margin-bottom: 40px; }
.breadcrumb a { color: var(--gold-dk); }
.breadcrumb a:hover { color: var(--char); }

/* ===================== TOPBAR PHONE ===================== */
.topbar__social { align-items: center; }
.topbar__phone { color: var(--gold); font-weight: 600; letter-spacing: .02em; white-space: nowrap; transition: color .2s; }
.topbar__phone:hover { color: #d9bd7e; }

/* ===================== REVIEW CTA ===================== */
.review-cta {
  display: flex; align-items: center; gap: 16px; margin-top: 24px;
  padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.review-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.review-cta__g { flex: none; display: grid; place-items: center; }
.review-cta__body { display: flex; flex-direction: column; line-height: 1.35; }
.review-cta__stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: 2px; }
.review-cta__body strong { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; color: var(--char); }
.review-cta__body small { color: var(--ink-soft); font-size: .82rem; }
.review-cta__arrow { margin-left: auto; color: var(--gold-dk); font-size: 1.4rem; transition: transform .25s var(--ease); }
.review-cta:hover .review-cta__arrow { transform: translateX(5px); }

/* ===================== CONTACT — FIND THE YARD ===================== */
.contact__visit { display: grid; grid-template-columns: 1.05fr 1fr; gap: 38px; align-items: stretch; margin-top: 70px; padding-top: 56px; border-top: 1px solid var(--line); }
.contact__visit-map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); min-height: 440px; }
.contact__map { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }
.contact__visit-panel { display: flex; flex-direction: column; }
.contact__visit-panel h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-transform: uppercase; margin-bottom: 14px; }
.contact__visit-panel > p { color: var(--ink-soft); margin-bottom: 26px; }
.contact__visit-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.review-cta { margin-top: auto; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { background: var(--char); color: var(--paper); border-color: var(--char); }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,13,15,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: 88vw; max-height: 86vh; text-align: center; }
.lightbox__figure img { max-width: 88vw; max-height: 78vh; border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__figure figcaption {
  color: var(--stone-lt); font-family: 'Oswald', sans-serif; letter-spacing: .04em;
  margin-top: 16px; font-size: .95rem;
}
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s, transform .2s; }
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2); color: #fff; width: 54px; height: 54px; border-radius: 50%;
  font-size: 1.8rem; cursor: pointer; transition: background .2s; display: grid; place-items: center;
}
.lightbox__nav:hover { background: var(--gold); color: var(--char); border-color: var(--gold); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ===================== REVEAL ANIMATION ===================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .intro__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .services__grid, .yard__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__img { max-width: 440px; }
  .contact__visit { grid-template-columns: 1fr; gap: 26px; }
  .contact__visit-map, .contact__map { min-height: 360px; height: 360px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar__tag { font-size: .68rem; }
  /* drop backdrop-filter so the fixed drawer anchors to the viewport, not the nav */
  .nav { backdrop-filter: none; background: var(--paper); }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    height: 100vh; height: 100dvh; width: min(82vw, 320px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 110px 32px 40px; gap: 22px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.25); z-index: 58;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__cta { width: 100%; text-align: center; }
  .nav__toggle { display: flex; z-index: 60; }
  /* compact header logo so the wordmark stays on one line */
  .brand { gap: 10px; }
  .brand__mark .logo-mono { height: 38px; width: 63px; }
  .brand__text strong { font-size: 1.02rem; letter-spacing: .02em; }
  .brand__text em { font-size: .56rem; letter-spacing: .16em; }
  .hero { min-height: 88vh; }
  .hero__stats { gap: 24px; }
  .services__grid, .yard__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tile.tile--tall { grid-row: span 1; aspect-ratio: 1/1; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .cta-band { background-attachment: scroll; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; }
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; }
  .contact__visit { margin-top: 48px; padding-top: 44px; }
  .contact__visit-map, .contact__map { min-height: 280px; height: 300px; }
  .contact__visit-actions { flex-direction: column; }
  .contact__visit-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
