/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #14110D;            /* deep espresso — primary dark background */
  --bg-alt: #1C1812;        /* slightly lifted dark for section variation */
  --bg-warm: #251F18;       /* warmest dark for callouts */
  --dark: #0A0907;          /* near-black for nav + footer + CTAs */
  --dark-2: #1F1B16;
  --gold: #C9A05A;          /* champagne bronze — brighter on dark */
  --gold-light: #E2C893;    /* light champagne accent */
  --text: #EDE5D2;          /* warm cream — primary text on dark */
  --muted: #A89F8C;         /* warm muted text */
  --border: #3D362D;        /* dark warm border */
  --hairline: rgba(237, 229, 210, 0.10);
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--dark); color: var(--gold-light); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  line-height: 1.08;
  color: #FFFFFF !important;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Override em accents to keep gold styling */
h1 em, h2 em, h3 em, h4 em { color: var(--gold) !important; }
.lb-hero-text h1 em,
.lb-teaser-text h2 em,
.page-hero h1 em,
.footer-map-info h2 em,
.section-dark .label,
.cta-banner h2 em { color: var(--gold-light) !important; }

h1 { font-size: clamp(44px, 7.5vw, 96px); font-weight: 400; }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }

h1 em, h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.label.no-line { padding-left: 0; }
.label.no-line::before { display: none; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 9, 7, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 6%;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo img {
  height: 76px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-logo .logo-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
  margin-left: 6px;
  font-size: 0.7em;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #FFFFFF;
  transition: color 0.3s;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 24px; }

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #14110D !important;
  padding: 14px 28px;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 160, 90, 0.5);
  animation: nav-cta-pulse 2.6s ease-in-out infinite;
  position: relative;
}

.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #14110D !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 160, 90, 0.45) !important;
  animation: none;
}

@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 160, 90, 0.45); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 160, 90, 0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
  display: block;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.3s;
  letter-spacing: 0;
}

.btn:hover::after { transform: translateX(4px); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--dark); border-color: var(--dark); }

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ─── SECTIONS ─── */
section { padding: 140px 6%; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .label { color: var(--gold-light); }
.section-dark .label::before { background: var(--gold-light); }
.section-warm { background: var(--bg-alt); }

.section-header { margin-bottom: 80px; max-width: 720px; }

.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin-top: 20px;
  line-height: 1.8;
}

.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ─── MARQUEE / TICKER ─── */
.ticker {
  background: var(--dark);
  color: var(--gold-light);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.ticker .dot { color: var(--gold); }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg-alt);
  padding: 36px 6%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--hairline);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 1;
}

.trust-item .lbl {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

/* ─── PAGE HERO WITH VIDEO ─── */
.page-hero.page-hero-video {
  padding: 0;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.page-hero.page-hero-video::before { display: none; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,13,0.55) 0%, rgba(20,17,13,0.25) 50%, rgba(20,17,13,0.85) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 6%;
}

@media (max-width: 768px) {
  .page-hero.page-hero-video { min-height: 60vh; }
  .page-hero-content { padding: 60px 6%; }
}

/* ─── PHOTO GRID ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-alt));
  aspect-ratio: 1 / 1;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s;
}

.photo-grid figure:hover img {
  transform: scale(1.04);
  opacity: 0.94;
}

/* ─── HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.step {
  background: transparent;
  padding: 56px 44px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s;
}

.step:hover { background: rgba(160, 120, 67, 0.04); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 32px;
  font-style: italic;
}

.step h3 { margin-bottom: 16px; font-size: 22px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ─── INTRO ─── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  padding: 140px 6%;
  overflow: visible;
}

.intro-text h2 { margin-bottom: 32px; }
.intro-text p { color: var(--muted); font-size: 17px; line-height: 1.9; margin-bottom: 24px; }

.intro-image {
  position: relative;
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.intro-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Cutout variant: transparent PNG floats freely, no crop, no frame */
.intro-image.intro-image-cutout::before { display: none; }
.intro-image.intro-image-cutout {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.intro-image.intro-image-cutout img {
  aspect-ratio: auto;
  width: 118%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
  transform: translateX(2%);
}

@media (max-width: 768px) {
  .intro-image.intro-image-cutout img {
    width: 110%;
    transform: translateX(0);
  }
}

/* ─── FEATURES / WHY US ─── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.feature {
  background: transparent;
  padding: 56px 44px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s;
}

.feature:nth-child(3n) { border-right: none; }
.feature:hover { background: rgba(160, 120, 67, 0.04); }

.feature-icon {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.feature h3 { font-size: 22px; margin-bottom: 14px; }
.feature p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ─── PRODUCT TABLE ─── */
.product-section { margin-bottom: 100px; }
.product-section > h3 {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
  font-size: clamp(28px, 3.5vw, 40px);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}

.product-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.product-table td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
  vertical-align: middle;
  transition: background 0.2s;
  color: var(--text);
}

.product-table tr:hover td { background: rgba(160, 120, 67, 0.04); }

.product-table strong { font-weight: 500; letter-spacing: 0.3px; }

.price-original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 14px;
}

