html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif;
    background: #E4E4E2;
    color: #111;
    min-height: 100vh; }
.page a { color: inherit; }

.brand-lockup { display: flex; align-items: center; gap: 16px; font-family: 'Playfair Display', serif; font-weight: 500; }
.brand-lockup .soisu { font-size: 20px; letter-spacing: 0.02em; }
.brand-lockup .x { font-size: 13px; color: #999; font-family: 'JetBrains Mono', monospace; }
.brand-lockup .rust { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 500; }



.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: #8A8A8A; margin-bottom: 16px; }
.btn { display: inline-block; padding: 14px 28px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; cursor: pointer; font-family: inherit; text-decoration: none; border: 1px solid currentColor; background: transparent; color: inherit; transition: all 0.2s; }
.btn.solid { background: #111; color: #fff; border-color: #111; }
footer .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
footer h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: #999; margin-bottom: 18px; font-weight: 500; }
footer .foot-brand { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; margin-bottom: 12px; }
footer p, footer a { font-size: 13px; line-height: 1.8; color: #B3B3B3; text-decoration: none; display: block; }
footer .legal { border-top: 1px solid #2A2A2A; padding-top: 24px; display: flex; justify-content: space-between; font-size: 11px; color: #777; }
.concept-gallery-section .head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 40px; }
.concept-gallery-section h3 { font-size: 44px; font-weight: 500; line-height: 1.1; max-width: 640px; }
.concept-gallery-section .head p { font-size: 14px; max-width: 420px; line-height: 1.7; opacity: 0.75; }
.concept-gallery-section .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; grid-auto-rows: 180px; }
.concept-gallery-section .grid .cell { background-size: cover; background-position: center; position: relative; overflow: hidden; }
.concept-gallery-section .grid .cell .cap { position: absolute; left: 14px; bottom: 14px; color: #fff; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; background: rgba(0,0,0,0.55); padding: 6px 10px; z-index: 2; }
.concept-gallery-section .grid .cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45)); pointer-events: none; }
.concept-faq-section { padding: 100px 56px; }
.concept-faq-section .head { margin-bottom: 32px; max-width: 720px; }
.concept-faq-section h3 { font-size: 44px; font-weight: 500; line-height: 1.1; margin-bottom: 14px; }
.concept-faq-section .head p { font-size: 15px; line-height: 1.7; opacity: 0.75; }
.concept-faq-section details { padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.12); }
.concept-faq-section summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; line-height: 1.4; }
.concept-faq-section summary::-webkit-details-marker { display: none; }
.concept-faq-section summary .plus { font-family: 'JetBrains Mono', monospace; font-size: 22px; margin-left: 20px; transition: transform 0.2s; font-weight: 300; }
.concept-faq-section details[open] summary .plus { transform: rotate(45deg); }
.concept-faq-section details p { padding: 16px 0 4px; font-size: 14px; line-height: 1.8; max-width: 780px; opacity: 0.85; }
.aud-ribbon .cell { padding: 36px 48px; background: inherit; }
.aud-ribbon .cell h5 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 10px; }
.aud-ribbon .cell p { font-size: 14px; line-height: 1.7; max-width: 460px; }

/* ============================================================
   MOBILE RESPONSIVE LAYER — Rustomjee Cleon × SOISU
   Breakpoints: tablet ≤ 1024px, mobile ≤ 640px
   ============================================================ */

.mobile-burger { display: none; }

/* ───────── TABLET ≤ 1024px ───────── */
@media (max-width: 1024px) {



  footer.site-footer { padding: 56px 32px 28px; }
  footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ───────── MOBILE ≤ 640px ───────── */
@media (max-width: 640px) {
  /* Nav: collapse to hamburger */











  .mobile-burger {
    display: flex;
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    width: 26px; height: 20px;
    flex-direction: column; justify-content: space-between;
    background: transparent; border: none; cursor: pointer; padding: 0;
    z-index: 21;
  }
  .mobile-burger span {
    display: block; height: 2px; width: 100%;
    background: currentColor;
    transition: transform 0.2s, opacity 0.2s;
  }



  /* Universal utilities */
  .btn { padding: 12px 22px; font-size: 11px; letter-spacing: 0.15em; }
  .eyebrow { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 12px; }

  /* Footer: single column */
  footer.site-footer { padding: 48px 20px 24px; }
  footer .foot-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  footer .foot-brand { font-size: 20px; }
  footer .legal { flex-direction: column; gap: 8px; font-size: 10px; align-items: flex-start; }

  /* Audience ribbon: stack */
  .aud-ribbon { grid-template-columns: 1fr !important; }
  .aud-ribbon .cell { padding: 32px 20px; }
  .aud-ribbon .cell + .cell {
    border-left: none !important;
    border-top: 1px solid rgba(0,0,0,0.1);
  }

  /* Concept gallery: 2-col feature-first */
  .concept-gallery-section { padding: 56px 20px; }
  .concept-gallery-section .head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .concept-gallery-section h3 { font-size: 30px !important; max-width: none; line-height: 1.15; }
  .concept-gallery-section .head p { font-size: 13px; }
  .concept-gallery-section .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 140px !important;
    gap: 8px !important;
  }
  .concept-gallery-section .grid .cell {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .concept-gallery-section .grid .cell:first-child {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }
  .concept-gallery-section .grid .cell .cap { font-size: 9px; padding: 4px 8px; }

  /* Concept FAQ */
  .concept-faq-section { padding: 48px 20px; }
  .concept-faq-section h3 { font-size: 28px !important; line-height: 1.15; }
  .concept-faq-section .head { margin-bottom: 20px; }
  .concept-faq-section .head p { font-size: 13px; }
  .concept-faq-section summary { font-size: 16px; line-height: 1.35; }
  .concept-faq-section summary .plus { font-size: 18px; margin-left: 12px; }
  .concept-faq-section details p { font-size: 13px; }
}


/* ============================================================
   SCROLL-BLUR REVEAL
   Elements start blurred + translated and settle as they enter view.
   Pure CSS state toggled by IntersectionObserver (see shared JS).
   ============================================================ */

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px);
  transition:
    opacity 0.8s cubic-bezier(.2,.7,.2,1),
    filter  0.8s cubic-bezier(.2,.7,.2,1),
    transform 0.8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, filter, transform;
}
.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(.2,.7,.2,1),
    filter  0.7s cubic-bezier(.2,.7,.2,1),
    transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in-view > *             { opacity: 1; filter: blur(0); transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.30s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.40s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.50s; }

