/* ==========================================================================
   Stallings Wallpaper Hanger — style.css
   Concept: architectural calm meets Southern modern interiors.
   Palette: aubergine / clay / sage / linen / charcoal / brass.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-italic.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Red Hat Text';
  src: url('../fonts/redhattext.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Red Hat Text';
  src: url('../fonts/redhattext-italic.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* surfaces */
  --linen: #F2EDE4;
  --paper: #F8F5EF;
  --sand: #E7DFD2;
  --aubergine: #342536;
  --aubergine-deep: #271B29;
  --charcoal: #242326;

  /* text */
  --ink: #242326;
  --body: #3E3A40;
  --muted: #5F5962;
  --on-dark: #F2EDE4;
  --on-dark-muted: #C7BBC6;

  /* accents */
  --clay: #B56F59;        /* decorative fills only */
  --clay-solid: #9E5741;  /* button fill: white on it 5.39:1 */
  --clay-hover: #84452F;
  --clay-text: #8E4A36;   /* accent text on light: 5.66 linen / 4.99 sand */
  --clay-light: #E0A08B;  /* accent on aubergine */
  --sage: #879486;        /* decorative only */
  --sage-text: #546150;   /* 5.62 linen / 4.96 sand */
  --sage-light: #B7C2B5;  /* on aubergine */
  --brass: #B99A67;       /* decorative rules + button fill (ink on it 5.87) */
  --brass-text: #715734;  /* accent text on light */
  --brass-light: #D9BF8E; /* eyebrows on dark: 8.06 */

  /* lines */
  --rule: #DDD5C8;        /* decorative hairlines only */
  --rule-dark: #4A3B4C;
  --line: #8A8288;        /* control borders: 3.2 on linen */
  --error: #A32B22;

  /* type */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Red Hat Text', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --header-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--linen);
  overflow-x: hidden;
}
/* subtle paper grain over every surface */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.2 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--clay-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-hover); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.005em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: .6rem 1rem; background: var(--aubergine); color: var(--on-dark); border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }

/* ---------- Type helpers ---------- */
.h-display { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 500; }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-text);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--brass); flex: none; }
.eyebrow--light { color: var(--brass-light); }
.eyebrow--brass { color: var(--brass-light); }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink); font-weight: 400; max-width: 60ch; }
.lead--light { color: var(--on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn--clay { background: var(--clay-solid); color: #fff; border-color: var(--clay-solid); }
.btn--clay:hover { background: var(--clay-hover); border-color: var(--clay-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: rgba(36,35,38,.28); color: var(--on-dark); border-color: rgba(242,237,228,.7); backdrop-filter: blur(3px); }
.btn--ghost:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--linen); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--on-dark);
  background: linear-gradient(to bottom, rgba(36,35,38,.62), rgba(36,35,38,0));
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(52,37,54,.96);
  box-shadow: 0 1px 0 rgba(242,237,228,.08), 0 10px 30px rgba(36,35,38,.18);
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: inherit; }
.brand__mark { flex: none; border-radius: 8px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: .01em; }
.brand__sub { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-light); margin-top: .2rem; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; list-style: none; }
.nav__list a {
  color: inherit;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .4rem 0;
  position: relative;
}
.nav__list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--brass-light); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }
.nav__cta { padding: .65rem 1.2rem; font-size: .88rem; }
.hamburger { display: none; }

.mobile-menu {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--aubergine);
  color: var(--on-dark);
  border-top: 1px solid var(--rule-dark);
  padding: 1rem var(--gutter) 2rem;
  box-shadow: 0 30px 40px rgba(36,35,38,.3);
}
.mobile-menu ul { list-style: none; margin-bottom: 1.25rem; }
.mobile-menu li a { display: block; padding: .9rem 0; font-family: var(--serif); font-size: 1.35rem; color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule-dark); }
.mobile-menu .btn { width: 100%; }
.mobile-menu__phone { display: block; margin-top: 1rem; text-align: center; color: var(--brass-light); font-weight: 600; letter-spacing: .04em; }

