/* =========================================================
   플랫화이트 스튜디오 · platwhite studio
   Warm "flat white" rental-studio landing
   ========================================================= */

:root {
  /* palette — latte / milk-foam warmth */
  --cream:    #F4ECDF;
  --cream-2:  #EFE5D4;
  --foam:     #FBF6EE;
  --milk:     #FFFFFF;
  --espresso: #2B231D;
  --mocha:    #6A5949;
  --mocha-2:  #8C7A66;
  --latte:    #B58755;
  --caramel:  #A06A3D;
  --clay:     #C58A66;
  --sage:     #8C8E73;
  --line:     rgba(43, 35, 29, 0.12);
  --line-2:   rgba(43, 35, 29, 0.07);

  --font-display: "Cormorant Garamond", "Gowun Batang", serif;
  --font-serif:   "Gowun Batang", "Cormorant Garamond", serif;
  --font-body:    "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
video { display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--latte); color: var(--milk); }

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography helpers ---------- */
.serif-em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.kicker {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.05rem; letter-spacing: 0.04em;
  color: var(--caramel); margin-bottom: 0.9rem;
}
.kicker--center { text-align: center; }

h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.22; letter-spacing: -0.02em;
  color: var(--espresso);
}
.serif-em, h2 .serif-em { color: var(--caramel); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; padding: 0.95em 1.9em; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--espresso); color: var(--foam); }
.btn--solid:hover { background: var(--caramel); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(160,106,61,.6); }
.btn--line { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn--line:hover { background: var(--espresso); color: var(--foam); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--espresso); border-color: var(--line); padding: 0.7em 1.5em; }
.btn--ghost:hover { border-color: var(--espresso); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1.4rem 0;
}
.nav.scrolled {
  background: rgba(251, 246, 238, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-2); padding: 0.85rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--espresso);
  display: grid; place-items: center; flex: none;
  transition: transform .5s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(20deg); }
.brand__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--latte); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mocha-2); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500; color: var(--mocha); position: relative; padding: 0.2em 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--caramel); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--espresso); }
.nav__links a:hover::after { width: 100%; }

/* 히어로 위 — 흰 테두리로 가독성 확보 */
.nav:not(.scrolled) .nav__links a,
.nav:not(.scrolled) .brand__name,
.nav:not(.scrolled) .brand__sub {
  text-shadow: 0 0 6px rgba(255,255,255,.9);
}
.nav:not(.scrolled) .nav__burger span {
  box-shadow: 0 0 3px rgba(255,255,255,.8);
}

.nav__burger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--espresso); transition: .35s var(--ease); }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__burger span:nth-child(3) { bottom: 0; }
.nav__burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; padding: 6rem 2rem 2.5rem;
  background: var(--foam); transform: translateY(-110%); transition: transform .5s var(--ease);
  z-index: 90; display: flex; flex-direction: column; gap: 1.4rem; box-shadow: 0 20px 50px -20px rgba(0,0,0,.2);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.5rem; color: var(--espresso); }
