/* ===== VARIABLES ===== */
:root {
  --white: #ffffff;
  --brick: #b5451b;
  --brick-dark: #8f3614;
  --sand: #f7f4f2;        /* desaturated — barely warm white */
  --charcoal: #1e1e1e;
  --taupe: #6b6b6b;       /* neutral grey, not warm-brown */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-logo: 'Orbitron', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { color: var(--taupe); font-size: 1.05rem; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section--sand { background: var(--sand); }
.section--charcoal { background: var(--charcoal); }
.section-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.75rem; }
.section-title { color: var(--charcoal); margin-bottom: 1.2rem; }
.section-title--light { color: var(--white); }
.section-sub { max-width: 620px; margin-bottom: 2.5rem; }
.divider { width: 36px; height: 2px; background: var(--brick); margin: 1rem 0 2rem; opacity: 0.5; }
.divider--center { margin: 1rem auto 2rem; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; }
.btn-primary { background: #9e3c17; color: #ffffff; border-color: #9e3c17; font-weight: 700; letter-spacing: 0.01em; }
.btn-primary:hover { background: #7d2f12; border-color: #7d2f12; color: #ffffff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-brick { background: transparent; color: var(--charcoal); border-color: #d0c8c0; }
.btn-outline-brick:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  padding: 1.1rem 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: padding 0.3s;
  overflow: visible;
}
.navbar.scrolled { padding: 0.7rem 0; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo { font-family: var(--font-logo); font-size: 1.05rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.18em; display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.3; text-decoration: none; }
.navbar__logo .logo-text { display: block; }
.navbar__logo .logo-line { display: block; width: 100%; height: 2px; background: var(--brick); margin-top: 3px; transition: background 0.2s; }
.navbar__logo:hover .logo-line { background: var(--brick); }
.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__links a { font-size: 0.92rem; font-weight: 500; color: var(--taupe); transition: color 0.2s; position: relative; }
.navbar__links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--brick); transition: width 0.25s; }
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; }
.navbar__links a:hover, .navbar__links a.active { color: var(--brick); }
/* Hamburger button */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  background: none;
  border: none;
  position: relative;
  z-index: 1200;
}
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--charcoal);
}
.hs-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hs-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}
.hs-slide--active { opacity: 1; z-index: 1; }
.hs-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,16,14,0.72) 0%,
    rgba(20,16,14,0.45) 55%,
    rgba(20,16,14,0.15) 100%
  );
}
.hs-slide__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
}
.hs-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}
.hs-slide--active .hs-slide__badge { opacity: 1; transform: none; }
.hs-slide__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s 0.35s ease, transform 0.6s 0.35s ease;
}
.hs-slide--active .hs-slide__title { opacity: 1; transform: none; }
.hs-slide__title em { font-style: italic; color: rgba(255,255,255,0.75); }
.hs-slide__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
}
.hs-slide--active .hs-slide__desc { opacity: 1; transform: none; }
.hs-slide__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s 0.65s ease, transform 0.6s 0.65s ease;
}
.hs-slide--active .hs-slide__ctas { opacity: 1; transform: none; }
/* override buttons inside slider */
.hs-slide .btn-primary { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.hs-slide .btn-primary:hover { background: var(--sand); border-color: var(--sand); }
.hs-slide .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hs-slide .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ARROWS */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.hs-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.hs-arrow--prev { left: 2rem; }
.hs-arrow--next { right: 2rem; }

/* DOTS */
.hs-dots {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.hs-dot--active {
  background: var(--white);
  transform: scale(1.35);
}

/* PROGRESS BAR */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}
.hs-progress__bar {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.55);
}

/* COUNTER */
.hs-counter {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-family: var(--font-heading);
}
.hs-counter #hsCurrent {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.hs-counter__sep { margin: 0 0.1rem; opacity: 0.4; }

