/* ============================================================
   HOUSTON'S BARN DOORS — LUXURY REDESIGN
   Black · white · brass gold (matches the HB barn-rail mark)
   Cinematic scroll · full-screen ghost door hero
   ============================================================ */

:root {
  color-scheme: light;

  /* Core palette */
  --charcoal:      #0a0a0a;
  --charcoal-2:    #111111;
  --charcoal-3:    #191817;

  --off-white:     #f5f0eb;
  --off-white-2:   #faf8f5;
  --cream:         #e8dfd5;

  /* Brand gold — pulled from the brass handle bar in the HB logo */
  --gold:          #c9a063;
  --gold-light:    #d4b07a;
  --gold-dark:     #a07840;
  --gold-tint:     #e3cb9f;
  --gold-rgb:      201, 160, 99;

  --sand:          var(--gold);
  --sand-2:        var(--gold);
  --sand-3:        var(--gold-tint);

  --warm-gray:     #3a3530;
  --muted:         #6b645c;
  --muted-2:       #938c83;

  --border:        #ded6cb;
  --border-soft:   #ebe4da;

  /* Dark surface tokens */
  --dark-bg:       var(--charcoal);
  --dark-bg-2:     var(--charcoal-2);
  --dark-ink:      var(--off-white);
  --dark-muted:    #a39a8e;
  --dark-border:   rgba(245, 240, 235, 0.12);

  /* Semantic aliases */
  --bg:            var(--off-white);
  --bg-2:          #efe9e1;
  --surface:       #ffffff;
  --surface-soft:  var(--off-white-2);
  --ink:           var(--charcoal);
  --ink-2:         var(--charcoal-2);
  --accent:        var(--gold);
  --accent-2:      var(--gold-dark);
  --accent-3:      var(--gold-tint);
  --btn-accent:    var(--gold);

  /* FX */
  --shadow-sm: 0 2px 10px rgba(10, 10, 10, 0.05);
  --shadow:    0 16px 40px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 40px 80px rgba(10, 10, 10, 0.16);
  --shadow-accent: 0 12px 30px rgba(201, 160, 99, 0.32);

  --radius: 2px;
  --radius-md: 6px;
  --radius-lg: 14px;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.16,.84,.28,1);

  --nav-h: 96px;
}

/* ============================================================ RESET */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
button { font-family: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 999;
  border-radius: var(--radius-md);
}
.skip-link:focus { left: 16px; top: 16px; }

::selection { background: var(--sand); color: var(--charcoal); }

/* ============================================================ TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(3.1rem, 8.4vw, 7.4rem); font-weight: 300; letter-spacing: -0.038em; }
h2 { font-size: clamp(2.15rem, 4.6vw, 4rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.45rem); font-weight: 500; letter-spacing: -0.012em; }
h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--sans); }

p {
  margin: 0 0 1.15em;
  color: var(--muted);
  font-size: 1.045rem;
  font-weight: 300;
  line-height: 1.78;
}
em { font-style: italic; color: var(--accent-2); font-weight: 300; }
strong { font-weight: 500; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  margin: 0 0 26px;
}
.eyebrow__rule { width: 44px; height: 1px; background: var(--sand); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--dark-muted); }
.eyebrow--light .eyebrow__rule { background: var(--sand); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 11px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease), background 300ms var(--ease),
              color 300ms var(--ease), box-shadow 300ms var(--ease),
              border-color 300ms var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 300ms var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

.btn--accent {
  background: var(--btn-accent);
  color: var(--charcoal);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover { background: var(--gold-light); color: #000; box-shadow: 0 18px 40px rgba(201, 160, 99, 0.42); }

.btn--dark { background: var(--charcoal); color: var(--off-white); }
.btn--dark:hover { background: var(--warm-gray); }

.btn--ghost-light {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.55); }

.btn--sm { padding: 10px 18px; font-size: 0.74rem; letter-spacing: 0.08em; }
.btn--lg { padding: 19px 40px; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background 420ms var(--ease), border-color 420ms var(--ease),
              padding 420ms var(--ease), backdrop-filter 420ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom-color: rgba(245, 240, 235, 0.09);
}

.nav__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  transition: padding 420ms var(--ease);
}
.nav.is-scrolled .nav__inner { padding: 13px 0; }

.nav__logo { display: inline-flex; align-items: center; gap: 14px; color: #fff; }

/* Brand mark — the real HB logo on a white plaque. The source art is 1024×1024
   with the monogram at x 91.5→932.5 / y 58.5→899.5 and the "HOUSTONS BARN DOORS"
   lockup text below it; the crop window trims that text off so the adjacent
   wordmark isn't duplicated. */