.mobile-menu .btn { align-self: flex-start; font-family: var(--font-body); font-size: 1rem; margin-top: 0.5rem; }
.mobile-menu .btn--solid { color: var(--foam); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { transform: scale(1.08); animation: heroZoom 9s var(--ease) forwards; }
.hero__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,35,29,.22) 0%, rgba(43,35,29,0) 28%),
    linear-gradient(0deg, rgba(43,28,18,.78) 0%, rgba(60,42,28,.30) 40%, rgba(43,35,29,0) 72%),
    radial-gradient(120% 80% at 80% 10%, rgba(181,135,85,.20), transparent 60%);
}
.hero__content {
  position: relative; z-index: 2; max-width: var(--maxw); width: 100%;
  margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem) clamp(3.5rem, 9vh, 7rem); color: var(--foam);
}
.hero__eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: #f0d9bd; margin-bottom: 1.3rem;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(2.9rem, 9vw, 6.6rem); line-height: 1.02; letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero__title span { display: block; }
.hero__title em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: #f3cf9f; }
.hero__lead {
  margin-top: 1.6rem; max-width: 33ch; font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(251,246,238,.92); line-height: 1.7;
}
.hero__actions { display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero .btn--line { color: var(--foam); border-color: rgba(251,246,238,.6); }
.hero .btn--line:hover { background: var(--foam); color: var(--espresso); border-color: var(--foam); }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }
.hero__chips li {
  font-size: 0.8rem; letter-spacing: 0.05em; padding: 0.45em 1.1em; border-radius: 100px;
  border: 1px solid rgba(251,246,238,.32); background: rgba(251,246,238,.08);
  backdrop-filter: blur(4px); color: #f4ead9;
}
.hero__scroll {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); bottom: clamp(3.5rem, 9vh, 7rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem; color: #f0d9bd;
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero__scrollline { width: 1px; height: 54px; background: linear-gradient(var(--latte), transparent); position: relative; overflow: hidden; }
.hero__scrollline::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #f3cf9f; animation: scrollDot 2.2s var(--ease) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 60%,100% { top: 110%; } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--espresso); color: var(--foam); padding: 1.15rem 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; letter-spacing: 0.02em; }
.marquee__track .sep { color: var(--latte); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) clamp(1.2rem, 4vw, 3rem); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.about__text h2 { margin-bottom: 1.6rem; }
.about__text p { color: var(--mocha); margin-bottom: 1.1rem; max-width: 46ch; }
.about__text strong { color: var(--espresso); font-weight: 600; }
.about__stats { display: flex; gap: 2.4rem; margin-top: 2.4rem; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; color: var(--caramel); }
.stat__num small { font-size: 1.3rem; }
.stat__label { font-size: 0.82rem; color: var(--mocha-2); letter-spacing: 0.03em; margin-top: 0.4rem; }

.about__media { position: relative; aspect-ratio: 1/1.05; }
.about__img { position: absolute; overflow: hidden; border-radius: 6px; box-shadow: 0 30px 60px -30px rgba(43,28,18,.4); }
.about__img--lg { width: 78%; height: 82%; top: 0; right: 0; }
.about__img--sm { width: 48%; height: 46%; bottom: 0; left: 0; border: 6px solid var(--cream); }
.about__cup {
  position: absolute; bottom: 6%; right: -2%; z-index: 3;
  background: var(--foam); color: var(--caramel); padding: 0.5em 1.1em; border-radius: 100px;
  font-size: 1.05rem; box-shadow: 0 12px 30px -14px rgba(0,0,0,.35); transform: rotate(-3deg);
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.section-head { text-align: center; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .kicker { display: block; }

/* =========================================================
   ROOMS
   ========================================================= */
.rooms { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--foam); }
.room {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem,5vw,4rem) clamp(1.2rem,4vw,3rem);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.room--rev { grid-template-columns: 0.85fr 1.15fr; }
.room--rev .room__gallery { order: 2; }

.room__gallery { position: relative; aspect-ratio: 1/0.92; }
.room__main { position: absolute; inset: 0; width: 86%; height: 100%; overflow: hidden; border-radius: 6px; box-shadow: 0 30px 60px -34px rgba(43,28,18,.45); }
.room--rev .room__main { right: 0; left: auto; }
.room__sub { position: absolute; overflow: hidden; border-radius: 6px; border: 6px solid var(--foam); box-shadow: 0 18px 40px -22px rgba(43,28,18,.4); }
.room__sub--a { width: 40%; height: 44%; bottom: -4%; right: 0; }
.room__sub--b { width: 30%; height: 32%; top: 6%; right: 6%; display: none; }
.room--rev .room__main { width: 86%; }
.room--rev .room__sub--a { right: auto; left: 0; }

.room__no { font-size: clamp(3.5rem, 7vw, 5.5rem); line-height: 0.8; color: var(--clay); display: block; opacity: 0.9; }
.room__name { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0.4rem; }
.room__tag { color: var(--caramel); font-size: 0.95rem; margin-top: 0.5rem; letter-spacing: 0.01em; }
.room__desc { color: var(--mocha); margin-top: 1.2rem; max-width: 42ch; }
.room__features { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.room__features li { position: relative; padding-left: 1.4rem; font-size: 0.95rem; color: var(--espresso); }
.room__features li::before { content: "—"; position: absolute; left: 0; color: var(--latte); }
.room__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.price { font-family: var(--font-display); }
.price__num { font-size: 2.1rem; color: var(--espresso); font-weight: 600; }
.price__unit { font-family: var(--font-body); font-size: 0.85rem; color: var(--mocha-2); margin-left: 0.3rem; }

/* =========================================================
   VIDEO TOUR
   ========================================================= */
.videotour { background: var(--espresso); padding: clamp(4rem, 9vw, 7rem) 0; }

.vt-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.7rem;
}

.vt-card {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 16/9; cursor: pointer;
  background: #1a1410;
}
.vt-card--large { aspect-ratio: 16/10; }

.vt-card video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.vt-card:hover video { transform: scale(1.04); }

.vt-card__label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 1.6rem 2rem;
  background: linear-gradient(0deg, rgba(43,28,18,.65) 0%, rgba(43,28,18,.12) 50%, transparent 75%);
  pointer-events: none;
}
.vt-card__room {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--foam); line-height: 1;
  letter-spacing: -0.01em;
}
.vt-card__room-detail {
  font-size: 60%; font-style: normal; opacity: 0.8; letter-spacing: 0.02em;
}
.vt-card__desc {
  font-size: 0.82rem; color: rgba(251,246,238,.68); margin-top: 0.35rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}

