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

:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #3A3A3A;
  --charcoal-muted: #6B6B6B;
  --coral: #E8735A;
  --coral-light: #F09080;
  --coral-pale: #FDF0ED;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #F7F5F3;
  --line: #E8E4E0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: #d4614a;
  border-color: #d4614a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 115, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}

.btn--outline:hover {
  background: var(--coral);
  color: var(--white);
}

.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.1);
}

.btn--full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.02em;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--coral);
  border-radius: 2px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width var(--transition);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
  transform-origin: center;
}

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

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

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

.nav-overlay {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: 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(45,45,45,0.45) 0%,
    rgba(45,45,45,0.55) 50%,
    rgba(45,45,45,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== Divider ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

/* ===== Section Shared ===== */
.section-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-muted);
  max-width: 560px;
}

/* ===== Rooms ===== */
.rooms {
  padding: 7rem 0 5rem;
}

.rooms .container:first-child {
  margin-bottom: 4rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.room-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: all var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.room-card-img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-card-body {
  padding: 2rem;
}

.room-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.room-card-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-muted);
  margin-bottom: 1.25rem;
}

.room-card-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.room-card-amenities li {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--charcoal-muted);
  padding-left: 1rem;
  position: relative;
}

.room-card-amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 1px;
  background: var(--coral);
}

.rooms-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  border-radius: 3px;
  border: 1px solid var(--line);
}

.rooms-cta-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.rooms-cta .btn {
  margin: 0 auto;
}

/* ===== Experience ===== */
.experience {
  padding: 5rem 0 7rem;
}

.experience .container:first-child {
  margin-bottom: 4rem;
  text-align: center;
}

.experience .section-lead {
  margin: 0 auto;
}

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

.exp-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all var(--transition);
}

.exp-card:hover {
  border-color: var(--coral);
  background: var(--coral-pale);
}

.exp-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--coral);
  transition: all var(--transition);
}

.exp-card:hover .exp-card-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.exp-card-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-muted);
}

/* ===== Location ===== */
.location {
  padding: 5rem 0 7rem;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-muted);
  margin-bottom: 2.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.location-detail-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}

.location-detail-value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
}

.location-detail-value a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  transition: all var(--transition);
}

.location-detail-value a:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.location-map {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}

/* ===== Contact ===== */
.contact {
  padding: 5rem 0 7rem;
  background: var(--cream);
}

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

.contact-desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-muted);
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
  font-size: 0.9375rem;
  font-weight: 300;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
  transition: all var(--transition);
}

.contact-method:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-method:hover {
  color: var(--coral);
}

.contact-method svg {
  flex-shrink: 0;
  color: var(--coral);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 115, 90, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--charcoal-muted);
  opacity: 0.6;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #f0faf4;
  border: 1px solid #c3e6cb;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a7a42;
}

.form-success svg {
  flex-shrink: 0;
  color: #1a7a42;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--coral-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    padding: 6rem 2.5rem 2.5rem;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav a {
    font-size: 1rem;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-form-wrap {
    padding: 1.75rem;
  }
}

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

  .hero {
    min-height: 90vh;
  }

  .rooms,
  .experience,
  .location,
  .contact {
    padding: 4rem 0;
  }
}
