:root {
  --obsidian: #090909;
  --obsidian-soft: #131313;
  --bone: #eae2d8;
  --bone-soft: #d5cbbd;
  --oxblood: #541820;
  --oxblood-soft: #6b2430;
  --silver: #b7bcc1;
  --line: rgba(234, 226, 216, 0.18);
  --panel: rgba(17, 17, 17, 0.82);
  --shadow: rgba(0, 0, 0, 0.38);
  --shell-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(84, 24, 32, 0.18), transparent 22%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
  color: var(--bone);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.chloe-age-gate-active .site-header,
body.chloe-age-gate-active main,
body.chloe-age-gate-active footer {
  filter: blur(3px);
  opacity: 0.28;
  pointer-events: none;
}

body.chloe-age-gate-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(var(--shell-width), calc(100% - 38px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(var(--shell-width), calc(100% - 38px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.brand img {
  width: min(220px, 34vw);
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  color: rgba(234, 226, 216, 0.74);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--bone);
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--bone) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--bone);
  display: block;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.54);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 9, 9, 0.72),
    rgba(9, 9, 9, 0.26) 48%,
    rgba(9, 9, 9, 0.52)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 96px 0 82px;
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.about h2,
.experience h2,
.details h2,
.availability h2,
.request h2,
.connect h2,
.faq-header h2 {
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.96;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  margin: 18px 0 16px;
  max-width: 560px;
}

.hero-sub {
  color: var(--bone-soft);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-note {
  color: rgba(234, 226, 216, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--oxblood) 0%, #3d1117 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--bone);
  box-shadow: 0 18px 38px rgba(84, 24, 32, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--bone);
}

#chloe-age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(4px);
  transition: opacity 0.5s ease;
}

.chloe-age-gate-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 30px 26px 24px;
  border: 1px solid rgba(183, 188, 193, 0.24);
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.chloe-age-gate-panel::before,
.chloe-age-gate-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(183, 188, 193, 0.12);
  pointer-events: none;
}

.chloe-age-gate-mark {
  width: 28px;
  height: 28px;
  margin: 0 auto 18px;
  border: 1px solid rgba(183, 188, 193, 0.5);
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(183, 188, 193, 0.18);
}

.chloe-age-gate-mark::before {
  content: "";
  position: absolute;
  inset: 6px 7px 6px 9px;
  border-left: 1px solid rgba(234, 226, 216, 0.7);
  border-radius: 50%;
  transform: rotate(18deg);
}

