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

:root {
  --white:     #ffffff;
  --off-white: #f5f5f5;
  --black:     #000000;
  --mid:       #636363;
  --light:     #e0e0e0;
  --sec-grey:  #9a9a9a;
  --font:      'Poppins', sans-serif;
  --max:       1280px;
  --px:        clamp(20px, 5vw, 80px);
  --sv:        clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--px);
  transition: background 0.35s, border-color 0.35s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light);
}

.nav-logo img { height: 32px; width: auto; display: block; }

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 24px;
  border: 1px solid var(--black);
  transition: background 0.25s, color 0.25s !important;
  white-space: nowrap;
}

.nav-book:hover { background: transparent !important; color: var(--black) !important; }
.nav-book::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: opacity 0.2s;
}

.nav-mobile a:hover { opacity: 0.4; }
.nav-mobile-book { font-size: 12px; margin-top: 8px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: transparent; color: var(--black); }
.btn-secondary { background: transparent; color: var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-sm { font-size: 10px; padding: 10px 24px; }

/* SECTIONS */
.section {
  padding: var(--sv) var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
  margin-bottom: 20px;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.75;
}

.section-body strong { color: var(--black); font-weight: 700; }
.section-flush-top { padding-top: 0; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--px) 80px;
}

.hero-symbol {
  height: clamp(72px, 10vw, 120px);
  width: auto;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-title {
  font-size: clamp(40px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.hero-sub {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sec-grey);
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-divider {
  width: 32px;
  height: 1px;
  background: var(--light);
  margin: 28px auto;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-video {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--off-white);
  overflow: hidden;
}

.about-video video,
.about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.about-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sec-grey);
}

.about-video-placeholder svg { width: 40px; height: 40px; opacity: 0.35; }
.about-video-placeholder span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.about-body-second { margin-top: 14px; }

/* RESIDENT ARTISTS — hover card */
.residents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.resident-card {
  position: relative;
  cursor: pointer;
}

.resident-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: aspect-ratio 0.4s ease;
  border-radius: 8px;
}

/* frosted blur at bottom — disabled, caused visible white frame */
/*
.resident-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0; left: 0;
  mask: linear-gradient(transparent, black 80%);
  backdrop-filter: blur(12px);
  transition: translate 0.25s;
  pointer-events: none;
  z-index: 1;
}
*/

.resident-content {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resident-name {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--black);
  transition: opacity 0.25s, transform 0.25s;
}

.resident-styles {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s 0.05s, transform 0.25s 0.05s;
}

.resident-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s 0.1s, transform 0.25s 0.1s;
}

.resident-insta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--mid);
  transition: color 0.2s;
}

.resident-insta:hover { color: var(--black); }
.resident-insta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Hover state — desktop */
.resident-card:hover .resident-photo,
.resident-card.active .resident-photo {
  aspect-ratio: 1/1;
  object-position: center 20%;
}

.resident-card:hover::before,
.resident-card.active::before { translate: 0 100%; }

.resident-card:hover .resident-styles,
.resident-card.active .resident-styles { opacity: 1; transform: translateY(0); }

.resident-card:hover .resident-actions,
.resident-card.active .resident-actions { opacity: 1; transform: translateY(0); }

/* GUESTS */
.guests-section { background: var(--off-white); padding: var(--sv) 0; }

.guests-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.guests-header-desc { max-width: 280px; font-size: 13px; }

.guests-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.guests-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.guests-track::-webkit-scrollbar { display: none; }
.guests-track.grabbing { cursor: grabbing; }

.guest-card { flex-shrink: 0; width: clamp(200px, 20vw, 260px); scroll-snap-align: start; }

.guest-photo-wrap { position: relative; overflow: hidden; margin-bottom: 14px; border-radius: 8px; }

.guest-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s, transform 0.5s;
}

.guest-card:hover .guest-photo-wrap img { filter: grayscale(0%); transform: scale(1.04); }

