/* ========================================
   The West Wing Guesthouse — Stylesheet
   Premium Dark Luxury · Terracotta + Sand
======================================== */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #0D0A06;
  --bg-primary: #1A1209;
  --bg-card: #21180D;
  --bg-elevated: #2A1F12;
  
  --terracotta: #B85C38;
  --terracotta-light: #D4845E;
  --terracotta-dark: #8B4226;
  
  --sand: #C8A882;
  --sand-light: #E0C9A8;
  --sand-muted: #9A8468;
  
  --gold: #C9A84C;
  --gold-light: #E0C068;
  --gold-dark: #A07830;
  
  --text-primary: #F5EDE0;
  --text-secondary: #B8A898;
  --text-muted: #7A6A5A;
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Grain Overlay ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ─── Typography ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--sand-light);
  border: 1px solid rgba(200, 168, 130, 0.35);
}

.btn-outline:hover {
  border-color: var(--sand);
  background: rgba(200, 168, 130, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 0.72rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(13, 10, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep) !important;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  transition: all 0.4s var(--ease-out) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 10, 6, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: var(--gold);
}

.mobile-menu-cta {
  font-family: var(--font-body);
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: 12px;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  border-radius: 4px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mobile-menu-contact a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.mobile-menu-contact a:hover {
  color: var(--sand);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 10, 6, 0.92) 0%,
    rgba(13, 10, 6, 0.75) 45%,
    rgba(13, 10, 6, 0.3) 70%,
    rgba(13, 10, 6, 0.15) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero aside */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-aside-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5.2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-aside-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-aside-image:hover img {
  transform: scale(1.04);
}

.hero-aside-text {
  padding: 24px;
  background: rgba(33, 24, 13, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-aside-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-aside-text p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sand-light);
  line-height: 1.6;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Intro ─── */
.intro {
  padding: 120px 0;
  background: var(--bg-primary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.intro-text p:first-of-type {
  font-size: 1.08rem;
  color: var(--sand-light);
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 6/7;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.intro-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  z-index: -1;
}

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.25), transparent);
}

.divider-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── Rooms ─── */
.rooms {
  padding: 120px 0;
  background: var(--bg-deep);
}

.rooms-header {
  text-align: center;
  margin-bottom: 72px;
}

.rooms-header .section-subtitle {
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.5s var(--ease-out);
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.room-card:hover .room-card-image img {
  transform: scale(1.06);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 6, 0.5) 0%, transparent 50%);
}

.room-card-content {
  padding: 28px;
}

.room-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.room-card-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 5px 12px;
  border-radius: 2px;
}

.room-card-capacity {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.room-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.room-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.room-card-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.room-card-amenities li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-card-amenities li svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Experience ─── */
.experience {
  padding: 120px 0;
  background: var(--bg-primary);
}

.experience-header {
  text-align: center;
  margin-bottom: 72px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.exp-item {
  text-align: center;
  padding: 36px 20px;
  background: rgba(33, 24, 13, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 12px;
  transition: all 0.4s var(--ease-out);
}

.exp-item:hover {
  background: rgba(33, 24, 13, 0.7);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.exp-item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
  opacity: 0.85;
}

.exp-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.exp-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 120px 0;
  background: var(--bg-deep);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  padding: 36px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card-quote {
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.testimonial-card-quote svg {
  width: 36px;
  height: 36px;
}

.testimonial-card-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sand-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-card-author {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.testimonial-card-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Gallery ─── */
.gallery {
  padding: 120px 0 0;
  background: var(--bg-primary);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

/* ─── Reserve / CTA ─── */
.reserve {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.reserve-bg {
  position: absolute;
  inset: 0;
}

.reserve-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reserve-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 10, 6, 0.95) 0%, rgba(13, 10, 6, 0.82) 60%, rgba(13, 10, 6, 0.6) 100%);
}

.reserve-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reserve-title {
  margin-bottom: 20px;
}

.reserve-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}

.reserve-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reserve-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--sand);
  transition: color 0.3s;
}

.reserve-contact-item:hover {
  color: var(--sand-light);
}

.reserve-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Form */
.reserve-form-wrap {
  background: rgba(33, 24, 13, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.reserve-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(13, 10, 6, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(13, 10, 6, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  gap: 16px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.form-success p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sand-light);
  font-style: italic;
}

/* ─── Find Us ─── */
.find-us {
  padding: 120px 0;
  background: var(--bg-deep);
}

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.find-us-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.find-us-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  color: var(--gold);
  flex-shrink: 0;
}

.find-us-detail-icon svg {
  width: 20px;
  height: 20px;
}

.find-us-detail-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.find-us-detail-value {
  font-size: 0.95rem;
  color: var(--sand);
  transition: color 0.3s;
}

.find-us-detail-value:hover {
  color: var(--sand-light);
}

.find-us-map {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.find-us-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.find-us-visual img {
  width: 100%;
  aspect-ratio: 6/7;
  object-fit: cover;
  border-radius: 12px;
}

.find-us-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(13, 10, 6, 0.95) 0%, transparent 100%);
  border-radius: 0 0 12px 12px;
}

.find-us-visual-overlay blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sand-light);
  line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
  padding: 72px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.7;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
  cursor: default;
}

.footer-col a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Reveal Animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-aside {
    display: none;
  }
  
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reserve-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .find-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-inner {
    padding: 100px 24px 80px;
  }
  
  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    justify-content: center;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .reserve-form-wrap {
    padding: 28px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .intro,
  .rooms,
  .experience,
  .testimonials,
  .gallery,
  .reserve,
  .find-us {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-inner {
    padding: 90px 16px 60px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .room-card-amenities {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 28px;
  }
}