.price-sale {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.5px;
}

/* ─── FINISHES ─── */
.finishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 60px;
}

.finish {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
}

.finish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.finish:hover img { transform: scale(1.04); }

.finish-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 36px 36px;
  background: linear-gradient(to top, rgba(20,17,13,0.92), transparent);
  color: var(--white);
}

.finish-content .label { color: var(--gold-light); margin-bottom: 12px; }
.finish-content .label::before { background: var(--gold-light); }
.finish-content h3 { color: var(--white); margin-bottom: 12px; font-size: 28px; }
.finish-content p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.7; max-width: 420px; }

/* ─── ABOUT PAGE ─── */
.story-video-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 0;
  display: flex;
  align-items: center;
}

.story-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.story-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,17,13,0.85) 0%, rgba(20,17,13,0.55) 55%, rgba(20,17,13,0.25) 100%),
    linear-gradient(to bottom, rgba(20,17,13,0.4) 0%, rgba(20,17,13,0.55) 100%);
  z-index: 1;
}

.story-video-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 6%;
}

.story-video-content h2 { color: #FFFFFF; margin-bottom: 32px; }
.story-video-content p {
  color: rgba(237, 229, 210, 0.92);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .story-video-section { min-height: 70vh; }
  .story-video-content { padding: 80px 6%; }
  .story-video-overlay { background: linear-gradient(to bottom, rgba(20,17,13,0.55) 0%, rgba(20,17,13,0.85) 100%); }
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.story-text h2 { margin-bottom: 32px; }
.story-text p { color: var(--muted); font-size: 17px; line-height: 1.9; margin-bottom: 22px; }

.story-image {
  position: relative;
}

.story-image::before {
  content: "";
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: flex-start;
  transition: padding 0.3s;
}

.process-step:hover { padding-left: 16px; }

.process-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.process-step h3 { font-size: 22px; margin-bottom: 12px; }
.process-step p { color: var(--muted); font-size: 16px; line-height: 1.8; }

/* ─── STATS ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 32px; }
.contact-info > p { color: var(--muted); font-size: 17px; line-height: 1.8; margin-bottom: 40px; }

.info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}

.info-block:last-of-type { border-bottom: none; }

.info-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.info-value { font-size: 17px; color: var(--text); line-height: 1.7; }
.info-value a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.info-value a:hover { color: var(--text); border-color: var(--text); }

/* ─── FORM ─── */
.booking-form {
  background: var(--bg-alt);
  padding: 56px;
  border: 1px solid var(--hairline);
  position: relative;
}

.booking-form::before {
  content: "";
  position: absolute;
  inset: -8px -8px 8px 8px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.booking-form h3 { margin-bottom: 36px; font-size: 26px; }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237, 229, 210, 0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-warm);
}

.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6% 100px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,13,0.4) 0%, rgba(20,17,13,0.2) 50%, rgba(20,17,13,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 32px;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero .label {
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero .label::before { background: var(--gold-light); }

.hero p {
  font-size: 19px;
  color: rgba(237, 229, 210, 0.85);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 40px;
  right: 6%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-meta .line {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* ─── PAGE HERO ─── */
.page-hero {
  margin-top: 108px;
  padding: 120px 6%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0; right: -200px;
  width: 800px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212,181,126,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 24px; max-width: 900px; }
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.62); font-size: 19px; max-width: 620px; line-height: 1.8; }
.page-hero .label { color: var(--gold-light); }
.page-hero .label::before { background: var(--gold-light); }

/* ─── WOOD CALLOUT (about page) ─── */
.wood-callout {
  background: var(--bg-warm);
  padding: 120px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.wood-callout-text h2 { margin-bottom: 24px; }
.wood-callout-text p { color: var(--muted); font-size: 17px; line-height: 1.9; margin-bottom: 18px; }

.wood-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.wood-fact {
  background: var(--bg);
  padding: 28px 28px;
}

.wood-fact-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.wood-fact-value {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--text);
}

/* ─── SALE BANNER (Spring) ─── */
.sale-banner {
  background: linear-gradient(90deg, #B7C9A5 0%, #E8D5BD 35%, #EFC9C2 70%, #C9C0D6 100%);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(20,17,13,0.12);
  padding: 18px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 108px;
  position: relative;
}

.sale-banner p {
  color: #2C2418;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.sale-banner strong { color: #14110D; font-weight: 700; }

.sale-banner a {
  color: #14110D;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #14110D;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.sale-banner a:hover { opacity: 0.7; }

/* ─── INCLUDES BAR ─── */
.includes-bar {
  background: var(--bg-alt);
  padding: 32px 6%;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.includes-item strong { color: var(--text); font-weight: 500; }
.includes-item .dot { color: var(--gold); font-size: 18px; line-height: 1; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--dark);
  padding: 140px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,181,126,0.08) 0%, transparent 70%);
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .label { color: var(--gold-light); }
.cta-banner .label::before { background: var(--gold-light); }
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 64px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 19px;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── PAYMENTS BAR ─── */
.payments-bar {
  background: var(--dark);
  padding: 32px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.payments-bar img {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
  .payments-bar { gap: 10px; padding: 24px 6%; }
  .payments-bar img { height: 26px; }
}

/* ─── FOOTER MAP ─── */
.footer-map {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: grayscale(40%) contrast(1.05);
}

.footer-map-info {
  padding: 80px 6%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-map-info .label { color: var(--gold-light); }
.footer-map-info .label::before { background: var(--gold-light); }
.footer-map-info h2 { color: var(--white); margin-bottom: 24px; font-size: clamp(32px, 4vw, 44px); }
.footer-map-info h2 em { color: var(--gold-light); font-style: italic; }
.footer-map-info p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.footer-map-info .addr {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 18px 0 6px;
}
.footer-map-info .addr-meta {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-map-info .addr-meta a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}
.footer-map-info .map-cta { margin-top: 28px; }

@media (max-width: 768px) {
  .footer-map { grid-template-columns: 1fr; }
  .footer-map-info { padding: 56px 6%; order: 2; }
  .footer-map-frame { min-height: 320px; order: 1; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 100px 6% 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 132px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ─── MAP ─── */
.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(40%) contrast(1.05);
  display: block;
  margin-top: 32px;
}

.success-msg {
  display: none;
  background: rgba(160, 120, 67, 0.12);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 20px 24px;
  font-size: 15px;
  margin-top: 16px;
}

/* ─── LICHTENBERG PAGE ─── */
.lb-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark);
  color: var(--white);
  margin-top: 108px;
  min-height: 80vh;
}

.lb-hero-text {
  padding: 100px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lb-hero-text h1 {
  color: var(--white);
  margin-bottom: 32px;
  font-size: clamp(40px, 5.5vw, 72px);
}
.lb-hero-text h1 em { color: var(--gold-light); font-style: italic; }
.lb-hero-text .label { color: var(--gold-light); }
.lb-hero-text .label::before { background: var(--gold-light); }
.lb-hero-text p { color: rgba(255,255,255,0.72); font-size: 18px; line-height: 1.85; margin-bottom: 24px; max-width: 540px; }

.lb-hero-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
  position: relative;
}

.lb-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(20,17,13,0.4));
}

.lb-collection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}

.lb-card {
  display: flex;
  flex-direction: column;
}

.lb-card-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.lb-card-img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-alt));
}

