/* ═══════════════════════════════════════════════════════════
   ULI Design Studio — Shared Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --cream:    #F5F1EA;
  --cream-2:  #EDE8DF;
  --bark:     #1C1814;
  --walnut:   #9B7B52;
  --walnut-lt:#C9A87C;
  --stone:    #6B6560;
  --white:    #FDFAF6;
  --black:    #100E0B;
  --nav-h:    72px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--cream);
  color: var(--bark);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a   { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Typography helpers ──────────────────────────────────── */
.f-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  display: block;
  margin-bottom: 12px;
}
.h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 300;
  line-height: 1.05;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
}
.h2 em, .h1 em { font-style: italic; color: var(--walnut); }
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}
.body-sm  { font-size: 13px; line-height: 1.75; color: var(--stone); }
.body-xs  { font-size: 11px; }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
}
.section        { padding: 100px 0; }
.section--lg    { padding: 130px 0; }
.section--sm    { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--bark  { background: var(--bark); }
.section--black { background: var(--black); }
.section--white { background: var(--white); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
}
.btn--dark  { background: var(--bark); color: var(--white); }
.btn--dark:hover { background: var(--walnut); }
.btn--light { background: var(--white); color: var(--bark); }
.btn--light:hover { background: var(--cream); }
.btn--ghost { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--outline { border: 1.5px solid var(--bark); color: var(--bark); }
.btn--outline:hover { background: var(--bark); color: var(--white); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 18px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition: background 0.4s, color 0.3s, box-shadow 0.4s;
}
.nav--hero   { color: var(--white); }
.nav--glass  {
  background: rgba(28,24,20,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.nav__logo em { font-style: italic; color: var(--walnut); }
.nav__links { display: flex; gap: clamp(10px, 1.4vw, 32px); position: absolute; left: 50%; transform: translateX(-50%); }
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { opacity: 1; }
.nav__cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1.5px solid currentColor;
  border-radius: 100px;
  transition: all 0.25s;
}
.nav--hero  .nav__cta:hover { background: var(--white); color: var(--bark); border-color: var(--white); }
.nav--glass .nav__cta:hover { background: var(--white); color: var(--bark); border-color: var(--white); }

@media (min-width: 1024px) and (max-width: 1366px) {
  .nav {
    padding: 0 28px;
  }
  .nav__links {
    gap: 16px;
  }
  .nav__links a {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .nav__cta {
    padding: 8px 18px;
    font-size: 10px;
  }
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  min-height: 48vh;
  padding: calc(var(--nav-h) + 80px) 52px 80px;
  background: var(--cream);
  display: flex;
  align-items: flex-end;
}
.page-hero__content { max-width: 700px; }
.page-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 16px;
  display: block;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero__title em { font-style: italic; color: var(--walnut); }
.page-hero__desc { font-size: 15px; color: var(--stone); max-width: 520px; line-height: 1.75; }

/* ── Filter tabs ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 40px 52px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.filter-tab {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(28,24,20,0.15);
  color: var(--stone);
  transition: all 0.22s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--bark);
  border-color: var(--bark);
  color: var(--white);
}

/* ── Project grid ────────────────────────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.project-grid--3col { grid-template-columns: repeat(3, 1fr); }

.project-item { cursor: pointer; }
.project-item--a { grid-column: span 7; }
.project-item--b { grid-column: span 5; }
.project-item--full { grid-column: span 12; }
.project-item--third { grid-column: span 4; }

.project-img {
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.project-img--tall   { height: 540px; }
.project-img--med    { height: 360px; }
.project-img--short  { height: 280px; }
.project-img--cinematic { height: 62vh; }

.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.project-item:hover .project-img img { transform: scale(1.05); }

.project-meta { padding: 18px 0 0; }
.project-type {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 6px;
}
.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 5px;
}
.project-desc { font-size: 13px; color: var(--stone); }

/* ── Product card ────────────────────────────────────────── */
.prod-card { cursor: pointer; }
.prod-card__img {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(165deg, #FAF8F4 0%, #EDE8DF 100%);
  margin-bottom: 16px;
  position: relative;
  border-radius: 6px;
  border: 1px solid rgba(28,24,20,0.06);
}
.prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.prod-card__img--studio img {
  object-fit: contain;
  object-position: center 72%;
  padding: 12px 16px 8px;
  max-height: 100%;
}
.prod-card:hover .prod-card__img img { transform: scale(1.04); }
.prod-card__img--studio:hover img { transform: scale(1.03); }
.prod-card__enquire {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--white);
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 3;
}
.prod-card:hover .prod-card__enquire { opacity: 1; transform: translateY(0); }
.prod-card__cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 5px;
}
.prod-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
}
.prod-card__sub { font-size: 12px; color: var(--stone); margin-top: 3px; }

/* ── Service card ────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(28,24,20,0.1);
  border: 1px solid rgba(28,24,20,0.1);
}
.svc {
  background: var(--cream);
  padding: 48px 36px;
  transition: background 0.3s;
}
.svc:hover { background: var(--white); }
.svc__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--walnut-lt);
  display: block;
  margin-bottom: 32px;
}
.svc__bar { width: 28px; height: 1.5px; background: var(--walnut-lt); margin-bottom: 24px; }
.svc__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 14px;
}
.svc__desc { font-size: 13px; line-height: 1.78; color: var(--stone); }

/* ── Process steps ───────────────────────────────────────── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(28,24,20,0.08);
  border: 1px solid rgba(28,24,20,0.08);
}
.step {
  background: var(--white);
  padding: 44px 28px;
  transition: background 0.3s;
}
.step:hover { background: var(--cream); }
.step__n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--cream-2);
  line-height: 1;
  margin-bottom: 24px;
}
.step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.step__desc { font-size: 13px; color: var(--stone); line-height: 1.75; }

/* ── Testimonial ─────────────────────────────────────────── */
.testi {
  padding: 42px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s, background 0.3s;
}
.testi:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.03); }
.testi__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  line-height: 0.7;
  color: var(--walnut);
  display: block;
  margin-bottom: 18px;
}
.testi__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(253,250,246,0.86);
  margin-bottom: 28px;
}
.testi__author { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--walnut-lt); }
.testi__project { font-size: 12px; color: rgba(253,250,246,0.35); margin-top: 3px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--black); padding: 80px 52px 44px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.footer__logo em { font-style: italic; color: var(--walnut); }
.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(253,250,246,0.38);
  max-width: 290px;
  margin-bottom: 28px;
}
.footer__contact { font-size: 13px; font-weight: 300; color: var(--walnut-lt); display: flex; flex-direction: column; gap: 4px; }
.footer__contact a { transition: color 0.2s; }
.footer__contact a:hover { color: var(--white); }
.footer__contact span { color: rgba(253,250,246,0.35); }
.footer__col h4 {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.28);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a { font-size: 13px; font-weight: 400; color: rgba(253,250,246,0.5); transition: color 0.2s; }
.footer__col ul a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 12px; font-weight: 500; color: rgba(253,250,246,0.22); }
.footer__supply { font-size: 12px; font-weight: 500; color: rgba(253,250,246,0.22); }
.footer__supply a { color: var(--walnut-lt); transition: color 0.2s; }
.footer__supply a:hover { color: var(--white); }