/* Hero content gets a slower, slightly stronger reveal */
.hero-home .eyebrow, .hero-home h1, .hero-home p, .hero-home .btns,
.concept-hero .eyebrow, .concept-hero h1, .concept-hero .tagline,
.hero-about h1, .hero-about .lead,
.hero-faq h1, .hero-faq .lead,
.hero-contact h1, .hero-contact .lead,
.hero-home .scroll-hint {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px);
  transition:
    opacity 1s cubic-bezier(.2,.7,.2,1),
    filter  1s cubic-bezier(.2,.7,.2,1),
    transform 1s cubic-bezier(.2,.7,.2,1);
}
.in-view > .eyebrow, .in-view > h1, .in-view > h1 + p, .in-view > .btns,
.in-view > .lead, .in-view > .tagline, .in-view > .scroll-hint,
.reveal.in-view .eyebrow, .reveal.in-view h1, .reveal.in-view p, .reveal.in-view .btns,
.reveal.in-view .tagline, .reveal.in-view .lead {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.hero-home .eyebrow { transition-delay: 0.0s; }
.hero-home h1       { transition-delay: 0.08s; }
.hero-home p        { transition-delay: 0.16s; }
.hero-home .btns    { transition-delay: 0.24s; }
.concept-hero .eyebrow { transition-delay: 0.0s; }
.concept-hero h1       { transition-delay: 0.08s; }
.concept-hero .tagline { transition-delay: 0.18s; }

/* Respect accessibility preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *,
  .hero-home .eyebrow, .hero-home h1, .hero-home p, .hero-home .btns,
  .concept-hero .eyebrow, .concept-hero h1, .concept-hero .tagline,
  .hero-about h1, .hero-about .lead,
  .hero-faq h1, .hero-faq .lead,
  .hero-contact h1, .hero-contact .lead {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ── Global link color fix: inherit from parent text ── */
body a { color: inherit; }
a.in-link { color: inherit !important; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; opacity: 0.95; }
a.in-link:hover { opacity: 0.7; }

/* ── Body backgrounds per page ── */
body#home, body#about, body#faq, body#contact { background: #FAF8F4; color: #1B1814; }
body#japandi { background: #F3EEE5; color: #3A332C; }
body#modern  { background: #F7F7F5; color: #1A1A1A; }
body#luxury  { background: #0F0D0B; color: #F4EFE6; }


/* ─── DESIGN OPTIONS section (concept pages) ─── */
.design-options { padding: 100px 56px; }
.design-options .head { margin-bottom: 56px; max-width: 720px; }
.design-options h3 { font-size: 42px; line-height: 1.1; margin-bottom: 14px; font-weight: 500; }
.design-options .head p { font-size: 15px; line-height: 1.7; opacity: 0.75; }
.design-options .product { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.design-options .product:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.design-options .product-header { display: flex; align-items: baseline; gap: 24px; margin-bottom: 8px; }
.design-options .product-header .area { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; }
.design-options .product-header h4 { font-size: 30px; font-weight: 500; line-height: 1.1; }
.design-options .product-header .qty { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; opacity: 0.6; }
.design-options .product .material { font-size: 13px; line-height: 1.6; opacity: 0.7; margin-bottom: 24px; max-width: 720px; }
.design-options .options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.design-options .option { display: block; }
.design-options .option .img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.design-options .option .opt-label { display: block; padding: 12px 0 0; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; opacity: 0.65; text-transform: uppercase; }

@media (max-width: 640px) {
  .design-options { padding: 56px 20px; }
  .design-options h3 { font-size: 26px; }
  .design-options .product { margin-bottom: 48px; padding-bottom: 48px; }
  .design-options .product-header { flex-wrap: wrap; gap: 8px; }
  .design-options .product-header h4 { font-size: 22px; }
  .design-options .product-header .qty { margin-left: 0; }
  .design-options .options-grid { grid-template-columns: 1fr; gap: 12px; }
  .design-options .option .img { aspect-ratio: 16/9; }
}

/* Theming */
#japandi .design-options { background: #FAF8F4; color: #3A332C; }
#japandi .design-options h3, #japandi .design-options .product-header h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
#japandi .design-options h3 em { font-style: italic; color: #A58656; }
#japandi .design-options .product { border-bottom-color: rgba(58,51,44,0.12); }

#modern .design-options { background: #F7F7F5; color: #1A1A1A; }
#modern .design-options h3 { font-weight: 300; letter-spacing: -0.02em; text-transform: uppercase; }
#modern .design-options h3 strong { font-weight: 600; color: #D9534F; }
#modern .design-options .product-header h4 { font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; }
#modern .design-options .product { border-bottom-color: rgba(0,0,0,0.1); }


/* ─── Japandi editorial photo gallery (concept page) ─── */
.ja-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 20px;
  align-items: start;
}
.ja-photo-grid .photo { margin: 0; }
.ja-photo-grid .photo .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.ja-photo-grid .photo.feature { grid-column: span 7; grid-row: span 2; }
.ja-photo-grid .photo.feature .img { aspect-ratio: 4/4; }
.ja-photo-grid .photo.tall   { grid-column: span 5; }
.ja-photo-grid .photo.tall .img { aspect-ratio: 4/3; }
.ja-photo-grid .photo.med    { grid-column: span 4; }
.ja-photo-grid .photo.med .img { aspect-ratio: 4/3; }

.ja-photo-grid .photo figcaption {
  padding: 18px 4px 0;
}
.ja-photo-grid .photo figcaption .num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #A58656;
  margin-bottom: 8px;
}
.ja-photo-grid .photo figcaption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #3A332C;
}
.ja-photo-grid .photo figcaption p {
  font-size: 13px;
  line-height: 1.7;
  color: #5A5147;
  margin-bottom: 14px;
}
.ja-photo-grid .photo figcaption .package-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(165, 134, 86, 0.08);
  border: 1px solid rgba(165, 134, 86, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #A58656;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .ja-photo-grid .photo.feature { grid-column: span 12; grid-row: span 1; }
  .ja-photo-grid .photo.feature .img { aspect-ratio: 16/9; }
  .ja-photo-grid .photo.tall   { grid-column: span 6; }
  .ja-photo-grid .photo.med    { grid-column: span 6; }
}
@media (max-width: 640px) {
  .ja-photo-grid { grid-template-columns: 1fr; gap: 32px; }
  .ja-photo-grid .photo.feature,
  .ja-photo-grid .photo.tall,
  .ja-photo-grid .photo.med { grid-column: span 1; grid-row: span 1; }
  .ja-photo-grid .photo .img { aspect-ratio: 4/3; }
  .ja-photo-grid .photo figcaption h4 { font-size: 20px; }
}


/* ─── Modern editorial photo gallery (concept page) ─── */
.md-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 20px;
  align-items: start;
}
.md-photo-grid .photo { margin: 0; }
.md-photo-grid .photo .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.md-photo-grid .photo.feature { grid-column: span 7; grid-row: span 2; }
.md-photo-grid .photo.feature .img { aspect-ratio: 4/4; }
.md-photo-grid .photo.tall   { grid-column: span 5; }
.md-photo-grid .photo.med    { grid-column: span 4; }

