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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOut: cubic-bezier(0.65, 0, 0.35, 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(--slate-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--slate-200);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-800);
}

.logo-mark {
  color: var(--teal-600);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

.nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-600);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav a:not(.nav-cta):hover {
  color: var(--teal-700);
}

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

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--white) !important;
  background: var(--teal-600);
  padding: 9px 20px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
}

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

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE NAV ─── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.mobile-nav {
  position: absolute;
  top: 72px;
  right: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--slate-200);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-700);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-100);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--teal-700);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--slate-200);
  margin: 8px 0;
}

.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--teal-600);
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate-500);
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 300;
}

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

.hero-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 400;
}

.hero-detail svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 720/900;
  background: var(--slate-100);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--teal-600);
  z-index: -1;
  opacity: 0.08;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

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

.btn-primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.btn-ghost:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ─── DIVIDER ─── */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate-500);
  font-weight: 300;
}

/* ─── ROOMS ─── */
.rooms {
  padding: 100px 0;
  background: var(--white);
}

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

.room-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  background: var(--white);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.room-card-image {
  aspect-ratio: 600/420;
  overflow: hidden;
  background: var(--slate-100);
}

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

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

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

.room-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.room-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
  margin-bottom: 20px;
  font-weight: 300;
}

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

.room-card-amenities li {
  font-size: 13px;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
}

.room-card-amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-500);
}

/* ─── EXPERIENCE ─── */
.experience {
  padding: 100px 0;
  background: var(--slate-50);
}

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

.experience-content {
  max-width: 520px;
}

.experience-content .section-subtitle {
  margin-bottom: 40px;
}

.amenities-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  flex-shrink: 0;
}

.amenity h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.amenity p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  font-weight: 300;
}

.experience-image {
  position: relative;
}

.experience-image-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 620/780;
  background: var(--slate-100);
}

.experience-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-image-small {
  position: absolute;
  bottom: -32px;
  left: -32px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 400/280;
  border: 4px solid var(--white);
  background: var(--slate-100);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.experience-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── LOCATION ─── */
.location {
  padding: 100px 0;
  background: var(--white);
}

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

.location-content {
  max-width: 680px;
}

.location-content .section-subtitle {
  margin-bottom: 36px;
}

.location-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.location-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--slate-50);
  border-radius: 12px;
  border: 1px solid var(--slate-100);
}

.location-highlight-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-700);
}

.location-highlight-dist {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-600);
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
}

.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 28px;
}

.location-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.location-card address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: 20px;
}

.location-card-divider {
  height: 1px;
  background: var(--slate-200);
  margin: 20px 0;
}

.contact-link {
  font-size: 14px;
  color: var(--slate-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--teal-600);
}

.location-card-cta {
  text-align: center;
}

.location-card-cta p {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 20px;
  line-height: 1.7;
}

.location-card-cta .btn {
  margin-bottom: 12px;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: var(--slate-900);
  color: var(--white);
}

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

.contact-left {
  max-width: 480px;
}

.contact-left .section-eyebrow {
  color: var(--teal-400, #2dd4bf);
}

.contact-left .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-left .section-subtitle {
  color: var(--slate-400);
  margin-bottom: 40px;
}

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

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400, #2dd4bf);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
}

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

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

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

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-400);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--slate-800);
  color: var(--white);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 10px;
  color: var(--teal-300, #5eead4);
  font-size: 14px;
  font-weight: 400;
}

.form-success svg {
  color: var(--teal-400, #2dd4bf);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
  color: var(--slate-400);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

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

.footer-brand p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  font-size: 13px;
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--slate-600);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .experience-inner {
    gap: 48px;
  }

  .location-inner {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }

  .contact-inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .location-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrap {
    aspect-ratio: 4/3;
  }

  .hero-details {
    flex-direction: column;
    gap: 12px;
  }

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

  .experience-image {
    order: -1;
  }

  .experience-image-main {
    aspect-ratio: 4/3;
  }

  .experience-image-small {
    display: none;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

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

  .contact-right {
    padding: 24px;
  }
}