@media (max-width: 768px) {
  .hero-slider { height: 100svh; }
  .hs-arrow { display: none; }
  .hs-slide__content { padding-top: 100px; }
  .hs-slide__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ===== OLD HERO (kept for reference, unused) ===== */
.hero { display: none; }



/* ===== POSITIONING STRIP ===== */
.positioning { background: var(--sand); padding: 60px 0; border-top: 1px solid #e8e4e0; border-bottom: 1px solid #e8e4e0; }
.positioning__text { color: var(--taupe); font-size: 1.05rem; max-width: 700px; margin: 0 auto 2.5rem; text-align: center; }
.positioning__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #e0dbd6; border-radius: 8px; overflow: hidden; }
.positioning__item { background: var(--white); padding: 1.8rem 1.5rem; text-align: center; transition: background 0.2s; }
.positioning__item:hover { background: var(--sand); }
.positioning__item h4 { color: var(--charcoal); font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; }
.positioning__item::before { content: ''; display: block; width: 20px; height: 1px; background: var(--brick); margin: 0 auto 0.8rem; opacity: 0.4; }

/* ===== AMENITIES PREVIEW ===== */
.amenities-preview {
  position: relative;
  background:
    linear-gradient(rgba(247, 244, 242, 0.84), rgba(247, 244, 242, 0.84)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  border-top: 1px solid #e8e4e0;
  border-bottom: 1px solid #e8e4e0;
}
.amenities-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.amenities-preview__label {
  grid-row: span 2;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 18px;
  padding: 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}
.amenities-preview__label h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.amenities-preview__label h2 em {
  color: var(--charcoal);
  font-style: italic;
}
.ap-cell {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.2rem;
  min-height: 180px;
  gap: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}
.ap-cell:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.ap-cell svg {
  width: 36px;
  height: 36px;
  color: var(--charcoal);
  flex-shrink: 0;
  opacity: 0.65;
}
.ap-cell:hover svg { color: var(--brick); opacity: 1; }
.ap-cell span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--taupe);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .amenities-preview__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    padding: 3rem 1.5rem;
  }
  .amenities-preview__label {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 2rem 1.5rem;
  }
  .ap-cell { min-height: 160px; }
}
@media (max-width: 480px) {
  .amenities-preview__inner { grid-template-columns: 1fr 1fr; }
}

/* ===== WORKSPACE SOLUTIONS ===== */
.workspace-solutions {
  background: var(--white);
  border-top: 1px solid #e8e4e0;
  border-bottom: 1px solid #e8e4e0;
  padding: 5rem 0;
}
.workspace-solutions__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.workspace-solutions__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.workspace-solutions__intro {
  color: var(--taupe);
  font-size: 1rem;
  line-height: 1.8;
}
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.workspace-card {
  background: var(--sand);
  border: 1px solid #e8e4e0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.workspace-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.workspace-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.workspace-card__body {
  padding: 1.4rem 1.5rem;
}
.workspace-card h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.workspace-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--taupe);
}
@media (max-width: 768px) {
  .workspace-solutions { padding: 2.5rem 0; }
  .workspace-solutions__header { margin-bottom: 2rem; }
  .workspace-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .workspace-card__body { padding: 1.1rem 1.2rem; }
}
@media (max-width: 480px) {
  .workspace-solutions { padding: 2rem 0; }
  .workspace-grid { gap: 1rem; }
}

/* ===== SPACES PREVIEW (sticky scroll) ===== */
.spaces-preview {
  padding: 0;
  background: var(--white);
  border-top: 1px solid #ede0d8;
  border-bottom: 1px solid #ede0d8;
}
.spaces-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

/* LEFT — sticky image */
.spaces-preview__visual {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 0;
}
.spaces-preview__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
}
.sp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
  border-radius: 14px;
}
.sp-img--active { opacity: 1; }
.sp-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--taupe);
  opacity: 0.4;
}
.sp-placeholder__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.spaces-preview__counter {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--taupe);
}
.spaces-preview__counter #sp-current {
  font-size: 1.5rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1;
}
.sp-sep { margin: 0 0.1rem; opacity: 0.4; }

/* RIGHT — scrolling list */
.spaces-preview__list {
  padding: 5rem 0 5rem 3rem;
  border-left: 1px solid #ede0d8;
}
.sp-header {
  margin-bottom: 3rem;
}
.sp-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0e8e2;
  opacity: 1;
  transition: opacity 0.4s ease;
  cursor: default;
}
.sp-item:last-child { border-bottom: none; }
.sp-item--active { opacity: 1; }
.sp-item__num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--charcoal);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  transition: opacity 0.4s;
}
.sp-item--active .sp-item__num { opacity: 0.5; }
.sp-item__body { flex: 1; }
.sp-item__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}
.sp-item__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.sp-item__desc {
  font-size: 0.92rem;
  color: var(--taupe);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.sp-item__features {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}
.sp-item__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--taupe);
}
.sp-item__features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--taupe);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}
.sp-item--active .sp-item__features li::before { opacity: 0.8; }
.sp-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sp-item--active .sp-item__link {
  opacity: 1;
  transform: none;
}
.sp-item__link:hover { text-decoration: underline; }

.sp-item__mobile-img { display: none; }