.nav__mark {
  display: block; flex-shrink: 0;
  width: 52px; height: 52px;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.45), 0 0 0 1px rgba(201, 160, 99, 0.55);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.nav__logo:hover .nav__mark {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(0,0,0,0.5), 0 0 0 1px rgba(201, 160, 99, 0.9);
}
.nav__mark-crop,
.footer__mark-crop {
  position: relative; display: block;
  width: 100%; height: 100%;
  overflow: hidden;
}
.nav__logo-img,
.footer__logo-img {
  position: absolute; display: block;
  width: 121.8%; height: 121.8%;
  left: -10.88%; top: -6.96%;
  object-fit: cover;
}

.nav__wordmark { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.nav__wordmark-primary {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: #fff;
}
.nav__wordmark-sub {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  font-weight: 400;
  margin-top: 3px;
}

.nav__links { display: flex; justify-content: center; gap: 34px; }
.nav__links a {
  color: rgba(245, 240, 235, 0.72);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 280ms var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--sand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 340ms var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---- Products dropdown -------------------------------------------------
   Six product pages no longer fit as flat nav items on a laptop line, so they
   live in a single dropdown. Adding a seventh product page is now free. */
.nav__group { position: relative; }
.nav__group-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  color: rgba(245, 240, 235, 0.72);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 0;
  transition: color 280ms var(--ease);
}
.nav__group:hover .nav__group-toggle,
.nav__group-toggle:hover,
.nav__group-toggle:focus-visible,
.nav__group.is-current .nav__group-toggle { color: #fff; }
.nav__group-chevron { transition: transform 280ms var(--ease); }
.nav__group-toggle[aria-expanded="true"] .nav__group-chevron { transform: rotate(180deg); }

/* Invisible bridge so the pointer can travel from the toggle to the menu
   without crossing a dead gap and closing it. */
.nav__group:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 16px;
}

.nav__group-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  display: flex;
  flex-direction: column;
  min-width: 212px;
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 240, 235, 0.09);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
  z-index: 60;
}
.nav__group:hover .nav__group-menu,
.nav__group:focus-within .nav__group-menu,
.nav__group-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__group-menu a {
  padding: 11px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.nav__group-menu a::after { display: none; }
.nav__group-menu a:hover { color: #fff; background: rgba(245, 240, 235, 0.05); }
.nav__group-menu a.active { color: var(--sand); }

.nav__cta { display: flex; align-items: center; gap: 12px; justify-self: end; }

.nav__toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid rgba(255,255,255,0.22);
  border-radius: 2px; cursor: pointer; padding: 0 10px;
}
.nav__toggle span {
  display: block; height: 1.5px; width: 100%; background: #fff;
  transition: transform 300ms var(--ease), opacity 240ms var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 120px;
  overflow: hidden;
  background: var(--charcoal);
  isolation: isolate;
}

/* Fixed background => true cinematic parallax as content scrolls over it */
.hero__bg {
  position: fixed;
  inset: 0;
  background-image: url("assets/images/ghost-door-hero-ai.jpg");
  background-size: cover;
  /* centered (not top-weighted) + no extra zoom, so the image isn't cut off top/bottom (Paula's feedback 9/8) */
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: -2;
  will-change: transform;
  transform: scale(1.0);
}

.hero__scrim {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.78) 0%,
      rgba(10,10,10,0.40) 24%,
      rgba(10,10,10,0.34) 50%,
      rgba(10,10,10,0.72) 80%,
      rgba(10,10,10,0.96) 100%),
    radial-gradient(120% 82% at 50% 52%, rgba(10,10,10,0) 0%, rgba(10,10,10,0.55) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.78);
  font-weight: 400;
  margin: 0 0 34px;
  animation: heroIn 1100ms var(--ease) both;
  animation-delay: 120ms;
}
.hero__eyebrow-rule { width: 46px; height: 1px; background: rgba(201, 160, 99, 0.8); display: inline-block; }