/* ── Room Explorer ───────────────────────────────────────── */
/* room-tabs and room-slide styles are now in index.html inline <style> */

/* Pin hotspots */
.pin { position: absolute; z-index: 5; }
.pin__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  position: relative;
}
.pin__btn::before {
  content: '';
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(253,250,246,0.5);
  animation: pinPulse 2.5s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50%       { opacity: 0.9; transform: scale(1.1); }
}
.pin__btn:hover { transform: scale(1.1); background: var(--white); }
.pin__btn svg { width: 13px; height: 13px; stroke: var(--bark); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.pin__card {
  position: absolute;
  bottom: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  width: 196px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.pin:hover .pin__card { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.pin__card-img { height: 96px; overflow: hidden; }
.pin__card-img img { width: 100%; height: 100%; object-fit: cover; }
.pin__card-body { padding: 12px 14px; }
.pin__card-name { font-family: 'Cormorant Garamond', serif; font-size: 15px; margin-bottom: 4px; }
.pin__card-mat { font-size: 10px; color: var(--stone); margin-bottom: 6px; }
.pin__card-link { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--walnut); }

/* ── Horizontal scroll track ────────────────────────────── */
.scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  padding-bottom: 4px;
}
.scroll-track::-webkit-scrollbar { display: none; }
.scroll-track.is-grabbing { cursor: grabbing; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,0.7);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__close {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.modal__close-btn {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
}
.modal__close-btn:hover { color: var(--bark); }

/* ── Forms ───────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(28,24,20,0.2);
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--bark);
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--walnut); }
.field textarea { height: 120px; }

/* ── Customizer swatches ─────────────────────────────────── */
.swatch-group { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.swatch.active, .swatch:hover { border-color: var(--bark); transform: scale(1.1); }
.material-btn {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border: 1.5px solid rgba(28,24,20,0.18);
  color: var(--stone);
  transition: all 0.2s;
}
.material-btn.active, .material-btn:hover {
  border-color: var(--bark);
  background: var(--bark);
  color: var(--white);
}

/* ── Utility ─────────────────────────────────────────────── */
.divider { height: 1px; background: rgba(28,24,20,0.08); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ── Store Preview Section ── */
.store-preview-section {
  background: var(--cream-2);
  padding: 100px 0 0;
  overflow: hidden;
}
.store-preview__inner {
  max-width: 100%;
}
.store-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 0 52px 52px;
}
.store-preview__sub {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 24px;
}
.store-preview__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  border-bottom: 1.5px solid rgba(28,24,20,0.25);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.store-preview__btn:hover {
  color: var(--walnut);
  border-color: var(--walnut);
  gap: 16px;
}
.store-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.spg-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.spg-card__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.spg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.82);
}
.spg-card:hover .spg-card__img img {
  transform: scale(1.06);
  filter: brightness(0.72);
}
.spg-card__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.85) 0%, rgba(28,24,20,0.2) 60%, rgba(28,24,20,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  color: var(--white);
  transition: background 0.3s;
}
.spg-card:hover .spg-card__content {
  background: linear-gradient(to top, rgba(28,24,20,0.95) 0%, rgba(28,24,20,0.3) 60%, rgba(28,24,20,0.1) 100%);
}
.spg-card__tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--walnut-lt);
  margin-bottom: 6px;
}
.spg-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}
.spg-card__link {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.spg-card__link span {
  display: inline-block;
  transition: transform 0.2s;
}
.spg-card:hover .spg-card__link {
  opacity: 1;
  transform: translateY(0);
}
.spg-card:hover .spg-card__link span {
  transform: translateX(4px);
}

/* ── Inline Contact Form Section ── */
.contact-inline {
  background: var(--cream);
  padding: 100px 52px;
}
.contact-inline__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.contact-inline__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--bark);
  margin-bottom: 20px;
}
.contact-inline__title em {
  font-style: italic;
  color: var(--walnut);
}
.contact-inline__sub {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.78;
  margin-bottom: 0;
  max-width: 380px;
}
.contact-inline__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  padding: 48px;
  border-radius: 20px;
  border: 1px solid rgba(28, 24, 20, 0.06);
  box-shadow: 0 24px 64px rgba(28, 24, 20, 0.04);
}
.cif-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cif-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cif-field label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.48);
}
.cif-field input,
.cif-field select,
.cif-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(28, 24, 20, 0.12);
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.cif-field input::placeholder,
.cif-field textarea::placeholder {
  color: rgba(28, 24, 20, 0.35);
}
.cif-field select option {
  background: var(--white);
  color: var(--bark);
}
.cif-field input:focus,
.cif-field select:focus,
.cif-field textarea:focus {
  border-color: var(--walnut);
}
.cif-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--walnut);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, gap 0.25s;
  align-self: flex-start;
}
.cif-submit:hover {
  background: var(--walnut-lt);
  gap: 18px;
}
.cif-submit.sent {
  background: rgba(155,123,82,0.4);
  pointer-events: none;
}
.cif-note {
  font-size: 11px;
  color: rgba(28, 24, 20, 0.4);
  line-height: 1.6;
  margin-top: -12px;
}