@media (max-width: 720px) {
  .vt-grid { grid-template-columns: 1fr; }
  .vt-card--large { aspect-ratio: 16/9; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) clamp(1.2rem,4vw,3rem); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.g-item { overflow: hidden; border-radius: 5px; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.g-item img { transition: transform .9s var(--ease), filter .6s var(--ease); }
.g-item::after { content: "+"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 2.4rem; color: var(--foam); background: rgba(43,28,18,.28); opacity: 0; transition: opacity .4s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item:nth-child(1), .g-item:nth-child(5), .g-item:nth-child(12) { aspect-ratio: 3/4; }
.gallery__note { text-align: center; margin-top: 2rem; color: var(--mocha-2); font-size: 0.9rem; }
.gallery__note a { color: var(--caramel); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities { background: var(--espresso); color: var(--foam); padding: clamp(5rem, 11vw, 9rem) 0; }
.section-head--light h2 { color: var(--foam); }
.section-head--light .kicker { color: var(--clay); }
.amenities__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(251,246,238,.12);
  border: 1px solid rgba(251,246,238,.12); border-radius: 8px; overflow: hidden;
}
.amenity { background: var(--espresso); padding: 2.2rem 1.8rem; transition: background .4s var(--ease); }
.amenity:hover { background: #352b22; }
.amenity__ico { font-size: 1.7rem; color: var(--clay); display: block; margin-bottom: 1rem; }
.amenity h4 { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; }
.amenity p { font-size: 0.88rem; color: rgba(251,246,238,.66); line-height: 1.65; }

/* =========================================================
   REVIEWS (무한 자동스크롤 carousel)
   ========================================================= */
.reviews { padding: clamp(5rem, 11vw, 9rem) 0; overflow: hidden; }
.reviews__score { font-family: var(--font-display); font-size: 1.2rem; color: var(--caramel); margin-top: 0.8rem; }
.reviews__score span { letter-spacing: 0.15em; }

.reviews__marquee { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.reviews__row { display: flex; gap: 1rem; width: max-content; }
.reviews__row--a { animation: revScrollL 100s linear infinite; }
.reviews__row--b { animation: revScrollR 100s linear infinite; }
.reviews__marquee:hover .reviews__row { animation-play-state: paused; }

@keyframes revScrollL { to { transform: translateX(-50%); } }
@keyframes revScrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.rev-card {
  flex: none; width: 300px;
  background: var(--foam); border: 1px solid var(--line);
  border-radius: 10px; padding: 1.5rem 1.7rem;
  position: relative;
}
.rev-card__stars { color: var(--latte); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 0.75rem; }
.rev-card__meta { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.7rem; flex-wrap: wrap; }
.rev-card__name { font-weight: 600; font-size: 0.9rem; color: var(--espresso); }
.rev-card__room {
  font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--caramel); background: rgba(160,106,61,.1);
  padding: 0.18em 0.65em; border-radius: 100px; flex-shrink: 0;
}
.rev-card__text {
  font-family: var(--font-serif); font-size: 0.93rem;
  line-height: 1.72; color: var(--mocha);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* =========================================================
   INFO
   ========================================================= */
.info { background: var(--cream-2); padding: clamp(4rem, 9vw, 7rem) 0; }
.info__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.info__col h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; margin-bottom: 1.6rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); }
.info__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.info__list li { color: var(--mocha); font-size: 0.97rem; line-height: 1.6; }
.info__list strong { display: inline-block; min-width: 5.5em; color: var(--espresso); font-weight: 600; margin-right: 0.5rem; }
.info__list--check li { position: relative; padding-left: 1.7rem; }
.info__list--check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--latte); font-weight: 700; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--foam); padding: clamp(5rem, 11vw, 9rem) 0; }

