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

:root {
  --forest: #1B4332;
  --forest-deep: #0E2B1F;
  --forest-mid: #2D6A4F;
  --forest-light: #52B788;
  --forest-pale: #95D5B2;
  --cream: #F8F6F0;
  --cream-warm: #F0EDE4;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: #E0DCD4;
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

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

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

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

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(248, 246, 240, 0.97);
  box-shadow: var(--shadow-sm);
}

.header-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.1rem;
  font-weight: 600;
  color: var(--forest);
}

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

.logo-light {
  color: var(--white);
}

.logo-light .logo-icon {
  color: var(--white);
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav a:not(.btn):hover {
  color: var(--forest);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

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

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 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(5px, -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(14, 43, 31, 0.45) 0%,
    rgba(27, 67, 50, 0.55) 50%,
    rgba(14, 43, 31, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-pale);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== INTRO STRIP ========== */
.intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition);
}

.intro-item:last-child {
  border-right: none;
}

.intro-item:hover {
  background: var(--cream);
}

.intro-item svg {
  color: var(--forest-light);
  flex-shrink: 0;
}

/* ========== SECTION COMMON ========== */
.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
}

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

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

.section-header .section-desc {
  margin: 0 auto;
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.room-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-img img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.room-info {
  padding: 28px;
}

.room-name {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.room-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}

.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--forest-light);
  border-radius: 50%;
}

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

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

.amenities-content .section-desc {
  margin-bottom: 40px;
}

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

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

.amenity-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}

.amenity-row strong {
  display: block;
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.amenity-row span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.amenities-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.amenities-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

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

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

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

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

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

.location-detail svg {
  color: var(--forest-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.location-detail span,
.location-detail a {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.location-detail a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}

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

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

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--forest);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-stat .stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-stat .stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.about-content .section-desc {
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-pale);
  line-height: 1;
}

.value-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.value-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 43, 31, 0.85) 0%, rgba(27, 67, 50, 0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-tag.light {
  color: var(--forest-pale);
}

.cta-content .section-title {
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

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

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

.contact-info .section-desc {
  margin-bottom: 36px;
}

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

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

.contact-detail svg {
  color: var(--forest-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.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: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(82, 183, 136, 0.1);
  border: 1px solid var(--forest-light);
  border-radius: var(--radius-sm);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 500;
}

.form-success svg {
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer-contact li:not(:last-child) {
  display: block;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

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

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

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

  .rooms-grid .room-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .amenities-layout,
  .location-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .about-visual img {
    height: 400px;
  }

  .about-stat {
    right: 16px;
    bottom: -16px;
  }

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

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

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

  .hero-headline {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .intro-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }

  .intro-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

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

  .rooms-grid .room-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .amenities-photo-grid {
    grid-template-columns: 1fr;
  }

  .amenities-photo-grid img:first-child {
    height: 280px;
  }

  .amenities-photo-grid img:last-child {
    height: 220px;
  }
}

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

  .hero-content {
    padding: 100px 16px 60px;
  }

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

  .intro-item {
    border-right: none !important;
  }

  .rooms, .amenities, .location, .about, .cta, .contact {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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