@media (max-width: 899px) {
  .nav { display: none; }
  .hamburger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 8px;
    background: transparent; border: 1px solid rgba(242,237,228,.4); border-radius: var(--radius); cursor: pointer;
  }
  .hamburger span { display: block; height: 2px; width: 100%; background: var(--on-dark); transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand__sub { display: none; }
}
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  min-height: min(100vh, 920px);
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  background: var(--aubergine);
  isolation: isolate;
  overflow: hidden;
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center 55%; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(36,35,38,.86) 0%, rgba(36,35,38,.55) 42%, rgba(36,35,38,.18) 75%, rgba(36,35,38,.28) 100%),
    linear-gradient(to right, rgba(52,37,54,.55), rgba(52,37,54,0) 65%);
}
.hero__content { position: relative; padding: calc(var(--header-h) + 4rem) 0 6.5rem; max-width: 760px; margin-left: max(var(--gutter), calc((100% - var(--container)) / 2)); }
.hero__title { font-size: clamp(2.5rem, 6.2vw, 4.9rem); font-weight: 500; color: #fff; margin-bottom: 1.1rem; line-height: 1.05; text-shadow: 0 2px 24px rgba(36,35,38,.35); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 34rem; color: var(--on-dark); margin-bottom: 2rem; text-shadow: 0 1px 12px rgba(36,35,38,.4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 2.25rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--on-dark-muted); text-decoration: none; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
}
.scroll-cue__line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--brass-light), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--on-dark); }
@media (min-width: 720px) { .hero__content { padding-bottom: 7.5rem; } }
@media (max-width: 719px) {
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero__media img { object-position: center 70%; }
  .hero__veil { background: linear-gradient(to top, rgba(36,35,38,.9) 0%, rgba(36,35,38,.62) 45%, rgba(36,35,38,.22) 80%, rgba(36,35,38,.35) 100%); }
  .hero__content { padding-bottom: 5.5rem; }
  .hero__actions .btn { width: 100%; }
  .scroll-cue { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; position: relative; }
.section--sand { background: var(--sand); }
.section--aubergine { background: var(--aubergine); color: var(--on-dark); }
.section--aubergine h2, .section--aubergine h3 { color: var(--on-dark); }
.section__head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head .lead { margin-inline: auto; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__head--left .eyebrow { justify-content: flex-start; }
.section__head--left .lead { margin-inline: 0; }

/* architectural hairline between sections */
.section::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--rule); }
.section--aubergine::before { background: var(--rule-dark); }
.hero + .section::before { display: none; }

