/* ==========================================================================
   HHBLUX — SITE STYLES
   ========================================================================== */

/* ---------- Top nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  padding: 22px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  transition: background-color .3s var(--ease), color .3s var(--ease), padding .3s var(--ease), text-shadow .3s var(--ease);
}
.nav--scrolled {
  color: var(--ink);
  text-shadow: none;
  background: rgba(244, 242, 238, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding-top: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--hair-2);
}

.nav__brand {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
}
.nav__brand a { display: inline-flex; align-items: center; gap: 10px; }
.nav__brand-mark { width: 22px; height: 22px; }
.nav__logo {
  display: block;
  height: 44px; width: auto;
  transition: filter .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
  padding: 4px 10px;
  background: rgba(255,255,255,0.92);
  border-radius: 4px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
}
.nav--scrolled .nav__logo {
  height: 36px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
@media (max-width: 640px) {
  .nav__logo { height: 40px; }
  .nav--scrolled .nav__logo { height: 34px; }
}

.nav__links {
  display: flex; justify-content: center; gap: 28px;
  font-size: var(--fs-nav); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.nav__cta {
  justify-self: end;
  font-size: var(--fs-nav); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.nav__cta a {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav--scrolled .nav__cta a {
  background: transparent;
  color: inherit;
  box-shadow: none;
  padding: 0;
}

@media (max-width: 840px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  overflow: hidden;
  background: #d9d5cf;
}
.hero__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 28%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.hero__frame {
  position: absolute; inset: 0;
  padding: 96px var(--gutter) 40px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  color: #f8f6f2;
}
.hero__title-wrap { align-self: start; margin-top: 8px; }
.hero__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: var(--fs-eyebrow); letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.9;
}
.hero__logo { display: none; }

/* Plain hero — image only, no overlaid text */
.hero--plain .hero__scrim,
.hero--plain .hero__frame { display: none; }
.hero--plain .hero__media { position: relative; }

.hero__eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
}
.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero__wordmark em { font-style: italic; font-weight: 300; }

.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin: 20px 0 0;
  max-width: 48ch;
}

.hero__dates {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.30);
  justify-content: start;
  align-items: end;
}
.hero__dates > div { display: flex; flex-direction: column; gap: 6px; }
.hero__dates .eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.hero__dates strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: -0.005em;
  color: #fff;
}
@media (max-width: 720px) {
  .hero__dates {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.hero__meta {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: end;
  gap: var(--gutter);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0;
}
.hero__meta > div:nth-child(1) { text-align: left; }
.hero__meta > div:nth-child(2) { text-align: right; }
.hero__meta { grid-template-columns: 1fr 1fr; }

.hero__price {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__tagline--top { margin: 0; }
.hero__price .eyebrow {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__price-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.01em;
  color: #fff;
}
.hero__price .hero__tagline {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
}
.hero__meta .eyebrow { color: rgba(255,255,255,0.75); display: block; margin-bottom: 8px; }
.hero__meta strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.01em; }
.hero__tagline {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.scroll-indicator {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: var(--fs-eyebrow); letter-spacing: 0.28em; text-transform: uppercase;
}
.scroll-indicator::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { opacity: 1; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  61% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 640px) {
  .hero__frame { padding: 84px var(--gutter) 28px; }
  .hero__meta { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .hero__meta > div:nth-child(2), .hero__meta > div:nth-child(3) { text-align: left; }
}

/* ---------- Section base ---------- */
.section { padding: var(--stack-xl) 0; }
.section--tight { padding: var(--stack-lg) 0; }
.section__head { display: grid; grid-template-columns: minmax(180px, 1fr) 3fr; gap: var(--gutter); margin-bottom: var(--stack-lg); align-items: start; }
.section__head .eyebrow { padding-top: 6px; }
.section__title { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -0.02em; max-width: 22ch; }
.section__title em { font-style: italic; font-weight: 300; }
.section__sub { color: var(--ink-3); font-size: 15px; line-height: 1.55; max-width: 46ch; margin-top: 16px; }

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ---------- Manifesto / pillars ---------- */
.manifesto { display: grid; grid-template-columns: 1fr; gap: 24px; }
.manifesto > .eyebrow { margin-bottom: 4px; }
.manifesto__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: none;
}
.manifesto__lead em { font-style: italic; }
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--stack-lg);
  border-top: 1px solid var(--hair);
  grid-column: 1 / -1;
}
.pillar {
  padding: 32px 24px 24px 0;
  border-right: 1px solid var(--hair);
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar__no { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 16px; }
.pillar__title { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.15; letter-spacing: -0.01em; }

@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: 1px solid var(--hair); padding: 24px 16px; border-bottom: 1px solid var(--hair); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  width: 100%;
}
.gallery__item {
  overflow: hidden;
  background: #ecebe6;
  margin: 0;
  padding: 0;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  /* Subtle unified editorial tone — warms shadows slightly and evens contrast */
  filter: saturate(0.94) contrast(1.02) brightness(1.005);
}
.gallery__item:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .gallery { padding: 0; gap: 2px; }
}