.hero__title {
  color: #fff;
  font-weight: 300;
  line-height: 0.96;
  margin: 0 0 34px;
  text-shadow: 0 3px 50px rgba(0,0,0,0.5);
  animation: heroIn 1200ms var(--ease) both;
  animation-delay: 240ms;
}
.hero__title em {
  color: var(--sand-3);
  font-style: italic;
  font-weight: 300;
}

.hero__lede {
  color: rgba(245, 240, 235, 0.88);
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
  font-weight: 300;
  line-height: 1.72;
  max-width: 620px;
  margin: 0 0 48px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.55);
  animation: heroIn 1200ms var(--ease) both;
  animation-delay: 380ms;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  animation: heroIn 1200ms var(--ease) both;
  animation-delay: 520ms;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(245, 240, 235, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  animation: heroIn 1200ms var(--ease) both;
  animation-delay: 800ms;
  transition: color 300ms var(--ease);
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-line {
  width: 1px; height: 62px;
  background: linear-gradient(180deg, rgba(201,160,99,0.9), rgba(201,160,99,0));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 30%;
  background: var(--sand-3);
  animation: scrollPulse 2200ms var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(240%); opacity: 0; }
}

/* ============================================================ SECTION SHELL */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 11vw, 170px) 0;
  background: var(--bg);
}
.section--dark { background: var(--charcoal); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--dark-ink); }
.section--dark p { color: var(--dark-muted); }
.section--dark em { color: var(--sand-3); }
.section--dark strong { color: var(--dark-ink); }

.section__inner { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }

.section__head { max-width: 780px; margin: 0 0 clamp(48px, 6vw, 84px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lede { font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--muted); max-width: 700px; margin-bottom: 0; }
.section__lede--center { margin-left: auto; margin-right: auto; }
.section__lede--light { color: var(--dark-muted); }

/* ============================================================ USP STRIP */
.strip {
  position: relative;
  z-index: 1;
  background: var(--off-white-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: clamp(62px, 7vw, 96px) 0;
}
.strip__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.2vw, 56px);
}
.strip__item { display: flex; gap: 20px; align-items: flex-start; }
.strip__num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.strip__item h3 { margin: 0 0 8px; font-size: 1.06rem; font-weight: 500; }
.strip__item p { margin: 0; font-size: 0.93rem; line-height: 1.72; color: var(--muted); }

/* ============================================================ GHOST SECTION */
.ghost__showcase {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(34px, 4.5vw, 76px);
  align-items: center;
  margin: 0 0 clamp(64px, 7vw, 110px);
  padding-bottom: clamp(56px, 6vw, 96px);
  border-bottom: 1px solid var(--dark-border);
}
.ghost__showcase-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.55);
}
.ghost__showcase-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  transition: transform 1600ms var(--ease);
}
.ghost__showcase-figure:hover img { transform: scale(1.035); }

.ghost__showcase-meta {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin: 0 0 20px;
}
.ghost__showcase-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  font-weight: 300;
  color: var(--dark-ink);
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin: 0 0 22px;
}
.ghost__showcase-copy p { max-width: 520px; }

.ghost__spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
  margin: 38px 0 0;
}
.ghost__spec div { border-top: 1px solid var(--dark-border); padding-top: 14px; }
.ghost__spec dt {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 6px;
}
.ghost__spec dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--dark-ink);
}

.ghost__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin: 0 0 clamp(56px, 6.5vw, 92px);
}
.ghost__hero { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.ghost__hero img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; transition: transform 1400ms var(--ease); }
.ghost__hero:hover img { transform: scale(1.04); }
.ghost__hero figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.92);
  background: linear-gradient(180deg, rgba(10,10,10,0), rgba(10,10,10,0.82));
}
.ghost__side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.ghost__side figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.ghost__side img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; transition: transform 1400ms var(--ease); }
.ghost__side figure:hover img { transform: scale(1.05); }