.chloe-age-gate-label {
  color: var(--silver);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.chloe-age-gate-panel h1 {
  margin-bottom: 16px;
  color: var(--bone);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.chloe-age-gate-copy {
  max-width: 430px;
  margin: 0 auto 12px;
  color: rgba(234, 226, 216, 0.8);
  font-size: 0.96rem;
  line-height: 1.8;
}

.chloe-age-gate-sub {
  color: var(--bone-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.chloe-age-gate-note {
  color: var(--silver);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.chloe-age-gate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.chloe-age-gate-enter,
.chloe-age-gate-exit {
  min-width: 200px;
}

.chloe-age-gate-enter {
  background: linear-gradient(135deg, var(--oxblood) 0%, #3d1117 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--bone);
}

.chloe-age-gate-enter:hover,
.chloe-age-gate-enter:focus-visible {
  background: #621b27;
  border-color: rgba(255, 255, 255, 0.2);
}

.chloe-age-gate-exit {
  background: transparent;
  border-color: rgba(183, 188, 193, 0.5);
  color: var(--bone);
}

.chloe-age-gate-exit:hover,
.chloe-age-gate-exit:focus-visible {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(183, 188, 193, 0.8);
}

.chloe-age-gate-panel--exit {
  max-width: 480px;
}

.section {
  padding: 94px 0 18px;
}

.about-layout,
.request-layout,
.connect {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img,
.connect-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.25);
}

.about-copy h2,
.experience h2,
.details h2,
.availability h2,
.request h2,
.connect h2,
.faq-header h2 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 18px;
}

.about-copy .lead {
  color: var(--bone-soft);
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.about-copy p {
  color: rgba(234, 226, 216, 0.8);
  margin-bottom: 16px;
  font-size: 1.06rem;
}

.experience-header {
  margin-bottom: 26px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.experience-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.experience-card:hover,
.experience-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(183, 188, 193, 0.35);
}

.experience-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.card-large {
  grid-row: span 2;
}

.card-large img {
  height: 100%;
  min-height: 420px;
}

.card-copy {
  padding: 18px 18px 20px;
}

.card-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-copy p {
  color: rgba(234, 226, 216, 0.8);
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-areas:
    "feature cocktail elevator"
    "feature lounge lounge"
    "car bedroom bedroom";
  gap: 18px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 226, 216, 0.08);
  background: #101010;
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.06);
}

.gallery-item.feature {
  grid-area: feature;
  aspect-ratio: 3 / 4;
  min-height: 520px;
}

.gallery-item.cocktail {
  grid-area: cocktail;
  aspect-ratio: 4 / 3;
}

.gallery-item.elevator {
  grid-area: elevator;
  aspect-ratio: 3 / 4;
}

.gallery-item.lounge {
  grid-area: lounge;
  aspect-ratio: 5 / 2;
}

.gallery-item.car {
  grid-area: car;
  aspect-ratio: 4 / 3;
}

.gallery-item.bedroom {
  grid-area: bedroom;
  aspect-ratio: 4 / 3;
}

.gallery-item.feature img {
  object-position: center top;
}
.gallery-item.elevator img {
  object-position: center center;
}
.gallery-item.cocktail img {
  object-position: center center;
}
.gallery-item.lounge img {
  object-position: center center;
}
.gallery-item.bedroom img {
  object-position: center center;
}
.gallery-item.car img {
  object-position: center center;
}

.details-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: end;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.details-grid div {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 18px 18px 20px;
  min-height: 150px;
}

.details-grid span {
  display: block;
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.details-grid p {
  color: rgba(234, 226, 216, 0.82);
  line-height: 1.8;
}

.concept-note,
.availability-note {
  margin-top: 28px;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.availability-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 22px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.availability-card span {
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.availability-card p {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 2vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.availability-card small {
  color: rgba(234, 226, 216, 0.7);
  letter-spacing: 0.04em;
}

.request {
  padding-top: 100px;
}

.request-copy p {
  color: rgba(234, 226, 216, 0.8);
  max-width: 540px;
}

.request-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 24px;
}

.form-label {
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 10px;
  color: var(--bone-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  background: rgba(9, 9, 9, 0.7);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 12px 14px;
}

.full-width {
  grid-column: 1 / -1;
}

.request-form .button {
  margin-top: 20px;
}

.faq-section {
  padding-top: 100px;
}

.faq-header {
  margin-bottom: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--bone);
  padding: 22px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-question::after {
  content: "+";
  color: var(--silver);
  font-size: 1.8rem;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.26s ease,
    padding 0.26s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 22px 22px;
}

.faq-answer p {
  color: rgba(234, 226, 216, 0.8);
  line-height: 1.8;
}

.concierge-shell {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

.concierge-window {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 18px 22px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--oxblood-soft);
  box-shadow: 0 0 12px rgba(84, 24, 32, 0.8);
}

.chat-thread {
  display: grid;
  gap: 14px;
}

.bubble {
  max-width: 72%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  line-height: 1.7;
}

.bubble p {
  color: rgba(234, 226, 216, 0.86);
}

.bubble.guest {
  justify-self: start;
  background: rgba(255, 255, 255, 0.02);
}

.bubble.assistant {
  justify-self: end;
  background: rgba(84, 24, 32, 0.12);
}

.connect {
  align-items: end;
  gap: 36px;
}

.connect-visual img {
  height: 430px;
}

.connect-copy p {
  color: rgba(234, 226, 216, 0.8);
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-links a {
  color: var(--bone);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-brand-block img {
  width: 140px;
  height: auto;
}

.footer-name {
  font-family: "Iowan Old Style", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.footer-tag {
  color: rgba(234, 226, 216, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.footer-meta p {
  color: rgba(234, 226, 216, 0.74);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .about-layout,
  .request-layout,
  .connect,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-large {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feature feature"
      "cocktail elevator"
      "lounge lounge"
      "car bedroom";
  }

  .gallery-item.feature {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: rgba(9, 9, 9, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    display: none;
  }

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

  .nav-menu a {
    width: 100%;
    padding: 8px 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 64px;
  }

  .section {
    padding-top: 80px;
  }

  .experience-grid,
  .availability-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-large {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "cocktail"
      "elevator"
      "lounge"
      "car"
      "bedroom";
  }

  .gallery-item.feature,
  .gallery-item.cocktail,
  .gallery-item.elevator,
  .gallery-item.lounge,
  .gallery-item.car,
  .gallery-item.bedroom {
    grid-area: auto;
    aspect-ratio: 4 / 5;
    min-height: 360px;
  }

  .gallery-item.lounge {
    aspect-ratio: 4 / 3;
  }

  .connect-actions,
  .hero-actions,
  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
