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

:root {
  --midnight: #0a1628;
  --midnight-light: #132240;
  --mint: #b8d8d0;
  --mint-light: #d4e8e2;
  --mint-pale: #eaf3f0;
  --cream: #faf9f7;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #555555;
  --text-muted: #888888;
  --line: rgba(10, 22, 40, 0.08);
  --line-strong: rgba(10, 22, 40, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  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: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  font-size: 0.875rem;
  border-radius: 4px;
}
.skip-link:focus {
  top: 16px;
}

/* Label */
.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}
.btn-primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
}

.btn-ghost {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-ghost:hover {
  background: var(--midnight);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

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

.nav-logo-icon {
  color: var(--midnight);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--midnight);
  transition: width var(--transition);
}
.nav-menu a:hover {
  color: var(--midnight);
}
.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--midnight) !important;
  border-radius: 2px;
  transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--midnight) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--midnight);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ========== 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(10, 22, 40, 0.45) 0%,
    rgba(10, 22, 40, 0.35) 50%,
    rgba(10, 22, 40, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(24px);
}

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

.hero-greeting {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 40px;
}

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

.hero-actions .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.hero-actions .btn-ghost:hover {
  background: var(--white);
  color: var(--midnight);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.6s ease forwards;
  opacity: 0;
}
.hero-scroll svg {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========== INTRO ========== */
.intro {
  padding: 120px 0;
}

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

.intro-text .label {
  margin-bottom: 20px;
}

.intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--midnight);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.intro-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.intro-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.intro-image:hover img {
  transform: scale(1.03);
}

/* ========== DIVIDER ========== */
.divider {
  padding: 0;
}
.divider .container {
  padding: 0 24px;
}
.divider-line {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.features-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

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

.feature-card {
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--midnight);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ========== ROOMS ========== */
.rooms {
  padding: 120px 0;
  background: var(--cream);
}

.rooms-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.rooms-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.rooms-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.room-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.room-card:hover {
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.08);
}

.room-image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-info {
  padding: 32px 28px;
}

.room-info h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 12px;
}

.room-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.room-amenities li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.room-amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 1px;
  background: var(--mint);
}

.rooms-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.rooms-cta .btn-ghost {
  border-color: var(--line-strong);
  color: var(--text-light);
}
.rooms-cta .btn-ghost:hover {
  border-color: var(--midnight);
  color: var(--midnight);
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

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

.gallery-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 8; }
.gallery-item:nth-child(3) { grid-column: 8 / 11; }
.gallery-item:nth-child(4) { grid-column: 11 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(5) { grid-column: 5 / 11; }

/* ========== LOCATION ========== */
.location {
  padding: 120px 0;
  background: var(--cream);
}

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

.location-text .label {
  margin-bottom: 20px;
}

.location-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--midnight);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.location-address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.location-text > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--midnight);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: border-color var(--transition);
}
.location-contact a:hover {
  border-color: var(--midnight);
}
.location-contact svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.location-map {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mint-pale);
}
.location-map iframe {
  width: 100%;
  height: 100%;
}

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

.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.contact-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--midnight);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.form-note a {
  color: var(--midnight);
  border-bottom: 1px solid var(--line-strong);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card:last-child {
  border-bottom: none;
}

.contact-card h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.contact-card a {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color var(--transition);
}
.contact-card a:hover {
  border-color: var(--midnight);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ========== FORM SUCCESS ========== */
.form-success {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--midnight);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.2);
}
.form-success.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.form-success svg {
  color: var(--mint);
  flex-shrink: 0;
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid .room-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; }
  .gallery-item:nth-child(3) { grid-column: 1 / 2; }
  .gallery-item:nth-child(4) { grid-column: 2 / 3; }
  .gallery-item:nth-child(5) { grid-column: 1 / 3; }
  .gallery-item { aspect-ratio: 3/2; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 0;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a {
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
    text-align: center;
  }
  .nav-cta {
    margin-top: 16px;
    border: 1px solid var(--midnight) !important;
  }

  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intro-image {
    aspect-ratio: 3/2;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feature-card {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-card:first-child {
    border-top: 1px solid var(--line);
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .rooms-grid .room-card:last-child {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-item:nth-child(1) {
    grid-column: auto;
  }
  .gallery-item {
    aspect-ratio: 3/2;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .rooms-cta {
    flex-direction: column;
    align-items: center;
  }
  .rooms-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .intro,
  .rooms,
  .location,
  .contact {
    padding: 80px 0;
  }
  .features,
  .gallery {
    padding: 72px 0;
  }
}