.ghost__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.4vw, 52px);
  margin: 0 0 clamp(48px, 5vw, 72px);
}
.ghost__points li { display: flex; gap: 20px; align-items: flex-start; }
.ghost__points-icon { color: var(--sand); font-size: 1rem; line-height: 1.9; flex-shrink: 0; }
.ghost__points h4 {
  font-family: var(--serif);
  font-size: 1.22rem;
  text-transform: none;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--dark-ink);
  margin: 0 0 8px;
}
.ghost__points p { margin: 0; font-size: 0.95rem; line-height: 1.76; }

.ghost__cta { text-align: center; }

/* ============================================================ CINEMATIC STATEMENT BAND */
.band {
  position: relative;
  z-index: 1;
  min-height: clamp(440px, 62vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
  padding: clamp(80px, 10vw, 140px) 24px;
}
.band__bg {
  position: absolute;
  inset: -14% 0;
  background-image: url("assets/images/ghost-door-signature.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.band__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.72) 45%, rgba(10,10,10,0.94) 100%);
}
.band__inner { position: relative; z-index: 2; width: min(1000px, 100%); }
.band__kicker {
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin: 0 0 28px;
}
.band__text {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 6.6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}
.band__text em { color: var(--sand-3); font-style: italic; }

/* ============================================================ WHY */
.why { background: var(--bg); }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}
.why__list { display: flex; flex-direction: column; gap: 20px; margin-top: 34px; }
.why__list li { display: flex; gap: 16px; align-items: flex-start; font-size: 0.98rem; color: var(--muted); line-height: 1.74; font-weight: 300; }
.why__check { color: var(--sand); flex-shrink: 0; font-size: 1rem; line-height: 1.7; }

.why__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.why__frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1400ms var(--ease); }
.why__frame:hover img { transform: scale(1.04); }

/* ============================================================ QUOTE */
.quote {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: clamp(96px, 12vw, 190px) 24px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.quote__inner { width: min(940px, 100%); margin: 0 auto; position: relative; }
.quote__mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 0.6;
  color: var(--sand);
  opacity: 0.34;
  margin-bottom: 8px;
  user-select: none;
}
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  line-height: 1.28;
  letter-spacing: -0.026em;
  color: var(--charcoal);
  margin: 0 0 44px;
}
.quote__attr { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.quote__rule { width: 56px; height: 1px; background: var(--sand); margin-bottom: 10px; }
.quote__name {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
}
.quote__role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }

/* ============================================================ BARN */
.barn { background: var(--off-white-2); }
.barn__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 38px); }
.barn__card { }
.barn__card img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 26px;
  transition: transform 1200ms var(--ease), box-shadow 600ms var(--ease);
  box-shadow: var(--shadow-sm);
}
.barn__card:hover img { transform: translateY(-6px); box-shadow: var(--shadow); }
.barn__card h3 { margin: 0 0 10px; }
.barn__card p { margin: 0; font-size: 0.95rem; }

/* ============================================================ GALLERY */
.gallery-section { background: var(--bg); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  display: block;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease); }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile:hover img { transform: scale(1.07); }
.tile__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, 0.42);
  opacity: 0;
  transition: opacity 380ms var(--ease);
}
.tile__overlay span {
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 22px;
  border-radius: 2px;
}
.tile:hover .tile__overlay, .tile:focus-visible .tile__overlay { opacity: 1; }

/* ============================================================ ETSY */
.etsy { background: var(--charcoal); }
.etsy h2, .etsy .eyebrow { color: var(--dark-ink); }
.etsy .eyebrow { color: var(--dark-muted); }
.etsy p { color: var(--dark-muted); }
.etsy__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.etsy__copy h2 { margin-bottom: 20px; }
.etsy__copy p { margin: 0; max-width: 640px; }
.etsy__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.etsy__actions .btn--dark { background: var(--sand-2); color: var(--charcoal); }
.etsy__actions .btn--dark:hover { background: var(--sand-3); }
.etsy__note { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark-muted); }

