/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #2C2420;
  background: #FDF8F4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8613C;
  margin-bottom: 12px;
  font-weight: 400;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2C2420;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6B5E57;
  max-width: 560px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #B8613C;
  color: #fff;
  border: 1px solid #B8613C;
}
.btn-primary:hover { background: #9E5030; border-color: #9E5030; }
.btn-ghost {
  background: transparent;
  color: #2C2420;
  border: 1px solid rgba(44,36,32,0.2);
}
.btn-ghost:hover { border-color: #B8613C; color: #B8613C; }
.btn-large { padding: 18px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,36,32,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(44,36,32,0.06); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #2C2420;
}
.nav-logo-icon { color: #B8613C; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B5E57;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B8613C;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #B8613C; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  color: #B8613C !important;
  border: 1px solid #B8613C;
  padding: 8px 18px;
  border-radius: 4px;
  transition: all 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #B8613C; color: #fff !important; }

/* Mobile Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  width: 20px; height: 1px; background: #2C2420; transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(253,248,244,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #2C2420;
  padding: 8px;
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #2C2420;
  padding: 12px 0;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: #B8613C; }
.mobile-menu-divider {
  width: 40px;
  height: 1px;
  background: rgba(44,36,32,0.12);
  margin: 16px 0;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #B8613C;
  letter-spacing: 0.04em;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,97,60,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(210,160,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(140,60,40,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #FDF8F4 0%, #F5E6D8 50%, #E8C4A8 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B8613C;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: #2C2420;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: #B8613C;
}
.hero-sub {
  font-size: 1.05rem;
  color: #6B5E57;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A8578;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #B8613C, 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 ── */
.intro { padding: 120px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .section-eyebrow { margin-bottom: 16px; }
.intro-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
}
.intro-body {
  color: #6B5E57;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

/* ── Rooms ── */
.rooms {
  padding: 100px 0;
  background: #F7EDE4;
}
.rooms .container { text-align: center; }
.rooms .section-subtitle { margin: 0 auto 60px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.room-card {
  background: #FDF8F4;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(44,36,32,0.08); }
.room-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.room-card-body { padding: 28px; text-align: left; }
.room-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.room-card-desc {
  font-size: 0.88rem;
  color: #6B5E57;
  line-height: 1.75;
  margin-bottom: 20px;
}
.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-features li {
  font-size: 0.82rem;
  color: #9A8578;
  padding-left: 16px;
  position: relative;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 1px;
  background: #B8613C;
}
.rooms-note {
  font-size: 0.85rem;
  color: #9A8578;
  font-style: italic;
}

/* ── Amenities ── */
.amenities { padding: 120px 0; }
.amenities-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.amenities-text .section-subtitle { margin-bottom: 48px; }
.amenity-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(44,36,32,0.08);
}
.amenity-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,97,60,0.25);
  border-radius: 50%;
  color: #B8613C;
  margin-top: 2px;
}
.amenity-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #2C2420;
}
.amenity-item p {
  font-size: 0.88rem;
  color: #6B5E57;
  line-height: 1.7;
}

/* ── Location ── */
.location {
  padding: 100px 0;
  background: #F7EDE4;
}
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-body {
  font-size: 0.95rem;
  color: #6B5E57;
  line-height: 1.85;
  margin-bottom: 40px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-detail { display: flex; flex-direction: column; gap: 6px; }
.location-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8613C;
  font-weight: 400;
}
.location-detail-value {
  font-size: 0.95rem;
  color: #2C2420;
  line-height: 1.6;
}
.location-link { color: #B8613C; transition: color 0.2s; }
.location-link:hover { color: #9E5030; }
.location-map {
  height: 420px;
  background: #E8D8CA;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder {
  text-align: center;
  color: #B8613C;
}
.map-pin { margin: 0 auto 16px; }
.map-placeholder p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6B5E57;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #2C2420 0%, #3D2E26 100%);
  color: #fff;
}
.cta .section-eyebrow { color: #D4A080; margin-bottom: 16px; }
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.85;
}
.cta-actions { display: flex; justify-content: center; }
.cta .btn-primary {
  background: #B8613C;
  border-color: #B8613C;
}
.cta .btn-primary:hover { background: #C9724D; border-color: #C9724D; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-body {
  font-size: 0.95rem;
  color: #6B5E57;
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,97,60,0.2);
  border-radius: 50%;
  color: #B8613C;
  flex-shrink: 0;
}
.contact-method-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8613C;
  margin-bottom: 4px;
  display: block;
}
.contact-method-value {
  font-size: 0.92rem;
  color: #2C2420;
  line-height: 1.6;
}
.contact-form-wrapper {
  background: #F7EDE4;
  border-radius: 4px;
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B5E57;
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(44,36,32,0.12);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #2C2420;
  background: #FDF8F4;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #B8613C; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A898; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(184,97,60,0.08);
  border-radius: 4px;
  color: #B8613C;
  font-size: 0.9rem;
  margin-top: 8px;
}
.form-success.show { display: flex; }

/* ── Footer ── */
.footer {
  padding: 60px 0 40px;
  background: #2C2420;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo svg { color: #B8613C; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; }
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: #B8613C; }
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-phone:hover { color: #B8613C; }
.footer-phone svg { color: #B8613C; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.78rem;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .intro-grid,
  .amenities-layout,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .intro-image { order: -1; }
  .location-map { height: 300px; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .rooms, .amenities, .location, .contact, .cta { padding: 80px 0; }
  .intro { padding: 80px 0; }
  .contact-form-wrapper { padding: 24px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .amenities-text .section-subtitle { margin-bottom: 24px; }
}
