/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --charcoal: #2a2a2a;
  --charcoal-mid: #3d3d3d;
  --gold: #b8935a;
  --gold-light: #c9a870;
  --text-dark: #3a3a4a;
  --text-mid: #5a5a6a;
  --text-light: #8a8a9a;
  --white: #ffffff;
  --nav-height: 56px;
  --topbar-height: 44px;
  --transition: 0.3s ease;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

img, video { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

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

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--topbar-height);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 100;
}

.top-bar__address,
.top-bar__contact {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  font-weight: 400;
}

.top-bar__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 4px;
}

.logo-svg {
  width: 80px;
  height: 80px;
}

/* ===========================
   MAIN NAV
   =========================== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--nav-height);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 99;
  transition: box-shadow var(--transition);
}

.main-nav.scrolled {
  box-shadow: var(--shadow);
}

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

.nav-link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  border-bottom-color: var(--charcoal);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: calc(100vh - var(--topbar-height) - var(--nav-height));
  min-height: 500px;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero__logo {
  width: 130px;
  height: 130px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero__tagline {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ===========================
   FEATURED IN
   =========================== */
.featured-in {
  background: var(--charcoal);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow-x: auto;
}

.featured-in__label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  font-weight: 400;
}

.featured-in__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
  justify-content: space-around;
}

.pub-logo {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
  opacity: 0.9;
}

.pub-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  opacity: 0.8;
}

.pub-logo--serif { font-family: 'Cormorant Garamond', serif; font-size: 15px; }
.pub-logo--condensed { font-style: italic; letter-spacing: 3px; }
.pub-logo--bold { font-weight: 700; font-size: 15px; letter-spacing: 4px; }
.pub-logo--light { font-weight: 300; letter-spacing: 3px; }
.pub-logo--heavy { font-weight: 800; font-size: 22px; letter-spacing: 1px; }

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  background: var(--cream-light);
  padding: 60px 0 40px;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 24px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 0.4s ease;
}

.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  border-radius: 4px;
  padding: 28px;
  scroll-snap-align: start;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__name {
  font-weight: 600;
  font-size: 13px;
  color: #1a73e8;
}

.review-card__date {
  font-size: 11px;
  color: var(--text-light);
}

.review-card__g {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-card__stars {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 0 48px;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--charcoal);
}

/* ===========================
   SECTION HEADINGS
   =========================== */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-heading--gold {
  color: var(--gold);
}

/* ===========================
   LOCATION SECTION
   =========================== */
.location {
  background: var(--cream-light);
  padding: 80px 48px;
}

.location__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location__image-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.location__text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.8;
}

.location__text .btn {
  margin-top: 12px;
}

/* ===========================
   CABIN COLLECTIVE EFFECT
   =========================== */
.effect {
  background: var(--cream-light);
  padding: 80px 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.effect__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.effect__text p {
  color: var(--text-mid);
  margin-bottom: 24px;
  font-size: 14.5px;
  line-height: 1.8;
}

.effect__image-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* ===========================
   ACTIVITIES
   =========================== */
.activities {
  background: var(--cream-light);
  padding: 80px 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.activities__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.activities__image-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.activities__text .section-heading {
  margin-bottom: 28px;
}

.activities__text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.8;
}

.activities__text .btn {
  margin-top: 12px;
}

/* ===========================
   INSTAGRAM
   =========================== */
.instagram {
  background: var(--white);
  padding: 60px 0 0;
}

.instagram__handle {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}

.insta-item img {
  transition: transform 0.4s ease;
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--cream);
  padding: 60px 48px 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-logo-svg {
  width: 120px;
  height: 120px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__nav a {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  color: var(--text-mid);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--charcoal);
}

.footer__social {
  text-align: right;
}

.footer__social-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer__social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ===========================
   LOCATION MAP
   =========================== */
.map-section {
  background: var(--cream-light);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.map-section__header {
  max-width: 800px;
  margin: 0 auto 48px;
}

.map-section__address {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-mid);
  margin-top: -12px;
}

.map-section__embed {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  background: #eee;
}

.map-section__embed iframe {
  display: block;
}

@media (max-width: 768px) {
  .map-section {
    padding: 60px 24px;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .main-nav__links { gap: 18px; }
  .nav-link { font-size: 9.5px; }
  .featured-in__logos { gap: 28px; }
  .location__inner,
  .effect__inner,
  .activities__inner { gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar { padding: 0 16px; }
  .top-bar__address { display: none; }
  .top-bar__contact { font-size: 9px; }

  .main-nav {
    padding: 0 16px;
    overflow-x: auto;
  }
  .main-nav__links { gap: 14px; }
  .nav-link { font-size: 9px; letter-spacing: 1px; }

  .hero__tagline { font-size: 16px; }

  .featured-in {
    flex-direction: column;
    gap: 20px;
    padding: 24px 24px;
    align-items: flex-start;
  }
  .featured-in__logos {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }

  .reviews__track { padding: 0 16px; }
  .review-card { flex: 0 0 85%; }

  .location,
  .effect,
  .activities { padding: 48px 24px; }

  .location__inner,
  .effect__inner { grid-template-columns: 1fr; gap: 32px; }

  .activities__inner { grid-template-columns: 1fr; gap: 32px; }
  .activities__image-wrap { aspect-ratio: 4/3; }

  .instagram__grid { grid-template-columns: repeat(3, 1fr); }

  .footer { padding: 48px 24px 0; }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__logo { display: flex; justify-content: center; }
  .footer__social { text-align: center; }
  .footer__social-icons { justify-content: center; }
}
