*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette — same oklch tokens as IndoCasa.html :root */
  --ivory: oklch(97% 0.008 72);
  --ivory-mid: oklch(93% 0.012 72);
  --teak: oklch(17% 0.035 50);
  --teak-mid: oklch(35% 0.05 52);
  --teak-light: oklch(58% 0.06 58);
  /*
   * IndoCasa.html default: useEffect sets --gold from tweaks.accentColor (TWEAK_DEFAULTS).
   * Base stylesheet gold is warm; the live reference uses sage — match that.
   */
  --gold: oklch(52% 0.1 160);
  /* Lighter sage for hero kicker + home marquee (same hue as --gold, higher lightness). */
  --gold-hero: oklch(72% 0.09 160);
  --gold-light: oklch(85% 0.06 72);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", sans-serif;
  /* IndoCasa.html literals (cream on dark / scrims / rules) */
  --cream: #faf7f2;
  --cream-96: rgba(250, 247, 242, 0.96);
  --cream-90: rgba(250, 247, 242, 0.9);
  --cream-85: rgba(250, 247, 242, 0.85);
  --cream-80: rgba(250, 247, 242, 0.8);
  --cream-75: rgba(250, 247, 242, 0.75);
  --cream-65: rgba(250, 247, 242, 0.65);
  --cream-60: rgba(250, 247, 242, 0.6);
  --cream-55: rgba(250, 247, 242, 0.55);
  --cream-50: rgba(250, 247, 242, 0.5);
  --cream-45: rgba(250, 247, 242, 0.45);
  --cream-40: rgba(250, 247, 242, 0.4);
  --cream-30: rgba(250, 247, 242, 0.3);
  --cream-10: rgba(250, 247, 242, 0.1);
  --cream-06: rgba(250, 247, 242, 0.06);
  --line-white-12: rgba(255, 255, 255, 0.12);
  --line-white-06: rgba(255, 255, 255, 0.06);
  --line-dust: rgb(226, 205, 205);
  --scrim-hero: rgba(20, 14, 8, 0.72);
  --scrim-soft: rgba(20, 14, 8, 0.65);
  --shadow-teak: rgba(42, 31, 20, 0.15);
  --stripe-placeholder: rgba(42, 31, 20, 0.06);
  --hairline-85: oklch(85% 0.01 72);
  --hairline-88: oklch(88% 0.01 72);
  --hairline-87: oklch(87% 0.01 72);
  --hairline-82: oklch(82% 0.015 68);
  --hairline-80: oklch(80% 0.015 70);
  --border-75: oklch(75% 0.02 55);
  --panel-warm: oklch(93% 0.012 72);
  /* IndoCasa.html Nav: height 72, mobile panel offset */
  --header-bar-height: 72px;
}

html { scroll-behavior: smooth; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

body {
  background: var(--ivory);
  color: var(--teak);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

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

.section-pad { padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px); }
.section-kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Header / Nav — IndoCasa.html Nav component ───────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .4s ease, border-color .4s ease;
  /* page !== 'home' OR scrolled: ivory bar (see also body:not(.indocasa-home)) */
  background: var(--cream-96);
  border-bottom: 1px solid var(--line-dust);
}

/* Inner pages: always solid bar + teak text (matches page !== 'home') */
body:not(.indocasa-home) .site-header {
  background: var(--cream-96);
  border-bottom-color: var(--line-dust);
}

/* Home + full-bleed hero + not scrolled: transparent bar, light nav text */
body.indocasa-hero-overlay .site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: var(--line-white-12);
}

body.indocasa-hero-overlay .site-header.is-scrolled {
  background: var(--cream-96);
  border-bottom-color: var(--line-dust);
}

/* Default nav typography: teak (scrolled home + all inner pages) */
.site-header .brand-title {
  color: var(--teak);
}
.site-header .brand-tagline {
  color: var(--teak-light);
}
.site-header .primary-menu a,
.site-header .primary-menu .primary-menu__mega-link {
  color: var(--teak);
  font-weight: 400;
}
.site-header .brand-logo {
  filter: none;
  opacity: 1;
  transition: filter .4s ease, opacity .4s ease;
}
.site-header .mobile-toggle span {
  background: var(--teak);
}