/* ---------- Intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.intro__copy p { max-width: 56ch; }
.pillars { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.pillars li { position: relative; padding-left: 1.4rem; font-weight: 500; color: var(--ink); font-size: .98rem; }
.pillars li::before { content: ""; position: absolute; left: 0; top: .55em; width: .55rem; height: .55rem; transform: rotate(45deg); background: var(--clay); }
.intro__figure { margin: 0; position: relative; }
.intro__figure::before { content: ""; position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem; border: 1px solid var(--brass); z-index: 0; }
.intro__figure img { position: relative; z-index: 1; aspect-ratio: 4 / 3; object-fit: cover; }
.intro__figure figcaption { font-size: .85rem; color: var(--muted); margin-top: 2.4rem; padding-left: 1rem; border-left: 2px solid var(--clay); }
@media (max-width: 899px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__figure { margin-right: 1.5rem; }
}
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.service-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem); }
.service { position: relative; padding-top: 1rem; }
.service__media { overflow: hidden; border-radius: var(--radius); margin-bottom: 1.25rem; background: var(--linen); }
.service__media img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform .8s var(--ease); }
.service:hover .service__media img { transform: scale(1.04); }
.service__index { display: block; font-family: var(--serif); font-size: .9rem; color: var(--brass-text); letter-spacing: .08em; margin-bottom: .35rem; }
.service h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.service p { color: var(--body); font-size: .98rem; margin: 0; max-width: 34ch; }
.services__cta { text-align: center; margin-top: 3.5rem; }
@media (max-width: 1023px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .service-grid { grid-template-columns: 1fr; } .service p { max-width: none; } }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.why__list { list-style: none; margin-top: 2.5rem; border-top: 1px solid var(--rule-dark); }
.why__list li { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid var(--rule-dark); }
.why__num { font-family: var(--serif); font-size: 1.3rem; color: var(--brass-light); line-height: 1.3; }
.why__list h3 { font-size: 1.15rem; margin-bottom: .25rem; font-family: var(--sans); font-weight: 600; letter-spacing: .01em; }
.why__list p { margin: 0; color: var(--on-dark-muted); font-size: .97rem; max-width: 52ch; }
.why__figures { position: sticky; top: calc(var(--header-h) + 2rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.why__figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.why__figure img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.why__figure--offset { margin-top: 4rem; }
@media (max-width: 899px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__figures { position: static; order: -1; }
  .why__figure--offset { margin-top: 2.5rem; }
}

/* ---------- Process ---------- */
.process__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.process__figure { margin: 0; position: sticky; top: calc(var(--header-h) + 2rem); }
.process__figure img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; border-radius: var(--radius); }
.process .section__head { margin-bottom: 2.5rem; }
.timeline { list-style: none; position: relative; margin-bottom: 2.5rem; }
.timeline::before { content: ""; position: absolute; left: 1.35rem; top: 1rem; bottom: 1rem; width: 1px; background: linear-gradient(to bottom, var(--brass), var(--rule)); }
.timeline__step { display: grid; grid-template-columns: 2.7rem 1fr; gap: 1.5rem; padding: 1.5rem 0; }
.timeline__step + .timeline__step { border-top: 1px solid var(--rule); }
.timeline__num {
  position: relative; z-index: 1;
  width: 2.7rem; height: 2.7rem; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .95rem; letter-spacing: .05em;
  color: var(--ink); background: var(--linen); border: 1px solid var(--brass); border-radius: 50%;
}
.timeline__body h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.timeline__body p { margin: 0; max-width: 46ch; }
@media (max-width: 899px) {
  .process__grid { grid-template-columns: 1fr; }
  .process__figure { position: static; max-width: 520px; }
}

/* ---------- Gallery (CSS-columns masonry) ---------- */
.masonry { list-style: none; columns: 3; column-gap: 1.5rem; }
.masonry__item { break-inside: avoid; margin-bottom: 1.5rem; }
.gallery__link { display: block; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--linen); text-decoration: none; }
.gallery__link img { width: 100%; transition: transform .8s var(--ease); }
.gallery__link:hover img { transform: scale(1.04); }
.gallery__label {
  position: absolute; left: 1rem; bottom: 1rem;
  padding: .4rem .75rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); background: rgba(242,237,228,.92); border-radius: var(--radius);
}
@media (max-width: 1023px) { .masonry { columns: 2; } }
@media (max-width: 639px) { .masonry { columns: 1; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(36,35,38,.9); }
.lightbox__dialog { position: relative; width: min(94vw, 1100px); max-height: 92vh; display: flex; align-items: center; justify-content: center; }
.lightbox__figure { margin: 0; max-width: 100%; text-align: center; }
.lightbox__figure img { max-width: 100%; max-height: 80vh; width: auto; height: auto; margin: 0 auto; border-radius: var(--radius); }
.lightbox__figure figcaption { color: var(--on-dark); font-size: .9rem; margin-top: .9rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(242,237,228,.12); color: var(--on-dark); border: 1px solid rgba(242,237,228,.35); border-radius: 50%;
  font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background-color .25s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(242,237,228,.28); }
.lightbox__close { top: -60px; right: 0; }
.lightbox__nav--prev { left: -64px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: -64px; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: -2.4rem; left: 0; margin: 0; color: var(--on-dark-muted); font-size: .8rem; letter-spacing: .15em; }
@media (max-width: 1240px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 8px; right: 8px; }
}