.lb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lb-card:hover .lb-card-img img { transform: scale(1.04); }

.lb-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.lb-card-meta h3 { font-size: 26px; }
.lb-card-meta .lb-price {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
}

.lb-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 16px;
}

.lb-card .lb-dims {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── LICHTENBERG TEASER (homepage) ─── */
.lb-teaser {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
  background: var(--dark);
  color: var(--white);
}

.lb-teaser-img {
  background-size: cover;
  background-position: center;
  min-height: 540px;
  position: relative;
}

.lb-teaser-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,17,13,0.35), transparent 40%);
}

.lb-teaser-text {
  padding: 100px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lb-teaser-text h2 { color: var(--white); margin-bottom: 24px; font-size: clamp(36px, 4.5vw, 56px); }
.lb-teaser-text h2 em { color: var(--gold-light); font-style: italic; }
.lb-teaser-text .label { color: var(--gold-light); }
.lb-teaser-text .label::before { background: var(--gold-light); }
.lb-teaser-text p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.85; margin-bottom: 36px; max-width: 460px; }

@media (max-width: 768px) {
  .lb-hero, .lb-teaser { grid-template-columns: 1fr; }
  .lb-hero-text, .lb-teaser-text { padding: 60px 6%; }
  .lb-hero-img, .lb-teaser-img { min-height: 360px; }
  .lb-collection { grid-template-columns: 1fr; gap: 40px; }
  .lb-card-img { aspect-ratio: 3 / 4; }
}

