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

:root {
  --emerald-deep: #065f46;
  --emerald: #059669;
  --emerald-light: #10b981;
  --emerald-pale: #d1fae5;
  --cream: #fef9f0;
  --cream-dark: #fdf0db;
  --sand: #d4a373;
  --sand-light: #e8c9a0;
  --warm-white: #ffffff;
  --text-dark: #1a2e2a;
  --text-mid: #3d5a53;
  --text-light: #6b8f86;
  --shadow-sm: 0 1px 3px rgba(6, 95, 70, 0.08);
  --shadow-md: 0 4px 16px rgba(6, 95, 70, 0.10);
  --shadow-lg: 0 8px 32px rgba(6, 95, 70, 0.12);
  --shadow-xl: 0 16px 48px rgba(6, 95, 70, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', 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-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 249, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--emerald-deep);
  letter-spacing: -0.01em;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.primary-nav a:hover {
  color: var(--emerald-deep);
  background: var(--emerald-pale);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--emerald-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.938rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-deep);
  color: #fff;
  border-color: var(--emerald-deep);
}

.btn-primary:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--emerald-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--emerald-deep);
  border-color: var(--emerald-deep);
}

.btn-outline-light:hover {
  background: var(--emerald-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--sand);
  color: var(--text-dark);
  border-color: var(--sand);
}

.btn-accent:hover {
  background: var(--sand-light);
  border-color: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.hero-shape--1 {
  width: 600px;
  height: 600px;
  background: var(--emerald);
  top: -200px;
  right: -100px;
}

.hero-shape--2 {
  width: 400px;
  height: 400px;
  background: var(--sand);
  bottom: -100px;
  left: -100px;
}

.hero-shape--3 {
  width: 200px;
  height: 200px;
  background: var(--emerald-light);
  top: 40%;
  left: 30%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--emerald-pale);
  color: var(--emerald-deep);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.813rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  color: var(--emerald);
  font-style: italic;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.hero-image {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero-img-accent {
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.floating-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-text {
  display: flex;
  flex-direction: column;
}

.floating-text strong {
  font-size: 0.875rem;
  color: var(--text-dark);
}

.floating-text span {
  font-size: 0.813rem;
  color: var(--text-light);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

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

.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--emerald-pale);
  color: var(--emerald-deep);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.063rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== INTRO ===== */
.intro {
  background: var(--warm-white);
}

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

.intro-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.063rem;
}

.intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

.room-img {
  overflow: hidden;
  height: 220px;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-body {
  padding: 28px;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.room-body p {
  color: var(--text-mid);
  font-size: 0.938rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-features li {
  padding: 4px 12px;
  background: var(--emerald-pale);
  color: var(--emerald-deep);
  border-radius: 100px;
  font-size: 0.813rem;
  font-weight: 600;
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--warm-white);
}

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

.amenity-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.amenity-card:hover {
  border-color: var(--emerald-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.amenity-card p {
  color: var(--text-mid);
  font-size: 0.938rem;
  line-height: 1.7;
}

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

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

.location-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.location-desc {
  color: var(--text-mid);
  font-size: 1.063rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.detail-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.detail-item span,
.detail-item a {
  font-size: 0.938rem;
  color: var(--text-mid);
}

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

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

/* ===== GALLERY ===== */
.gallery {
  background: var(--warm-white);
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background: var(--emerald-deep);
  overflow: hidden;
  padding: 100px 0;
}

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

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cta-shape--1 {
  width: 500px;
  height: 500px;
  background: var(--emerald-light);
  top: -200px;
  right: -100px;
}

.cta-shape--2 {
  width: 300px;
  height: 300px;
  background: var(--sand);
  bottom: -100px;
  left: -50px;
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

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

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

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-desc {
  color: var(--text-mid);
  font-size: 1.063rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-size: 0.813rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-card span,
.contact-card a {
  font-size: 0.938rem;
  color: var(--text-dark);
}

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

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

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

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

.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.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: var(--emerald-pale);
  border-radius: var(--radius-md);
  color: var(--emerald-deep);
  font-size: 0.938rem;
  margin-top: 8px;
}

.form-success strong {
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

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

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.938rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.938rem;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.875rem;
}

.footer-bottom a {
  transition: var(--transition);
}

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

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  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);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

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

  .rooms-grid,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 249, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .primary-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 1.063rem;
  }

  .primary-nav .btn {
    margin-top: 8px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-floating-card {
    left: 16px;
    bottom: -10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-text .section-title,
  .location-info .section-title,
  .contact-info .section-title {
    text-align: center;
  }

  .intro-text,
  .location-info,
  .contact-info {
    text-align: center;
  }

  .intro-text p,
  .location-desc,
  .contact-desc {
    max-width: 100%;
  }

  .intro-image {
    order: -1;
  }

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

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

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

  section {
    padding: 72px 0;
  }
}

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

  .hero-headline {
    font-size: 2.25rem;
  }

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

  .section-title {
    font-size: 1.75rem;
  }
}