/* Home hero overlay: rgba(250,247,242,0.9) links, gold active — IndoCasa.html */
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .brand-title {
  color: var(--cream);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .brand-tagline {
  color: var(--cream-85);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu a,
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .primary-menu__mega-link {
  color: var(--cream-90);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu a:hover,
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .primary-menu__mega-link:hover {
  color: var(--cream-90);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .current-menu-item > a {
  color: var(--gold);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .mobile-toggle span {
  background: var(--cream-90);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .brand-logo {
  filter: invert(1) brightness(2);
}

.main-nav {
  box-sizing: border-box;
  min-height: var(--header-bar-height);
  height: var(--header-bar-height);
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand lockup — same scale as footer (IndoCasa + tagline); colors for light nav background */
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.brand-lockup .brand-logo {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--teak);
}
.brand-tagline {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 240px;
  color: var(--teak-mid);
}
/* When only logo (no tagline), keep vertical centering */
.brand-lockup:has(.brand-logo:only-child) {
  gap: 0;
}
.brand-lockup:focus,
.brand-lockup:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Footer: match header typography scale (light-on-teak colors) */
.footer-brand-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 240px;
  margin: 0;
  color: var(--cream-45);
}

/* Desktop nav cluster — IndoCasa.html .nav-desktop gap: 40px */
.menu-shell .primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.menu-shell .primary-menu li {
  margin: 0;
  list-style: none;
}
.primary-menu a,
.primary-menu .primary-menu__mega-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.35;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}
.primary-menu a:hover,
.primary-menu .primary-menu__mega-link:hover {
  color: inherit;
}
.primary-menu .current-menu-item > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Products mega menu (WooCommerce product_cat) */
.primary-menu__item--mega {
  position: relative;
}
.primary-menu__item--mega .primary-menu__mega-link {
  font-weight: 400;
}
.primary-menu__mega-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  color: inherit;
}
/* Desktop: wider “Products” hit target without oversized hover bridge */
@media (min-width: 769px) and (hover: hover) {
  /* Widen hover target horizontally only; vertical alignment matches other nav links. */
  .primary-menu__mega-row {
    padding: 0 32px;
    margin: 0 -32px;
  }
}
.mega-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
}
.mega-menu__toggle-icon {
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.primary-menu__item--mega.is-mega-open .mega-menu__toggle-icon {
  transform: rotate(180deg);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .mega-menu__toggle {
  color: var(--cream-90);
}
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-bar-height);
  padding-top: 0;
  z-index: 199;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.primary-menu__item--mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 769px) and (hover: hover) {
  .primary-menu__item--mega.is-mega-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.mega-menu__lists:has(> .mega-menu__list:only-child) {
  grid-template-columns: 1fr;
}
.mega-menu__panel {
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(42, 31, 20, 0.12);
  box-shadow: 0 24px 64px rgba(42, 31, 20, 0.1);
  transform: translateY(-12px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.primary-menu__item--mega:focus-within > .mega-menu .mega-menu__panel {
  transform: translateY(0);
}
@media (min-width: 769px) and (hover: hover) {
  .primary-menu__item--mega.is-mega-open > .mega-menu .mega-menu__panel {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mega-menu {
    transition-duration: 0.12s;
    transition-timing-function: ease;
  }
  .mega-menu__panel {
    transform: none !important;
    transition: none !important;
  }
}
/* Keep mega menu links dark on the light panel. */
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .mega-menu a,
.site-header .primary-menu .mega-menu a {
  color: var(--teak);
}
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .mega-menu a:hover,
.site-header .primary-menu .mega-menu a:hover {
  color: var(--gold);
}
.site-header .primary-menu .mega-menu a.mega-menu__title,
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .mega-menu a.mega-menu__title,
.site-header .primary-menu .mega-menu a.mega-menu__title:hover,
body.indocasa-hero-overlay .site-header:not(.is-scrolled) .primary-menu .mega-menu a.mega-menu__title:hover {
  color: var(--gold);
}
.site-header .primary-menu .mega-menu .mega-menu__view-all {
  color: var(--teak-light);
}
.site-header .primary-menu .mega-menu .mega-menu__view-all:hover {
  color: var(--gold);
}
.mega-menu__inner {
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) clamp(28px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  max-height: calc(100vh - var(--header-bar-height) - 20px);
  overflow-y: auto;
}
.mega-menu__column {
  min-width: 0;
}
.mega-menu__column.is-multi {
  grid-column: span 2;
}
.mega-menu__col-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(42, 31, 20, 0.14);
}
.mega-menu__title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.mega-menu__head-sep {
  font-size: 11px;
  color: rgba(42, 31, 20, 0.35);
  font-weight: 300;
}
.mega-menu__view-all {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.mega-menu__view-all:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.mega-menu__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
}
.mega-menu__lists.is-multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
@media (max-width: 1200px) {
  .mega-menu__column.is-multi {
    grid-column: span 1;
  }
  .mega-menu__lists.is-multi {
    grid-template-columns: 1fr;
  }
}
.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu__list li {
  margin: 0;
  list-style: none;
}
.mega-menu__list a {
  display: block;
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
  color: var(--teak);
  text-decoration: none;
  border-bottom: 1px solid oklch(91% 0.008 72);
  transition: color .18s ease, padding-left .18s ease;
}
.mega-menu__list a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ── Projects index + project detail ─────────────────────────────── */
.projects-archive {
  padding-top: var(--header-bar-height);
}
.project-detail-gallery__kicker,
.project-detail-hero__kicker,
.project-related-card__meta {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* Projects hero: 10% prev | 5% gap | 1:1 center | 5% gap | 10% next */
.projects-hero-carousel {
  position: relative;
  background: var(--teak);
  overflow: hidden;
}
.projects-hero-carousel__pad {
  padding: clamp(20px, 3vw, 40px) 0 calc(var(--header-bar-height) + clamp(16px, 2.5vw, 32px));
}
.projects-hero-carousel__stage {
  display: grid;
  grid-template-columns: 10% 5% minmax(0, 1fr) 5% 10%;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: min(72vw, min(85vh, 920px));
  max-height: min(92vh, 980px);
}
.projects-hero-carousel--single .projects-hero-carousel__stage {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: min(85vw, min(72vh, 720px));
  max-height: min(88vh, 800px);
}
.projects-hero-carousel--single .projects-hero-carousel__gutter,
.projects-hero-carousel--single .projects-hero-carousel__wing {
  display: none;
}
.projects-hero-carousel--single .projects-hero-carousel__center {
  width: min(88vw, 720px);
}
.projects-hero-carousel__gutter {
  min-width: 0;
  pointer-events: none;
}
.projects-hero-carousel__wing {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
}
.projects-hero-carousel__wing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.48);
  pointer-events: none;
  z-index: 1;
  transition: background 0.25s ease;
}
.projects-hero-carousel__wing:hover::after {
  background: rgba(12, 10, 8, 0.32);
}
.projects-hero-carousel__wing-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  line-height: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.65, 0.35, 1),
    transform 0.9s cubic-bezier(0.2, 0.65, 0.35, 1);
  will-change: opacity, transform;
}
.projects-hero-carousel__stage.is-sliding-out .projects-hero-carousel__wing-media,
.projects-hero-carousel__stage.is-sliding-out .projects-hero-carousel__center-inner {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.985);
}
.projects-hero-carousel--busy .projects-hero-carousel__hint {
  pointer-events: none;
  opacity: 0.55;
}
.projects-hero-carousel--busy .projects-hero-carousel__center:hover .projects-hero-carousel__center-img {
  transform: none;
}
.projects-hero-carousel__wing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.projects-hero-carousel__wing--prev .projects-hero-carousel__wing-img {
  object-position: 88% center;
}
.projects-hero-carousel__wing--next .projects-hero-carousel__wing-img {
  object-position: 12% center;
}
.projects-hero-carousel__wing-ph,
.projects-hero-carousel__center-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: repeating-linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.08) 0px,
    rgba(250, 247, 242, 0.08) 10px,
    rgba(12, 10, 8, 0.15) 10px,
    rgba(12, 10, 8, 0.15) 20px
  );
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
}
/* HTML `hidden` must win: author `display` on these classes otherwise keeps placeholders visible. */
.projects-hero-carousel__wing-img[hidden],
.projects-hero-carousel__wing-ph[hidden],
.projects-hero-carousel__center-img[hidden],
.projects-hero-carousel__center-ph[hidden] {
  display: none !important;
}
.projects-hero-carousel__center {
  display: block;
  text-decoration: none;
  color: inherit;
  align-self: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.projects-hero-carousel__center-inner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.65, 0.35, 1),
    transform 0.9s cubic-bezier(0.2, 0.65, 0.35, 1);
  will-change: opacity, transform;
}
.projects-hero-carousel__center-media {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 0;
}
.projects-hero-carousel__media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  line-height: normal;
}
.projects-hero-carousel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 14, 8, 0.75) 0%,
    rgba(20, 14, 8, 0.25) 45%,
    rgba(12, 10, 8, 0.2) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.projects-hero-carousel__intro {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 8vw, 100px) clamp(24px, 4vw, 56px) clamp(28px, 5vw, 72px);
  pointer-events: none;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__cta {
  display: none;
}
.projects-hero-carousel__center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
  display: block;
  transition: transform 0.75s ease;
}
.projects-hero-carousel__center:hover .projects-hero-carousel__center-img {
  transform: scale(1.03);
}
.projects-hero-carousel__title {
  font-family: var(--sans);
  font-size: clamp(22px, 3.4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 18ch;
  text-shadow: 0 2px 40px rgba(12, 10, 8, 0.55);
}
.projects-hero-carousel__loc {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.88);
  margin: clamp(16px, 2vw, 24px) 0 0;
  text-shadow: 0 1px 20px rgba(12, 10, 8, 0.45);
}
.projects-hero-carousel__cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.92);
  display: inline-block;
  margin-top: clamp(18px, 2.2vw, 26px);
  border-bottom: 1px solid rgba(250, 247, 242, 0.35);
  padding-bottom: 4px;
  text-shadow: 0 1px 12px rgba(12, 10, 8, 0.45);
}
.projects-hero-carousel__hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  margin: 0;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(250, 247, 242, 0.78);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.projects-hero-carousel__hint:hover,
.projects-hero-carousel__hint:focus-visible {
  color: var(--gold);
  outline: none;
}
.projects-hero-carousel__hint:disabled {
  opacity: 0;
  pointer-events: none;
}
.projects-hero-carousel__hint--prev {
  left: clamp(6px, 1.5vw, 24px);
  flex-direction: row;
}
.projects-hero-carousel__hint--next {
  right: clamp(6px, 1.5vw, 24px);
  flex-direction: row-reverse;
}
.projects-hero-carousel__hint .projects-hero-carousel__hint-line {
  flex-shrink: 0;
}
.projects-hero-carousel__hint-line {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.projects-hero-carousel__hint-num {
  min-width: 1.25em;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .projects-hero-carousel__center-img {
    transition-duration: 0.01ms;
  }
  .projects-hero-carousel__wing-media,
  .projects-hero-carousel__center-inner {
    transition: none;
  }
}

.projects-archive-body {
  /* No top padding: avoids ivory band between hero carousel and filters */
  padding: 0 clamp(40px, 6vw, 96px) clamp(40px, 5vw, 96px);
}
.projects-archive-grid-wrap {
  padding: clamp(28px, 4vw, 48px) 0 0;
  margin-top: 0;
}
.projects-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.projects-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.projects-card__media {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.projects-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
  display: block;
  border-radius: 0;
  transition: transform 0.65s ease;
}
.projects-card__ph {
  aspect-ratio: 3 / 2;
  width: 100%;
  border-radius: 0;
}
.projects-card:hover .projects-card__img {
  transform: scale(1.03);
}
.projects-card__body {
  width: 100%;
  padding: clamp(18px, 2.2vw, 26px) clamp(8px, 2vw, 16px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
}
.projects-card__title {
  font-family: var(--sans);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--teak);
  margin: 0;
  line-height: 1.4;
  max-width: 28ch;
}
.projects-card__cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teak-mid);
  transition: color 0.2s ease;
}
.projects-card:hover .projects-card__cta {
  color: var(--gold);
}
@media (max-width: 1200px) {
  .projects-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.projects-cta-strip {
  background: oklch(93% 0.012 72);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 96px);
  text-align: center;
  border-top: 1px solid oklch(86% 0.01 72);
}
.projects-cta-strip__head {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  color: var(--teak);
  margin: 0 0 16px;
}
.projects-cta-strip__sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--teak-mid);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 36px;
}
.projects-cta-strip__btn {
  display: inline-block;
  background: var(--teak);
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 48px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.projects-cta-strip__btn:hover {
  background: var(--gold);
  color: var(--cream);
}

/* ── Bespoke page (IndoCasa.html BespokePage) ─────────────────── */
.bespoke-page {
  padding-top: var(--header-bar-height);
}
.bespoke-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-bar-height));
}
.bespoke-page__left {
  background: var(--teak);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bespoke-page__kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 32px;
}
.bespoke-page__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin: 0 0 32px;
}
.bespoke-page__sub {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(250, 247, 242, 0.65);
  margin: 0 0 64px;
}
.bespoke-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bespoke-step {
  display: flex;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
  margin-bottom: 32px;
}
.bespoke-step:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bespoke-step__n {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}
.bespoke-step__t {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 8px;
}
.bespoke-step__b {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.6);
  margin: 0;
}
.bespoke-page__right {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bespoke-form__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 12px;
}
.bespoke-form__lede {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-mid);
  line-height: 1.7;
  margin: 0 0 48px;
}
.bespoke-field {
  margin-bottom: 24px;
}
.bespoke-field--area {
  margin-bottom: 40px;
}
.bespoke-field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-light);
  margin-bottom: 10px;
}
.bespoke-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid oklch(75% 0.02 55);
  background: transparent;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--teak);
  outline: none;
}
.bespoke-field textarea {
  width: 100%;
  border: 1px solid oklch(80% 0.015 70);
  background: transparent;
  padding: 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--teak);
  outline: none;
  resize: vertical;
}
.bespoke-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.bespoke-form__error {
  font-family: var(--sans);
  font-size: 13px;
  color: #b3261e;
  margin: 0 0 24px;
}
.bespoke-form__submit {
  background: var(--teak);
  border: 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px;
  min-width: 240px;
  transition: background .3s ease;
}
.bespoke-form__submit:hover {
  background: var(--gold);
}
.bespoke-thanks {
  text-align: center;
  padding-top: 60px;
}
.bespoke-thanks__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 28px;
  color: #fff;
}
.bespoke-thanks__title {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--teak);
  margin: 0 0 12px;
}
.bespoke-thanks__text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--teak-mid);
  line-height: 1.8;
  margin: 0;
}

