:root {
  --black: #0d0b08;
  --espresso: #23180f;
  --brown: #4b321f;
  --gold: #b98a33;
  --soft-gold: #d8bd7b;
  --cream: #f8f1e4;
  --champagne: #efe2c4;
  --white: #fffaf1;
  --muted: #766a5b;
  --line: rgba(185, 138, 51, 0.28);
  --glass: rgba(13, 11, 8, 0.54);
  --shadow: 0 24px 70px rgba(13, 11, 8, 0.16);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

main,
section,
article,
div,
header,
footer {
  min-width: 0;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--black);
  animation: pageReveal 0.75s cubic-bezier(.7, 0, .2, 1) forwards;
}

@keyframes pageReveal {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(13, 11, 8, 0.42);
  border: 1px solid rgba(255, 250, 241, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.site-header.scrolled {
  top: 10px;
  background: rgba(13, 11, 8, 0.76);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--soft-gold);
  color: var(--soft-gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--soft-gold);
}

.site-nav .nav-book {
  margin-left: 4px;
  padding-inline: 18px;
  color: var(--black);
  background: var(--soft-gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 241, 0.3);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.page-hero {
  min-height: 72svh;
  padding: 160px 24px 90px;
  background-position: center;
  background-size: cover;
}

.cinematic-hero {
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: -4%;
  z-index: -3;
  width: 108%;
  height: 108%;
  opacity: 0;
  filter: saturate(1.04) contrast(1.04);
  animation: videoFadeIn 1.4s ease 0.2s forwards, luxuryDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-film,
.hero-film::after {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-film::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.28), transparent 24%, transparent 76%, rgba(13, 11, 8, 0.34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: soft-light;
}

.film-frame {
  position: absolute;
  inset: -6%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: cinematicFrames 18s infinite;
}

.frame-one {
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=90");
}

.frame-two {
  background-image: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=90");
  animation-delay: 6s;
}

.frame-three {
  background-image: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1800&q=90");
  animation-delay: 12s;
}

@keyframes cinematicFrames {
  0% { opacity: 0; transform: scale(1.08) translateX(0); }
  8% { opacity: 1; }
  32% { opacity: 1; }
  42% { opacity: 0; transform: scale(1.18) translateX(-1.8%); }
  100% { opacity: 0; transform: scale(1.08) translateX(0); }
}

@keyframes videoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes luxuryDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 0.8%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(216, 189, 123, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(13, 11, 8, 0.5), rgba(13, 11, 8, 0.46) 38%, rgba(13, 11, 8, 0.88));
  z-index: -1;
}

.about-hero { background-image: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=90"); }
.rooms-hero { background-image: url("https://images.unsplash.com/photo-1578683010236-d716f9a3f461?auto=format&fit=crop&w=1800&q=90"); }
.amenities-hero { background-image: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1800&q=90"); }
.gallery-hero { background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=90"); }
.booking-hero { background-image: url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1800&q=90"); }
.contact-hero { background-image: url("https://images.unsplash.com/photo-1551632436-cbf8dd35adfa?auto=format&fit=crop&w=1800&q=90"); }

.hero-content,
.page-hero-content {
  width: min(980px, calc(100% - 40px));
  text-align: center;
  padding-top: 70px;
}

.hero-content h1,
.page-hero-content h1 {
  margin: 0 auto 22px;
  max-width: 900px;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
}

.page-hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero-copy,
.page-hero-content p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.dining-band .eyebrow {
  color: var(--soft-gold);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.44);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--brown);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.text-link:hover::after {
  width: 54px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 250, 241, 0.75);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 10px auto 0;
  background: var(--soft-gold);
  animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-cream {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.9), rgba(239, 226, 196, 0.72)),
    var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.split {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.section-copy h2,
.section-heading h2,
.cta-panel h2,
.dining-content h2,
.form-intro h2,
.contact-details h2,
.map-placeholder h2 {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-copy p,
.form-intro p,
.contact-details p,
.map-placeholder p {
  color: var(--muted);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.section-dark .section-copy p,
.dining-band p,
.site-footer p {
  color: rgba(255, 250, 241, 0.72);
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.main-img,
.portrait-image img {
  min-height: 540px;
  border: 1px solid rgba(185, 138, 51, 0.25);
  box-shadow: var(--shadow);
}

.small-img {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 42%;
  height: 260px;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.room-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--white);
  border: 1px solid rgba(185, 138, 51, 0.18);
  box-shadow: 0 16px 40px rgba(13, 11, 8, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.room-card img {
  height: 300px;
}

.room-card div {
  padding: 26px;
}

.room-card h3,
.feature-list h3,
.testimonial h3,
.value-card h3,
.amenity-card h2,
.suite-row h2,
.experience-panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.room-card p,
.suite-row p,
.amenity-card p,
.value-card p,
.experience-panel p {
  color: var(--muted);
}

.room-meta {
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list div,
.experience-panel,
.value-card,
.contact-card {
  padding: 28px;
  border: 1px solid rgba(185, 138, 51, 0.2);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 16px 40px rgba(13, 11, 8, 0.08);
}

.feature-list span,
.value-card span,
.amenity-card span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.dining-band {
  min-height: 620px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.84), rgba(13, 11, 8, 0.28)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c3?auto=format&fit=crop&w=1800&q=90") center/cover fixed;
}

.dining-content {
  width: min(700px, 100%);
  margin-right: auto;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--espresso);
}

.gallery-item img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.gallery-item span,
.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 11, 8, 0.72));
}

.testimonials-section {
  background:
    linear-gradient(rgba(13, 11, 8, 0.92), rgba(13, 11, 8, 0.92)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.testimonial-slider {
  position: relative;
  width: min(920px, 100%);
  min-height: 260px;
  margin: 0 auto;
  padding: 46px;
  border: 1px solid rgba(216, 189, 123, 0.28);
  text-align: center;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeUp 0.6s ease both;
}

.testimonial p {
  margin: 0 auto 24px;
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.testimonial h3 {
  color: var(--soft-gold);
  font-size: 1.5rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 250, 241, 0.34);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--soft-gold);
}

.booking-cta {
  background: var(--cream);
}

.cta-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px);
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 48px;
  padding: 0 18px;
  color: var(--black);
  background: var(--soft-gold);
  box-shadow: 0 16px 40px rgba(13, 11, 8, 0.24);
  font-size: 0.84rem;
  font-weight: 900;
}

.values-grid,
.counter-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.check-list,
.feature-tags {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(185, 138, 51, 0.18);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list p {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(216, 189, 123, 0.24);
  color: rgba(255, 250, 241, 0.84);
}

.counter-grid {
  text-align: center;
}

.counter-grid div {
  padding: 32px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(13, 11, 8, 0.06);
}

.counter-grid strong {
  display: block;
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
}

.counter-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.room-list-section {
  display: grid;
  gap: 36px;
}

.suite-row {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(185, 138, 51, 0.2);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(13, 11, 8, 0.08);
  overflow: hidden;
}

.suite-row:nth-child(even) img {
  order: 2;
}

.suite-row img {
  height: 430px;
  min-height: 0;
}

.suite-row > div {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 11, 8, 0.96), rgba(48, 33, 22, 0.94)),
    var(--black);
}

.suite-row h2 {
  color: var(--white);
}

.suite-row > div > p:not(.room-meta) {
  color: rgba(255, 250, 241, 0.86);
  font-weight: 500;
}

.suite-row .room-meta {
  color: var(--soft-gold) !important;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.feature-tags li {
  padding: 8px 12px;
  color: var(--white);
  border: 1px solid rgba(216, 189, 123, 0.42);
  background: rgba(216, 189, 123, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.amenities-grid-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.amenity-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--espresso);
}

.amenity-card.wide {
  grid-column: 1 / -1;
  min-height: 520px;
}

.amenity-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.7s ease;
}

.amenity-video,
.intro-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  filter: saturate(1.02) contrast(1.04);
  animation: videoFadeIn 1.15s ease forwards;
  transition: transform 0.8s ease, filter 0.8s ease;
  will-change: transform;
}

.amenity-card:hover img,
.amenity-card:hover .amenity-video {
  transform: scale(1.06);
}

.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13, 11, 8, 0.08), rgba(13, 11, 8, 0.36) 46%, rgba(13, 11, 8, 0.86)),
    linear-gradient(90deg, rgba(13, 11, 8, 0.5), transparent 58%);
}