.gallery__item.-span-12 { grid-column: span 12; aspect-ratio: 16 / 9; }
.gallery__item.-span-8  { grid-column: span 8;  aspect-ratio: 16 / 10; }
.gallery__item.-span-6  { grid-column: span 6;  aspect-ratio: 4 / 3; }
.gallery__item.-span-5  { grid-column: span 5;  aspect-ratio: 5 / 6; }
.gallery__item.-span-4  { grid-column: span 4;  aspect-ratio: 4 / 5; }
.gallery__item.-span-7  { grid-column: span 7;  aspect-ratio: 5 / 4; }

@media (max-width: 900px) {
  .gallery { gap: 6px; }
  .gallery__item.-span-12,
  .gallery__item.-span-8,
  .gallery__item.-span-7,
  .gallery__item.-span-6,
  .gallery__item.-span-5,
  .gallery__item.-span-4 { grid-column: span 12; aspect-ratio: 4 / 3; }
}

/* ---------- Listings ---------- */
.listings { display: grid; gap: var(--stack-md); }
.listing {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--gutter); align-items: center;
  padding: var(--stack-md) 0;
  border-top: 1px solid var(--hair);
}
.listing:last-child { border-bottom: 1px solid var(--hair); }
.listing__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.listing__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.listing:hover .listing__media img { transform: scale(1.03); }
.listing__body { padding: 8px 0; }
.listing__eyebrow { display: flex; justify-content: space-between; align-items: center; font-size: var(--fs-eyebrow); letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.listing__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 16px; }
.listing__title em { font-style: italic; }
.listing__addr { color: var(--ink-2); margin-bottom: 24px; font-size: 15px; }
.listing__price { font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 24px; }
.listing__specs { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; padding-top: 20px; border-top: 1px solid var(--hair); }
.listing__spec { display: flex; flex-direction: column; gap: 2px; }
.listing__spec-num { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.01em; }
.listing__spec-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.listing__cta { display: inline-flex; gap: 12px; align-items: center; font-size: var(--fs-nav); letter-spacing: 0.2em; text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid var(--ink); }

.listing.-flip { grid-template-columns: 1fr 1.4fr; }
.listing.-flip .listing__body { order: -1; }
@media (max-width: 900px) {
  .listing, .listing.-flip { grid-template-columns: 1fr; }
  .listing.-flip .listing__body { order: 0; }
}

/* ---------- Stats bar ---------- */
.statsbar { background: var(--ink); color: var(--paper); padding: 40px 0; }
.statsbar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: stretch;
}
.stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  min-height: 110px;
  border-right: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
  min-height: 2.7em; /* reserve 2 lines so all tiles align even when label wraps */
  display: flex;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .statsbar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat {
    padding: 20px;
    min-height: 130px;
    border-right: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Feature image bands ---------- */
.feature { display: block; width: 100%; background: var(--paper-2); }
.feature > img { display: block; width: 100%; height: clamp(320px, 62vh, 780px); object-fit: cover; }
.feature--split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: transparent; }
.feature--split .feature__col img { display: block; width: 100%; height: clamp(280px, 52vh, 600px); object-fit: cover; }
@media (max-width: 720px) {
  .feature--split { grid-template-columns: 1fr; }
}