.md-photo-grid .photo figcaption {
  padding: 18px 4px 0;
}
.md-photo-grid .photo figcaption .num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #D9534F;
  margin-bottom: 8px;
}
.md-photo-grid .photo figcaption h4 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.md-photo-grid .photo figcaption p {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.md-photo-grid .photo figcaption .package-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(217, 83, 79, 0.06);
  border: 1px solid rgba(217, 83, 79, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #D9534F;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .md-photo-grid .photo.feature { grid-column: span 12; grid-row: span 1; }
  .md-photo-grid .photo.feature .img { aspect-ratio: 16/9; }
  .md-photo-grid .photo.tall   { grid-column: span 6; }
  .md-photo-grid .photo.med    { grid-column: span 6; }
}
@media (max-width: 640px) {
  .md-photo-grid { grid-template-columns: 1fr; gap: 32px; }
  .md-photo-grid .photo.feature,
  .md-photo-grid .photo.tall,
  .md-photo-grid .photo.med { grid-column: span 1; grid-row: span 1; }
  .md-photo-grid .photo .img { aspect-ratio: 4/3; }
  .md-photo-grid .photo figcaption h4 { font-size: 18px; }
}


/* ─── Floor-plan layout options (Japandi + Modern) ─── */
.floor-plans { padding: 100px 56px; }
.floor-plans .head { margin-bottom: 56px; max-width: 720px; }
.floor-plans h3 { font-size: 42px; line-height: 1.1; margin-bottom: 14px; font-weight: 500; }
.floor-plans .head p { font-size: 15px; line-height: 1.7; opacity: 0.75; }
.floor-plans .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.floor-plans .plan { margin: 0; }
.floor-plans .plan-img {
  aspect-ratio: 4/3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(0,0,0,0.08);
}
.floor-plans .plan figcaption { padding: 20px 4px 0; }
.floor-plans .plan .config {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.floor-plans .plan h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}
.floor-plans .plan p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.85;
}
.floor-plans .plan .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.floor-plans .plan .meta .pack { opacity: 0.65; }

@media (max-width: 1024px) {
  .floor-plans .plans-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .floor-plans { padding: 56px 20px; }
  .floor-plans h3 { font-size: 28px; }
  .floor-plans .plan h4 { font-size: 22px; }
}

/* Concept-specific theming */
#japandi .floor-plans { background: #FAF8F4; color: #3A332C; }
#japandi .floor-plans h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
#japandi .floor-plans h3 em { font-style: italic; color: #A58656; }
#japandi .floor-plans .plan h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
#japandi .floor-plans .plan .config { color: #A58656; }
#japandi .floor-plans .plan .meta { border-top-color: rgba(165,134,86,0.3); color: #A58656; }
#japandi .floor-plans .plan-img { background-color: #F3EEE5; border-color: rgba(58,51,44,0.12); }

#modern .floor-plans { background: #F7F7F5; color: #1A1A1A; }
#modern .floor-plans h3 { font-weight: 300; letter-spacing: -0.02em; text-transform: uppercase; }
#modern .floor-plans h3 strong { font-weight: 600; color: #D9534F; }
#modern .floor-plans .plan h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
#modern .floor-plans .plan .config { color: #D9534F; }
#modern .floor-plans .plan .meta { border-top-color: rgba(217,83,79,0.3); color: #D9534F; }
#modern .floor-plans .plan-img { background-color: #fff; border-color: rgba(0,0,0,0.08); }


/* ═══════════════════════════════════════════════════════════════════
   v18 — Brand: Glacial Indifference, simplified lockup
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.bunny.net/css?family=glacial-indifference:400,700&display=swap');


@media (max-width: 640px) {

}

/* Inline brand reference (e.g., footer brand) — keep the original Playfair */
footer .foot-brand { font-family: 'Glacial Indifference', 'Playfair Display', serif !important; font-weight: 700; letter-spacing: 0.04em; }


/* ═══════════════════════════════════════════════════════════════════
   v18 — Premium scroll animations
   ═══════════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* Override basic .reveal with a slower, more premium feel */
.reveal {
  opacity: 0 !important;
  filter: blur(8px) !important;
  transform: translateY(28px) scale(0.985) !important;
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter  1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.reveal.in-view {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translateY(0) scale(1) !important;
}

/* Stagger children inside .reveal-stagger more dramatically */
.reveal-stagger > * { transition-duration: 1s !important; transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s !important; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.18s !important; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.31s !important; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.44s !important; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.57s !important; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.70s !important; }

/* Hero content reveals over a longer arc */
.hero-home .eyebrow, .hero-home h1, .hero-home p,
.concept-hero .eyebrow, .concept-hero h1, .concept-hero .tagline {
  transition-duration: 1.3s !important;
}

/* Card hover lift — premium interaction */
.concept-card,
.cross-card,
.plan,
.persona,
.brand-card {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.concept-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25); }
.cross-card:hover { transform: translateY(-4px); }
.plan:hover .plan-img { transform: scale(1.015); transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.plan-img { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

/* Hero subtle scale on entry — gives a cinematic feel */
.hero-home {
  animation: heroEntrance 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroEntrance {
  from { transform: scale(1.03); }
  to   { transform: scale(1); }
}

/* Photo grid tile lift on hover */
.ja-photo-grid .photo,
.md-photo-grid .photo {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.ja-photo-grid .photo:hover,
.md-photo-grid .photo:hover {
  transform: translateY(-4px);
}

/* Smoother button feedback */
.btn { transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important; }
.btn:hover { transform: translateY(-1px); }
.cta-enquire { transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important; }
.cta-enquire:hover { opacity: 0.85; transform: translateY(-1px); }

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


/* ═══════════════════════════════════════════════════════════════════
   v18 — Mobile responsive audit (≤ 640px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Tighter hero on mobile */
  #home .hero-home {
    height: auto;
    min-height: 75vh;
    padding-bottom: 48px;
    background-position: center 30% !important;
  }
  #home .hero-home h1 {
    font-size: 38px !important;
    line-height: 1.05 !important;
  }
  #home .hero-home p {
    font-size: 14px !important;
  }

  /* Floor plan grid: stack with bigger plan images on mobile */
  .floor-plans { padding: 56px 18px !important; }
  .floor-plans h3 { font-size: 26px !important; }
  .floor-plans .plans-grid { gap: 36px !important; }
  .floor-plans .plan-img { aspect-ratio: 4/3; min-height: 240px; background-size: contain; }
  .floor-plans .plan h4 { font-size: 22px; }
  .floor-plans .plan .meta { font-size: 10px; }

  /* Photo gallery captions don't get cramped */
  .ja-photo-grid .photo figcaption,
  .md-photo-grid .photo figcaption { padding: 14px 0 0 !important; }
  .ja-photo-grid .photo figcaption h4,
  .md-photo-grid .photo figcaption h4 { font-size: 19px !important; }
  .ja-photo-grid .photo figcaption p,
  .md-photo-grid .photo figcaption p { font-size: 13px !important; }
  .ja-photo-grid .photo figcaption .package-tag,
  .md-photo-grid .photo figcaption .package-tag { font-size: 9px !important; }

  /* Top nav padding tightened */

  /* Concept hero text scaled down further on phones */
  #japandi .concept-hero h1, #modern .concept-hero h1 { font-size: 38px !important; }
  #japandi .concept-hero .tagline, #modern .concept-hero .tagline { font-size: 14px !important; }

  /* Footer feels less crowded on mobile */
  footer.site-footer { padding: 48px 20px 28px !important; }

  /* Concept cards on home have edge-to-edge feel */
  #home .concepts { padding: 24px 18px 64px !important; gap: 16px !important; }
  #home .concept-card { height: 380px !important; }
  #home .concept-card h3 { font-size: 26px !important; }

  /* Kill any overflow */
  body { overflow-x: hidden; }
}

