/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #334155;
  background: #fafaf9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ── Typography ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  color: #1e293b;
}
p { color: #475569; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ── Utility ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  color: #64748b;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #0d9488;
  color: #fff;
}
.btn-primary:hover { background: #0f766e; transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,249,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.logo-icon { color: #0d9488; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-size: 0.875rem;
  color: #64748b;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: #0d9488; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0d9488;
  transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #334155;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.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(15,23,42,0.45) 0%,
    rgba(15,23,42,0.55) 50%,
    rgba(15,23,42,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: #99f6e4; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  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.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  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); }
}

/* ── Intro Strip ── */
.intro-strip {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
}
.intro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
  padding: 28px 32px;
}
.intro-item svg { color: #0d9488; flex-shrink: 0; }
.intro-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* ── Rooms ── */
.rooms { background: #fafaf9; }
.rooms .container { text-align: center; }
.rooms .section-subtitle { margin: 0 auto 60px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.room-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.room-body { padding: 28px; text-align: left; }
.room-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.room-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #64748b;
}
.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-features li {
  font-size: 0.85rem;
  color: #475569;
  padding-left: 20px;
  position: relative;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d9488;
  opacity: 0.6;
}
.rooms-note {
  font-size: 0.9rem;
  color: #94a3b8;
}
.rooms-note a { color: #0d9488; text-decoration: underline; text-underline-offset: 3px; }
.rooms-note a:hover { color: #0f766e; }

/* ── About ── */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 520px;
}
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 520px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-img-secondary img { width: 100%; height: 300px; object-fit: cover; }
.about-content { max-width: 480px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
}
.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-signature span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1e293b;
}
.about-signature em {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: normal;
}

/* ── Location ── */
.location { background: #fafaf9; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-content .section-title { margin-bottom: 20px; }
.location-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #475569;
}
.location-details {
  margin: 24px 0;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.location-details p {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: #475569;
}
.location-details strong { color: #1e293b; }
.location-phone a { color: #0d9488; font-weight: 400; }
.location-phone a:hover { color: #0f766e; }
.location-hours {
  margin-top: 20px;
  padding: 16px 20px;
  background: #f0fdfa;
  border-radius: 10px;
  border: 1px solid rgba(13,148,136,0.12);
}
.location-hours p { font-size: 0.85rem; color: #475569; margin-bottom: 4px; }
.location-hours strong { color: #0d9488; }
.location-map { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

/* ── Contact ── */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 32px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #475569;
  transition: color 0.2s;
}
.contact-method:hover { color: #0d9488; }
.contact-method svg { color: #0d9488; flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: #fafaf9;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}
.form-group .optional {
  text-transform: none;
  font-weight: 300;
  color: #94a3b8;
  font-size: 0.75rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #cbd5e1; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #f0fdfa;
  border: 1px solid rgba(13,148,136,0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #0d9488;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  background: #1e293b;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand .logo { color: #fff; justify-content: center; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 4px; }
.footer-brand a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-brand a:hover { color: #99f6e4; }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #99f6e4; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .location-grid,
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,250,249,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 360px; }
  .about-img-main img { height: 360px; }
  .about-img-secondary { right: 0; bottom: -20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .intro-strip-inner { flex-direction: column; }
  .intro-divider { display: none; }
  .intro-item { padding: 16px 24px; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
}