/* ── Materials page (IndoCasa.html MaterialsPage) ───────────────── */
.materials-page {
  padding-top: var(--header-bar-height);
}
.materials-hero {
  position: relative;
  min-height: min(70vh, 760px);
  overflow: hidden;
}
.materials-hero__media {
  position: absolute;
  inset: 0;
}
.materials-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.materials-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20, 14, 8, 0.7));
}
.materials-hero__text {
  position: absolute;
  left: clamp(40px, 6vw, 96px);
  bottom: clamp(32px, 6vw, 64px);
  z-index: 2;
  max-width: 760px;
}
.materials-hero__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  white-space: pre-line;
  color: var(--ivory);
}
.materials-hero__sub {
  margin: 0;
  max-width: 420px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.75);
}
.materials-points {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
}
.materials-points__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 80px;
}
.materials-point {
  border-top: 1px solid oklch(82% 0.015 68);
  padding-top: 32px;
}
.materials-point__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--teak);
}
.materials-point__body {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  color: var(--teak-mid);
}
.materials-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  margin: 0 0 80px;
}
.materials-gallery__item {
  min-width: 0;
}
.materials-gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ── About page (IndoCasa.html AboutPage) ─────────────────────────── */
.about-page {
  padding-top: var(--header-bar-height);
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(90vh, 980px);
}
.about-hero__copy {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero__kicker {
  margin: 0 0 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.about-hero__title {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--teak);
}
.about-hero__body {
  margin: 0 0 24px;
  max-width: 480px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  color: var(--teak-mid);
}
.about-hero__quote-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid oklch(82% 0.015 68);
}
.about-hero__quote {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--teak-light);
}
.about-hero__image {
  min-height: 100%;
}
.about-hero__media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.about-stats {
  background: var(--teak);
  padding: clamp(48px, 6vw, 96px) clamp(40px, 6vw, 96px);
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.about-stat {
  text-align: center;
}
.about-stat__value {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 300;
  color: var(--gold);
}
.about-stat__label {
  margin: 12px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.about-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}
.about-strip__item {
  min-width: 0;
}
.about-strip__media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* ── Showroom page (IndoCasa.html ShowroomPage) ───────────────── */
.showroom-page {
  padding-top: var(--header-bar-height);
}
/* Hero reuses the .projects-hero-carousel component (see Projects index +
   project detail) so the showroom hero matches that layout exactly, with
   autoplay enabled via data-showroom-hero-carousel in main.js. */
/* Showroom photos aren't square like project shots, so give this instance
   its own shorter stage + uncropped center image and wider side peeks,
   without touching the shared Projects hero. */
.showroom-hero-carousel.projects-hero-carousel .projects-hero-carousel__stage {
  grid-template-columns: 16% 4% minmax(0, 1fr) 4% 16%;
  min-height: min(50vw, min(60vh, 640px));
  max-height: min(70vh, 720px);
}
.showroom-hero-carousel.projects-hero-carousel .projects-hero-carousel__center-inner {
  aspect-ratio: 16 / 9;
}
.showroom-hero-carousel.projects-hero-carousel .projects-hero-carousel__center-img {
  object-fit: contain;
  background: var(--teak);
}
.showroom-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
}
.showroom-hero__left {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showroom-hero__kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.showroom-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 300;
  color: var(--teak);
  line-height: 1.1;
  white-space: pre-line;
  margin: 0 0 24px;
}
.showroom-hero__sub {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  color: var(--teak-mid);
  margin: 0;
}
.showroom-hero__right {
  min-height: 420px;
}
.showroom-hero__placeholder,
.showroom-contact__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    var(--cream-96) 0px,
    var(--cream-96) 12px,
    oklch(90% 0.012 72) 12px,
    oklch(90% 0.012 72) 24px
  );
  color: var(--teak-light);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.showroom-tabs {
  display: flex;
  border-bottom: 1px solid oklch(87% 0.01 72);
  opacity: 0;
  transition: opacity .7s ease;
}
.showroom-page.is-ready .showroom-tabs {
  opacity: 1;
}
.showroom-tab {
  flex: 1;
  padding: 20px 16px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-light);
  transition: all .2s ease;
}
.showroom-tab span {
  font-size: 10px;
  opacity: .7;
}
.showroom-tab.is-active {
  border-bottom-color: var(--gold);
  color: var(--teak);
}

.showroom-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  opacity: 0;
  transition: opacity .7s ease .1s;
}
.showroom-page.is-ready .showroom-active {
  opacity: 1;
}
.showroom-map-col {
  background: oklch(93% 0.012 72);
  display: flex;
  align-items: center;
}
.showroom-map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px;
  min-height: 400px;
  width: 100%;
  text-align: center;
}
.showroom-map-card[hidden],
.showroom-detail[hidden] {
  display: none !important;
}
.showroom-map-card__pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showroom-map-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--teak);
  margin: 0;
}
.showroom-map-card__line {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
  color: var(--teak-mid);
  margin: 0;
}
.showroom-map-card__maps {
  margin-top: 8px;
  padding: 10px 24px;
  border: 1px solid var(--teak-light);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-mid);
  text-decoration: none;
}

.showroom-detail-col {
  padding: clamp(40px, 6vw, 80px);
}
.showroom-detail__tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.showroom-detail__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 36px;
}
.showroom-detail__block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid oklch(87% 0.01 72);
}
.showroom-detail__block--hours {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.showroom-detail__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-light);
  margin: 0 0 12px;
}
.showroom-detail__line {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  color: var(--teak-mid);
  margin: 0;
}

.showroom-all {
  background: var(--teak);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 96px);
}
.showroom-all__kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 48px;
  text-align: center;
}
.showroom-all__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.showroom-tile {
  text-align: left;
  background: none;
  border: 0;
  border-top: 2px solid rgba(250, 247, 242, 0.15);
  padding: 24px 0 0;
  cursor: pointer;
  transition: border-color .2s ease;
}
.showroom-tile.is-active {
  border-top-color: var(--gold);
}
.showroom-tile__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 12px;
}
.showroom-tile__line {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.5);
  margin: 0;
}

.showroom-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.showroom-contact__img {
  width: 100%;
  min-height: 600px;
  max-height: 600px;
}
.showroom-contact__formwrap {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showroom-form__title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--teak);
  margin: 0 0 12px;
}
.showroom-form__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-mid);
  line-height: 1.7;
  margin: 0 0 40px;
}
.showroom-field {
  margin-bottom: 20px;
}
.showroom-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid oklch(75% 0.02 55);
  background: transparent;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--teak);
  outline: none;
}
.showroom-field--area {
  margin-bottom: 32px;
}
.showroom-field textarea {
  width: 100%;
  border: 1px solid oklch(80% 0.015 70);
  background: transparent;
  padding: 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak);
  outline: none;
  resize: vertical;
}
.showroom-form__submit {
  background: var(--teak);
  border: 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  align-self: flex-start;
  transition: background .3s ease;
}
.showroom-form__submit:hover {
  background: var(--gold);
}
.showroom-form__thanks {
  background: oklch(93% 0.012 72);
  padding: 32px;
  text-align: center;
}
.showroom-form__thanks-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--teak);
  margin: 0 0 8px;
}
.showroom-form__thanks-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-mid);
  margin: 0;
}
.projects-pagination {
  margin-top: clamp(36px, 4vw, 56px);
  padding: 0 clamp(40px, 6vw, 96px) 48px;
  display: flex;
  justify-content: center;
}
.projects-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.projects-pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.projects-pagination a.page-numbers,
.projects-pagination span.page-numbers {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--teak);
  border: 1px solid var(--line-dust);
  border-radius: 2px;
}
.projects-pagination span.page-numbers.current,
.projects-pagination a.page-numbers:hover {
  border-color: var(--teak);
  background: var(--teak);
  color: var(--cream);
}
.projects-pagination .page-numbers.dots {
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}
.projects-pagination .page-numbers.dots:hover {
  background: transparent;
  color: var(--teak);
  border-color: transparent;
}
.projects-archive-empty {
  padding: 48px clamp(40px, 6vw, 96px);
  font-family: var(--sans);
  color: var(--teak-mid);
}

/* Placeholders when no featured image */
.indocasa-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: repeating-linear-gradient(
    135deg,
    var(--cream-96) 0px,
    var(--cream-96) 12px,
    oklch(90% 0.012 72) 12px,
    oklch(90% 0.012 72) 24px
  );
  color: var(--teak-light);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.indocasa-media-placeholder--43 { aspect-ratio: 4 / 3; }
.indocasa-media-placeholder--34 { aspect-ratio: 3 / 4; }
.indocasa-media-placeholder--43sm { aspect-ratio: 4 / 3; min-height: 180px; }
.indocasa-media-placeholder--hero {
  height: 80vh;
  min-height: 420px;
}

.project-detail {
  padding-top: var(--header-bar-height);
}
.project-detail--taxonomy {
  overflow-x: hidden;
}
body.indocasa-hero-overlay.tax-project .project-detail--taxonomy {
  padding-top: 0;
}
.project-detail-bc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-detail-bc a {
  color: rgba(250, 247, 242, 0.72);
  text-decoration: none;
}
.project-detail-bc a:hover {
  color: var(--cream);
}
.project-detail-bc__current {
  color: rgba(250, 247, 242, 0.95);
}
.project-detail-bc__sep {
  color: rgba(250, 247, 242, 0.45);
}

