/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta: #C4623A;
  --terracotta-dark: #A84E2C;
  --terracotta-light: #D48262;
  --sand: #F5EDE4;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD2;
  --charcoal: #2A2420;
  --charcoal-light: #5C5048;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  line-height: 1.7;
  font-size: 15px;
  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;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-full {
  width: 100%;
}

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

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42, 36, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  transition: color 0.4s;
}

.site-header.scrolled .logo {
  color: var(--charcoal);
}

.logo-mark {
  color: var(--white);
  transition: color 0.4s;
}

.site-header.scrolled .logo-mark {
  color: var(--terracotta);
}

/* NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

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

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

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

.site-header.scrolled .nav-links a {
  color: var(--charcoal-light);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--charcoal) !important;
  border-color: var(--white) !important;
}

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

.site-header.scrolled .nav-cta {
  border-color: var(--terracotta) !important;
  color: var(--terracotta) !important;
}

.site-header.scrolled .nav-cta:hover {
  background: var(--terracotta) !important;
  color: var(--white) !important;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
  background: var(--charcoal);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 36, 32, 0.35) 0%,
    rgba(42, 36, 32, 0.25) 50%,
    rgba(42, 36, 32, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s var(--ease-smooth) infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}

.intro-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.intro-item {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.intro-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.intro-value,
.intro-link {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: color 0.3s;
}

.intro-link:hover {
  color: var(--terracotta);
}

.divider {
  width: 1px;
  height: 32px;
  background: var(--sand-dark);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
}

.section:last-of-type {
  padding-bottom: 80px;
}

/* ===== ROOMS ===== */
.rooms {
  background: var(--sand-light);
}

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

.room-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42, 36, 32, 0.08);
}

.room-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6/4;
}

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

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.room-info {
  padding: 28px;
}

.room-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.room-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-amenities li {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  background: var(--sand-light);
  border-radius: 2px;
  color: var(--charcoal-light);
}

/* ===== EXPERIENCE ===== */
.experience {
  background: var(--white);
}

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

.experience-text .section-lead {
  margin-bottom: 48px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.experience-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.exp-img {
  overflow: hidden;
  border-radius: 4px;
}

.exp-img--1 {
  aspect-ratio: 5/6.5;
}

.exp-img--2 {
  aspect-ratio: 5/3.8;
  margin-top: 40px;
}

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

.exp-img:hover img {
  transform: scale(1.03);
}

/* ===== LOCATION ===== */
.location {
  background: var(--sand-light);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.location-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 4px;
  border: 1px solid var(--sand-dark);
  transition: all 0.4s var(--ease-out);
}

.location-card:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(42, 36, 32, 0.06);
}

.loc-icon {
  color: var(--terracotta);
  margin-bottom: 20px;
}

.location-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.location-card p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--charcoal);
  color: var(--white);
}

.testimonials .section-eyebrow {
  color: var(--terracotta-light);
}

.testimonials .section-title {
  color: var(--white);
}

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

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out);
}

.testimonial:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.quote-mark {
  color: var(--terracotta-light);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial blockquote {
  position: relative;
}

.testimonial p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

.testimonial-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

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

.contact-info .section-lead {
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--terracotta);
}

/* FORM */
.contact-form-wrap {
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}

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

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

.form-note {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  color: var(--charcoal);
}

.form-success svg {
  color: var(--terracotta);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  color: var(--terracotta-light);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

.footer-contact address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .experience-layout {
    gap: 48px;
  }

  .contact-layout {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 14px;
    color: var(--charcoal) !important;
  }

  .nav-links a:hover {
    color: var(--terracotta) !important;
  }

  .nav-cta {
    border-color: var(--terracotta) !important;
    color: var(--terracotta) !important;
  }

  .nav-cta:hover {
    background: var(--terracotta) !important;
    color: var(--white) !important;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .intro-grid {
    flex-direction: column;
    gap: 0;
  }

  .intro-item {
    padding: 20px 24px;
    width: 100%;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .section {
    padding: 80px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-images {
    order: -1;
  }

  .exp-img--1 {
    aspect-ratio: 4/3;
  }

  .exp-img--2 {
    aspect-ratio: 4/3;
    margin-top: 16px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .room-info {
    padding: 20px;
  }

  .testimonial {
    padding: 28px 24px;
  }
}
