/* ─── LAGREE BY THE LAKE — SHARED STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* ── Dark backgrounds (based on brand #37593f) ── */
  --forest:       #1e3324;
  --deep:         #2b4532;
  --mid:          #37593f;
  --panel:        #426849;

  /* ── Brand accent (based on brand #92bda7) ── */
  --teal:         #92bda7;
  --teal-dim:     #7aab93;

  /* ── Light background (exact brand #fbf6f3) ── */
  --light-bg:     #fbf6f3;

  /* ── Text ── */
  --white:        #fbf6f3;
  --cream:        #f0ebe5;
  --warm:         #c9bfb9;
  --muted:        #ab9e97;

  /* ── Text on light background ── */
  --light-heading: #37593f;
  --light-body:    #5a504d;
  --light-accent:  #92bda7;
  --light-accent-dim: rgba(146,189,167,0.4);

  /* ── Highlight ── */
  --gold:         #c9a96e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--forest);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--forest);
  border-bottom: 1px solid rgba(146,189,167,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; flex-wrap: nowrap; }
.nav-links a {
  color: var(--warm);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-book {
  background: var(--teal) !important;
  color: var(--forest) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-logo img { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--cream); display: block; transition: 0.3s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--deep) 0%, var(--forest) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(109,191,176,0.07) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; color: var(--muted); }

.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── LAYOUT ─── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 5rem 2rem; }

.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--muted); }

.divider { width: 40px; height: 1px; background: var(--teal-dim); margin-bottom: 2rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--forest);
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(240,232,216,0.3);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ─── CARDS ─── */
.card {
  background: var(--mid);
  border: 1px solid rgba(109,191,176,0.12);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(109,191,176,0.35); transform: translateY(-4px); }
.card::before { display: none; }
.card.accent::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, var(--teal), transparent);
  margin: -2rem -2rem 2rem;
  border-radius: 4px 4px 0 0;
}

/* ─── IMAGES ─── */
.site-img {
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

/* ─── FOOTER ─── */
footer {
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo-wrap { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer-logo-wrap img { height: 80px; width: auto; display: block; }
.footer-tagline { font-size: 0.78rem; color: var(--white); line-height: 1.5; }

.footer-nav h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-nav a { color: var(--white); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--teal); }

.footer-contact h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-contact p, .footer-contact a {
  font-size: 0.82rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1.8;
  display: block;
}
.footer-contact a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--white); }
.footer-bottom a { color: var(--white); text-decoration: none; font-size: 0.75rem; }
.footer-bottom a:hover { color: var(--teal); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NOTICE BAR ─── */
.notice-bar {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 2px;
  padding: 0.75rem 1.2rem;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
/* ─── MOBILE NAV ─── */
@media (max-width: 1024px) {
  .nav-links { display: none !important; }
  .nav-links.open { display: flex !important; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: #1e3324; padding: 2rem; gap: 1.5rem; align-items: flex-start; z-index: 99; border-bottom: 1px solid rgba(146,189,167,0.15); }
  .nav-toggle { display: flex !important; }
  .nav-book { display: none !important; }
}
@media (min-width: 1025px) {
  .nav-toggle { display: none !important; }
  .nav-links { display: flex !important; }
}