.project-detail-hero {
  position: relative;
  height: 85vh;
  min-height: 420px;
  overflow: hidden;
}
body.tax-project .project-detail-hero {
  margin-top: 0;
}
.project-detail-hero .project-detail-bc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: calc(var(--header-bar-height) + 16px) clamp(40px, 6vw, 96px) 20px;
  border: none;
  background: linear-gradient(to bottom, rgba(12, 10, 8, 0.55), transparent);
  pointer-events: none;
}
.project-detail-hero .project-detail-bc a {
  pointer-events: auto;
}
.project-detail-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor the bottom: when height must be cropped, trim from the top only. */
  object-position: center bottom;
  display: block;
}
.project-detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 8, 0.75) 0%, rgba(20, 14, 8, 0.25) 45%, rgba(12, 10, 8, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}
.project-detail-hero__intro {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 14vh, 160px) clamp(32px, 5vw, 72px) clamp(48px, 8vh, 96px);
  pointer-events: none;
}
.project-detail-hero__title {
  font-family: var(--sans);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 18ch;
  text-shadow: 0 2px 40px rgba(12, 10, 8, 0.55);
}
.project-detail-hero__type {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.88);
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  text-shadow: 0 1px 20px rgba(12, 10, 8, 0.45);
}

/* Project detail: gallery carousel — main slide = full image (intrinsic height); wings = cover strips */
.project-detail-gallery-carousel {
  position: relative;
  background: #fff;
}
.projects-hero-carousel--detail-gallery {
  background: #fff;
  width: 100%;
  max-width: none;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__stage {
  /* Slightly narrower wings so the main column sits closer to the visual center of the viewport. */
  grid-template-columns: minmax(0, 0.14fr) minmax(0, 0.03fr) minmax(0, 1fr) minmax(0, 0.03fr) minmax(0, 0.14fr);
  /* Row height comes from the main image; do not cap the stage or force a letterboxed aspect box. */
  min-height: 0;
  max-height: none;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__pad {
  padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 40px) clamp(56px, 7vw, 88px);
  box-sizing: border-box;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__hint {
  color: var(--teak);
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__hint-line {
  background: var(--teak);
  opacity: 0.65;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing::after {
  background: rgba(255, 255, 255, 0.22);
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing:hover::after {
  background: rgba(255, 255, 255, 0.12);
}
/* Wings: cover fills the column (contain made them read as tiny thumbnails). */
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing--prev .projects-hero-carousel__wing-img,
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing--next .projects-hero-carousel__wing-img {
  object-fit: cover;
  min-height: 100%;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing--prev .projects-hero-carousel__wing-img {
  object-position: 88% center;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing--next .projects-hero-carousel__wing-img {
  object-position: 12% center;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center-inner {
  aspect-ratio: auto;
  width: 100%;
  overflow: hidden;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
  background: #fff;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(88vh, 1400px);
  object-fit: contain;
  flex-shrink: 0;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center:hover .projects-hero-carousel__center-img {
  transform: none;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center-ph {
  min-height: min(40vh, 420px);
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__wing-ph,
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center-ph {
  background: repeating-linear-gradient(
    135deg,
    rgba(42, 36, 30, 0.06) 0px,
    rgba(42, 36, 30, 0.06) 10px,
    rgba(42, 36, 30, 0.02) 10px,
    rgba(42, 36, 30, 0.02) 20px
  );
  color: rgba(42, 36, 30, 0.35);
}
button.projects-hero-carousel__wing {
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}
button.projects-hero-carousel__center {
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  text-align: inherit;
  width: 100%;
  display: block;
}
.projects-hero-carousel--detail-gallery .projects-hero-carousel__center-wrap {
  position: relative;
  align-self: center;
  width: 100%;
  min-width: 0;
}
.projects-hero-carousel--single.projects-hero-carousel--detail-gallery .projects-hero-carousel__stage {
  min-height: 0;
  max-height: none;
}
.projects-hero-carousel--single.projects-hero-carousel--detail-gallery .projects-hero-carousel__center {
  max-width: min(96vw, min(72vw, 1200px));
  margin: 0 auto;
}

.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2.8vw, 32px);
  z-index: 6;
  transform: translateX(-50%);
  margin: 0;
  padding: 11px 20px 11px 16px;
  border: none;
  border-radius: 0;
  background: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all-icon {
  display: flex;
  flex-shrink: 0;
  color: #1a1816;
  line-height: 0;
}
.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all-icon
  svg {
  display: block;
}
.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all-label {
  color: oklch(52% 0.02 72);
}
.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all:hover,
.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all:focus-visible {
  background: #faf8f5;
  outline: none;
}
.projects-hero-carousel--detail-gallery
  .projects-hero-carousel__center-wrap
  .project-detail-gallery__view-all:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Full-screen gallery grid (view all) */
.project-gallery-all {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #121212;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.project-gallery-all[hidden] {
  display: none !important;
}
.project-gallery-all__close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(20px, 4vw, 40px);
  z-index: 2;
  margin: 0;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: rgba(250, 247, 242, 0.65);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.project-gallery-all__close:hover,
.project-gallery-all__close:focus-visible {
  color: var(--cream);
  outline: none;
}
.project-gallery-all__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(72px, 10vw, 100px) clamp(24px, 5vw, 72px) clamp(48px, 6vw, 80px);
  box-sizing: border-box;
}
.project-gallery-all__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}
.project-gallery-all__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.project-gallery-all__cell {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transition: opacity 0.25s ease;
}
.project-gallery-all__cell:hover,
.project-gallery-all__cell:focus-visible {
  opacity: 0.92;
  outline: none;
}
.project-gallery-all__cell-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}
.project-gallery-all__cell-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-gallery-all__idx {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(250, 247, 242, 0.55);
}
@media (max-width: 900px) {
  .project-gallery-all__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .project-gallery-all__grid {
    grid-template-columns: 1fr;
  }
}

.project-detail-overview {
  border-bottom: 1px solid oklch(87% 0.01 72);
}
.project-detail-overview__main {
  padding: clamp(48px, 6vw, 96px);
}
.project-detail-overview__copy {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--teak);
  max-width: 640px;
}
.project-detail-overview__copy img,
.project-detail-overview__copy video {
  max-width: 100%;
  height: auto;
}
.project-detail-overview__copy iframe {
  max-width: 100%;
}
.project-detail-gallery__kicker {
  margin-bottom: 36px;
}
.project-detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.project-detail-gallery__grid--square .project-detail-gallery__cell {
  aspect-ratio: 1 / 1;
}
.project-detail-gallery__cell {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  display: block;
  position: relative;
}
.project-detail-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-detail-gallery__cell:hover .project-detail-gallery__img {
  transform: scale(1.04);
}

.project-detail-related {
  background: oklch(93% 0.012 72);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 96px);
  border-top: 1px solid oklch(86% 0.01 72);
}
.project-detail-related__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.project-detail-related__title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--teak);
  margin: 0;
}
.project-detail-related__all {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.project-detail-related__all span {
  color: var(--gold);
}
.project-detail-related__all:hover {
  color: var(--teak);
}
.project-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-related-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-related-card__media {
  overflow: hidden;
  margin-bottom: 16px;
}
.project-related-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
  display: block;
  transition: transform 0.6s ease;
}
.project-related-card:hover .project-related-card__img {
  transform: scale(1.04);
}
.project-related-card__meta {
  margin-bottom: 8px;
}
.project-related-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--teak);
  margin: 0 0 4px;
}
.project-related-card__loc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--teak-light);
  margin: 0;
}

.project-detail-placeholder-msg {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--teak-mid);
  margin: 0;
}
.project-detail-gallery--empty .project-detail-placeholder-msg {
  max-width: 40rem;
}