/* Slightly larger phones / small tablets */
@media (min-width: 641px) and (max-width: 880px) {
  .floor-plans .plans-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .ja-photo-grid, .md-photo-grid { grid-template-columns: 1fr !important; gap: 24px; }
}


/* ═══════════════════════════════════════════════════════════════════
   v19 — Top-nav composite brand lockup (SOISU × FIFTH WALL)
   ═══════════════════════════════════════════════════════════════════ */




@media (max-width: 1024px) {

}
@media (max-width: 640px) {


}

/* ═══════════════════════════════════════════════════════════════════
   v19 — Floor-plan lightbox (click to enlarge)
   ═══════════════════════════════════════════════════════════════════ */
.plan-img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  background: #fff;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: all 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); transform: scale(1.05); }


/* ═══════════════════════════════════════════════════════════════════
   v19.2 — Bigger nav link click targets (fix intermittent miss-clicks)
   ═══════════════════════════════════════════════════════════════════ */



/* Mobile: keep our hamburger menu styling but with same padding */
@media (max-width: 640px) {

}


/* ═══════════════════════════════════════════════════════════════════
   v22 — Japandi furniture options (per-piece variants)
   ═══════════════════════════════════════════════════════════════════ */
.furniture-options { padding: 100px 56px; }
.furniture-options .head { margin-bottom: 56px; max-width: 740px; }
.furniture-options .head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}
.furniture-options .head h3 em { font-style: italic; color: #A58656; }
.furniture-options .head p { font-size: 15px; line-height: 1.7; opacity: 0.78; }

.fo-category {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(58,51,44,0.12);
}
.fo-category:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fo-cat-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}
.fo-cat-header .fo-area {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A58656;
}
.fo-cat-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
.fo-cat-header .fo-qty {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #8A7F70;
}

.fo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fo-category[data-options="2"] .fo-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }

.fo-grid .opt { margin: 0; }
.fo-grid .opt-img {
  aspect-ratio: 4/3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F3EEE5;
  border: 1px solid rgba(58,51,44,0.08);
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fo-grid .opt:hover .opt-img { transform: scale(1.015); }

.fo-grid .opt figcaption {
  padding: 18px 4px 0;
}
.fo-grid .opt figcaption .opt-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A58656;
  margin-bottom: 6px;
}
.fo-grid .opt figcaption h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #3A332C;
}
.fo-grid .opt figcaption p {
  font-size: 13px;
  line-height: 1.65;
  color: #5A5147;
}

.furniture-options .fo-note {
  margin-top: 48px;
  padding: 16px 20px;
  background: rgba(165,134,86,0.08);
  border-left: 3px solid #A58656;
  font-size: 13px;
  color: #5A5147;
  font-style: italic;
}

@media (max-width: 1024px) {
  .fo-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: none; }
}
@media (max-width: 640px) {
  .furniture-options { padding: 56px 20px; }
  .furniture-options .head h3 { font-size: 30px; }
  .fo-cat-header { flex-wrap: wrap; gap: 12px; }
  .fo-cat-header h4 { font-size: 26px; }
  .fo-cat-header .fo-qty { margin-left: 0; }
  .fo-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .fo-category { margin-bottom: 56px; padding-bottom: 56px; }
}


/* ─── Furniture options: 4-up grid variant (v24) ─── */
.furniture-options .fo-category[data-options="4"] .fo-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .furniture-options .fo-category[data-options="4"] .fo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .furniture-options .fo-category[data-options="4"] .fo-grid {
    grid-template-columns: 1fr;
  }
}


/* ─── Modern theme overrides for furniture-options (v25) ─── */
.furniture-options.modern { background: #F7F7F5; color: #1A1A1A; padding: 100px 56px; }
.furniture-options.modern .head h3 { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 42px; letter-spacing: -0.02em; text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; }
.furniture-options.modern .head h3 strong { font-weight: 600; color: #D9534F; }
.furniture-options.modern .head p { font-size: 15px; line-height: 1.7; opacity: 0.75; max-width: 720px; }

.furniture-options.modern .fo-category {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.furniture-options.modern .fo-category:last-of-type { border-bottom: 0; }
.furniture-options.modern .fo-cat-header {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 28px;
}
.furniture-options.modern .fo-cat-header .fo-area {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D9534F;
}
.furniture-options.modern .fo-cat-header h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1A1A1A;
}
.furniture-options.modern .fo-cat-header .fo-qty {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #888;
  margin-left: auto;
}
.furniture-options.modern .opt figcaption .opt-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D9534F;
  margin-bottom: 8px;
}
.furniture-options.modern .opt figcaption h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #1A1A1A;
}
.furniture-options.modern .opt figcaption p {
  font-size: 13px;
  line-height: 1.65;
  color: #444;
}
.furniture-options.modern .opt-img {
  background-color: #fff !important;
  border: 1px solid rgba(0,0,0,0.06);
}
@media (max-width: 640px) {
  .furniture-options.modern { padding: 56px 20px; }
  .furniture-options.modern .head h3 { font-size: 26px; }
}


/* ─── Top nav (v26 — Fifth Wall left + SOISU right) ─── */
.top-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px; border-bottom: 1px solid rgba(0,0,0,0.06);
  background: inherit; gap: 24px;
}
.top-nav .brand-left,
.top-nav .brand-right {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  text-decoration: none; color: inherit;
}
.top-nav .brand-left  img { height: 36px; width: auto; display: block; }
.top-nav .brand-right img { height: 36px; width: auto; display: block; }
.top-nav .nav-links {
  list-style: none; display: flex; gap: 28px; margin: 0; padding: 0;
  align-items: center;
}
.top-nav .nav-links a {
  color: inherit; text-decoration: none; font-size: 13px;
  letter-spacing: 0.04em; opacity: 0.85; padding: 12px 4px;
}
.top-nav .nav-links a:hover { opacity: 1; }
.top-nav .cta-enquire {
  padding: 10px 20px !important; background: #111; color: #fff;
  border: 1px solid #111; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.15em; opacity: 1 !important;
}
.top-nav .mobile-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.top-nav .mobile-burger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px 0; transition: all 0.25s ease; }