/* ---------- Local ---------- */
.local__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.local__figure { margin: 0; position: relative; }
.local__figure::after { content: ""; position: absolute; left: -1.25rem; top: 1.25rem; right: 1.25rem; bottom: -1.25rem; background: var(--sand); z-index: 0; }
.local__figure img { position: relative; z-index: 1; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; border-radius: var(--radius); }
.local__copy p { max-width: 58ch; }
.local__facts { display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem 2.5rem; margin: 2rem 0 2.25rem; padding: 1.5rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.local__facts dt { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-text); font-weight: 600; margin-bottom: .25rem; }
.local__facts dd { margin: 0; font-family: var(--serif); color: var(--ink); font-size: 1.05rem; }
@media (max-width: 899px) {
  .local__grid { grid-template-columns: 1fr; }
  .local__figure { max-width: 460px; margin-left: 1.25rem; }
}
@media (max-width: 560px) { .local__facts { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- Location / map ---------- */
.location__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; align-items: stretch; border: 1px solid var(--brass); background: var(--linen); }
.location__card { padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.location__card h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.location__address { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); line-height: 1.4; margin-bottom: 1rem; }
.location__meta { color: var(--body); margin-bottom: 1.75rem; }
.location__meta a { color: var(--clay-text); }
.location__card .btn { align-self: flex-start; }
.location__map { position: relative; min-height: 420px; background: var(--aubergine); }
.location__map::before { content: "Map of 1328 Stallings Rd, Stallings, NC"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--on-dark-muted); font-size: .9rem; padding: 2rem; text-align: center; }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.72) sepia(.12); }
@media (max-width: 899px) {
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 340px; }
}

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact__details { list-style: none; margin-top: 2rem; border-top: 1px solid var(--rule); }
.contact__details li { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--rule); font-size: .98rem; align-items: baseline; }
.contact__details a { word-break: break-word; }
.contact__key { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-text); font-weight: 600; }
.contact__figure { margin: 2.5rem 0 0; max-width: 320px; }
.contact__figure img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.contact__panel { background: var(--paper); border: 1px solid var(--rule); border-top: 3px solid var(--clay); padding: clamp(1.5rem, 3.5vw, 3rem); position: relative; }

.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.field__opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #8A8288; opacity: 1; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--aubergine); box-shadow: 0 0 0 3px rgba(52,37,54,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field--hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.75rem; }
.form__note { margin: 0; font-size: .88rem; color: var(--muted); }
.error-message { color: var(--error) !important; font-weight: 500; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success__mark { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--brass); color: var(--sage-text); font-size: 1.8rem; margin-bottom: 1.25rem; background: var(--linen); }
.form-success__title { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); max-width: 26ch; margin: 0 auto; line-height: 1.4; }
@media (max-width: 899px) { .contact__grid { grid-template-columns: 1fr; } .contact__figure { display: none; } }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } .form__footer .btn { width: 100%; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--on-dark-muted); padding: 4rem 0 2rem; font-size: .95rem; }
.site-footer a { color: var(--on-dark); }
.site-footer a:hover { color: var(--brass-light); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid #3A383B; }
.footer__name { font-family: var(--serif); font-size: 1.5rem; color: var(--on-dark); margin-bottom: .2rem; }
.footer__owner { color: var(--brass-light); letter-spacing: .06em; margin-bottom: 1rem; }
.footer__tag { max-width: 34ch; margin: 0; }
.footer__heading { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-light); font-weight: 600; margin-bottom: 1rem; }
.footer__address { margin-bottom: .75rem; }
.footer__col a { line-height: 1.9; word-break: break-word; }
.footer__links { list-style: none; }
.footer__links a { text-decoration: none; line-height: 2; }
.footer__links a:hover { text-decoration: underline; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: .85rem; }
.footer__bottom p { margin: 0; }
.footer__top { text-decoration: none; }
@media (max-width: 899px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Reveal animation (progressive enhancement) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js-enhance .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  html.js-enhance .reveal--delay { transition-delay: .15s; }
  html.js-enhance .reveal.is-visible { opacity: 1; transform: none; }
  .hero__content > * { animation: heroIn 1s var(--ease) both; }
  .hero__content > *:nth-child(2) { animation-delay: .12s; }
  .hero__content > *:nth-child(3) { animation-delay: .24s; }
  .hero__content > *:nth-child(4) { animation-delay: .36s; }
  .scroll-cue__line::after { animation: cue 2.2s var(--ease) infinite; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes cue { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header, .scroll-cue, .lightbox, .mobile-menu { display: none !important; }
  body::before { display: none; }
}
