/* ═══════════════════════════════════════════════════════
   LIVING ROOM PAGE  —  living-room.css
   All classes prefixed with lr- to avoid cross-template conflicts
   ═══════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────────── */
.lr-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@supports not (height: 100svh) { .lr-hero { height: 100vh; } }
.lr-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.lr-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,30,10,0.25) 0%,
    rgba(14,30,10,0.18) 50%,
    rgba(14,30,10,0.68) 100%
  );
}
.lr-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 68px;
  max-width: 840px;
}
.lr-hero .hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.lr-hero .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
}
.lr-hero .hero-title em { font-style: italic; color: rgba(232,184,74,0.92); }
.lr-hero .hero-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 580px;
}

/* ── FEATURE STRIP ──────────────────────────────────────────────── */
.lr-feature-strip {
  background: var(--green);
  display: flex;
  flex-wrap: wrap;
}
.lr-fs-item {
  flex: 1;
  min-width: 150px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lr-fs-item:last-child { border-right: none; }
.lr-fs-icon { font-size: 18px; flex-shrink: 0; }
.lr-fs-text {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  line-height: 1.35;
}
.lr-fs-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.52);
}

/* ── INTRO SECTION ──────────────────────────────────────────────── */
.lr-intro {
  padding: 88px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lr-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lr-section-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}
.lr-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 22px;
}
.lr-intro h2 em { font-style: italic; color: var(--green); }
.lr-intro p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.lr-intro p:last-child { margin-bottom: 0; }

/* ── PHOTO FRAMES ───────────────────────────────────────────────── */
.lr-photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(30,61,20,0.13);
}
.lr-photo-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform 0.6s ease;
}
.lr-photo-frame:hover img { transform: scale(1.02); }
.lr-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(14,30,10,0.72));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* ── FULL-WIDTH PHOTO ───────────────────────────────────────────── */
.lr-full-photo {
  padding: 0 60px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.lr-full-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(30,61,20,0.12);
}
.lr-full-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.lr-full-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 26px;
  background: linear-gradient(transparent, rgba(14,30,10,0.78));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lr-full-caption-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.lr-full-caption-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lr-fct {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 4px 10px;
  border: 1px solid rgba(232,184,74,0.4);
  border-radius: 20px;
}

/* ── FIREPLACE SECTION ──────────────────────────────────────────── */
.lr-fireplace-section {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 88px 60px;
}
.lr-fireplace-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lr-fireplace-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 22px;
}
.lr-fireplace-inner h2 em { font-style: italic; color: var(--green); }
.lr-fireplace-inner p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.lr-fireplace-inner p:last-child { margin-bottom: 0; }

/* Season tags */
.lr-season-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.lr-season-tag {
  padding: 7px 16px;
  border-radius: 30px;
  background: var(--green-light);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 7px;
}
.lr-st-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── CONNECTED SECTION ──────────────────────────────────────────── */
.lr-connected-section {
  background: var(--ink);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.lr-connected-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 5% 85%, rgba(106,158,82,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 10%, rgba(200,149,42,0.09) 0%, transparent 55%);
}
.lr-connected-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lr-conn-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.lr-conn-quote em { font-style: normal; color: var(--gold-light); }
.lr-conn-attribution {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.lr-conn-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lr-conn-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  border-left: 3px solid var(--gold-light);
}
.lr-conn-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.lr-conn-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.lr-conn-item-body {
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
}

/* ── OPEN PLAN DETAIL ───────────────────────────────────────────── */
.lr-openplan-section {
  padding: 88px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lr-openplan-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 22px;
}
.lr-openplan-section h2 em { font-style: italic; color: var(--green); }
.lr-openplan-section p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.lr-openplan-section p:last-child { margin-bottom: 0; }

/* Tech callout */
.lr-tech-callout {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 3px 3px 0;
}
.lr-tc-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.lr-tc-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── CTA ────────────────────────────────────────────────────────── */
.lr-cta-strip {
  background: var(--green-dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.lr-cta-strip .cta-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.lr-cta-strip .cta-left p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.65;
}

.btn-gold {
    flex-shrink: 0;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 38px;
    border-radius: 3px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--ink);
    transform: translateY(-1px);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lr-hero .hero-content { padding: 80px 28px 52px; }
  .lr-feature-strip { flex-wrap: wrap; }
  .lr-fs-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .lr-intro { grid-template-columns: 1fr; gap: 40px; padding: 56px 28px; }
  .lr-full-photo { padding: 0 28px 56px; }
  .lr-fireplace-section { padding: 56px 28px; }
  .lr-fireplace-inner { grid-template-columns: 1fr; gap: 40px; }
  .lr-connected-section { padding: 56px 28px; }
  .lr-connected-inner { grid-template-columns: 1fr; gap: 40px; }
  .lr-openplan-section { grid-template-columns: 1fr; gap: 40px; padding: 56px 28px; }
  .lr-cta-strip { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .lr-hero .hero-content { padding: 72px 20px 44px; }
  .lr-hero .hero-title { font-size: clamp(28px, 9vw, 42px); }
  .lr-fs-item { flex: 0 0 100%; }
  .lr-full-frame img { aspect-ratio: 4/3; }
  .lr-fct { display: none; }
}