.faq__list {
  max-width: 760px; margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  display: flex; flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }

.faq__q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
  color: var(--espresso); cursor: pointer;
  transition: color .3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
  color: var(--caramel); flex-shrink: 0; line-height: 1;
  transition: transform .35s var(--ease), color .3s var(--ease);
}
.faq__item[open] .faq__q { color: var(--caramel); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__a {
  overflow: hidden;
  padding-bottom: 1.4rem;
}
.faq__a p {
  color: var(--mocha); font-size: 0.97rem; line-height: 1.8;
  max-width: 65ch;
}
.faq__a strong { color: var(--espresso); font-weight: 600; }

/* =========================================================
   LOCATION
   ========================================================= */
.location { background: var(--foam); padding: clamp(5rem, 11vw, 9rem) 0; }
.location__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.location__text h2 { margin-bottom: 1.4rem; }
.location__addr { font-family: var(--font-serif); font-size: 1.3rem; color: var(--espresso); margin-bottom: 1.6rem; }
.location__transit { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.location__transit li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--mocha); font-size: 0.97rem; }
.location__transit span { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--cream-2); color: var(--caramel); display: grid; place-items: center; font-size: 0.8rem; margin-top: 1px; }
.location__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.location__img { aspect-ratio: 4/3.4; overflow: hidden; border-radius: 8px; box-shadow: 0 30px 60px -34px rgba(43,28,18,.45); }
.location__img img { transition: transform 1s var(--ease); }
.location__img:hover img { transform: scale(1.05); }

/* =========================================================
   BOOKING
   ========================================================= */