/* ---------- Specifications ---------- */
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); padding-top: 32px; border-top: 1px solid var(--hair); }
.specs__title { font-family: var(--font-display); font-weight: 400; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 20px; }
.specs__list { display: grid; gap: 12px; font-size: 14px; }
.specs__list > div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.specs__list dt { color: var(--ink-3); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.specs__list dd { color: var(--ink); }
@media (max-width: 900px) {
  .specs { grid-template-columns: 1fr; gap: 32px; }
}

.price-strip {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  margin-top: var(--stack-md); padding: 32px 0 8px;
  border-top: 1px solid var(--hair);
  flex-wrap: wrap;
}
.price-strip .eyebrow { display: block; margin-bottom: 8px; }
.price-strip__num { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.02em; line-height: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 26px;
  font-size: var(--fs-nav); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.btn--dark { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn--dark:hover { background: transparent; color: var(--ink); }

/* Prose paragraphs inside manifesto */
.prose { color: var(--ink-2); font-size: 16px; line-height: 1.7; max-width: none; margin-top: 16px; }

/* ---------- Film section ---------- */
.films { display: grid; grid-template-columns: 1fr; gap: var(--stack-lg); }
.film { position: relative; width: 100%; }
.film__caption .eyebrow { display: block; margin-bottom: 8px; }
.film__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.film__frame video { width: 100%; height: 100%; object-fit: cover; }
.film__caption {
  display: grid; grid-template-columns: 1fr auto; gap: var(--gutter);
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--hair);
  align-items: end;
}
.film__caption h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.01em; }
.film__caption p { color: var(--ink-3); font-size: 14px; }

/* ---------- Contact ---------- */
.contact {
  border-top: 1px solid var(--hair);
  padding-top: var(--stack-lg);
}
.contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--gutter); }
.contact__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 76px); line-height: 1; letter-spacing: -0.025em; max-width: 12ch; }
.contact__title em { font-style: italic; }
.contact__meta { display: grid; gap: 24px; align-content: end; }
.contact__row { display: grid; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--hair); }
.contact__row .eyebrow { color: var(--ink-3); }
.contact__row a { font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; }
@media (max-width: 720px) { .contact__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  padding: var(--stack-lg) 0 32px;
  border-top: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink-2);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--gutter); align-items: start; margin-bottom: var(--stack-md); }
.footer__brand { font-family: var(--font-display); font-weight: 400; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 12px; }
.footer__logo { display: block; height: 60px; width: auto; margin-bottom: 20px; }
.footer__note { color: var(--ink-3); max-width: 38ch; font-size: 14px; }
.footer__col h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 16px; }
.footer__col a { display: block; padding: 4px 0; font-size: 14px; }
.footer__bar { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--hair); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bar { flex-direction: column; gap: 12px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- section lede (subtle sub-copy under section title) --- */
.section__lede {
  margin-top: 0.4em;
  max-width: 44rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 65%, transparent);
  letter-spacing: 0.01em;
}
.section__lede a {
  color: var(--ink);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 30%, transparent);
  transition: border-color .2s ease;
}
.section__lede a:hover {
  border-bottom-color: var(--ink);
}

/* ==== Interior Design Set (PDF) ==== */
.id-set {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: var(--gutter);
  margin-top: var(--stack-md);
  margin-bottom: var(--stack-lg);
  align-items: stretch;
}
.id-set__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.id-set__title {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.id-set__lede {
  color: var(--ink-soft, #555);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42ch;
}
.id-set__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 12px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
}
.btn--primary:hover { background: transparent; color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 12px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.id-set__viewer {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  background: #f4f2ec;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}
.id-set__viewer object,
.id-set__viewer embed,
.id-set__viewer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .id-set { grid-template-columns: 1fr; }
  .id-set__viewer { aspect-ratio: 3 / 4; min-height: 420px; }
}

/* Section subtitle — italic tagline under title */
.section__subtitle {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: var(--ink-soft, #6b6b6b);
  margin: 6px 0 14px;
  letter-spacing: 0.01em;
}

/* ==== Interior Design Set — inline all pages ==== */
.id-set-heading { margin-top: var(--stack-md); }
.id-pages {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  width: 100%;
  margin: 32px 0 48px;
  padding: 0;
}
.id-pages__item {
  margin: 0;
  background: #fff;
  box-shadow: none;
}
.id-pages__item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .id-pages { gap: 0; padding: 0; }
}