.indocasa-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 400;
  background: rgba(20, 14, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.indocasa-lightbox[hidden] {
  display: none !important;
}
.indocasa-lightbox__stage {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: min(100vw - 32px, 100%);
  max-height: min(100dvh - 32px, 100vh - 32px);
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}
.indocasa-lightbox__img {
  max-width: 100%;
  max-height: min(100dvh - 32px, 100vh - 32px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: auto;
  cursor: zoom-in;
  vertical-align: middle;
  transition: width 0.2s ease, height 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.indocasa-lightbox__img.is-zoomed {
  cursor: zoom-out;
}
.indocasa-lightbox__close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: rgba(250, 247, 242, 0.5);
  font-size: 36px;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  outline: none;
}
.indocasa-lightbox__close:focus-visible {
  outline: none;
}

@media (max-width: 900px) {
  .showroom-hero,
  .showroom-active,
  .showroom-contact {
    grid-template-columns: 1fr;
  }
  .showroom-all__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bespoke-page__grid {
    grid-template-columns: 1fr;
  }
  .materials-points__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .materials-gallery {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-hero__copy {
    padding: clamp(32px, 7vw, 56px) clamp(20px, 5vw, 40px);
  }
  .about-hero__title {
    margin-bottom: 24px;
    font-size: clamp(32px, 9vw, 48px);
  }
  .about-hero__body {
    max-width: none;
    line-height: 1.7;
  }
  .about-hero__quote-wrap {
    margin-top: 24px;
    padding-top: 20px;
  }
  .about-stats {
    padding: clamp(36px, 8vw, 56px) clamp(20px, 5vw, 40px);
  }
  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .about-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__stage {
    min-height: 0;
    max-height: none;
  }
  /* Listing /projects only: shorter stage + hints along bottom (teak hero). */
  [data-projects-carousel] .projects-hero-carousel__stage {
    min-height: min(88vw, 62vh);
    max-height: none;
  }
  [data-projects-carousel] .projects-hero-carousel__hint {
    top: auto;
    bottom: clamp(96px, 20vh, 150px);
    transform: none;
    padding: 10px 8px;
    font-size: 11px;
  }
  [data-projects-carousel] .projects-hero-carousel__hint--prev {
    left: 6px;
  }
  [data-projects-carousel] .projects-hero-carousel__hint--next {
    right: 6px;
  }
  [data-projects-carousel] .projects-hero-carousel__hint-line {
    width: 20px;
  }
  /* Project detail gallery: keep prev/next vertically centered (not listing layout). */
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: 12px 10px;
    font-size: 12px;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint--prev {
    left: clamp(6px, 1.5vw, 20px);
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint--next {
    right: clamp(6px, 1.5vw, 20px);
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint-line {
    width: 24px;
  }
  .projects-cards {
    grid-template-columns: 1fr;
  }
  .project-detail-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-detail-related__grid {
    grid-template-columns: 1fr;
  }

  /* ── Project detail (taxonomy): phones & tablets ───────────── */
  .project-detail-bc {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .project-detail-hero {
    height: min(78vh, 560px);
    min-height: 280px;
  }
  .indocasa-media-placeholder--hero {
    height: min(78vh, 560px);
    min-height: 280px;
  }
  .project-detail-hero .project-detail-bc {
    padding: calc(var(--header-bar-height) + 10px) clamp(16px, 4vw, 40px) 16px;
  }
  .project-detail-hero__intro {
    padding: clamp(64px, 16vw, 110px) clamp(18px, 4vw, 36px) clamp(28px, 6vh, 52px);
  }
  .project-detail-hero__title {
    font-size: clamp(20px, 5.8vw, 38px);
    letter-spacing: 0.1em;
    max-width: 100%;
    padding-inline: 10px;
    overflow-wrap: anywhere;
  }
  .project-detail-hero__type {
    letter-spacing: 0.14em;
    padding-inline: 12px;
    overflow-wrap: anywhere;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__pad {
    padding: clamp(18px, 4vw, 32px) clamp(12px, 3vw, 20px) clamp(36px, 7vw, 56px);
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__center-img {
    max-height: min(70vh, 820px);
  }
  .projects-hero-carousel__intro {
    padding: clamp(22px, 5vw, 40px) clamp(14px, 3.5vw, 22px) clamp(18px, 4vh, 32px);
  }
  .projects-hero-carousel__title {
    max-width: 100%;
    padding-inline: 6px;
    overflow-wrap: anywhere;
    letter-spacing: 0.1em;
    font-size: clamp(17px, 4.8vw, 34px);
  }
  .projects-hero-carousel__loc {
    letter-spacing: 0.14em;
    padding-inline: 10px;
    overflow-wrap: anywhere;
  }
  .project-detail-overview__main {
    padding: clamp(28px, 6vw, 48px) clamp(16px, 4vw, 24px);
  }
  .project-detail-overview__copy {
    max-width: none;
    font-size: clamp(16px, 4vw, 22px);
  }
  .project-detail-overview__copy .alignwide,
  .project-detail-overview__copy .alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .project-detail-related {
    padding: clamp(32px, 6vw, 52px) clamp(16px, 4vw, 28px);
  }
  .project-detail-related__head {
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .project-detail-related__title {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .projects-hero-carousel--detail-gallery
    .projects-hero-carousel__center-wrap
    .project-detail-gallery__view-all {
    max-width: calc(100vw - 32px);
    padding-inline: 14px;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .about-hero__kicker {
    margin-bottom: 20px;
    letter-spacing: 3px;
  }
  .about-hero__title {
    font-size: clamp(28px, 10vw, 38px);
  }
  .about-hero__body {
    font-size: 14px;
  }
  .about-hero__quote {
    font-size: 18px;
  }
  .about-stats__grid,
  .about-strip {
    grid-template-columns: 1fr;
  }

  /* Project detail gallery: full-width main slide, no side strips */
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__stage {
    display: block;
    width: 100%;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__wing,
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__gutter {
    display: none !important;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__center-wrap {
    width: 100%;
    max-width: 100%;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__center-img {
    max-height: min(68vh, 720px);
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint {
    top: auto;
    bottom: clamp(56px, 14vh, 100px);
    transform: none;
    padding: 10px 8px;
    font-size: 11px;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint--prev {
    left: 6px;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint--next {
    right: 6px;
  }
  .projects-hero-carousel--detail-gallery .projects-hero-carousel__hint-line {
    width: 20px;
  }
  .project-gallery-all__close {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .project-related-card__name {
    font-size: clamp(18px, 4.5vw, 20px);
  }
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  color: var(--teak);
}
.mobile-toggle:focus {
  outline: none;
}
.mobile-toggle:focus-visible {
  outline: 2px solid var(--teak-mid);
  outline-offset: 3px;
}
.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: background .3s ease;
}

/* ── Hero: split + full-bleed (IndoCasa.html) ─────────────────── */
.hero {
  position: relative;
}

.hero--fullbleed {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

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

/* Global `img { max-width:100%; height:auto }` must not shrink full-bleed hero (IndoCasa.html). */
.hero--fullbleed .hero-bg {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay--left {
  background: linear-gradient(to right, var(--scrim-hero) 45%, transparent);
}

.hero-content--fullbleed {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 580px;
}

.hero--split.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 160px) clamp(40px, 6vw, 96px);
}

.hero-split-right {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}

.hero-split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indocasa-field-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 8rem;
  padding: 1.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  background: repeating-linear-gradient(135deg, transparent, transparent 8px, var(--stripe-placeholder) 8px, var(--stripe-placeholder) 16px);
  border: 1px dashed var(--teak-light);
}

.hero-bg--placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-split-img--placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.home-spotlight-visual--placeholder {
  min-height: 90vh;
  width: 100%;
}

.home-dining-fullbleed--placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.home-catalog-placeholder {
  grid-column: 1 / -1;
  min-height: 200px;
}

.home-catalog-card-img--placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero--split .hero-kicker {
  margin-bottom: 32px;
}

.hero-kicker--light {
  margin-bottom: 24px;
  color: var(--gold-hero);
  font-weight: 600;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
}

.hero--split .hero-title {
  font-size: clamp(44px, 4.5vw, 80px);
  line-height: 1.08;
  color: var(--teak);
  margin-bottom: 32px;
}

.hero-title--light {
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.hero--split .hero-sub {
  color: var(--teak-mid);
  margin-bottom: 52px;
  max-width: 380px;
}

.hero-sub--light {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream-75);
  margin-bottom: 48px;
  max-width: 420px;
}

.hero-stats {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-85);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 0;
}

.hero-stat-label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--teak-light);
  letter-spacing: 1px;
  margin: 6px 0 0;
  text-transform: uppercase;
}

.hero-float-card {
  position: absolute;
  bottom: 48px;
  left: -24px;
  background: var(--ivory);
  padding: 20px 28px;
  box-shadow: 0 16px 48px var(--shadow-teak);
  min-width: 200px;
  z-index: 2;
}

.hero-float-kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

.hero-float-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--teak);
  margin: 0;
}

.hero-float-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--teak-light);
  margin: 4px 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* IndoCasa.html full-bleed hero: CTAs inline, gap 20, no wrap */
.hero--fullbleed .hero-actions {
  flex-wrap: nowrap;
  gap: 20px;
}

.btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all .3s ease;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
}
.btn-primary { background: var(--teak); color: var(--ivory); border-color: var(--teak); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline { border-color: var(--cream-40); color: var(--cream); background: transparent; }
.btn-outline:hover { border-color: var(--cream); color: var(--cream); }

.btn-outline-dark {
  background: none;
  border: 1px solid var(--teak-light);
  color: var(--teak-mid);
  padding: 14px 36px;
  letter-spacing: 2.5px;
}
.btn-outline-dark:hover {
  border-color: var(--teak);
  color: var(--teak);
}

/* Full-bleed hero — exact IndoCasa.html button styles */
.btn-hero-gold {
  background: var(--gold);
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 16px 36px;
}
.btn-hero-gold:hover {
  filter: brightness(1.05);
  color: var(--cream);
}

.btn-hero-outline-light {
  background: none;
  border: 1px solid var(--cream-40);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 16px 36px;
}
.btn-hero-outline-light:hover {
  border-color: var(--cream-55);
  color: var(--cream);
  background: var(--cream-06);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── Homepage sections (ACF-driven) ───────────────────────────── */
.home-marquee {
  background: var(--teak);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line-white-06);
}

.home-marquee-inner {
  display: flex;
  gap: 64px;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.home-marquee-item {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-40);
}

.home-marquee-item--gold {
  color: var(--gold-hero);
}

.home-editorial {
  padding: clamp(80px, 10vw, 160px) clamp(40px, 6vw, 96px);
  border-bottom: 1px solid var(--hairline-88);
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end;
}

.home-editorial-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.home-editorial-intro {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-light);
  line-height: 1.9;
  margin: 0;
}

.home-editorial-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 80px);
  font-weight: 300;
  line-height: 1.07;
  color: var(--teak);
  letter-spacing: -.5px;
  margin: 0;
}

.home-spotlight.grid-2 {
  min-height: 90vh;
  gap: 0;
}

.home-spotlight-visual {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

.home-spotlight-visual img {
  width: 100%;
  height: 100%;
  min-height: 90vh;
  object-fit: cover;
}

.home-spotlight-badge {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--teak);
  color: var(--gold);
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px);
}

.home-section-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}

.home-section-kicker--light {
  color: var(--gold);
}

.home-dining-content .home-section-kicker--light {
  color: var(--gold-hero);
  font-weight: 600;
}

.home-spotlight-title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--teak);
  margin: 0 0 24px;
}

.home-spotlight-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-mid);
  line-height: 1.9;
  max-width: 380px;
  margin: 0 0 16px;
}

.home-spotlight-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--teak-light);
  margin: 0 0 48px;
  letter-spacing: 1px;
}