/* ── Responsive ──────────────────────────────────────────── */
/* ── Concept of Uli Redesign ── */
/* ══════════════════════════════════════════════
   ABOUT / WHY ULI SECTION
══════════════════════════════════════════════ */
.about-section {
  position: relative;
  background: var(--cream);
  width: 100%;
  overflow: hidden;
}

/* ── Desktop layout ── */
@media (min-width: 1024px) {
  .about-section {
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
  }
  /* about-wrap fills the full section */
  .about-wrap {
    position: absolute;
    inset: 0 auto;
    width: 100%;
    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
    padding: clamp(48px, 6vh, 80px) 80px 0 80px;
    box-sizing: border-box;
    pointer-events: none;
  }
  .about-layout {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(80px, 12vh, 120px);
    padding-bottom: 6vh;
  }

  /* — Left column: content — */
  .about-content-col {
    position: relative;
    z-index: 5;
    width: 52%;
    max-width: 780px;
    pointer-events: auto;
  }
  .about-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
  }
  .about-principles-list {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* — Right: media background, aligned center-right — */
  .about-visual {
    position: relative;
    width: 44%;
    max-width: 600px;
    height: 50vh;
    max-height: 480px;
    z-index: 2;
    pointer-events: none;
  }
  @media (min-width: 1024px) and (max-width: 1440px) {
    .about-visual {
      height: 45vh;
      max-height: 420px;
    }
    .about-content-col {
      width: 52%;
    }
  }
  @media (min-width: 1024px) and (max-height: 800px) {
    .about-wrap {
      padding-top: 4vh;
    }
    .about-header {
      margin-bottom: 16px;
    }
    .about-pill {
      padding: 12px 0;
    }
  }
  .about-art-clipart-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: visible;
    /* Radial gradient mask — edges fade into cream, object appears to float */
    -webkit-mask-image: radial-gradient(ellipse 82% 78% at 62% 58%, black 30%, rgba(0,0,0,0.6) 52%, transparent 75%);
            mask-image: radial-gradient(ellipse 82% 78% at 62% 58%, black 30%, rgba(0,0,0,0.6) 52%, transparent 75%);
  }
  .about-art-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .about-art-media.active {
    opacity: 1;
  }
  /* Poster image — full object visible, not cropped */
  .about-art-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    mix-blend-mode: multiply;
  }



  /* GSAP controls pills — kill CSS transitions */
  .about-pill,
  .about-pill__num,
  .about-pill__content h4,
  .about-pill__desc-wrap {
    transition: none !important;
  }
  .about-pill__desc-wrap {
    display: block !important;
    height: 0;
    opacity: 0;
    margin-top: 0;
  }
}