@media (max-width: 1024px) {
  .top-nav { padding: 18px 32px; gap: 16px; }
  .top-nav .brand-left img,
  .top-nav .brand-right img { height: 30px; }
  .top-nav .nav-links { gap: 20px; }
  .top-nav .nav-links a { font-size: 12px; }
}
@media (max-width: 760px) {
  .top-nav { padding: 14px 20px; position: relative; flex-wrap: wrap; }
  .top-nav .brand-left img,
  .top-nav .brand-right img { height: 26px; }
  .top-nav .mobile-burger { display: inline-block; order: 3; }
  .top-nav .nav-links {
    order: 4; flex-basis: 100%; flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .top-nav.open .nav-links {
    max-height: 500px; padding: 12px 0 8px;
    border-top: 1px solid rgba(0,0,0,0.06); margin-top: 12px;
  }
  .top-nav .nav-links li { width: 100%; }
  .top-nav .nav-links a {
    display: block; padding: 14px 0; font-size: 13px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .top-nav .nav-links li:last-child a { border-bottom: 0; }
  .top-nav.open .mobile-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .top-nav.open .mobile-burger span:nth-child(2) { opacity: 0; }
  .top-nav.open .mobile-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}


/* ─── How It Works (v27) ─── */
#home .how-it-works {
  background: #F3EEE5;
  padding: 120px 56px;
  color: #1B1814;
  border-top: 1px solid rgba(27,24,20,0.08);
  border-bottom: 1px solid rgba(27,24,20,0.08);
}
#home .hiw-head { max-width: 880px; margin: 0 auto 80px; text-align: center; }
#home .hiw-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #A58656;
  margin-bottom: 22px;
}
#home .hiw-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 400; line-height: 1.12;
  margin-bottom: 22px; color: #1B1814;
}
#home .hiw-head h2 em { font-style: italic; color: #A58656; }
#home .hiw-head p {
  font-size: 16px; line-height: 1.75; color: #4A433C;
  max-width: 720px; margin: 0 auto;
}
#home .hiw-head a.in-link { color: #A58656; border-bottom-color: rgba(165,134,86,0.35); }

#home .hiw-flow {
  list-style: none; margin: 0 0 96px; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
}
#home .hiw-flow::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 88px;
  height: 1px; background: linear-gradient(to right,
    transparent 0%, rgba(165,134,86,0.4) 8%, rgba(165,134,86,0.4) 92%, transparent 100%);
  z-index: 0;
}
#home .hiw-flow .step {
  position: relative; z-index: 1; text-align: center;
  padding: 0 8px;
}
#home .hiw-flow .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; color: #A58656;
  margin-bottom: 18px;
}
#home .hiw-flow .step-icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%;
  background: #FAF8F4;
  border: 1px solid rgba(165,134,86,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #A58656;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease, background 0.4s ease;
}
#home .hiw-flow .step-icon svg { width: 36px; height: 36px; }
#home .hiw-flow .step:hover .step-icon {
  transform: translateY(-4px);
  border-color: #A58656;
  background: #fff;
}
#home .hiw-flow .step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500; margin-bottom: 10px;
  letter-spacing: -0.005em;
}
#home .hiw-flow .step p {
  font-size: 13px; line-height: 1.65; color: #5A5147;
  max-width: 210px; margin: 0 auto;
}

#home .hiw-timeline {
  max-width: 920px; margin: 0 auto;
  padding: 40px 56px 48px;
  background: #1B1814;
  color: #F3EEE5;
  border-radius: 2px;
  position: relative;
}
#home .hiw-timeline .tl-bar {
  position: relative; height: 2px;
  background: linear-gradient(to right, #A58656 0%, #E8D6B5 100%);
  margin: 0 32px 88px;
}
#home .hiw-timeline .tl-tick {
  position: absolute; top: -7px;
  width: 12px; height: 12px;
  background: #A58656; border: 2px solid #1B1814;
  border-radius: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #F3EEE5;
  white-space: nowrap;
  padding-top: 22px; text-align: center;
}
#home .hiw-timeline .tl-tick em {
  font-style: normal; font-size: 9px; color: #C9A57B;
  display: block; margin-top: 4px;
  letter-spacing: 0.16em;
}
#home .hiw-timeline .tl-tick.mid { background: #E8D6B5; }
#home .hiw-timeline .tl-tick.end {
  background: #F3EEE5; width: 14px; height: 14px; top: -8px;
}
#home .hiw-timeline .tl-note {
  font-size: 14px; line-height: 1.7;
  color: rgba(243,238,229,0.85);
  text-align: center; max-width: 620px; margin: 0 auto;
}
#home .hiw-timeline .tl-note strong { color: #E8D6B5; font-weight: 500; }

@media (max-width: 1024px) {
  #home .how-it-works { padding: 80px 32px; }
  #home .hiw-head h2 { font-size: 34px; }
  #home .hiw-flow { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  #home .hiw-flow::before { display: none; }
  #home .hiw-flow .step p { max-width: none; }
  #home .hiw-timeline { padding: 32px 28px 40px; }
}
@media (max-width: 560px) {
  #home .how-it-works { padding: 56px 20px; }
  #home .hiw-head { margin-bottom: 48px; }
  #home .hiw-head h2 { font-size: 26px; line-height: 1.15; }
  #home .hiw-head p { font-size: 14px; }
  #home .hiw-flow { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  #home .hiw-flow .step-icon { width: 60px; height: 60px; }
  #home .hiw-flow .step-icon svg { width: 30px; height: 30px; }
  #home .hiw-timeline { padding: 28px 18px 32px; }
  #home .hiw-timeline .tl-bar { margin: 0 8px 100px; }
  #home .hiw-timeline .tl-tick { font-size: 9px; padding-top: 18px; }
  #home .hiw-timeline .tl-note { font-size: 13px; }
}


/* ─── Why Us / USP (v28) ─── */
#home .why-us {
  padding: 120px 56px;
  background: #FAF8F4;
  color: #1B1814;
}
#home .wu-head { max-width: 880px; margin: 0 auto 72px; text-align: center; }
#home .wu-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #A58656;
  margin-bottom: 22px;
}
#home .wu-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 400; line-height: 1.15;
  margin-bottom: 22px; color: #1B1814;
}
#home .wu-head h2 em { font-style: italic; color: #A58656; }
#home .wu-head p {
  font-size: 16px; line-height: 1.75; color: #4A433C;
  max-width: 700px; margin: 0 auto;
}

#home .wu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1280px; margin: 0 auto;
}
#home .wu-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(165,134,86,0.18);
  padding: 36px 32px 32px;
  grid-column: span 3;
  display: flex; flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