/* ─── FADE IN ANIMATION ─── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .fade-in.delay-1 { animation-delay: 0.4s; }
  .fade-in.delay-2 { animation-delay: 0.6s; }
  .fade-in.delay-3 { animation-delay: 0.8s; }
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 80px 6%; }
  nav { height: 84px; padding: 0 5%; }
  .sale-banner { margin-top: 84px; }
  .page-hero { margin-top: 84px; padding: 80px 6%; }

  .nav-logo img { height: 56px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 84px; left: 0; right: 0; background: var(--bg); padding: 32px 6%; border-bottom: 1px solid var(--hairline); gap: 24px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid figure { aspect-ratio: 1 / 1 !important; }

  .steps, .features { grid-template-columns: 1fr; }
  .feature, .step { border-right: none !important; }

  .intro, .story-grid, .contact-grid, .wood-callout { grid-template-columns: 1fr; gap: 48px; padding: 80px 6%; }
  .intro-image::before, .story-image::before { display: none; }
  .intro-image img, .story-image img { aspect-ratio: 4 / 5; height: auto; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .finishes { grid-template-columns: 1fr; }
  .booking-form { padding: 36px 28px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .wood-facts { grid-template-columns: 1fr; }
  .includes-bar { gap: 24px; padding: 24px 6%; }
  .cta-banner { padding: 80px 6%; }

  .hero { padding: 0 6% 80px; }
  .hero p { font-size: 17px; }
  .hero-meta { display: none; }

  .product-table th, .product-table td { padding: 14px 10px; font-size: 14px; }
}