/* ── Text styles ── */
.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--bark);
  margin: 0 0 4px;
}
.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.about-intro-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone);
  margin: 0;
  max-width: 440px;
}
.about-principles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-pill {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(28,24,20,0.08);
  transition: border-color 0.3s;
  cursor: pointer;
}
.about-pill:last-child {
  border-bottom: 1px solid rgba(28,24,20,0.08);
}
.about-pill.active {
  border-top-color: var(--walnut);
}
.about-pill__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--walnut);
  line-height: 1;
  margin-top: 4px;
  opacity: 0.45;
  flex-shrink: 0;
}
.about-pill.active .about-pill__num {
  opacity: 1;
}
.about-pill__content {
  flex: 1;
  min-width: 0;
}
.about-pill__content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bark);
  margin: 0;
}
.about-pill.active .about-pill__content h4 {
  color: var(--walnut);
}
.about-pill__desc-wrap {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.4s ease, margin-top 0.4s var(--ease);
  overflow: hidden;
}
.about-pill.active .about-pill__desc-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 8px;
}
.about-pill__desc-inner { min-height: 0; }
.about-pill__desc-wrap p {
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.7;
  margin: 0;
}
/* Inline image for mobile expanded pills */
.about-pill-inline-img {
  display: none;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  margin: 12px 0 4px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (hover: hover) {
  .about-pill:hover {
    border-top-color: var(--walnut);
  }
  .about-pill:hover .about-pill__num {
    opacity: 1;
  }
  .about-pill:hover .about-pill__content h4 {
    color: var(--walnut);
  }
  .about-pill:hover .about-pill__desc-wrap {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 8px;
  }
}

/* ── Mobile & Tablet Overrides (Below 1024px) ── */
@media (max-width: 1023px) {
  .about-section {
    padding: 56px 24px 64px;
    height: auto !important;
  }
  .about-wrap {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin: 0 auto;
  }
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .about-content-col {
    width: 100% !important;
  }
  .about-visual {
    display: none !important;
  }
  .about-pill-inline-img {
    display: block !important;
  }
  .about-pill__desc-wrap p { font-size: 13.5px; }
}


/* ── Studio Intro Section ── */
.studio-intro-section {
  background: var(--cream);
  padding: 0 52px 100px;
}
.studio-intro-wrap {
  width: 100%;
}
.studio-intro-text {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.studio-intro-text p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.65;
  margin: 0;
}

/* ── Why Partner with ULI Revamp (Editorial Split List) ── */
.why-us-section {
  background: var(--cream);
  color: var(--bark);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.why-us-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
}
.why-us-header {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}
.why-us-left .label {
  margin-bottom: 16px;
}
.why-us-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bark);
  margin: 0 0 24px;
}
.why-us-title em {
  font-style: italic;
  color: var(--walnut);
}
.why-us-intro {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 0;
  max-width: 680px;
}

