/* =========================================================
   GOLDEN REPAIRS & RENOVATIONS — Stylesheet
   Chattanooga, TN
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,0..100;1,9..144,300..900,0..100&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #f1e6cd;
  --bg-soft: #fbf5e6;
  --bg-paper: #f7eed8;
  --ink: #1a1108;
  --ink-2: #2a1d10;
  --ink-dim: #5d4a36;
  --ink-faint: #897560;
  --gold: #c0883c;
  --gold-deep: #8d5e1f;
  --gold-glow: #e7c275;
  --rust: #8a3a1c;
  --sage: #51613e;
  --line: rgba(26, 17, 8, 0.14);
  --line-strong: rgba(26, 17, 8, 0.32);
  --shadow-1: 0 1px 2px rgba(26,17,8,.06), 0 8px 24px rgba(26,17,8,.08);
  --shadow-2: 0 2px 6px rgba(26,17,8,.08), 0 24px 60px rgba(26,17,8,.18);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* warm paper texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(138, 94, 34, 0.045) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

button { font: inherit; cursor: pointer; }

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-deep);
  opacity: .8;
}

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink-2);
  font-variation-settings: "opsz" 32, "SOFT" 80;
}

.dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 4.6em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em -0.05em 0;
  color: var(--gold-deep);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 1;
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
  z-index: 1;
}

.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.section--ink {
  background: var(--ink);
  color: #f1e6cd;
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #f1e6cd; }
.section--ink p { color: #d8c8ad; }
.section--ink .eyebrow { color: var(--gold-glow); }
.section--ink .eyebrow::before { background: var(--gold-glow); }

.section--paper { background: var(--bg-paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 200ms ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--gold-deep);
  color: var(--bg-soft);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-glow);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 136, 60, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.section--ink .btn--ghost,
.hero .btn--ghost,
.cta-banner .btn--ghost {
  color: var(--bg);
  border-color: rgba(255,255,255,0.32);
}
.section--ink .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta-banner .btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 200ms ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 230, 205, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__brand-img {
  height: 50px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.nav__brand-text {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.nav__brand-text small {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-top: 4px;
}

@media (max-width: 540px) {
  .nav__brand-img { height: 40px; }
  .nav__brand-text small { display: none; }
}

.nav__menu {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__menu a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  transition: all 180ms ease;
  position: relative;
}
.nav__menu a:hover { color: var(--gold-deep); }
.nav__menu a.is-active {
  background: var(--ink);
  color: var(--bg);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.nav__phone svg { width: 16px; height: 16px; color: var(--gold-deep); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--bg);
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { gap: 10px; }
  .nav__cta .btn { padding: 12px 18px; font-size: 14px; }
}
@media (max-width: 540px) {
  .nav__cta { gap: 8px; }
  .nav__cta .btn { padding: 10px 14px; font-size: 13px; }
  .nav__cta .btn .arrow { display: none; }
  .nav__inner { padding-block: 14px; }
}
@media (max-width: 980px) {
  .nav.menu-open .nav__menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 16px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav.menu-open .nav__menu a {
    padding: 14px 18px;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav.menu-open .nav__menu a:last-child { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,17,8,.55) 0%, rgba(26,17,8,.25) 40%, rgba(26,17,8,.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(120px, 18vw, 220px) clamp(80px, 10vw, 140px);
  max-width: 920px;
}

.hero__title {
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 18px 0 24px;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
/* Cream variant for dark sections */
.hero .hero__title,
.cta-banner .hero__title,
.split-feature--ink .hero__title { color: #faf3e0; }
.hero .hero__title em,
.cta-banner .hero__title em,
.split-feature--ink .hero__title em { color: var(--gold-glow); }

.hero__sub {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: #ebd9b3;
  max-width: 640px;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 28, "SOFT" 100;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .eyebrow { color: var(--gold-glow); }
.hero .eyebrow::before { background: var(--gold-glow); }

/* hero — secondary variant for inner pages */
.hero--page {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero--page .hero__content {
  padding-block: clamp(80px, 12vw, 140px) clamp(60px, 8vw, 100px);
  position: relative;
  z-index: 1;
}
.hero--page::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__cell {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust__cell:last-child { border-right: 0; }
.trust__cell svg { width: 28px; height: 28px; color: var(--gold-glow); flex: 0 0 auto; }
.trust__cell strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: #faf3e0;
}
.trust__cell span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-glow);
}

@media (max-width: 800px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__cell:nth-child(2) { border-right: 0; }
  .trust__cell:nth-child(1), .trust__cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #d8c8ad;
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-glow);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer__brand-icon {
  height: 70px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.footer__brand-text {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #faf3e0;
}
.footer__brand-text small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 6px;
}
.footer__tag {
  font-size: 14px;
  line-height: 1.6;
  color: #c0a988;
  max-width: 320px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(241,230,205,0.22);
  color: #d8c8ad;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  font-size: 15px;
  color: #d8c8ad;
}
.footer ul a:hover { color: var(--gold-glow); }

.footer__contact { font-size: 15px; line-height: 1.7; color: #d8c8ad; }
.footer__contact p { color: #d8c8ad; }
.footer__contact a { color: #d8c8ad; }
.footer__contact a:hover { color: var(--gold-glow); }
.footer__contact strong { color: #faf3e0; font-weight: 600; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Section heading ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head__title { margin: 12px 0 0; }
.section-head__lead { color: var(--ink-2); }

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body { padding: 26px 28px 30px; }
.card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.card__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 8px 0 10px;
}
.card__text { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ---------- Service grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Value props ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values__item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.values__item:last-child { border-right: 0; }
.values__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.16em;
}
.values__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 14px 0 12px;
}
.values__text { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }

@media (max-width: 980px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .values__item:nth-child(2) { border-right: 0; }
  .values__item:nth-child(1), .values__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .values { grid-template-columns: 1fr; }
  .values__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .values__item:last-child { border-bottom: 0; }
}

/* ---------- Testimonials ---------- */
.quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 20px;
  position: relative;
  padding-left: 40px;
}
.quote::before {
  content: "\201C";
  position: absolute;
  left: -8px; top: -20px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 5em;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.quote-attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.quote-attr strong { color: var(--ink); font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(192,136,60,0.18), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(231,194,117,0.12), transparent 50%);
  z-index: -1;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-banner h2 { color: #faf3e0; }
.cta-banner h2 em {
  color: var(--gold-glow);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.cta-banner__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #faf3e0;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
}
.cta-banner__phone svg { width: 18px; height: 18px; color: var(--gold-glow); }

@media (max-width: 800px) {
  .cta-banner__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Image utility ---------- */
.media-frame {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Helpers */
.stack-sm > * + * { margin-top: 16px; }
.stack-md > * + * { margin-top: 28px; }
.stack-lg > * + * { margin-top: 44px; }

.divider {
  height: 1px;
  background: var(--line);
  margin-block: 48px;
}

/* small accent rule */
.rule-gold {
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 0 0 24px;
}

/* tag chip */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(192,136,60,0.14);
  color: var(--gold-deep);
  border-radius: 999px;
}

/* fade in */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 800ms cubic-bezier(.2,.7,.2,1) forwards;
}
.fade-up.delay-1 { animation-delay: 100ms; }
.fade-up.delay-2 { animation-delay: 200ms; }
.fade-up.delay-3 { animation-delay: 320ms; }
.fade-up.delay-4 { animation-delay: 440ms; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Gallery ---------- */
.gallery-cat {
  padding-block: clamp(60px, 8vw, 100px);
}
.gallery-cat__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid rgba(26,17,8,0.14);
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.gallery-cat__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.01em;
}
.gallery-cat__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.gallery-cat__count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  background: var(--bg-paper);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-grid__item:hover img { transform: scale(1.04); }
.gallery-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,17,8,0.45) 100%);
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-grid__item:hover::after { opacity: 1; }

/* layout patterns: all items same height, just vary column width */
.gallery-grid__item.span-4 { grid-column: span 4; grid-row: span 3; }
.gallery-grid__item.span-6 { grid-column: span 6; grid-row: span 3; }
.gallery-grid__item.span-8 { grid-column: span 8; grid-row: span 3; }
.gallery-grid__item.span-12 { grid-column: span 12; grid-row: span 4; }

@media (max-width: 880px) {
  .gallery-grid { gap: 12px; grid-auto-rows: 100px; }
  .gallery-grid__item.span-4,
  .gallery-grid__item.span-6,
  .gallery-grid__item.span-8 { grid-column: span 6; grid-row: span 3; }
  .gallery-grid__item.span-12 { grid-column: span 12; grid-row: span 4; }
  .gallery-cat__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 540px) {
  .gallery-grid { grid-auto-rows: 90px; }
  .gallery-grid__item.span-4,
  .gallery-grid__item.span-6,
  .gallery-grid__item.span-8,
  .gallery-grid__item.span-12 { grid-column: span 12; grid-row: span 3; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,7,3,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1200px, 95vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: #f4e7c9;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 12px;
}
.lightbox__close:hover { color: var(--gold-glow); }

/* ---------- About page sections ---------- */
.story {
  padding-block: clamp(80px, 10vw, 130px);
}
.story__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.story__media {
  position: sticky;
  top: 100px;
}
.story__media img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.story__media-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 14px;
}
.story__body p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--ink);
}
.story__body p.lede {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
}
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { position: static; }
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.split-feature__body {
  padding: clamp(50px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-feature--ink {
  background: var(--ink);
  color: var(--bg);
}
.split-feature--ink .split-feature__body h2 { color: var(--bg); }
.split-feature--ink .split-feature__body p { color: rgba(241,230,205,0.78); }
.split-feature--ink .split-feature__body strong { color: var(--gold-glow); }
@media (max-width: 880px) {
  .split-feature { grid-template-columns: 1fr; }
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(241,230,205,0.18);
  border-bottom: 1px solid rgba(241,230,205,0.18);
}
.numbers__cell {
  padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 36px);
  border-right: 1px solid rgba(241,230,205,0.18);
  text-align: left;
}
.numbers__cell:last-child { border-right: none; }
.numbers__num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-glow);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.numbers__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,230,205,0.7);
  margin-top: 10px;
}
@media (max-width: 880px) {
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .numbers__cell:nth-child(2) { border-right: none; }
  .numbers__cell:nth-child(1),
  .numbers__cell:nth-child(2) { border-bottom: 1px solid rgba(241,230,205,0.18); }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info__row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(26,17,8,0.12);
}
.contact-info__row:last-child { border-bottom: none; }
.contact-info__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.contact-info__value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink);
}
.contact-info__value a { color: var(--ink); text-decoration: none; }
.contact-info__value a:hover { color: var(--gold-deep); }
.contact-info__sub { font-size: 14px; color: var(--ink-dim); margin-top: 4px; }

.contact-form {
  background: var(--bg-paper);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(26,17,8,0.1);
  border-radius: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid rgba(26,17,8,0.18);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 200ms;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* FAQ */
.faq__item {
  border-bottom: 1px solid rgba(26,17,8,0.12);
  padding: 24px 0;
}
.faq__item:first-child { border-top: 1px solid rgba(26,17,8,0.12); }
.faq__q {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink);
}
.faq__a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
}