/* ============================================================ PROCESS */
.process { background: var(--off-white-2); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.step {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  transition: border-color 500ms var(--ease);
}
.step:hover { border-top-color: var(--sand); }
.step__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sand);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.step h3 { margin: 0 0 10px; font-size: 1.06rem; font-weight: 500; }
.step p { margin: 0; font-size: 0.9rem; line-height: 1.72; }

/* ============================================================ CRAFT */
.craft { background: var(--bg); padding-top: clamp(90px, 11vw, 170px); }
.craft__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
}
.craft__frame { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.craft__frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.craft__badge {
  position: absolute;
  right: 22px; bottom: 22px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--off-white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 160, 99, 0.32);
  max-width: 220px;
}
.craft__badge-num {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sand-3);
  letter-spacing: -0.03em;
}
.craft__badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.72);
  margin-top: 10px;
  line-height: 1.6;
}
.craft__list { display: flex; flex-direction: column; gap: 16px; margin: 32px 0 40px; }
.craft__list li { display: flex; gap: 15px; align-items: flex-start; font-size: 0.97rem; color: var(--muted); line-height: 1.72; font-weight: 300; }
.craft__check { color: var(--sand); flex-shrink: 0; font-size: 0.9rem; line-height: 1.9; }

/* ============================================================ CTA STRIP */
.cta-strip {
  position: relative;
  z-index: 1;
  background: var(--charcoal);
  padding: clamp(74px, 9vw, 130px) 0;
  border-top: 1px solid rgba(201, 160, 99, 0.2);
}
.cta-strip__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.cta-strip__copy h2 { color: var(--dark-ink); margin-bottom: 18px; }
.cta-strip__copy p { color: var(--dark-muted); margin: 0; max-width: 620px; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================ CONTACT */
.contact-section { background: var(--off-white-2); }
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 4vw, 62px); align-items: start; }

.contact__card {
  background: var(--charcoal);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 42px);
  box-shadow: var(--shadow);
}
.contact__card-title {
  color: var(--dark-ink);
  font-size: 1.28rem;
  font-weight: 400;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}
.contact__row {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--dark-border);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}
.contact__row:last-child { border-bottom: 0; }
a.contact__row:hover { transform: translateX(4px); }
.contact__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201, 160, 99, 0.13);
  color: var(--gold-tint);
  border: 1px solid rgba(201, 160, 99, 0.28);
}
.contact__label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 3px;
}
.contact__value { display: block; color: var(--dark-ink); font-size: 0.98rem; font-weight: 400; }

.contact__brag {
  margin-top: 26px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.contact__brag p { margin: 0 0 6px; font-size: 0.9rem; line-height: 1.7; }
.contact__brag p:last-child { margin: 0; }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.2vw, 46px);
  box-shadow: var(--shadow-sm);
}
.form__row { margin-bottom: 20px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__row label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
  font-weight: 500;
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--off-white-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 280ms var(--ease), box-shadow 280ms var(--ease), background 280ms var(--ease);
}
.form__row textarea { resize: vertical; min-height: 118px; }
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.22);
}
.form__row input::placeholder, .form__row textarea::placeholder { color: var(--muted-2); font-weight: 300; }
.form__disclaimer { font-size: 0.78rem; color: var(--muted-2); margin: 16px 0 0; text-align: center; }

/* ============================================================ FOOTER */
.footer {
  position: relative;
  z-index: 1;
  background: var(--charcoal-2);
  color: var(--dark-ink);
  padding: clamp(64px, 8vw, 108px) 0 0;
}
.footer__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(30px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vw, 76px);
}
.footer__mark {
  display: block;
  width: 68px; height: 68px;
  padding: 6px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(201, 160, 99, 0.55);
  margin-bottom: 20px;
}
.footer__wordmark {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--dark-ink);
}
.footer__tag { color: var(--dark-muted); font-size: 0.92rem; max-width: 380px; margin: 0; line-height: 1.75; }