.home-spotlight-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-catalog {
  padding: clamp(60px, 8vw, 120px) 0;
}

.home-catalog-head {
  margin-bottom: 10px;
  padding: 0 clamp(40px, 6vw, 96px);
}

.home-catalog-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  color: var(--teak);
  margin: 0;
}

.home-catalog-all {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 0 18px;
  padding-left: clamp(40px, 6vw, 96px);
}

.home-catalog-all:hover {
  color: var(--teak);
}

.home-catalog-arrow {
  color: var(--gold);
}

.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.home-catalog-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.home-catalog-card-img {
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--cream);
}

.home-catalog-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}

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

.home-catalog-code {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

.home-catalog-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--teak);
  margin: 0 0 6px;
}

.home-catalog-dim {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--teak-light);
  margin: 0;
}

.home-dining-fullbleed {
  position: relative;
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
}

.home-dining-fullbleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-dining-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--scrim-soft) 35%, transparent 70%);
  pointer-events: none;
}

.home-dining-content {
  position: absolute;
  bottom: 64px;
  left: clamp(40px, 6vw, 96px);
  right: 50%;
  z-index: 2;
}

.home-dining-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin: 0 0 32px;
}

.btn-dining-ghost {
  background: transparent;
  border: 1px solid var(--cream-50);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 14px 36px;
}
.btn-dining-ghost:hover {
  background: var(--cream);
  color: var(--teak);
  border-color: var(--cream);
}

.home-craft {
  background: var(--teak);
  gap: 0;
  align-items: stretch;
}

.home-craft-copy {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-craft-copy .home-section-kicker {
  margin-bottom: 32px;
}

.home-craft-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 60px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin: 0 0 32px;
}

.home-craft-body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream-60);
  line-height: 1.9;
  max-width: 400px;
  margin: 0 0 48px;
}

.btn-craft-outline {
  align-self: flex-start;
  background: none;
  border: 1px solid var(--cream-30);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 14px 36px;
}
.btn-craft-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teak);
}

.home-craft-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 280px;
}

.home-craft-images img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.home-bespoke {
  padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 96px);
  text-align: center;
  border-bottom: 1px solid var(--hairline-88);
}

.home-bespoke-kicker {
  margin-bottom: 28px;
}

.home-bespoke-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 auto 24px;
  max-width: 700px;
  color: var(--teak);
}

.home-bespoke-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--teak-mid);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 48px;
}

.btn-bespoke {
  background: var(--teak);
  border: none;
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 18px 56px;
}
.btn-bespoke:hover {
  background: var(--gold);
}

.editorial h2,
.featured h2,
.materials h2,
.bespoke h2,
.catalog h2,
.archive-main { padding-top: var(--header-bar-height); }
body.indocasa-hero-overlay .archive-main.product-tax-archive {
  padding-top: 0;
}

/* Product category / collection archives (Minotti-style hero + filters) */
.product-tax-hero {
  position: relative;
  width: 100%;
  background: var(--teak);
}
/* Hero image sets section height from its aspect ratio at full width (no fixed 720px cap). */
.product-tax-hero--has-media {
  min-height: 0;
}
.product-tax-hero:not(.product-tax-hero--has-media) {
  min-height: min(78vh, 720px);
}
.product-tax-hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.product-tax-hero__img {
  width: 100%;
  height: auto;
  display: block;
}
.product-tax-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-bar-height) + clamp(28px, 5vw, 56px)) clamp(24px, 5vw, 48px) clamp(40px, 8vw, 80px);
  pointer-events: none;
}
.product-tax-hero__overlay .product-tax-title,
.product-tax-hero__overlay .product-tax-lede {
  pointer-events: auto;
}
.product-tax-hero__overlay .product-tax-title {
  font-family: var(--sans);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  color: var(--ivory);
  text-shadow:
    0 1px 2px rgba(12, 10, 8, 0.5),
    0 4px 28px rgba(12, 10, 8, 0.45);
}
.product-tax-hero__overlay .product-tax-lede {
  max-width: 640px;
  margin: 1.25rem 0 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
  color: rgba(250, 247, 242, 0.95);
  text-shadow: 0 1px 3px rgba(12, 10, 8, 0.55);
}
.product-tax-hero__overlay .product-tax-lede a {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.product-tax-hero__overlay .product-tax-lede a:hover,
.product-tax-hero__overlay .product-tax-lede a:focus-visible {
  color: var(--gold);
}
.product-tax-group-title {
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 48px) clamp(20px, 2.5vw, 32px);
  background: #fff;
  color: var(--teak);
}
.product-tax-group-title-link {
  color: inherit;
  text-decoration: none;
}
.product-tax-group-title-link:hover,
.product-tax-group-title-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.product-tax-group-title + .product-tax-grid {
  padding-top: 0;
}
.product-tax-live {
  transition: opacity .28s ease;
}
.product-tax-live.is-loading {
  opacity: 0.68;
  pointer-events: none;
}
.product-tax-live.is-product-tax-loading-more {
  opacity: 0.92;
}
.product-tax-scroll-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}
.product-tax-filters {
  background: var(--cream);
  border-top: 1px solid var(--line-dust);
  border-bottom: 1px solid var(--line-dust);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 5vw, 48px);
}
.product-tax-filters__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
}
/* Projects /projects/: same white filter band as product category / collection */
.product-tax-filters.projects-index-filters {
  background: #fff;
  border-top: 1px solid var(--line-dust);
  border-bottom: 1px solid var(--line-dust);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 5vw, 48px);
  margin-top: 0;
  margin-bottom: clamp(32px, 4vw, 56px);
  margin-left: calc(-1 * clamp(40px, 6vw, 96px));
  margin-right: calc(-1 * clamp(40px, 6vw, 96px));
  width: calc(100% + 2 * clamp(40px, 6vw, 96px));
  max-width: none;
  box-sizing: border-box;
}