#home .wu-card:hover {
  border-color: #A58656;
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(27,24,20,0.25);
}
#home .wu-card.flagship {
  grid-column: span 6;
  background: linear-gradient(135deg, #1B1814 0%, #3A332C 100%);
  color: #F3EEE5;
  border-color: rgba(232,214,181,0.18);
  padding: 56px 48px;
}
#home .wu-card.flagship:hover { border-color: #E8D6B5; }
#home .wu-card.flagship .wu-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: #E8D6B5;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(232,214,181,0.4);
}
#home .wu-card.flagship h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400; line-height: 1.2;
  margin-bottom: 18px;
  max-width: 760px;
}
#home .wu-card.flagship p {
  font-size: 15px; line-height: 1.75;
  color: rgba(243,238,229,0.85);
  max-width: 820px;
  margin-bottom: 24px;
}
#home .wu-card.flagship .wu-proof {
  padding-top: 20px;
  border-top: 1px solid rgba(232,214,181,0.15);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8D6B5;
  max-width: 760px;
}
#home .wu-card .wu-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: #A58656;
}
#home .wu-card.flagship .wu-icon {
  color: #E8D6B5;
  width: 64px; height: 64px;
  margin-bottom: 24px;
}
#home .wu-card .wu-icon svg { width: 100%; height: 100%; }
#home .wu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500; line-height: 1.25;
  margin-bottom: 14px;
  color: inherit;
}
#home .wu-card p {
  font-size: 14px; line-height: 1.7;
  color: #5A5147;
  flex: 1;
}

/* Comparison strip */
#home .wu-vs {
  max-width: 1280px;
  margin: 88px auto 0;
  padding-top: 80px;
  border-top: 1px solid rgba(27,24,20,0.08);
}
#home .vs-head { text-align: center; margin-bottom: 40px; }
#home .vs-eye {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #A58656;
  margin-bottom: 14px;
}
#home .vs-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 400; line-height: 1.2;
}
#home .vs-table {
  border: 1px solid rgba(27,24,20,0.1);
  background: #fff;
  overflow-x: auto;
}
#home .vs-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr 1.4fr;
  align-items: stretch;
}
#home .vs-row + .vs-row { border-top: 1px solid rgba(27,24,20,0.06); }
#home .vs-row > div {
  padding: 18px 22px;
  font-size: 13px;
  line-height: 1.5;
  color: #4A433C;
  display: flex; align-items: center;
}
#home .vs-row.vs-header > div {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1B1814;
  background: #F3EEE5;
  padding: 16px 22px;
}
#home .vs-row.vs-header .vs-us {
  color: #A58656; background: #1B1814;
}
#home .vs-row .vs-row-head {
  font-weight: 500; color: #1B1814;
  background: #FAF8F4;
}
#home .vs-row > div.vs-us {
  background: rgba(165,134,86,0.08);
  color: #1B1814;
  font-weight: 500;
  border-left: 2px solid #A58656;
}
#home .vs-row.vs-header > div.vs-us { border-left: 2px solid #A58656; }
#home .vs-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 13px; line-height: 1.7;
  color: #5A5147;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  font-style: italic;
}
#home .vs-them { color: #8A7F70; }

@media (max-width: 1024px) {
  #home .why-us { padding: 80px 32px; }
  #home .wu-head h2 { font-size: 32px; }
  #home .wu-card.flagship { padding: 40px 32px; grid-column: span 6; }
  #home .wu-card.flagship h3 { font-size: 26px; }
  #home .wu-card { grid-column: span 6; }
  #home .vs-row { grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.2fr; }
  #home .vs-row > div { padding: 14px 14px; font-size: 12px; }
}
@media (max-width: 720px) {
  #home .why-us { padding: 56px 20px; }
  #home .wu-head { margin-bottom: 48px; }
  #home .wu-head h2 { font-size: 24px; line-height: 1.2; }
  #home .wu-head p { font-size: 14px; }
  #home .wu-grid { gap: 16px; }
  #home .wu-card { padding: 28px 24px; }
  #home .wu-card.flagship { padding: 32px 24px; }
  #home .wu-card.flagship h3 { font-size: 22px; }
  #home .wu-card h3 { font-size: 19px; }
  #home .vs-head h3 { font-size: 22px; }
  /* Comparison: collapse to two cards — us vs. the rest */
  #home .vs-table { border: 0; background: transparent; }
  #home .vs-row { display: grid; grid-template-columns: 1fr; background: #fff; border: 1px solid rgba(27,24,20,0.08); margin-bottom: 12px; }
  #home .vs-row + .vs-row { border-top: 1px solid rgba(27,24,20,0.08); margin-top: 0; }
  #home .vs-row.vs-header { display: none; }
  #home .vs-row > div { padding: 12px 18px; font-size: 13px; border-bottom: 1px solid rgba(27,24,20,0.05); }
  #home .vs-row > div::before { content: attr(data-l); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #8A7F70; display: block; margin-bottom: 4px; }
  #home .vs-row > div.vs-row-head { background: #1B1814; color: #F3EEE5; border-bottom: 0; }
  #home .vs-row > div.vs-row-head::before { color: rgba(243,238,229,0.6); }
  #home .vs-row > div.vs-us { border-left: 0; border-top: 2px solid #A58656; }
}


/* ─── Footer (v29 — twin-logo layout) ─── */
footer.site-footer {
  background: #1B1814;
  color: #B0AAA0;
  padding: 64px 56px 32px;
  border-top: 1px solid rgba(232,214,181,0.08);
}
footer.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
footer.site-footer .foot-brand-left,
footer.site-footer .foot-brand-right {
  display: inline-flex; align-items: center;
  color: #F3EEE5;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
footer.site-footer .foot-brand-left { justify-self: start; }
footer.site-footer .foot-brand-right { justify-self: end; }
footer.site-footer .foot-brand-left img,
footer.site-footer .foot-brand-right img {
  height: 42px; width: auto; display: block;
}
footer.site-footer .foot-brand-left:hover,
footer.site-footer .foot-brand-right:hover { opacity: 0.7; }

footer.site-footer .foot-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  justify-self: center;
  width: 100%; max-width: 480px;
}
footer.site-footer .foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8D6B5;
  margin: 0 0 16px;
  font-weight: 500;
}
footer.site-footer .foot-col a {
  display: block;
  color: #B0AAA0;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.9;
  transition: color 0.3s ease;
}
footer.site-footer .foot-col a:hover { color: #F3EEE5; }

footer.site-footer .legal {
  display: flex; justify-content: space-between; align-items: center;
  margin: 48px auto 0;
  max-width: 1400px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,214,181,0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #6A645B;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  footer.site-footer { padding: 56px 32px 28px; }
  footer.site-footer .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  footer.site-footer .foot-brand-right { justify-self: end; }
  footer.site-footer .foot-links {
    grid-column: 1 / -1; justify-self: stretch; max-width: none;
  }
}
@media (max-width: 640px) {
  footer.site-footer { padding: 48px 20px 24px; }
  footer.site-footer .foot-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  footer.site-footer .foot-brand-left,
  footer.site-footer .foot-brand-right { justify-self: center; }
  footer.site-footer .foot-brand-left img,
  footer.site-footer .foot-brand-right img { height: 36px; }
  footer.site-footer .foot-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    text-align: left;
  }
  footer.site-footer .legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ─── Fifth Wall logo sizing — v30 (real brand mark, square-ish aspect) ─── */
.top-nav .brand-left  img { height: 52px; max-height: 52px; }
.top-nav .brand-right img { height: 32px; max-height: 32px; }
footer.site-footer .foot-brand-left  img { height: 68px; max-height: 68px; }
footer.site-footer .foot-brand-right img { height: 40px; max-height: 40px; }
@media (max-width: 1024px) {
  .top-nav .brand-left  img { height: 44px; max-height: 44px; }
  .top-nav .brand-right img { height: 26px; max-height: 26px; }
  footer.site-footer .foot-brand-left  img { height: 58px; max-height: 58px; }
  footer.site-footer .foot-brand-right img { height: 34px; max-height: 34px; }
}
@media (max-width: 760px) {
  .top-nav .brand-left  img { height: 38px; max-height: 38px; }
  .top-nav .brand-right img { height: 22px; max-height: 22px; }
  footer.site-footer .foot-brand-left  img { height: 52px; max-height: 52px; }
  footer.site-footer .foot-brand-right img { height: 30px; max-height: 30px; }
}

/* ─── Concepts section header (v31) ─── */
#home .concepts-head {
  padding: 96px 56px 0;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
#home .concepts-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #A58656;
  margin-bottom: 22px;
}
#home .concepts-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em;
  color: #1B1814;
  margin-bottom: 22px;
}
#home .concepts-head h2 em { font-style: italic; color: #A58656; }
#home .concepts-head p {
  font-size: 16px; line-height: 1.75;
  color: #4A433C;
  max-width: 640px; margin: 0 auto;
}
#home .concepts-head + .concepts { padding-top: 56px; }