.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { color: var(--sand-3); margin: 0 0 8px; font-size: 0.68rem; letter-spacing: 0.24em; }
.footer__col a, .footer__col span {
  color: var(--dark-muted);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 260ms var(--ease);
}
.footer__col a:hover { color: var(--sand-3); }
.footer__note { color: rgba(163, 154, 142, 0.66) !important; font-size: 0.8rem !important; margin-top: 6px; }

.footer__base {
  border-top: 1px solid var(--dark-border);
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 34px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__base p { margin: 0; color: rgba(163, 154, 142, 0.7); font-size: 0.82rem; }

/* ============================================================ LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.is-open { display: flex; animation: lbIn 320ms var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__figure { margin: 0; max-width: min(1180px, 100%); text-align: center; }
.lightbox__figure img { max-width: 100%; max-height: 78vh; object-fit: contain; margin: 0 auto; border-radius: var(--radius-md); }
.lightbox__figure figcaption {
  color: rgba(245, 240, 235, 0.72);
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 280ms var(--ease), border-color 280ms var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.lightbox__close { top: 26px; right: 26px; }
.lightbox__nav--prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ============================================================ RESPONSIVE — 1280 and below */
@media (max-width: 1280px) {
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

/* Nav gets tight before the tablet breakpoint — drop the sub-wordmark early
   so the logo, links and CTA stay on a single line. */
@media (max-width: 1280px) {
  .nav__wordmark-sub { display: none; }
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 0.74rem; letter-spacing: 0.09em; }
  .nav__group-toggle { font-size: 0.74rem; letter-spacing: 0.09em; }
}

/* Nav collapses to the hamburger at the standard tablet breakpoint. The six
   product pages live in the Products dropdown rather than as flat nav items,
   so Home / Products / Contact fits comfortably on a laptop line — the earlier
   1180px early-collapse workaround is no longer needed. */
@media (max-width: 1024px) {
  .nav__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 24px;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 460ms var(--ease), padding 460ms var(--ease);
    border-bottom: 1px solid rgba(245, 240, 235, 0);
  }
  .nav__links.is-open {
    max-height: min(760px, calc(100vh - var(--nav-h)));
    padding: 14px 24px 26px;
    border-bottom-color: rgba(245, 240, 235, 0.09);
  }
  .nav__links a {
    padding: 14px 0;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(245,240,235,0.06);
  }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }

  /* In the stacked panel the products are always visible, so the toggle stops
     being a control and becomes a section heading. scripts.js mirrors this by
     pinning aria-expanded="true" and removing it from the tab order. */
  .nav__group { position: static; }
  .nav__group::after { content: none; }
  .nav__group-toggle {
    width: 100%;
    justify-content: flex-start;
    cursor: default;
    pointer-events: none;
    color: rgba(245, 240, 235, 0.42);
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    padding: 18px 0 4px;
  }
  .nav__group-chevron { display: none; }
  .nav__group-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    padding: 0;
    background: none;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__group-menu a {
    padding: 14px 0 14px 14px;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(245,240,235,0.06);
  }
}