/* ===== LOCATION ADVANTAGE ===== */
.location-adv { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; border: 1px solid #e8e4e0; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,0,0,0.05); }
.location-adv__map { position: relative; overflow: hidden; }
.location-adv__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; filter: grayscale(20%); }
.location-adv__content { padding: 5rem 4rem; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.loc-points { display: flex; flex-direction: column; gap: 1.2rem; }
.loc-point { display: flex; align-items: flex-start; gap: 1rem; }
.loc-point__icon { width: 36px; height: 36px; background: var(--sand); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--charcoal); opacity: 0.7; }
.loc-point div strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.15rem; }
.loc-point div span { font-size: 0.82rem; color: var(--taupe); }
@media (max-width: 900px) { .location-adv { grid-template-columns: 1fr; } .location-adv__map { height: 300px; position: relative; } .location-adv__content { padding: 3rem 1.5rem; } }
/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--white);
  padding: 140px 0 70px;
  text-align: center;
  border-bottom: 1px solid #ede0d8;
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ''; display: block; width: 40px; height: 2px; background: var(--charcoal); margin: 1.5rem auto 0; opacity: 0.2; position: relative; z-index: 1; }
.page-hero h1 { color: var(--charcoal); position: relative; z-index: 1; }
.page-hero p { color: var(--taupe); max-width: 560px; margin: 1rem auto 0; position: relative; z-index: 1; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero--decorated {
  background:
    radial-gradient(circle at 14% 24%, rgba(181, 69, 27, 0.11), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(30, 30, 30, 0.05), transparent 18%),
    linear-gradient(135deg, #f7f3ef 0%, #ffffff 46%, #f3ece6 100%);
}
.page-hero--decorated::before,
.page-hero--decorated::after,
.page-hero--decorated .container::before,
.page-hero--decorated .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-hero--decorated::before {
  width: 320px;
  height: 250px;
  left: 7%;
  top: 42px;
  border-radius: 38% 62% 56% 44% / 44% 34% 66% 56%;
  background: linear-gradient(145deg, rgba(181, 69, 27, 0.1), rgba(255, 255, 255, 0.2));
  opacity: 0.9;
  transform: rotate(-9deg);
  box-shadow: 0 26px 56px rgba(181, 69, 27, 0.06);
}
.page-hero--decorated::after {
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 69, 27, 0.11) 0%, rgba(181, 69, 27, 0) 72%);
}
.page-hero--decorated .container::before {
  width: 112px;
  height: 112px;
  right: 16%;
  top: 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(181, 69, 27, 0.07));
  transform: rotate(21deg);
  border-radius: 18px;
  opacity: 0.72;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.page-hero--decorated .container::after {
  width: 72px;
  height: 72px;
  left: 29%;
  bottom: 20px;
  clip-path: polygon(24% 8%, 100% 28%, 74% 100%, 0% 70%);
  background: linear-gradient(150deg, rgba(181, 69, 27, 0.08), rgba(255, 255, 255, 0.28));
  opacity: 0.72;
  transform: rotate(-8deg);
}