/* Product grid band: white (filters are cream). */
.product-tax-grid {
  background: #fff;
}
.product-tax-filters.projects-index-filters .product-tax-filters__inner {
  max-width: 36rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(16px, 3vw, 28px);
  justify-content: center;
}
.product-tax-filters.projects-index-filters .product-tax-filters__search-row {
  display: block;
}
.product-tax-filters.projects-index-filters .product-tax-filters__search-row .product-tax-filters__input {
  width: 100%;
  flex: none;
}
.product-tax-filters__label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-mid);
  margin-bottom: 10px;
}
.product-tax-filters__field--dropdown {
  position: relative;
  z-index: 1;
}
.product-tax-filters__field--dropdown:has(.product-tax-filters__custom.is-open) {
  z-index: 40;
}
.product-tax-filters__custom {
  position: relative;
}
.product-tax-filters__custom.is-disabled {
  opacity: 0.58;
  pointer-events: none;
}
.product-tax-filters__custom-trigger {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--teak);
  border: 1px solid rgba(62, 52, 42, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, #fdfcfa 0%, #f7f5f1 100%);
  box-shadow: 0 1px 2px rgba(30, 24, 18, 0.05);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.product-tax-filters__custom-trigger:hover:not(:disabled) {
  border-color: rgba(62, 52, 42, 0.24);
}
.product-tax-filters__custom-trigger:focus {
  outline: none;
  border-color: var(--teak);
  box-shadow: 0 0 0 3px rgba(62, 52, 42, 0.1), 0 2px 10px rgba(30, 24, 18, 0.07);
  background: #fff;
}
.product-tax-filters__custom.is-open .product-tax-filters__custom-trigger {
  border-color: var(--teak);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(62, 52, 42, 0.1);
}
.product-tax-filters__custom-trigger:disabled {
  cursor: not-allowed;
  background: #f0eeea;
  box-shadow: none;
}
.product-tax-filters__custom-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-tax-filters__custom-chevron {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  border-right: 1.5px solid var(--teak-mid);
  border-bottom: 1.5px solid var(--teak-mid);
  transform: rotate(45deg);
  opacity: 0.85;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-tax-filters__custom.is-open .product-tax-filters__custom-chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.product-tax-filters__custom-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: min(320px, 52vh);
  overflow-y: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(62, 52, 42, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(30, 24, 18, 0.12), 0 4px 12px rgba(30, 24, 18, 0.06);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.36s;
}
.product-tax-filters__custom.is-open .product-tax-filters__custom-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.product-tax-filters__custom-group {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(62, 52, 42, 0.08);
}
.product-tax-filters__custom-group:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-tax-filters__custom-group-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak-mid);
  padding: 8px 12px 6px;
  opacity: 0.85;
}
.product-tax-filters__custom-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-tax-filters__custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 11px 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: var(--teak);
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.product-tax-filters__custom-option:hover,
.product-tax-filters__custom-option:focus {
  outline: none;
  background: rgba(62, 52, 42, 0.06);
}
.product-tax-filters__custom-option.is-selected {
  background: rgba(62, 52, 42, 0.08);
  color: var(--teak);
}
.product-tax-filters__custom-check {
  flex-shrink: 0;
  width: 1.1em;
  font-size: 13px;
  color: var(--gold);
  text-align: center;
}
.product-tax-filters__custom-option:not(.is-selected) .product-tax-filters__custom-check {
  visibility: hidden;
}
.product-tax-filters__custom-option-label {
  flex: 1;
  min-width: 0;
}
a.product-tax-filters__custom-option--link {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  .product-tax-filters__custom-panel,
  .product-tax-filters__custom-chevron {
    transition-duration: 0.1s;
    transition-timing-function: ease;
  }
}
.product-tax-filters__input {
  box-sizing: border-box;
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 16px;
  border: 1px solid rgba(62, 52, 42, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--teak);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.product-tax-filters__input:focus {
  outline: none;
  border-color: var(--teak);
  box-shadow: 0 0 0 3px rgba(62, 52, 42, 0.1);
}
.product-tax-filters__input::placeholder {
  color: var(--teak-mid);
  opacity: 0.65;
}
.product-tax-filters__search-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.product-tax-filters__search-row .product-tax-filters__input {
  flex: 1;
}
.product-tax-filters__submit {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--teak);
  background: var(--teak);
  color: var(--cream);
  cursor: pointer;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.product-tax-filters__submit:hover {
  background: var(--cream);
  color: var(--teak);
}
.product-tax-filters__submit:active {
  transform: scale(0.98);
}
.product-tax-empty {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  color: var(--teak-mid);
}
.product-tax-pagination {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.product-tax-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
}
.product-tax-pagination .page-numbers {
  padding: 8px 12px;
  text-decoration: none;
  color: var(--teak);
  border: 1px solid var(--line-dust);
  border-radius: 2px;
}
.product-tax-pagination .page-numbers.current,
.product-tax-pagination a.page-numbers:hover {
  border-color: var(--teak);
  background: var(--teak);
  color: var(--cream);
}

.archive-main h1,
.product-detail-title,
.page-main h1 { font-family: var(--serif); font-weight: 300; line-height: 1.1; }

/* IndoCasa.html CollectionsPage — header row (kicker + 2-col title / lede) */
.collections-page-hero {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px) clamp(40px, 5vw, 80px);
}
.collections-page-kicker { margin-bottom: 20px; }
.collections-page-headline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.collections-page-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}
.collections-page-lede {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  color: var(--teak-mid);
  max-width: 440px;
  margin: 0;
}
.collections-page-body {
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 900px;
}
.collections-page-body p { line-height: 1.85; color: var(--teak-mid); }
.collections-page-grid { padding-top: 0; }

.editorial h2 { font-size: clamp(36px, 4.5vw, 80px); margin-bottom: 20px; max-width: 980px; }
.editorial p { max-width: 700px; line-height: 1.8; color: var(--teak-mid); }

.featured {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.product-grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card img { aspect-ratio: 4 / 3; object-fit: contain; object-position: center; margin-bottom: 18px; }
.product-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.product-kicker {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-meta p { color: var(--teak-light); font-size: 12px; }

.product-tax-grid .product-card--minimal .product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-tax-grid .product-card--minimal .product-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.product-tax-grid .product-card--minimal .product-card__title-minimal {
  font-family: var(--sans);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: var(--teak);
}
.product-tax-grid .product-card--minimal .product-link:hover .product-card__title-minimal {
  color: var(--teak-mid);
}

.materials,
.bespoke { text-align: center; }
.materials p,
.bespoke p { max-width: 720px; margin: 0 auto 24px; line-height: 1.85; color: var(--teak-mid); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
.collection-card {
  min-height: 220px;
  border: 1px solid var(--hairline-88);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background .3s ease, color .3s ease;
}
.collection-card-body { padding: 32px; }
.collection-card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.collection-card:not(.collection-card--overlay):hover { background: var(--teak); color: var(--ivory); }
.collection-card:not(.collection-card--overlay):hover .collection-card-image img { opacity: 0.92; }
.collection-card:not(.collection-card--overlay) h2 { font-family: var(--serif); font-size: clamp(30px, 3vw, 48px); font-weight: 300; margin-bottom: 12px; }

/* IndoCasa.html CollectionsPage — full-bleed image + bottom overlay (hover: darker scrim, desc + CTA) */
.collections-page-grid .collection-card--overlay {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 0;
  min-height: 0;
}
.collection-card-visual {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.collection-card-visual--tall .collection-card-image { aspect-ratio: 3 / 4; }
.collection-card-visual--wide .collection-card-image { aspect-ratio: 4 / 3; }
.collections-page-grid .collection-card--overlay .collection-card-image {
  width: 100%;
  margin: 0;
  position: relative;
}
.collections-page-grid .collection-card--overlay .collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collection-card-image--placeholder {
  width: 100%;
  min-height: 12rem;
  background: linear-gradient(145deg, var(--teak-mid) 0%, var(--teak) 100%);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 31, 20, 0.15);
  transition: background .4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.collection-card--overlay:hover .collection-card-overlay,
.collection-card--overlay:focus-within .collection-card-overlay {
  background: rgba(42, 31, 20, 0.55);
}
.collection-card-kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.collection-card-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 12px;
}
.collection-card-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream-80);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.collection-card--overlay:hover .collection-card-desc,
.collection-card--overlay:focus-within .collection-card-desc {
  max-height: 7.5rem;
}
.collection-card-cta {
  margin-top: 0;
  opacity: 0;
  transition: opacity .3s ease, margin .4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.collection-card--overlay:hover .collection-card-cta,
.collection-card--overlay:focus-within .collection-card-cta {
  margin-top: 20px;
  opacity: 1;
}
.collection-card-cta-text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
}
.collection-card-cta-arrow {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.product-categories { margin-bottom: 24px; }
.product-category-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.product-category-list a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--teak-light);
  padding-bottom: 2px;
}
.product-category-list a:hover { color: var(--gold); border-color: var(--gold); }

/* ── Single product (IndoCasa.html ProductPage) ── */
.product-page { padding-top: var(--header-bar-height); }

.product-breadcrumb {
  padding: 24px clamp(24px, 4vw, 48px);
  border-bottom: 1px solid var(--hairline-87);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product-breadcrumb a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--teak-light);
  letter-spacing: 1px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.product-breadcrumb a:hover { color: var(--teak); }
.product-breadcrumb-sep { color: var(--teak-light); font-size: 12px; }
.product-breadcrumb-current {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--teak);
}
.product-breadcrumb a.product-breadcrumb-current {
  color: var(--teak);
  text-decoration: none;
}
.product-breadcrumb a.product-breadcrumb-current:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px);
  gap: 0;
  align-items: stretch;
}
.product-gallery .product-main-image,
.product-gallery > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--cream);
}
.product-gallery__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: inherit;
  outline: none;
}
.product-gallery__trigger:focus-visible {
  outline: none;
}
.product-gallery__trigger--main .product-main-image {
  vertical-align: middle;
}
.product-gallery__trigger--thumb {
  cursor: zoom-in;
  line-height: 0;
}
.thumb-grid {
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.thumb-grid img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }

.product-details-panel {
  padding: clamp(40px, 5vw, 80px);
  overflow-y: auto;
}
.product-detail-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-detail-title {
  font-family: var(--serif);
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--teak);
}
.product-detail-code {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: -16px 0 24px;
}
.product-detail-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  color: var(--teak-mid);
  margin-bottom: 40px;
  max-width: 520px;
}
.product-detail-desc > p {
  margin: 0 0 1em;
}
.product-detail-desc > p:last-child {
  margin-bottom: 0;
}
.product-detail-desc a {
  color: var(--teak);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.product-detail-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teak);
  margin-bottom: 16px;
}

.product-finishes { margin-bottom: 40px; }
.finish-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.finish-btn {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.finish-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.finish-btn span {
  display: inline-block;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--teak-mid);
  border: 1px solid var(--border-75);
  background: transparent;
  transition: all 0.2s ease;
}
.finish-btn.is-active span,
.finish-btn input:focus-visible + span {
  background: var(--teak);
  border-color: var(--teak);
  color: var(--ivory);
}
.finish-btn input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.spec-list--diamond { margin-bottom: 40px; }
.spec-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-87);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.spec-diamond {
  color: var(--gold);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.spec-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-mid);
  line-height: 1.5;
}

.product-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.product-cta--primary {
  background: var(--teak);
  border: none;
  color: var(--ivory);
}
.product-cta--primary:hover {
  background: var(--gold);
  color: var(--ivory);
}
.product-cta--secondary {
  background: none;
  border: 1px solid var(--border-75);
  color: var(--teak-mid);
}
.product-cta--secondary:hover {
  border-color: var(--teak);
  color: var(--teak);
}

.product-inquiry-thanks {
  background: var(--panel-warm);
  padding: 24px;
  text-align: center;
}
.product-inquiry-thanks-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--teak);
  margin-bottom: 8px;
}
.product-inquiry-thanks-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teak-mid);
}