@media (max-width: 1024px) {
  #home .concepts-head { padding: 72px 32px 0; }
  #home .concepts-head h2 { font-size: 48px; }
}
@media (max-width: 640px) {
  #home .concepts-head { padding: 56px 20px 0; }
  #home .concepts-head h2 { font-size: 34px; line-height: 1.1; }
  #home .concepts-head p { font-size: 14px; }
  #home .concepts-head + .concepts { padding-top: 36px; }
}


/* ─── Concept card price stack (v32) ─── */
#home .concept-card .price-stack {
  display: inline-flex; flex-direction: column;
  align-self: flex-start;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
#home .concept-card .price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
  line-height: 1.2;
}
#home .concept-card .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #fff;
}
@media (max-width: 640px) {
  #home .concept-card .price-stack { padding: 12px 14px; }
  #home .concept-card .price-amount { font-size: 24px; }
  #home .concept-card .price-label { font-size: 8px; letter-spacing: 0.2em; }
}

/* ─── Bespoke enquiry section (v33) ─── */
#home .bespoke-enquiry {
  padding: 100px 56px;
  background: #1B1814;
  color: #F3EEE5;
  border-top: 1px solid rgba(232,214,181,0.08);
}
#home .bespoke-enquiry .inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}
#home .be-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #E8D6B5;
  margin-bottom: 22px;
}
#home .be-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 400; line-height: 1.1;
  margin-bottom: 18px;
}
#home .be-head h2 em { font-style: italic; color: #E8D6B5; }
#home .be-head .sub {
  font-size: 15px; line-height: 1.75;
  color: rgba(243,238,229,0.78);
  max-width: 460px;
}

#home .cleon-lead.bespoke {
  display: flex; flex-direction: column; gap: 14px;
}
#home .cleon-lead.bespoke .be-row {
  display: grid; gap: 12px;
}
#home .cleon-lead.bespoke .be-row.two {
  grid-template-columns: 1fr 1fr;
}
#home .cleon-lead.bespoke input,
#home .cleon-lead.bespoke select {
  padding: 16px 18px;
  background: rgba(243,238,229,0.06);
  border: 1px solid rgba(243,238,229,0.18);
  font-size: 14px; font-family: inherit;
  color: #F3EEE5;
  transition: border-color 0.3s ease, background 0.3s ease;
}
#home .cleon-lead.bespoke input::placeholder { color: rgba(243,238,229,0.55); }
#home .cleon-lead.bespoke select { color: rgba(243,238,229,0.65); }
#home .cleon-lead.bespoke select option { color: #1B1814; background: #F3EEE5; }
#home .cleon-lead.bespoke select:valid { color: #F3EEE5; }
#home .cleon-lead.bespoke input:focus,
#home .cleon-lead.bespoke select:focus {
  outline: none;
  border-color: #E8D6B5;
  background: rgba(232,214,181,0.08);
}
#home .cleon-lead.bespoke button.btn.solid {
  padding: 16px 24px;
  background: #E8D6B5;
  color: #1B1814;
  border: 1px solid #E8D6B5;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
#home .cleon-lead.bespoke button.btn.solid:hover {
  background: #F3EEE5; color: #1B1814;
}
#home .bespoke-enquiry .lead-success,
#home .bespoke-enquiry .lead-error {
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 14px;
}
#home .bespoke-enquiry .lead-success {
  background: rgba(232,214,181,0.12);
  color: #E8D6B5;
  border-left: 2px solid #E8D6B5;
}
#home .bespoke-enquiry .lead-error {
  background: rgba(217,83,79,0.12);
  color: #F2A09C;
  border-left: 2px solid #D9534F;
}
#home .bespoke-enquiry .lead-error a { color: #F2A09C; }

@media (max-width: 1024px) {
  #home .bespoke-enquiry { padding: 72px 32px; }
  #home .bespoke-enquiry .inner { grid-template-columns: 1fr; gap: 40px; }
  #home .be-head h2 { font-size: 32px; }
}
@media (max-width: 640px) {
  #home .bespoke-enquiry { padding: 56px 20px; }
  #home .be-head h2 { font-size: 26px; }
  #home .be-head .sub { font-size: 14px; }
  #home .cleon-lead.bespoke .be-row.two { grid-template-columns: 1fr; gap: 10px; }
}

/* ════════════════════════════════════════════════════════════════════
   v34 — TIMELINE TICK FIX + COMPREHENSIVE RESPONSIVE SWEEP
   ════════════════════════════════════════════════════════════════════ */

/* Reset legacy .tl-tick rules and rebuild with proper dot + label split */
#home .hiw-timeline .tl-tick {
  /* override v27 inline-block flat style */
  position: absolute; top: -7px;
  width: auto !important; height: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: translateX(-50%);
  padding: 0 !important;
  display: flex; flex-direction: column; align-items: center;
  white-space: normal;
  text-align: center;
  pointer-events: none;
}
#home .hiw-timeline .tl-tick .tl-dot {
  width: 12px; height: 12px;
  background: #A58656; border: 2px solid #1B1814;
  border-radius: 50%;
  display: block;
}
#home .hiw-timeline .tl-tick.mid .tl-dot { background: #E8D6B5; }
#home .hiw-timeline .tl-tick.end .tl-dot { background: #F3EEE5; width: 14px; height: 14px; }
#home .hiw-timeline .tl-tick .tl-label {
  margin-top: 14px;
  display: flex; flex-direction: column; align-items: center;
  min-width: 92px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F3EEE5;
  line-height: 1.35;
}
#home .hiw-timeline .tl-tick .tl-label strong {
  font-weight: 500;
  color: #F3EEE5;
  white-space: nowrap;
}
#home .hiw-timeline .tl-tick .tl-label em {
  font-style: normal;
  font-size: 9px; letter-spacing: 0.14em;
  color: #C9A57B;
  margin-top: 4px;
  white-space: nowrap;
}
#home .hiw-timeline .tl-bar {
  margin: 0 80px 110px; /* extra side padding so the label boxes don't overflow */
}