/* Floating cards grid */
.why-us-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  position: relative;
  overflow: visible;
  margin-top: 24px;
}
.why-us-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(28, 24, 20, 0.08);
  border-radius: 20px;
  padding: 36px 32px 32px 32px;
  box-shadow: 
    0 12px 30px rgba(28,24,20,0.03),
    0 30px 60px rgba(28,24,20,0.05);
  box-sizing: border-box;
  z-index: 2;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: visible; /* Prevent clipping of the hanging number */
}
.why-us-card:hover {
  border-color: var(--walnut);
  box-shadow: 
    0 16px 36px rgba(28,24,20,0.04),
    0 40px 80px rgba(28,24,20,0.08);
}
.why-us-card__num {
  position: absolute;
  top: -24px;
  right: -16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--walnut);
  opacity: 0.9;
  line-height: 1;
  pointer-events: none;
  z-index: 5;
}
.why-us-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--bark);
  margin: 0 0 12px 0;
  line-height: 1.25;
}
.why-us-card__desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.65;
  margin: 0;
}


/* ── Interactive Customizer Store Preview ── */
.store-customizer-teaser {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px 100px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 52px;
  align-items: start;
}
.sct-showcase {
  background: var(--white);
  border: 1px solid rgba(28,24,20,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(28,24,20,0.05);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.sct-showcase__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  overflow: hidden;
}
/* ── Interactive Blueprint Slider ────────────────────────── */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
  overflow: hidden;
  background: #fff;
  cursor: ew-resize;
}
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.blueprint-img {
  background: #fbf9f6;
  filter: contrast(1.02) brightness(0.98);
}
.slider-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 1.5px solid var(--walnut);
}
.slider-foreground .product-img {
  width: 100%;
  height: 100%;
  max-width: none;
}
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.slider-handle-line {
  flex-grow: 1;
  width: 1px;
  background: rgba(155, 123, 82, 0.4);
}
.slider-handle-button {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1.5px solid var(--walnut);
  color: var(--bark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(28,24,20,0.12);
  margin: 12px 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.slider-container:hover .slider-handle-button {
  transform: scale(1.1);
  background: var(--walnut);
  color: var(--white);
}
.slider-label {
  position: absolute;
  bottom: 20px;
  background: rgba(253, 250, 246, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(28,24,20,0.06);
  color: var(--bark);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.slider-container:hover .slider-label {
  opacity: 1;
}
.slider-label--left {
  left: 20px;
}
.slider-label--right {
  right: 20px;
}
.sct-showcase__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(28,24,20,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 6;
}
.sct-showcase__details {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.sct-showcase__tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--walnut);
  display: block;
  margin-bottom: 8px;
}
.sct-showcase__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 8px;
}
.sct-showcase__dims {
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 24px;
}
.sct-customizer-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(28,24,20,0.08);
}
.sct-control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sct-control-label {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone);
}
.sct-control-label strong {
  color: var(--bark);
  margin-left: 4px;
}
.sct-swatches {
  display: flex;
  gap: 8px;
}
.sct-swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  transition: all 0.2s;
}
.sct-swatch.active, .sct-swatch:hover {
  transform: scale(1.15);
  border-color: var(--walnut);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08), 0 0 8px rgba(155,123,82,0.3);
}
.sct-showcase__cta {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
  font-size: 10px;
  padding: 14px 24px;
}