.guest-dates-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--white);
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.guest-month { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sec-grey); margin-bottom: 4px; }
.guest-name  { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.guest-styles { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }

/* GALLERY */
.gallery-section { padding: var(--sv) var(--px); max-width: var(--max); margin: 0 auto; }

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 40px;
}

.gallery-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
  background: var(--off-white);
}

.gallery-img { overflow: hidden; border-radius: 8px; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-img.tall { grid-row: span 2; }

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  margin-top: 40px;
  align-items: stretch;
}

.gallery-img--tall {
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
}

.gallery-img--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.gallery-img--tall:hover img { transform: scale(1.04); }

.gallery-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-right-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-right-top .gallery-img {
  aspect-ratio: 1/1;
}

.gallery-img--wide {
  overflow: hidden;
  aspect-ratio: 16/7;
  border-radius: 8px;
}

.gallery-img--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.gallery-img--wide:hover img { transform: scale(1.04); }

.gallery-cta {
  padding: 24px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gallery-cta .section-body { margin: 0; max-width: 400px; }

/* BE OUR NEXT GUEST */
.guest-apply {
  background: var(--black);
  color: var(--white);
  padding: var(--sv) var(--px);
  text-align: center;
}

.guest-apply .section-label { color: var(--sec-grey); }
.guest-apply .section-title { color: var(--white); }
.guest-apply .section-body { color: rgba(255,255,255,0.5); margin: 14px auto 32px; }
.guest-apply .section-body strong { color: rgba(255,255,255,0.85); }
.guest-apply .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.guest-apply .btn-primary:hover { background: transparent; color: var(--white); }

.guest-apply-photos { display: flex; justify-content: center; gap: 12px; margin-top: 48px; }
.guest-apply-photos img { width: clamp(90px, 10vw, 140px); aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.6); }

/* REVIEWS */
.reviews-section { padding: var(--sv) var(--px); max-width: var(--max); margin: 0 auto; }

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: 40px;
}

.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.grabbing { cursor: grabbing; }

.review-card {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 360px);
  scroll-snap-align: start;
  border: 1px solid var(--light);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: var(--sec-grey); }
.review-text { font-size: 14px; font-style: italic; font-weight: 300; line-height: 1.75; }
.review-author { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.review-date { font-size: 10px; font-weight: 300; color: var(--sec-grey); margin-top: 2px; }

/* COLLAB */
.collab-section { background: var(--off-white); padding: var(--sv) var(--px); }

.collab-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.collab-inner > div:first-child { max-width: 800px; }
.collab-inner .section-body { margin: 16px auto 0; max-width: 540px; }
.collab-inner .btn { margin-top: 28px; display: inline-flex; }

.collab-x-title { color: var(--sec-grey); font-weight: 300; white-space: nowrap; }
.collab-title { font-size: clamp(28px, 3.5vw, 48px); }

.collab-logos { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 24px; }
.collab-logos img { height: 40px; width: auto; }
.collab-x { font-size: 20px; font-weight: 300; color: var(--sec-grey); }

.collab-visual { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 48px; }
.collab-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* FOOTER */
.footer { background: var(--black); color: var(--white); }

.footer-wave { line-height: 0; }
.footer-wave svg { display: block; width: 100%; height: clamp(60px, 8vw, 100px); }

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px var(--px) 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo { height: 36px; width: auto; }

.footer-brand-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.footer-email {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  display: block;
  margin-top: 6px;
}

.footer-email:hover { color: var(--white); }

.footer-mid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.4); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  /* .strip-row, .strip-label — removed, dead rules */
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-img.tall { grid-row: span 1; }
  .collab-inner { text-align: center; }
  .collab-visual { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-book  { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-video { aspect-ratio: 16/9; }
  .residents-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .guests-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer-brand-row { flex-direction: column; align-items: center; gap: 10px; }
  .footer-mid { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; gap: 20px; }
  .collab-x-title { display: block; font-size: 0.5em; margin: 6px 0; white-space: normal; }
  .collab-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .residents-grid { grid-template-columns: 1fr; }
  .guest-card { width: 72vw; }
  .guest-apply-photos { display: none; }
}