.amenity-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
}

.amenity-card p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.8);
}

.large-gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
}

.large-gallery .gallery-item {
  min-height: auto;
  margin: 0;
}

.large-gallery .tall {
  grid-row: span 2;
}

.large-gallery .wide {
  grid-column: span 2;
}

.gallery-video-intro {
  padding-bottom: 0;
  background: var(--cream);
}

.cinema-panel {
  position: relative;
  width: min(1180px, 100%);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  border: 1px solid rgba(185, 138, 51, 0.24);
  box-shadow: var(--shadow);
  background: var(--black);
}

.cinema-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13, 11, 8, 0.12), rgba(13, 11, 8, 0.82)),
    linear-gradient(90deg, rgba(13, 11, 8, 0.74), transparent 68%);
}

.cinema-panel:hover .intro-video {
  transform: scale(1.05);
}

.cinema-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: clamp(28px, 6vw, 64px);
}

.cinema-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.96;
}

.cinema-copy p:last-child {
  color: rgba(255, 250, 241, 0.78);
}

.form-section,
.contact-section {
  background: var(--cream);
}

.form-shell,
.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.luxury-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(185, 138, 51, 0.28);
  background: #fffdf8;
  color: var(--espresso);
  padding: 14px 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.luxury-form textarea {
  resize: vertical;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 138, 51, 0.12);
}

.luxury-form .full {
  grid-column: 1 / -1;
}

.contact-mini {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--brown);
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-mini span,
.contact-card p,
.site-footer p,
.site-footer a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 20px;
  box-shadow: none;
}

