/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
  --amber-400: #857064;
  --amber-500: #6b5b52;
  --amber-600: #4b3f38;
  --amber-700: #3f352f;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --bg: #f6f1eb;
  --bg-soft: #fbf8f4;
  --surface: #ffffff;
  --text: #1f1a17;
  --muted: #6f655c;
  --line: rgba(31, 26, 23, 0.1);
  --brand: #857064;
  --brand-dark: #6f5d53;
  --shadow: 0 18px 45px rgba(31, 26, 23, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

html { 
  scroll-behavior: smooth; 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--neutral-800);
    -webkit-font-smoothing: antialiased;
}

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

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

button, input, select { 
  font: inherit; 
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-100);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--neutral-800);
}

.logo-icon {
    width: 3.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    height: 3.5rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--amber-600);
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--neutral-900);
    color: white;
}

.btn-secondary:hover {
    background: var(--neutral-700);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--neutral-200);
    color: var(--neutral-800);
}

.btn-outline-dark:hover {
    background: var(--neutral-100);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

.btn-dark {
    background: var(--neutral-800);
    color: white;
}

.btn-dark:hover {
    background: var(--neutral-700);
}

.btn-block { width: 100%; }

.hero { padding: 100px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--brand);
  font-weight: 700;
}
.hero h1,
.section-heading h2,
.location-section h2,
.cta-box h2 {
  margin-bottom: 16px;
  /* font-family: "Cormorant Garamond", serif; */
  font-weight: 700;
  line-height: 0.95;
}
.hero h1 { 
  font-size: 3rem;
  margin-bottom: 12px;
}
.hero-lead,
.content-main p,
.location-section p,
.cta-box p,
.booking-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.hero-meta div,
.info-card,
.amenity-card,
.review-card,
.map-card,
.highlight-box,
.booking-card-inner {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31, 26, 23, 0.08);
  box-shadow: var(--shadow);
}
.hero-meta div {
  padding: 18px;
  border-radius: var(--radius-md);
}
.hero-meta strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-meta span { color: var(--muted); font-size: 0.92rem; }

.hero-gallery { display: grid; gap: 16px; }
.gallery-main img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(31, 26, 23, 0.12);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.thumb {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  cursor: pointer;
  opacity: 0.72;
  transition: 0.2s ease;
}
.thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  border-radius: 18px;
}
.thumb:hover,
.thumb.is-active { opacity: 1; transform: translateY(-2px); }
.thumb.is-active img { outline: 2px solid var(--brand); outline-offset: 2px; }

.quick-info,
.reviews-section,
.cta-section { padding: 28px 0; }
.quick-info-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.info-card {
  border-radius: var(--radius-md);
  padding: 24px;
}
.info-card span { display: block; color: var(--muted); margin-bottom: 8px; }
.info-card strong { font-size: 1.04rem; }

.content-section,
.location-section { padding: 46px 0 28px; }
.content-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
.content-main,
.section-heading { margin-bottom: 24px; }
.section-heading h2,
.location-section h2,
.cta-box h2 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
.highlight-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  margin: 28px 0 42px;
}
.highlight-box h3 { margin-top: 0; margin-bottom: 16px; }
.highlight-box ul { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.9; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.amenity-card {
  padding: 22px;
  border-radius: var(--radius-md);
}
.amenity-card span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.amenity-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.rule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.rule-item span { color: var(--muted); }

.booking-card { position: sticky; top: 102px; }
.booking-card-inner {
  border-radius: 28px;
  padding: 28px;
}
.booking-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.booking-card h3 { margin: 0 0 8px; font-size: 1.8rem; }
.booking-form { display: grid; gap: 14px; }
.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}
.booking-form input,
.booking-form select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  padding: 0 14px;
  background: #fff;
}
.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 6px 0 8px;
}
.booking-summary div {
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.booking-summary span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.location-grid { grid-template-columns: 1fr 460px; }
.nearby-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.nearby-list div,
.map-placeholder {
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.nearby-list div { padding: 18px; }
.nearby-list strong { display: block; font-size: 1.1rem; margin-bottom: 6px; }
.nearby-list span { color: var(--muted); }
.map-card { border-radius: 30px; overflow: hidden; }
.map-placeholder {
  min-height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(133, 112, 100, 0.1), rgba(133, 112, 100, 0.1)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9), rgba(255,255,255,0.4) 40%, rgba(133,112,100,0.15) 100%);
}
.map-placeholder span { font-weight: 700; margin-bottom: 8px; }
.map-placeholder p { margin: 0; color: var(--muted); }

.center { text-align: center; }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card {
  padding: 28px;
  border-radius: 24px;
  opacity: 0.72;
  transition: 0.25s ease;
}
.review-card.is-visible,
.review-card:hover { opacity: 1; transform: translateY(-2px); }
.review-card p { color: var(--muted); line-height: 1.9; }
.review-card strong { display: block; margin-top: 16px; }
.review-card span { color: var(--muted); font-size: 0.92rem; }

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(133,112,100,0.12), rgba(255,255,255,0.92));
  border: 1px solid rgba(31, 26, 23, 0.08);
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .location-grid,
  .quick-info-grid,
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .content-grid,
  .location-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

@media (max-width: 780px) {
  .main-nav,
  .header-inner > .btn { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px 16px;
  }
  .mobile-menu.is-open { display: flex; }
  /* .hero { padding-top: 32px; } */
  .hero-grid,
  .quick-info-grid,
  .reviews-grid,
  .hero-meta,
  .nearby-list,
  .amenities-grid,
  .rules-grid { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr auto;
    }
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--neutral-400);
    font-size: 0.875rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-300);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-contact li {
    color: var(--neutral-400);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}