/* ──────────────────────────────────────────────────────────────────
   GLOBAL RESPONSIVE TIGHTENING
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #home .hiw-timeline .tl-bar { margin: 0 60px 110px; }
}
@media (max-width: 760px) {
  /* Stack the timeline ticks vertically on small screens */
  #home .hiw-timeline {
    padding: 32px 24px 36px;
  }
  #home .hiw-timeline .tl-bar {
    position: relative;
    height: auto;
    background: transparent;
    margin: 0 0 24px;
    padding: 8px 0 0 18px;
    border-left: 2px solid #A58656;
  }
  #home .hiw-timeline .tl-tick {
    position: relative;
    top: auto !important; left: auto !important;
    transform: none !important;
    flex-direction: row; align-items: center;
    text-align: left;
    margin-bottom: 22px;
    margin-left: -28px;
  }
  #home .hiw-timeline .tl-tick:last-child { margin-bottom: 0; }
  #home .hiw-timeline .tl-tick .tl-dot {
    flex: 0 0 12px; margin-right: 16px;
  }
  #home .hiw-timeline .tl-tick.end .tl-dot { flex: 0 0 14px; }
  #home .hiw-timeline .tl-tick .tl-label {
    flex-direction: row; align-items: baseline; gap: 10px;
    margin-top: 0; min-width: 0;
  }
  #home .hiw-timeline .tl-tick .tl-label em { margin-top: 0; }
  #home .hiw-timeline .tl-note { font-size: 12px; line-height: 1.6; }
}

/* ──────────────────────────────────────────────────────────────────
   Header — keep two logos balanced on every breakpoint
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .top-nav { gap: 12px; padding: 12px 16px; }
  .top-nav .brand-left  img { height: 34px !important; max-height: 34px !important; }
  .top-nav .brand-right img { height: 20px !important; max-height: 20px !important; }
}
@media (max-width: 420px) {
  .top-nav .brand-left  img { height: 28px !important; max-height: 28px !important; }
  .top-nav .brand-right img { height: 16px !important; max-height: 16px !important; }
}

/* ──────────────────────────────────────────────────────────────────
   Hero (home) — tighter sizing on mobile
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  #home .hero-home { height: 540px; padding: 0 20px 36px; }
  #home .hero-home h1 { font-size: 36px !important; line-height: 1.08; }
  #home .hero-home p { font-size: 14px; }
  #home .hero-home .scroll-hint { display: none; }
}
@media (max-width: 420px) {
  #home .hero-home { height: 480px; }
  #home .hero-home h1 { font-size: 30px !important; }
}

/* ──────────────────────────────────────────────────────────────────
   How-It-Works — clean flow on small screens
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  #home .hiw-flow { gap: 28px; }
  #home .hiw-flow .step { padding: 0; }
  #home .hiw-flow .step-icon { margin-bottom: 16px; }
}

/* ──────────────────────────────────────────────────────────────────
   Why-Us — comparison table fallback on small screens
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  #home .vs-table { border: 0; background: transparent; }
  #home .vs-row.vs-header { display: none; }
  #home .vs-row {
    display: grid; grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid rgba(27,24,20,0.08);
    border-radius: 2px;
    margin-bottom: 14px;
    overflow: hidden;
  }
  #home .vs-row + .vs-row { border-top: 1px solid rgba(27,24,20,0.08); }
  #home .vs-row > div {
    padding: 14px 16px;
    font-size: 13px;
    border-bottom: 1px solid rgba(27,24,20,0.06);
    flex-direction: column; align-items: flex-start; gap: 4px;
  }
  #home .vs-row > div:last-child { border-bottom: 0; }
  #home .vs-row > div:not(.vs-row-head)::before {
    content: attr(data-l);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8A7F70;
  }
  #home .vs-row > div.vs-row-head {
    background: #1B1814; color: #F3EEE5;
    font-size: 13px; font-weight: 500;
  }
  #home .vs-row > div.vs-row-head::before { display: none; }
  #home .vs-row > div.vs-us {
    border-left: 0; border-top: 2px solid #A58656;
    background: rgba(165,134,86,0.06);
  }
}

/* ──────────────────────────────────────────────────────────────────
   Why-Us cards on mobile — ensure flagship is full-width readable
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  #home .wu-card.flagship h3 { font-size: 20px; }
  #home .wu-card.flagship p { font-size: 13.5px; }
}

/* ──────────────────────────────────────────────────────────────────
   Concept cards — adapt aspect + text on small screens
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  #home .concepts { padding: 24px 20px 40px !important; grid-template-columns: 1fr !important; gap: 16px; }
  #home .concept-card { height: 380px; }
  #home .concept-card h3 { font-size: 26px; }
  #home .concept-card p { font-size: 13px; }
  #home .concept-card .price-stack { padding: 10px 12px; }
  #home .concept-card .price-amount { font-size: 22px; }
}

/* ──────────────────────────────────────────────────────────────────
   Bespoke enquiry — single-column form on mobile
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  #home .bespoke-enquiry { padding: 48px 20px; }
  #home .be-head h2 { font-size: 24px; }
  #home .cleon-lead.bespoke input,
  #home .cleon-lead.bespoke select {
    padding: 14px 14px; font-size: 13.5px;
  }
}

/* ──────────────────────────────────────────────────────────────────
   Furniture options — tighter card padding + readable typography on mobile
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .furniture-options { padding: 48px 16px !important; }
  .furniture-options .head h3 { font-size: 26px !important; }
  .furniture-options .fo-cat-header { flex-wrap: wrap; gap: 8px !important; }
  .furniture-options .fo-cat-header h4 { font-size: 20px !important; }
  .furniture-options .fo-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .furniture-options .opt figcaption h5 { font-size: 16px !important; }
  .furniture-options .opt figcaption p { font-size: 12.5px !important; }
}

/* ──────────────────────────────────────────────────────────────────
   Footer — center alignment on smallest screens, two-line legal
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  footer.site-footer { padding: 36px 18px 20px; }
  footer.site-footer .foot-links { grid-template-columns: 1fr !important; text-align: center; }
  footer.site-footer .foot-col h4 { margin-top: 8px; }
  footer.site-footer .foot-col a { font-size: 13px; }
}

/* ──────────────────────────────────────────────────────────────────
   Concepts head — tighter on smallest screens
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 420px) {
  #home .concepts-head { padding: 40px 18px 0; }
  #home .concepts-head h2 { font-size: 28px; }
  #home .concepts-head p { font-size: 13.5px; }
}