.contact-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card p {
  margin: 4px 0 0;
}

.map-placeholder {
  width: min(1120px, calc(100% - 40px));
  min-height: 420px;
  margin: 0 auto clamp(76px, 9vw, 130px);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(13, 11, 8, 0.82), rgba(75, 50, 31, 0.68)),
    repeating-linear-gradient(45deg, rgba(216, 189, 123, 0.18) 0 1px, transparent 1px 22px);
  color: var(--white);
}

.map-placeholder p {
  color: rgba(255, 250, 241, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 34px;
  padding: 58px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--soft-gold);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 250, 241, 0.75);
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(13, 11, 8, 0.94);
    border: 1px solid rgba(255, 250, 241, 0.16);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-book {
    margin: 8px 0 0;
    text-align: center;
  }

  .split,
  .split-reverse,
  .form-shell,
  .contact-layout,
  .suite-row,
  .suite-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .suite-row:nth-child(even) img {
    order: 0;
  }

  .suite-row {
    max-width: 680px;
  }

  .suite-row img {
    height: 420px;
  }

  .room-grid,
  .values-grid,
  .counter-grid,
  .gallery-grid,
  .amenities-grid-section,
  .large-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .large-gallery .tall,
  .large-gallery .wide,
  .amenity-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-video {
    inset: -8%;
    width: 116%;
    height: 116%;
  }

  .image-stack {
    min-height: auto;
    padding-bottom: 72px;
  }

  .small-img {
    right: 16px;
    width: 48%;
  }

  .dining-band {
    background-attachment: scroll;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section {
    padding: 64px 16px;
  }

  .page-hero {
    min-height: 68svh;
    padding: 128px 16px 64px;
  }

  .site-header {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .room-grid,
  .values-grid,
  .counter-grid,
  .gallery-grid,
  .amenities-grid-section,
  .large-gallery {
    grid-template-columns: 1fr;
  }

  .split,
  .split-reverse,
  .form-shell,
  .contact-layout,
  .suite-row,
  .suite-row:nth-child(even) {
    width: 100%;
    max-width: 520px;
    grid-template-columns: minmax(0, 1fr);
  }

  .suite-row {
    gap: 0;
    padding: 0;
  }

  .suite-row img {
    width: 100%;
    height: clamp(240px, 72vw, 360px);
    min-height: 0;
  }

  .suite-row > div {
    width: 100%;
  }

  .amenity-card,
  .amenity-card.wide,
  .gallery-item {
    min-height: clamp(280px, 78vw, 390px);
  }

  .large-gallery {
    grid-auto-rows: auto;
  }

  .form-shell,
  .contact-layout {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    min-height: 64px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 0.98rem;
    gap: 10px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .hero-content,
  .page-hero-content {
    width: min(100%, calc(100% - 28px));
  }

  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
  }

  .page-hero-content h1 {
    font-size: clamp(2.55rem, 13vw, 3.85rem);
  }

  .hero-copy,
  .page-hero-content p:last-child {
    font-size: 0.98rem;
  }

  .hero-actions,
  .luxury-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .room-grid,
  .values-grid,
  .counter-grid,
  .gallery-grid,
  .amenities-grid-section,
  .large-gallery {
    grid-template-columns: 1fr;
  }

  .main-img,
  .portrait-image img,
  .amenity-card,
  .gallery-item {
    min-height: 310px;
  }

  .suite-row {
    gap: 0;
    padding: 0;
  }

  .suite-row > div {
    padding: 24px 20px 30px;
    background:
      linear-gradient(135deg, rgba(13, 11, 8, 0.98), rgba(48, 33, 22, 0.96)),
      var(--black);
    border-top: 1px solid rgba(185, 138, 51, 0.22);
  }

  .suite-row h2 {
    color: var(--white);
  }

  .suite-row > div > p:not(.room-meta) {
    color: rgba(255, 250, 241, 0.86);
  }

  .small-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 78%;
    height: 210px;
    margin: -48px 0 0 auto;
  }

  .testimonial-slider,
  .cta-panel,
  .form-shell,
  .contact-layout,
  .cinema-copy {
    padding: 26px;
  }

  .cinema-panel {
    min-height: 430px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-width: 104px;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 16px);
    min-height: 58px;
    padding: 8px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 0.86rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .section {
    padding: 54px 12px;
  }

  .hero-content,
  .page-hero-content {
    width: 100%;
    padding-top: 56px;
  }

  .hero-content h1 {
    font-size: clamp(2.75rem, 15vw, 3.8rem);
  }

  .page-hero-content h1 {
    font-size: clamp(2.3rem, 12vw, 3.25rem);
  }

  .suite-row > div {
    padding: 22px 18px 28px;
  }

  .suite-row h2 {
    font-size: 2rem;
  }

  .feature-tags {
    gap: 8px;
  }

  .feature-tags li {
    max-width: 100%;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
    min-width: 96px;
    height: 46px;
    padding: 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
