/* =========================
   RESET + TOKENS
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root{
  --bg: #f7f7f5;
  --ink: #1b1b1b;
  --muted: rgba(27,27,27,.7);
  --card: #ffffff;
  --line: rgba(27,27,27,.12);

  --dark: #0d0f0d;
  --dark-2: rgba(0,0,0,.35);

  --accent: #4a6b4f;     /* forest */
  --accent-2: #d1b97f;   /* warm stone */

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --container: 1200px;
  --nav-text: #ffffff;
}

body{
     font-family: "Raleway", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4, h5,
.section-title,
.page-hero-overlay h1,
.hero-content h1{
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.02em; /* subtle, elegant */
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.container.narrow{
  width: min(900px, calc(100% - 40px));
}
.section{
  padding: 5rem 0;
}
.section-title{
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
}
.lead{
  font-size: 1.05rem;
  color: var(--muted);
}

/* =========================
   HEADER / NAV
========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #4A5442;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 28px;
  min-height: 76px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.logo{
  color: var(--nav-text);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: 0.22em; /* keep your current spacing */
  
}

#menu-icon{
  color: var(--nav-text);
  font-size: 32px;
  line-height: 1;
}

.nav-left, .nav-right{
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.header a:not(.logo){
  color: var(--nav-text);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .9;
  padding: .6rem .2rem;
  transition: opacity .2s ease;
}
.header a:hover{ opacity: 1; }
.header a.active{
  opacity: 1;
  font-weight: 700;
}

.menu-btn{
  display: none;
  background: transparent;
  border: 0;
  padding: .4rem;
  cursor: pointer;
}

/* =========================
   MOBILE NAV (FIXED)
========================= */
@media (max-width: 700px){

   .hero-logo img {
    max-width: 120px;
  }

  .menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header{
    position: relative; /* anchor absolute dropdowns */
    padding: 1.2rem 18px;
    min-height: 72px;
  }

  /* Hide both nav groups by default on mobile */
  .nav-left, .nav-right{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #4A5442;
    backdrop-filter: blur(10px);
    padding: 1.2rem 18px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 999;

    /* animation */
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    gap: .6rem; /* smaller internal spacing */
  }

  /* When open: show nav-left first */
  .nav-left.show{ display: flex; }

  /* When open: show nav-right BELOW nav-left */
  .nav-right.show{
    display: flex;
    top: calc(100% + var(--nav-left-height, 0px));
  }

  /* Fade/slide in when open */
  .nav-left.show, .nav-right.show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* mobile link styling */
  .header a{
    padding: .8rem 0;
    width: 100%;
  }

  /* Make space between the two groups smaller */
  .nav-left{ padding-bottom: .6rem; }
  .nav-right{ padding-top: .6rem; }

  /* LT at bottom (first link in nav-right) */
  .nav-right a:first-child{
    order: 99;
    margin-top: 1rem;
    padding-top: 1rem;
  }
   h1, h2{
    line-height: 1.2;
  }
}

/* =========================
   BUTTONS / LINKS
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn-primary{
  background: var(--accent-2);
  color: #1b1b1b;
  border: 1px solid transparent;
}
.btn-primary:hover{ transform: translateY(-1px); background: #c4aa6b; }

.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.9);
  color: #fff;
}
.btn-ghost:hover{
  background: rgba(255,255,255,.9);
  color: #000;
}

.text-link{
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.text-link:hover{ opacity: 1; text-decoration: underline; }

/* =========================
   HERO SLIDER (HOME + ABOUT)
========================= */
.hero-slider{
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero-slider.hero-short{ height: 520px; }

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active{ opacity: 1; }

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero-logo {
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-logo img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-content h1{
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: .03em;
  margin-bottom: .75rem;
}
.hero-content span{ color: var(--accent-2); }
.hero-content p{
  font-size: 1.1rem;
  opacity: .92;
  margin-bottom: 2rem;
}

.home-page .hero-content span { color: #ffffff; }

.hero-cta{
  display: inline-flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-page .hero-overlay{
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-content h1,
.page-hero-overlay h1{
  line-height: 1.05;
}

h2, h3, .section-title{
  line-height: 1.15;
}

body, p{
  line-height: 1.6;
}

.scroll-hint{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.9);
  opacity: .85;
  font-size: 1.1rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-slide{ transition: none; }
  .btn{ transition: none; }
}

/* =========================
   HOME EXPERIENCE
========================= */
.home-page .home-experience{
  background: var(--bg);
  color: black;
  padding: 6rem 0;
}
.home-page .home-intro h2{
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.home-page .home-intro .lead{ color: black; }

.media-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.media-card{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transform: translateZ(0);
}
.media-card img{
  height: 320px;
  object-fit: cover;
  transition: transform .35s ease;
}
.media-card:hover img{ transform: scale(1.03); }

.home-links{ margin-top: 2.2rem; text-align: center; }
.home-cta{ margin-top: 2.4rem; text-align: center; }

@media (max-width: 900px){
  .media-grid{ grid-template-columns: 1fr; }
  .media-card img{ height: 260px; }
  .hero-slider{ height: 85vh; }
}

/* =========================
   FEATURES PAGE HERO
========================= */
.page-hero{
  position: relative;
  height: 60vh;
  overflow: hidden;
  background: #000;
  min-height: 420px;
  max-height: 620px;
}
.page-hero img{
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}
.page-hero-overlay h1{
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: .5rem;
}
.page-hero-overlay p{ opacity: .9; }

.hero-slider.page-hero{
  height: 60vh;
  min-height: 420px;
  max-height: 620px;
}

/* =========================
   FEATURE BLOCKS (scoped)
========================= */
.features-page .feature-block{
  width: min(var(--container), calc(100% - 40px));
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.features-page .feature-block:nth-of-type(even) .carousel{ order: 2; }
.features-page .feature-block:nth-of-type(even) .feature-copy{ order: 1; }

.carousel{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.feature-image{
  height: 440px;
  object-fit: cover;
}

.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.arrow:hover{ background: rgba(0,0,0,.65); transform: translateY(-50%) scale(1.03); }
.left-arrow{ left: 12px; }
.right-arrow{ right: 12px; }

.feature-copy h2{
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.amenities-list{
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.amenities-list li{
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: 1rem;
  color: rgba(27,27,27,.9);
}
.amenities-list i{
  margin-top: 3px;
  color: #3F4638;
  min-width: 18px;
}

.inline-cta{
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.price-note{
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 900px){
  .features-page .feature-block{
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin: 3.5rem auto;
  }
  .feature-image{ height: 300px; }
  .features-page .feature-block:nth-of-type(even) .carousel,
  .features-page .feature-block:nth-of-type(even) .feature-copy{
    order: unset;
  }
}

/* =========================
   ABOUT PAGE SECTIONS
========================= */
.about-page .contact-card{ background: #fff; }

.contact-card{ text-align: center; }

.map-container{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.contact-details{
  display: grid;
  gap: .8rem;
  margin-top: 1.2rem;
}
.contact-details p{
  display: flex;
  gap: .7rem;
  align-items: center;
}
.contact-card .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-details i{ color: var(--accent); }

/* =========================
   FEATURE PREVIEW GRID (HOME)
========================= */
.feature-preview-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.feature-preview{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.feature-preview img{
  height: 340px;
  object-fit: cover;
  transition: transform .5s ease;
}

.feature-preview::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,.15),
    rgba(0,0,0,0)
  );
}

.feature-preview-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: #fff;
}

.feature-preview h3{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.feature-preview span{
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

/* Hover (desktop only) */
@media (hover: hover){
  .feature-preview:hover img{ transform: scale(1.04); }
  .feature-preview:hover::after{ background: rgba(0,0,0,.45); }
}

@media (max-width: 900px){
  .feature-preview-grid{ grid-template-columns: 1fr; }
  .feature-preview img{ height: 260px; }
}

/* =========================
   FOOTER
========================= */
.footer{
  background: #101110;
  color: #fff;
  padding: 3.2rem 20px;
  text-align: center;
  margin-top: 5rem;
}

.footer .list{
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.footer .list a{
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.footer .list a:hover{ opacity: 1; text-decoration: underline; }

.footer-contact{
  display: grid;
  gap: .35rem;
  margin-bottom: 1.4rem;
}
.footer-contact i{ margin-right: .35rem; color: var(--accent-2); }

.copyright{
  opacity: .65;
  font-size: .85rem;
}

/* =========================
   SOCIALS
========================= */
.home-socials{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.home-socials a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(27,27,27,.2);
  color: var(--ink);
  font-size: 1.1rem;
  transition: all .25s ease;
}

.home-socials a:hover{
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-socials{
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-socials a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.footer-socials a:hover{
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.site-credit{
  margin-top: 0.4rem;
  font-size: 0.7rem;
  opacity: 0.55;
  text-align: center;
}

.site-credit a{
  color: inherit;
  text-decoration: none;
}
.site-credit a:hover{
  text-decoration: underline;
  opacity: 0.85;
}