/* ===== ABOUT ===== */
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story__visual { position: relative; }
.about-story__img-wrap { background: var(--sand); border-radius: 12px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-story__img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.about-story__badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--charcoal); color: var(--white); padding: 1.2rem 1.5rem; border-radius: 10px; text-align: center; }
.about-story__badge strong { display: block; font-size: 2rem; font-family: var(--font-heading); }
.about-story__badge span { font-size: 0.8rem; opacity: 0.85; }
.diff-list { display: flex; flex-direction: column; gap: 0.9rem; }
.diff-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.diff-item__dot { width: 6px; height: 6px; background: var(--brick); border-radius: 50%; flex-shrink: 0; margin-top: 8px; opacity: 0.4; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.why-card { background: var(--white); border: 1px solid #ede0d8; border-radius: 10px; padding: 1.8rem 1.2rem; text-align: center; transition: all 0.3s; }
.why-card:hover { border-color: #ccc; box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.why-card__num { font-family: var(--font-heading); font-size: 2rem; color: var(--charcoal); opacity: 0.15; line-height: 1; margin-bottom: 0.5rem; }
.why-card h4 { font-size: 0.95rem; color: var(--charcoal); }

/* ===== SPACES ===== */
.space-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid #ede0d8; transition: all 0.3s; }
.space-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.space-card__img { aspect-ratio: 16/9; background: var(--sand); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.space-card__img img { width: 100%; height: 100%; object-fit: cover; }
.space-card__img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--taupe); }
.space-card__img-placeholder svg { opacity: 0.4; }
.space-card__img-placeholder span { font-size: 0.8rem; opacity: 0.6; }
.space-card__body { padding: 1.8rem; }
.space-card__tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.space-card__body h3 { color: var(--charcoal); margin-bottom: 0.6rem; }
.space-card__features { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.space-card__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--taupe); }
.space-card__features li::before { content: ''; width: 4px; height: 4px; background: var(--taupe); border-radius: 50%; flex-shrink: 0; opacity: 0.5; }

/* ===== AMENITIES ===== */
.amenity-badge { display: flex; align-items: center; gap: 0.8rem; background: var(--white); border: 1px solid #ede0d8; border-radius: 8px; padding: 1rem 1.2rem; transition: all 0.25s; }
.amenity-badge:hover { border-color: #ccc; background: var(--sand); }
.amenity-badge svg { color: var(--charcoal); flex-shrink: 0; opacity: 0.6; }
.amenity-badge span { font-size: 0.92rem; font-weight: 500; color: var(--charcoal); }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pricing-card { background: var(--white); border: 1px solid #ede0d8; border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.pricing-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.pricing-card__head { background: var(--sand); padding: 1.8rem; border-bottom: 1px solid #ede0d8; }
.pricing-card__head h3 { color: var(--charcoal); margin-bottom: 0.3rem; }
.pricing-card__head p { font-size: 0.88rem; }
.pricing-card__body { padding: 1.8rem; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid #f0e8e2; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row__label { font-size: 0.88rem; color: var(--taupe); }
.pricing-row__val { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; }
.pricing-row__val.custom { color: var(--taupe); font-size: 0.85rem; }
.includes-list { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.includes-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--taupe); }
.includes-list li::before { content: '✓'; color: var(--taupe); font-weight: 600; opacity: 0.6; }

/* ===== GALLERY ===== */
.gallery-hero {
  position: relative;
  padding: 154px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(181, 69, 27, 0.12), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(30, 30, 30, 0.06), transparent 20%),
    linear-gradient(135deg, #f7f3ef 0%, #ffffff 45%, #f3ece6 100%);
  border-bottom: 1px solid #ede0d8;
}
.gallery-hero::before,
.gallery-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.gallery-hero::before {
  width: 360px;
  height: 360px;
  top: 72px;
  right: -160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 30, 30, 0.06), transparent 68%);
}
.gallery-hero::after {
  width: 320px;
  height: 320px;
  left: 4%;
  top: 120px;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(181, 69, 27, 0.08) 55%, rgba(30, 30, 30, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.45);
  filter: blur(0.2px);
  opacity: 0.8;
  transform: rotate(-12deg);
  box-shadow: 0 24px 50px rgba(181, 69, 27, 0.08);
}
.gallery-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.gallery-hero__inner::before,
.gallery-hero__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.gallery-hero__inner::before {
  width: 180px;
  height: 180px;
  right: 34%;
  bottom: 12%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.36), rgba(30, 30, 30, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(18deg);
  opacity: 0.75;
}
.gallery-hero__inner::after {
  width: 110px;
  height: 110px;
  left: 42%;
  top: 8%;
  clip-path: polygon(25% 6%, 100% 32%, 76% 100%, 0% 72%);
  background: linear-gradient(150deg, rgba(181, 69, 27, 0.1), rgba(255, 255, 255, 0.24));
  opacity: 0.7;
}
.gallery-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.gallery-hero__headline {
  display: grid;
  gap: 1rem;
}
.gallery-hero__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(181, 69, 27, 0.1);
  border: 1px solid rgba(181, 69, 27, 0.15);
  color: var(--brick);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-hero__copy h1 {
  max-width: 10.5ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.gallery-hero__text {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.85;
  color: #6a6763;
}
.gallery-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}
.gallery-hero__metric {
  padding: 1rem 1rem 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 30, 30, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}
.gallery-hero__metric strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-family: var(--font-heading);
  line-height: 1;
}
.gallery-hero__metric span {
  display: block;
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.gallery-hero__spotlight {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.gallery-hero__frame {
  width: min(100%, 500px);
  padding: 1.2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px rgba(34, 24, 19, 0.1);
}
.gallery-hero__card {
  border-radius: 24px;
  padding: 1.65rem;
  background:
    linear-gradient(160deg, rgba(24, 22, 21, 0.98), rgba(64, 52, 45, 0.92));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.gallery-hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.gallery-hero__eyebrow {
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.gallery-hero__mini-label {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-hero__card h3 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 12ch;
}
.gallery-hero__card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.8;
}
.gallery-hero__panel {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid #eadfd6;
}
.gallery-hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.95rem;
  flex-wrap: wrap;
}
.gallery-hero__panel-head p {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
}
.gallery-hero__panel-head span {
  color: var(--taupe);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.filter-btn {
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #e5d9d0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f1ec 100%);
  color: var(--taupe);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d312c 100%);
  border-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.gallery-showcase {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf9f7 100%);
}
.gallery-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.gallery-showcase__intro {
  max-width: 480px;
  justify-self: end;
  font-size: 0.98rem;
}
.gallery-curation {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.gallery-curation__panel {
  background: linear-gradient(180deg, #1f1f1f 0%, #2c2623 100%);
  border-radius: 26px;
  padding: 1.7rem;
  min-height: 100%;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
}
.gallery-curation__label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.gallery-curation__panel h3 {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.gallery-curation__panel p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}
.gallery-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 1.2rem;
  border-radius: 26px;
  border: 1px solid #ede0d8;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.04);
}
.filter-btn {
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #e5d9d0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f1ec 100%);
  color: var(--taupe);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d312c 100%);
  border-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  grid-auto-flow: dense;
}
.gallery-item {
  grid-column: span 4;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(180deg, #f6f1ec 0%, #efe7e0 100%);
  position: relative;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  isolation: isolate;
}
.gallery-item--wide { grid-column: span 8; }
.gallery-item--tall { grid-row: span 2; min-height: 576px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1s ease, filter 0.35s ease, object-position 1s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 68%;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0) 0%, rgba(12, 10, 9, 0.84) 100%);
  z-index: 0;
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.12);
  filter: saturate(1.03);
}
.gallery-item:nth-child(odd):hover img {
  object-position: left center;
}
.gallery-item:nth-child(even):hover img {
  object-position: right center;
}
.gallery-item--tall:hover img {
  object-position: center top;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1));
  transition: background 0.3s ease;
  z-index: 1;
}
.gallery-item:hover .gallery-item__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22));
}
.gallery-item__meta {
  width: min(100%, 420px);
}
.gallery-item__tag {
  display: inline-flex;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-item__meta h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.gallery-item__meta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--taupe);
}
.gallery-placeholder svg { opacity: 0.35; }
.gallery-placeholder span {
  font-size: 0.82rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.map-section { background: var(--white); border-top: 1px solid #ede0d8; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid #ede0d8; }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }
.location-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.location-point { display: flex; align-items: flex-start; gap: 0.7rem; background: var(--white); border-radius: 8px; padding: 1rem 1.2rem; border: 1px solid #ede0d8; }
.location-point svg { color: var(--taupe); flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.location-point span { font-size: 0.9rem; color: var(--charcoal); font-weight: 500; }

/* ===== AMENITIES FULL (spaces page) ===== */
.amenities-full {
  border-top: 1px solid #e8e4e0;
  border-bottom: 1px solid #e8e4e0;
  background: var(--sand);
}
.amenities-full--photo {
  position: relative;
  background:
    linear-gradient(rgba(247, 244, 242, 0.9), rgba(247, 244, 242, 0.9)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}
.amenities-full__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, 1fr);
  gap: 1px;
  background: #e0dbd6;
}
.amenities-full__label {
  grid-row: span 2;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.amenities-full__label h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.amenities-full__label h2 em { font-style: italic; color: var(--taupe); }
.amenities-full__label p { font-size: 0.88rem; color: var(--taupe); line-height: 1.65; }
.af-cell {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  transition: background 0.2s, transform 0.2s;
}
.af-cell:hover { background: #faf8f6; transform: translateY(-2px); }
.af-cell__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.af-cell__icon svg {
  width: 100%;
  height: 100%;
  color: var(--charcoal);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.af-cell:hover .af-cell__icon svg { color: var(--brick); opacity: 1; }
.af-cell h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}
.af-cell p {
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .amenities-full__inner { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  .amenities-full__label { grid-column: 1 / -1; grid-row: auto; padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .amenities-full__inner { grid-template-columns: 1fr; }
}

/* ===== SHARED PRICING TABLE (spaces + about) ===== */
.sp-pricing-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e4e0;
  border-radius: 12px;
  overflow: hidden;
}
.sp-pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid #e8e4e0;
  background: var(--white);
  transition: background 0.2s;
}
.sp-pricing-row:last-child { border-bottom: none; }
.sp-pricing-row:hover { background: var(--sand); }
.sp-pricing-row__info h3 { font-size: 1.05rem; color: var(--charcoal); margin: 0.3rem 0 0.4rem; }
.sp-pricing-row__info p { font-size: 0.82rem; color: var(--taupe); line-height: 1.6; }
.sp-pricing-row__plans {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ap-plan {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  background: var(--sand);
  border: 1px solid #e0dbd6;
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
}
@media (max-width: 768px) {
  .sp-pricing-row { grid-template-columns: 1fr; gap: 1rem; }
  .sp-pricing-row .btn { align-self: start; }
}


.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: stretch; }
.contact-info__item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info__icon { width: 44px; height: 44px; background: var(--sand); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--charcoal); flex-shrink: 0; opacity: 0.7; }
.contact-info__text strong { display: block; font-size: 0.85rem; color: var(--taupe); font-weight: 500; margin-bottom: 0.2rem; }
.contact-info__text span { color: var(--charcoal); font-weight: 500; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
input, select, textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid #e0d0c8; border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem; color: var(--charcoal); background: var(--white); transition: border-color 0.2s; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--charcoal); }
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c6a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ===== CTA DARK — replaced with light ===== */
.section--charcoal { background: var(--sand); border-top: 1px solid #e8e4e0; }
.section-title--light { color: var(--charcoal); }

.contact-map {
  margin-top: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e4e0;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(15%);
}
.contact-loc-list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.contact-loc-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--sand);
  border: 1px solid #e8e4e0;
  border-radius: 6px;
  padding: 0.55rem 0.8rem;
  line-height: 1.3;
}
.contact-loc-list li svg {
  flex-shrink: 0;
  color: var(--taupe);
  opacity: 0.7;
}

/* ===== FAQ MODAL ===== */
.faq-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,16,12,0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.faq-modal-overlay.open { display: flex; }
.faq-modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  overflow: hidden;
}
.faq-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #e8e4e0;
  flex-shrink: 0;
}
.faq-modal__head h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
}
.faq-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e0dbd6;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--taupe);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.faq-modal__close:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.faq-modal__body {
  overflow-y: auto;
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}
.faq-item {
  border-bottom: 1px solid #e8e4e0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--taupe);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 0.87rem;
  color: var(--taupe);
  padding-bottom: 1rem;
  line-height: 1.75;
}
@media (max-width: 480px) {
  .faq-modal__head { padding: 1.2rem 1.4rem; }
  .faq-modal__body { padding: 1rem 1.4rem 1.5rem; }
}

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 0.8rem; max-width: 280px; }
.footer__logo { font-family: var(--font-logo); font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 0.18em; display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.footer__logo .logo-text { display: block; }
.footer__logo .logo-line { display: block; width: 100%; height: 2px; background: var(--brick); margin-top: 3px; }
.footer__col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.2s; }
.footer__col ul a:hover { color: rgba(255,255,255,0.9); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer__socials { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.footer__socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer__socials a:hover { background: rgba(255,255,255,0.18); color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */

/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  .positioning__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story__grid { gap: 3rem; }
  .location-adv__content { padding: 3.5rem 2.5rem; }

  .gallery-hero__inner,
  .gallery-showcase__top,
  .gallery-curation {
    grid-template-columns: 1fr;
  }
  .gallery-hero__copy {
    max-width: none;
  }
  .gallery-hero__copy h1,
  .gallery-hero__card h3 {
    max-width: none;
  }
  .gallery-hero__spotlight {
    justify-content: stretch;
  }
  .gallery-hero__frame {
    width: 100%;
  }
  .gallery-hero::after,
  .gallery-hero__inner::before,
  .gallery-hero__inner::after {
    opacity: 0.45;
  }
  .gallery-showcase__intro {
    justify-self: start;
    max-width: 620px;
  }
  .gallery-item { grid-column: span 6; }
  .gallery-item--wide { grid-column: span 12; }
}

/* 900px — tablet portrait */
@media (max-width: 900px) {
  .spaces-preview__inner { grid-template-columns: 1fr; }
  .spaces-preview__visual { display: none; }
  .spaces-preview__list {
    padding: 0 0 3rem;
    border-left: none;
  }
  .sp-item { opacity: 1; }
  .sp-item__num { opacity: 0.5; }
  .sp-item__link { opacity: 1; transform: none; }
  .sp-item__mobile-img { display: block; width: 100%; margin: 1rem 0 1.1rem; border-radius: 12px; aspect-ratio: 16 / 9; object-fit: cover; }
  .location-adv { grid-template-columns: 1fr; }
  .location-adv__map { height: 280px; position: relative; }
  .location-adv__content { padding: 2.5rem 1.5rem; }
  .amenities-preview__inner { grid-template-columns: repeat(2, 1fr); }
  .amenities-preview__label { grid-column: 1 / -1; grid-row: auto; padding: 2rem 1.5rem; }
  .ap-cell { min-height: 150px; }
  .amenities-full__inner { grid-template-columns: repeat(2, 1fr); }
  .amenities-full__label { grid-column: 1 / -1; grid-row: auto; padding: 2.5rem 1.5rem; }
}

/* 768px — mobile */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 1.2rem; }

  /* ── Section-level padding resets ── */
  .workspace-solutions__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .spaces-preview__list { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .amenities-preview__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .amenities-full__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .gallery-showcase.section { padding: 56px 0; }
  .contact-faq { padding: 56px 0; }
  .positioning { padding: 36px 0; }
  .location-adv__content { padding: 2rem 1.2rem; text-align: left; }

  /* ── Navbar ── */
  .navbar__hamburger { display: flex; }
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.98);
    overflow: visible;
  }
  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--sand);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    z-index: 9999;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar__links.open { display: flex; }
  .navbar__hamburger {
    position: relative;
    z-index: 10000;
  }
  .navbar__links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f0ebe6;
  }
  .navbar__links li:first-child {
    border-top: none;
    margin-top: 0.5rem;
  }
  .navbar__links li:last-child { border-bottom: none; margin-top: 1rem; }
  .navbar__links a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 1rem 0.35rem;
  }
  .navbar__links a::after { display: none; }
  .navbar__links a.active { color: var(--brick); border-left: 3px solid var(--brick); padding-left: 0.6rem; }
  .navbar__links .btn {
    display: block;
    font-size: 1rem;
    padding: 0.95rem 1.25rem;
    width: 100%;
    text-align: center;
    margin-top: 0.4rem;
  }

  /* ── Hero slider ── */
  .hero-slider { height: 100svh; min-height: 560px; }
  .hs-arrow { display: none; }
  .hs-slide__content { padding-top: 90px; }
  .hs-slide__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hs-slide__desc { font-size: 0.92rem; }
  .hs-slide__ctas { flex-direction: column; gap: 0.75rem; }
  .hs-slide__ctas .btn { width: 100%; text-align: center; }
  .hs-counter { bottom: 1.5rem; right: 1.2rem; }
  .hs-dots { bottom: 1.8rem; }

  /* ── Positioning strip ── */
  .positioning { padding: 40px 0; }
  .positioning__grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Workspace solutions ── */
  .workspace-solutions__title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  .about-mission {
    padding: 2.2rem 0;
  }
  .about-mission__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .about-mission__line {
    width: 48px;
  }
  .about-mission__text {
    font-size: 1.2rem;
    line-height: 1.45;
    max-width: 100%;
  }

  /* ── Spaces preview ── */
  .spaces-preview__img-wrap { aspect-ratio: 16/9; }
  .spaces-preview__counter { margin-top: 0.8rem; }
  .sp-header__sub { display: none; }
  .sp-item { gap: 1rem; padding: 1.8rem 0; }
  .sp-item__title { font-size: 1.2rem; }

  .ap-plan { font-size: 0.68rem; padding: 0.25rem 0.7rem; }

  /* ── Amenities preview (homepage) ── */
  .amenities-preview__inner { grid-template-columns: 1fr 1fr; }
  .amenities-preview__inner .ap-cell:last-child { grid-column: unset; max-width: unset; margin: 0; width: 100%; }
  .amenities-preview__label { grid-column: 1 / -1; padding: 1.8rem 1.2rem; }
  .amenities-preview__label .btn { width: 100%; text-align: center; }
  .ap-cell { min-height: 130px; padding: 0 1rem 1.5rem; }
  .ap-cell svg { width: 30px; height: 30px; }
  .ap-cell span { font-size: 0.65rem; }

  /* ── Amenities full (spaces page) ── */
  .amenities-full__inner { grid-template-columns: 1fr 1fr; }
  .af-cell { padding: 1.5rem 1.2rem; gap: 0.6rem; }
  .af-cell__icon { width: 36px; height: 36px; }
  .af-cell h4 { font-size: 0.88rem; }
  .af-cell p { font-size: 0.78rem; }

  /* ── Location advantage ── */
  .location-adv__map { height: 240px; }
  .loc-points { gap: 1rem; }

  /* ── Page hero ── */
  .page-hero { padding: 110px 0 50px; }
  .page-hero--decorated::before {
    width: 230px;
    height: 180px;
    left: -36px;
    top: 52px;
  }
  .page-hero--decorated .container::before {
    width: 82px;
    height: 82px;
    right: 8%;
    top: 18px;
  }
  .page-hero--decorated .container::after {
    width: 56px;
    height: 56px;
    left: 16%;
    bottom: 10px;
  }

  /* ── Grids ── */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .positioning__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 320px;
  }
  .gallery-hero {
    padding: 126px 0 64px;
  }
  .gallery-hero__headline {
    gap: 0.85rem;
  }
  .gallery-hero__copy h1 {
    font-size: clamp(2.35rem, 9vw, 3.6rem);
    max-width: none;
  }
  .gallery-hero__text {
    font-size: 0.96rem;
  }
  .gallery-hero__metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .gallery-hero__metric {
    border-radius: 16px;
  }
  .gallery-hero__actions {
    flex-direction: column;
  }
  .gallery-hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  .gallery-hero__frame {
    padding: 0.9rem;
    border-radius: 24px;
  }
  .gallery-hero__card,
  .gallery-hero__panel {
    border-radius: 20px;
  }
  .gallery-hero__card-top,
  .gallery-hero__panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-curation__panel,
  .gallery-filter { border-radius: 22px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-loc-list { grid-template-columns: 1fr; }
  .contact-map iframe { height: 200px; }

  /* ── Pricing table ── */
  .sp-pricing-row { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .sp-pricing-row .btn { width: 100%; text-align: center; }
  .ap-row { grid-template-columns: 1fr !important; gap: 1rem; }
  .ap-row__cta { align-self: start; }

  /* ── About ── */
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__badge { right: 0; }
  .about-diff__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-why__grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta__inner { flex-direction: column; align-items: flex-start; }
  .about-body { grid-template-columns: 1fr; }
  .about-body__img { height: 260px; position: relative; }
  .about-body__text { padding: 2.5rem 1.5rem; }

  /* ── Footer ── */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* ── FAQ modal ── */
  .faq-modal { max-height: 92vh; border-radius: 14px 14px 0 0; }
  .faq-modal-overlay { align-items: flex-end; padding: 0; }
}

/* 480px — small mobile */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 44px 0; }
  .workspace-solutions__inner { padding-top: 2rem; padding-bottom: 2rem; }
  .amenities-preview__inner { padding-top: 2rem; padding-bottom: 2rem; }
  .amenities-full__inner { padding-top: 2rem; padding-bottom: 2rem; }
  .contact-faq { padding: 44px 0; }

  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .positioning__grid { grid-template-columns: repeat(2, 1fr); }

  .amenities-preview__inner { grid-template-columns: 1fr 1fr; }
  .amenities-full__inner { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    min-height: 280px;
  }
  .gallery-hero {
    padding: 118px 0 56px;
  }
  .gallery-hero__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .gallery-hero__copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    line-height: 1.02;
  }
  .gallery-hero__text {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .gallery-hero__metric {
    padding: 0.9rem;
  }
  .gallery-hero__metric strong {
    font-size: 1.15rem;
  }
  .gallery-hero__frame {
    padding: 0.75rem;
    border-radius: 20px;
  }
  .gallery-hero__card,
  .gallery-hero__panel {
    padding: 1rem;
    border-radius: 18px;
  }
  .gallery-hero__card h3 {
    font-size: 1.4rem;
  }
  .gallery-hero::after,
  .gallery-hero__inner::before,
  .gallery-hero__inner::after {
    display: none;
  }
  .page-hero--decorated::before,
  .page-hero--decorated .container::before,
  .page-hero--decorated .container::after {
    opacity: 0.5;
  }
  .gallery-filter { gap: 0.5rem; padding: 0; }
  .filter-btn { font-size: 0.8rem; padding: 0.58rem 0.9rem; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .text-center .btn { width: 100%; max-width: 320px; }

  .navbar__logo { font-size: 0.88rem; }

  .hs-slide__badge { font-size: 0.68rem; padding: 0.3rem 0.8rem; }
  .hs-dots { bottom: 1.5rem; }

  .workspace-solutions__inner { gap: 1.5rem; }
  .about-mission {
    padding: 1.8rem 0;
  }
  .about-mission__label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }
  .about-mission__text {
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .sp-item__num { display: none; }
  .sp-item { gap: 0; }

  .contact-loc-list { grid-template-columns: 1fr; }

  .footer { padding: 48px 0 24px; }
  .footer__logo { font-size: 0.82rem; }

  /* About page mobile */
  .about-diff__items { grid-template-columns: 1fr; }
  .diff-tile:nth-child(2n) { border-right: 1px solid #e0dbd6; }
  .diff-tile:nth-last-child(-n+2) { border-bottom: 1px solid #e0dbd6; }
  .diff-tile:last-child { border-bottom: none; }
  .about-why__grid { grid-template-columns: 1fr 1fr; }
  .ap-row__tiers { grid-template-columns: 1fr 1fr; }

  /* Location points single col */
  .location-points { grid-template-columns: 1fr; }
}