/* ============================================================ RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  :root { --nav-h: 90px; }

  .nav__mark { width: 46px; height: 46px; padding: 4px; }
  .nav__inner { width: calc(100% - 36px); }
  .nav__wordmark-sub { display: none; }

  .ghost__grid { grid-template-columns: 1fr; }
  .ghost__hero img { min-height: 320px; }
  .ghost__side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .ghost__showcase { grid-template-columns: 1fr; }
  .ghost__showcase-figure img { aspect-ratio: 4 / 3.4; }

  .why__inner { grid-template-columns: 1fr; }
  .why__media { order: -1; }
  .why__frame img { aspect-ratio: 16 / 11; }

  .craft__inner { grid-template-columns: 1fr; }
  .craft__media { order: -1; }
  .craft__frame img { aspect-ratio: 16 / 11; }

  .barn__grid { grid-template-columns: 1fr 1fr; }
  .etsy__inner { grid-template-columns: 1fr; }
  .cta-strip__inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
}

/* ============================================================ RESPONSIVE — MOBILE */
@media (max-width: 640px) {
  :root { --nav-h: 72px; }

  .section__inner,
  .strip__inner,
  .craft__inner,
  .cta-strip__inner,
  .footer__inner,
  .footer__base { width: calc(100% - 32px); }

  .nav__inner { width: calc(100% - 28px); gap: 12px; padding: 14px 0; }
  .nav__logo { gap: 11px; }
  .nav__mark { width: 44px; height: 44px; padding: 4px; }
  .nav__wordmark-primary { font-size: 0.92rem; }
  .nav__cta .btn span { display: none; }
  .nav__cta .btn--sm { padding: 10px 13px; }

  .hero { padding: calc(var(--nav-h) + 30px) 20px 110px; }
  .hero__bg { background-position: center center; transform: scale(1.0); }
  .hero__eyebrow { gap: 10px; font-size: 0.56rem; letter-spacing: 0.28em; margin-bottom: 24px; }
  .hero__eyebrow-rule { width: 24px; }
  .hero__title { margin-bottom: 24px; }
  .hero__lede { margin-bottom: 34px; font-size: 1rem; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 340px; }
  .hero__ctas .btn { width: 100%; }
  .hero__scroll { bottom: 26px; }
  .hero__scroll-line { height: 46px; }

  .strip__inner { grid-template-columns: 1fr; gap: 30px; }
  .ghost__points { grid-template-columns: 1fr; }
  .ghost__side { grid-template-columns: 1fr; }
  .ghost__showcase-figure img { aspect-ratio: 3 / 4; }
  .ghost__spec { grid-template-columns: 1fr; gap: 18px; }

  .barn__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .form__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .tile--wide { grid-column: span 1; }
  .tile--tall { grid-row: span 1; }

  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__close { top: 16px; right: 16px; }

  .craft__badge { right: 14px; bottom: 14px; padding: 16px 18px; max-width: 180px; }
  .craft__badge-num { font-size: 1.8rem; }
}

/* ============================================================ GHOST DOOR GALLERY */
.ghost-gallery {
  margin: clamp(32px, 4vw, 56px) 0;
}
.ghost-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ghost-gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  aspect-ratio: auto;
}
.ghost-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(10,10,10,0.6);
  transition: transform 600ms var(--ease);
}
.ghost-gallery__item:hover img {
  transform: scale(1.03);
}
/* Lightbox overlay on hover */
.ghost-gallery__item::after {
  content: 'View';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.45);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 300ms var(--ease);
  border: 1px solid rgba(255,255,255,0.3);
  margin: 8px;
  border-radius: 2px;
}
.ghost-gallery__item:hover::after {
  opacity: 1;
}
@media (max-width: 900px) {
  .ghost-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ghost-gallery__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================ PLACEHOLDER GALLERY */
.placeholder-gallery {
  margin: 3rem 0;
}
.placeholder-gallery__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  border: 2px dashed var(--dark-border, rgba(245,240,235,0.12));
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.section:not(.section--dark) .placeholder-gallery__message {
  border-color: var(--border);
  background: rgba(0,0,0,0.02);
}
.placeholder-gallery__icon {
  font-size: 2.5rem;
  opacity: 0.7;
}
.placeholder-gallery__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--dark-muted, var(--muted));
  letter-spacing: 0.02em;
}
.section:not(.section--dark) .placeholder-gallery__text {
  color: var(--muted);
}

/* ============================================================ BARN CARD PLACEHOLDER */
.barn__card--placeholder .barn__card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: 10px;
  border: 2px dashed var(--border);
  margin-bottom: 1.2rem;
}
.barn__card--placeholder .barn__card-placeholder span {
  font-size: 2rem;
  opacity: 0.5;
}

/* ============================================================ POCKET DOORS SECTION */
.pocket__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .pocket__features { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.pocket__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pocket__feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}
.pocket__feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-ink);
  margin-bottom: 0.4rem;
}
.pocket__feature p {
  font-size: 0.95rem;
  color: var(--dark-muted);
  line-height: 1.6;
}
.pocket__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================ DOG FURNITURE CRATES SECTION */
.dog-crates__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .dog-crates__features { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.dog-crates__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dog-crates__feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}
.dog-crates__feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.dog-crates__feature p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.dog-crates__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================ MOTION PREFERENCES */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg, .band__bg { transform: none !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