.booking { position: relative; background: linear-gradient(160deg, var(--caramel), #6f4422 70%); color: var(--foam); padding: clamp(5rem, 11vw, 9rem) 0; overflow: hidden; }
.booking::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 20% 0%, rgba(243,207,159,.28), transparent 60%); }
.booking__inner { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); text-align: center; }
.booking h2 { color: var(--foam); }
.booking .kicker { color: #f3cf9f; }
.booking__lead { margin: 1.2rem auto 0; max-width: 40ch; color: rgba(251,246,238,.9); }
.booking__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; text-align: left; }
.bcard {
  position: relative; background: rgba(251,246,238,.1); border: 1px solid rgba(251,246,238,.22);
  border-radius: 10px; padding: 1.8rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 0.35rem;
  transition: transform .4s var(--ease), background .4s var(--ease); backdrop-filter: blur(6px);
}
.bcard:hover { transform: translateY(-5px); background: rgba(251,246,238,.18); }
.bcard--primary { background: var(--foam); color: var(--espresso); border-color: var(--foam); }
.bcard--primary:hover { background: var(--milk); }
.bcard__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.bcard__title { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; }
.bcard__desc { font-size: 0.85rem; opacity: 0.78; }
.bcard__arrow { position: absolute; top: 1.4rem; right: 1.5rem; font-size: 1.3rem; transition: transform .35s var(--ease); }
.bcard:hover .bcard__arrow { transform: translateX(5px); }
.booking__phone {
  margin: 1.6rem auto 0; display: inline-flex; align-items: baseline; gap: 0.7rem;
  padding: 0.7em 1.6em; border-radius: 100px; border: 1px solid rgba(251,246,238,.3);
  background: rgba(251,246,238,.08); backdrop-filter: blur(6px);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.booking__phone:hover { background: rgba(251,246,238,.18); transform: translateY(-2px); }
.booking__phone span { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: #f3cf9f; }
.booking__phone b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--foam); letter-spacing: 0.02em; }

.booking__price { margin-top: 2.4rem; font-family: var(--font-display); font-size: 1.2rem; color: #f6e7d3; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.booking__price b { color: var(--foam); font-weight: 600; }
.booking__price .dot { opacity: 0.5; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--espresso); color: var(--foam); padding: clamp(3.5rem,7vw,5rem) 0 1.8rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; }
.footer__brand .brand__name { font-family: var(--font-display); font-size: 1.7rem; }
.footer__brand p { color: rgba(251,246,238,.55); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; }
.footer__cols a, .footer__cols p { display: block; color: rgba(251,246,238,.72); font-size: 0.92rem; margin-bottom: 0.6rem; transition: color .3s var(--ease); }
.footer__cols a:hover { color: var(--foam); }
.footer__bottom { max-width: var(--maxw); margin: 2.5rem auto 0; padding: 1.6rem clamp(1.2rem,4vw,3rem) 0; border-top: 1px solid rgba(251,246,238,.14); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(251,246,238,.5); flex-wrap: wrap; gap: 0.8rem; }
.footer__bottom a:hover { color: var(--foam); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(28,22,17,.94); display: none; align-items: center; justify-content: center; padding: 4vw; opacity: 0; transition: opacity .35s var(--ease); }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 86vh; width: auto; height: auto; border-radius: 4px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 2rem; right: 2.2rem; background: none; border: none; color: var(--foam); font-size: 2.6rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .3s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(251,246,238,.12); border: 1px solid rgba(251,246,238,.3); color: var(--foam); width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; transition: background .3s; }
.lightbox__nav:hover { background: rgba(251,246,238,.25); }
.lightbox__prev { left: 2rem; }
.lightbox__next { right: 2rem; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media img { animation: none; transform: scale(1); }
  .marquee__track { animation: none; }
  * { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .about__grid, .room, .room--rev, .info__grid, .location__inner, .footer__inner { grid-template-columns: 1fr; }
  .room--rev .room__gallery { order: 0; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid, .booking__cards { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .room__gallery { max-width: 520px; margin: 0 auto 1rem; width: 100%; }
  .footer__inner { gap: 2rem; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:nth-child(1), .g-item:nth-child(5), .g-item:nth-child(12) { aspect-ratio: 4/3; }
  .amenities__grid { grid-template-columns: 1fr; }
  .about__stats { gap: 1.6rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__lead br { display: none; }
  .room__foot { flex-direction: column; align-items: flex-start; }
}