.sct-selector-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sct-selector-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(28,24,20,0.08);
}
.sct-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid rgba(28,24,20,0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  align-items: center;
}
.sct-item__thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
}
.sct-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sct-item__info h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 2px;
}
.sct-item__info span {
  font-size: 11.5px;
  color: var(--stone);
}
.sct-item:hover {
  border-color: rgba(155,123,82,0.25);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(28,24,20,0.03);
}
.sct-item.active {
  border-color: var(--walnut);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(155,123,82,0.08);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1023px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none !important; }
  .nav__hamburger { display: flex !important; }
  .nav__cta { margin-left: auto; }
  #workSkipBtn { display: none !important; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .store-customizer-teaser { grid-template-columns: 1fr; gap: 36px; }
  
  /* Why Us - Tablet Fallback Grid */
  .why-us-split {
    flex-direction: column;
    gap: 48px;
  }
  .why-us-left,
  .why-us-right {
    flex: none;
    width: 100%;
  }
  .why-us-left {
    position: static;
    margin-bottom: 20px;
  }
  .why-us-right {
    height: auto;
    display: block;
    overflow: visible;
  }
  .why-us-cards-grid {
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    overflow: visible;
    margin-top: 24px;
  }
  .why-us-card {
    position: relative;
    width: 100%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    box-shadow: 0 8px 24px rgba(28, 24, 20, 0.03);
    padding: 32px;
  }
  .why-us-card .why-us-card__num {
    position: absolute !important;
    top: 20px !important;
    right: 24px !important;
    font-size: 1.8rem !important;
    opacity: 0.2 !important;
    margin: 0 !important;
  }
  .why-us-card__title {
    padding-right: 32px !important;
  }

  /* Contact Form Tablet Override */
  .contact-inline__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-inline__form {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .container { padding: 0 24px; }
  .section    { padding: 72px 0; }
  .section--lg { padding: 90px 0; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .page-hero { padding: calc(var(--nav-h) + 52px) 24px 60px; }
  .filter-tabs { padding: 32px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .project-item--a, .project-item--b { grid-column: span 12; }
  .project-img--tall { height: 300px; }
  .project-img--med  { height: 240px; }
  .footer { padding: 60px 24px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  


  /* Why Us Responsive */
  .why-us-section { padding: 80px 0; }
  .why-us-wrap { padding: 0 24px; }
  .why-us-card { padding: 24px; }
  .why-us-card__num {
    position: absolute !important;
    top: 20px !important;
    right: 24px !important;
    font-size: 1.8rem !important;
    opacity: 0.2 !important;
    margin: 0 !important;
  }
  .why-us-card__title { font-size: 1.35rem; margin-bottom: 8px; padding-right: 32px; }
  .why-us-card__desc { font-size: 13px; }
  
  /* Store Preview & Customizer Responsive */
  .store-preview-section { padding-bottom: 0; }
  .store-preview__header { flex-direction: column; align-items: flex-start; padding: 0 24px 36px; }
  .store-customizer-teaser { padding: 0 24px 72px; }
  .sct-showcase { grid-template-columns: 1fr; }
  .sct-showcase__img-wrap { aspect-ratio: 4/3; }
  
  /* Contact Form Responsive */
  .contact-inline { padding: 72px 24px; }
  .contact-inline__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inline__form { padding: 32px 24px; }
  .cif-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Fullscreen PDF Brochure Modal ───────────────────────── */
.brochure-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 14, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px;
  box-sizing: border-box;
}
.brochure-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.brochure-modal {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.brochure-modal-overlay.open .brochure-modal {
  transform: translateY(0) scale(1);
}
.brochure-modal__header {
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid rgba(28,24,20,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brochure-modal__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
}
.brochure-modal__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brochure-modal__close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(28,24,20,0.05);
  border: none;
  color: var(--bark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s;
}
.brochure-modal__close-btn:hover {
  background: var(--bark);
  color: var(--white);
  transform: scale(1.05);
}
.brochure-modal__body {
  flex: 1;
  position: relative;
  background: var(--cream-2);
}
.brochure-modal__body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.brochure-modal__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--walnut);
  background: var(--cream-2);
  z-index: 1;
  transition: opacity 0.3s;
}
.brochure-modal__loading.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .brochure-modal-overlay {
    padding: 10px;
  }
  .brochure-modal {
    border-radius: 8px;
  }
  .brochure-modal__header {
    padding: 12px 16px;
  }
  .brochure-modal__title {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
}

/* ── Mobile Nav Drawer & Hamburger Styles ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 250;
  margin-left: 20px;
  color: currentColor;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  height: 100dvh;
  background: var(--white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}
.nav-drawer--open {
  transform: translateX(0);
}
.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.nav-drawer__close {
  font-size: 24px;
  background: none;
  border: none;
  color: var(--bark);
  cursor: pointer;
}
.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nav-drawer__links a {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-drawer__links a:hover, .nav-drawer__links a.active {
  opacity: 1;
  color: var(--walnut);
}
.nav-drawer__footer {
  margin-top: auto;
  padding-top: 32px;
}
.nav-drawer__cta {
  width: 100%;
  box-sizing: border-box;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-drawer-backdrop--open {
  opacity: 1;
  pointer-events: auto;
}