.entry-copy { color: var(--teak-mid); line-height: 1.9; margin-bottom: 24px; }
.spec-list:not(.spec-list--diamond) { list-style: none; margin-bottom: 24px; }
.spec-list:not(.spec-list--diamond) li { border-bottom: 1px solid var(--hairline-87); padding: 10px 0; color: var(--teak-mid); }
.finish-list { display: flex; gap: 10px; flex-wrap: wrap; }
.finish-list span { border: 1px solid var(--border-75); padding: 8px 12px; font-size: 12px; }

/* Footer — IndoCasa.html */
.site-footer.indocasa-footer,
.indocasa-footer.site-footer {
  background: var(--teak);
  color: var(--cream-60);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 96px) 32px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 64px;
}
.footer-col-heading {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-brand-link {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.footer-brand-link:focus,
.footer-brand-link:focus-visible {
  outline: none;
  box-shadow: none;
}
.footer-brand-logo {
  height: 100px;
  width: auto;
  display: block;
  filter: invert(1) brightness(0.75) sepia(1) saturate(1.5) hue-rotate(10deg);
}
.footer-col-link-wrap {
  margin: 0 0 12px;
  line-height: 1.4;
}
.footer-col-link {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream-50);
  text-decoration: none;
  cursor: pointer;
}
.footer-col-link:hover { color: var(--cream-85); }
.footer-col-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream-50);
  line-height: 1.4;
  margin: 0 0 12px;
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li { margin: 0 0 12px; line-height: 1.4; }
.footer-menu li:last-child { margin-bottom: 0; }
.footer-bottom {
  border-top: 1px solid var(--cream-10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--cream-30);
  margin: 0;
}

@media (max-width: 768px) {
  .section-pad { padding: clamp(48px, 8vw, 80px) 24px; }

  /* Mobile nav: full-height cream drawer (site palette), scrollable */
  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 210;
    align-items: center;
    justify-content: center;
  }
  .menu-shell {
    position: fixed;
    top: var(--header-bar-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - var(--header-bar-height));
    max-height: calc(100vh - var(--header-bar-height));
    margin: 0;
    padding: 0;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -16px 0 56px rgba(42, 31, 20, 0.1);
    border-top: 1px solid var(--line-dust);
    z-index: 205;
  }
  .menu-shell.is-open {
    transform: translateX(0);
  }
  .menu-shell .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: clamp(12px, 3vw, 20px) clamp(20px, 5vw, 28px) max(32px, env(safe-area-inset-bottom, 0px));
  }
  .menu-shell .primary-menu > li {
    margin: 0;
    border-bottom: 1px solid var(--hairline-88);
  }
  .menu-shell .primary-menu > li:last-child {
    border-bottom: none;
  }
  .menu-shell .primary-menu > li:not(.primary-menu__item--mega) > a {
    display: block;
    padding: 18px 0;
    color: var(--teak);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
  }
  .menu-shell .primary-menu .current-menu-item > a {
    color: var(--gold);
  }
  .menu-shell .primary-menu a:hover,
  .menu-shell .primary-menu .primary-menu__mega-link:hover {
    color: var(--gold);
  }

  .primary-menu__item--mega::before {
    display: none !important;
  }
  .primary-menu__mega-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    margin: 0;
    gap: 12px;
  }
  .primary-menu__mega-row .primary-menu__mega-link {
    flex: 1;
    padding: 0;
    color: var(--teak);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
  }

  .mega-menu__toggle {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--teak-mid);
  }
  .primary-menu__item--mega.is-mega-open .mega-menu__toggle {
    color: var(--gold);
  }
  .mega-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
  }
  .primary-menu__item--mega.is-mega-open .mega-menu {
    display: block;
  }
  .mega-menu__panel {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mega-menu__inner {
    max-height: none;
    overflow: visible;
    padding: 4px 0 8px 14px;
    margin: 0 0 0 6px;
    border-left: 2px solid var(--gold-hero);
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .mega-menu__column.is-multi {
    grid-column: span 1;
  }
  .mega-menu__col-head {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hairline-82);
  }
  .mega-menu__title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-hero);
  }
  .mega-menu__lists {
    grid-template-columns: 1fr;
    gap: 0 12px;
  }
  .mega-menu__lists.is-multi {
    grid-template-columns: 1fr;
  }
  .mega-menu__list a {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.35;
    padding: 12px 0;
    color: var(--teak);
    border-bottom: 1px solid var(--hairline-88);
    transition: color 0.18s ease, padding-left 0.18s ease;
  }
  .mega-menu__list li:last-child a {
    border-bottom: none;
  }
  .mega-menu__list a:hover {
    color: var(--gold);
    padding-left: 6px;
  }

  /*
   * Drawer is inside .site-header; home hero rules use cream link colors with higher
   * specificity — force readable teak/sage in the cream panel only.
   */
  .site-header .menu-shell .primary-menu a,
  .site-header .menu-shell .primary-menu .primary-menu__mega-link {
    color: var(--teak) !important;
  }
  .site-header .menu-shell .primary-menu .current-menu-item > a {
    color: var(--gold) !important;
  }
  .site-header .menu-shell .primary-menu a:hover,
  .site-header .menu-shell .primary-menu .primary-menu__mega-link:hover {
    color: var(--gold) !important;
  }
  .site-header .menu-shell .primary-menu .mega-menu a {
    color: var(--teak) !important;
  }
  .site-header .menu-shell .primary-menu .mega-menu a.mega-menu__title,
  .site-header .menu-shell .primary-menu .mega-menu a.mega-menu__title:hover {
    color: var(--gold-hero) !important;
  }
  .site-header .menu-shell .primary-menu .mega-menu .mega-menu__view-all {
    color: var(--teak-mid) !important;
  }
  .site-header .menu-shell .primary-menu .mega-menu .mega-menu__view-all:hover {
    color: var(--gold) !important;
  }
  .site-header .menu-shell .mega-menu__list a:hover {
    color: var(--gold) !important;
  }
  .site-header .menu-shell .mega-menu__toggle {
    color: var(--teak) !important;
  }
  .site-header .menu-shell .primary-menu__item--mega.is-mega-open .mega-menu__toggle {
    color: var(--gold) !important;
  }
  .site-header .menu-shell .primary-menu__mega-row {
    cursor: pointer;
  }

  /* Solid header while drawer open (home hero transparent nav) */
  body.indocasa-mobile-menu-open .site-header {
    background: var(--cream-96) !important;
    border-bottom: 1px solid var(--line-dust) !important;
  }
  body.indocasa-mobile-menu-open .site-header .brand-title {
    color: var(--teak) !important;
  }
  body.indocasa-mobile-menu-open .site-header .brand-tagline {
    color: var(--teak-mid) !important;
  }
  body.indocasa-mobile-menu-open .site-header .brand-logo {
    filter: none !important;
    opacity: 1 !important;
  }
  body.indocasa-mobile-menu-open .site-header .mobile-toggle span {
    background: var(--teak) !important;
  }

  .product-tax-filters__inner {
    grid-template-columns: 1fr;
  }
  .product-tax-filters.projects-index-filters .product-tax-filters__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 32px);
  }
  .product-tax-filters__search-row {
    flex-direction: column;
  }
  .product-tax-filters__submit {
    padding: 14px 20px;
  }

  .grid-2 { grid-template-columns: 1fr !important; }

  .hero-split-right { display: none !important; }
  .hero-split-left { padding: 100px 24px 60px !important; }
  .hero-stats { gap: 24px !important; }
  /* Fixed header overlaps vertically centered hero — anchor copy below the bar */
  .hero-content--fullbleed {
    top: calc(var(--header-bar-height) + clamp(16px, 4vw, 28px));
    left: 24px;
    right: 24px;
    max-width: none;
    padding-right: 8px;
    transform: none;
  }
  .hero-float-card { left: 24px; right: auto; }

  .home-marquee-inner { animation-duration: 14s !important; }
  .home-editorial { padding: clamp(48px, 8vw, 80px) 24px; }
  .home-editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  .home-spotlight.grid-2 { min-height: 0; }
  .home-spotlight-visual { min-height: 50vh; }
  .home-spotlight-visual img { min-height: 50vh; }
  .home-spotlight-copy { padding: 40px 24px; }
  .home-catalog { padding: clamp(48px, 8vw, 80px) 0; }
  .home-catalog-head,
  .home-catalog-all { padding-left: 24px; padding-right: 24px; }
  .home-catalog-grid { grid-template-columns: 1fr !important; }
  .home-dining-content { right: 24px; }
  .home-craft-copy { padding: clamp(48px, 8vw, 80px) 24px; }
  .home-craft-images { min-height: 0; }
  .home-bespoke { padding: clamp(48px, 8vw, 80px) 24px; }

  .collections-page-hero { padding: clamp(48px, 8vw, 80px) 24px clamp(32px, 6vw, 56px); }
  .collections-page-headline {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .collections-page-lede { max-width: none; }

  .collection-card-overlay { padding: 24px; }

  .featured,
  .grid-3,
  .collections-grid,
  .product-layout,
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column !important; gap: 20px !important; }
  .grid-3,
  .collections-grid,
  .product-layout { grid-template-columns: 1fr !important; }
}

/* Floating WhatsApp contact button (bottom-right, all pages) */
.indocasa-wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.indocasa-wa-fab:hover,
.indocasa-wa-fab:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.indocasa-wa-fab__icon { display: block; }
@media (max-width: 600px) {
  .indocasa-wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
