/* White's Waterscapes — Shared Stylesheet */

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

:root {
  --forest:    #1a2e1a;
  --moss:      #2d4a2d;
  --sage:      #5a7a4a;
  --stone:     #8a9a7a;
  --cream:     #f5f0e8;
  --parchment: #ede6d6;
  --water:     #2a4a5e;
  --sky:       #4a7a9a;
  --gold:      #b8962e;
  --white:     #fafaf8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--forest); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26,46,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,150,46,0.25);
}
.nav-brand { display: flex; flex-direction: column; align-items: center; gap: .1rem; line-height: 1.05; }
.nav-logo {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--cream); letter-spacing: .04em; text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-phone {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; color: rgba(245,240,232,.85);
  text-decoration: none; transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  color: rgba(245,240,232,.75); text-decoration: none; letter-spacing: .12em;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest); background: var(--gold);
  padding: .6rem 1.6rem; text-decoration: none;
  border-radius: 2px; transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: #1a2e1a; z-index: 99; flex-direction: column;
  padding: 1.5rem 2rem 2rem; border-top: 1px solid rgba(184,150,46,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); transform: translateY(-8px);
  opacity: 0; transition: transform .3s ease, opacity .3s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cream);
  text-decoration: none; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ── SHARED SECTION HELPERS ── */
.section-label {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--sage); }
h2.display {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--forest);
}
h2.display em { font-style: italic; }

/* ── PRIMARY BUTTON ── */
.btn-primary {
  display: inline-block;
  padding: .9rem 2.4rem; background: var(--gold); color: var(--forest);
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: .9; }

/* ── SOCIAL ICONS (inline SVG) ── */
.social-icon {
  display: inline-block;
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: .35rem;
  fill: currentColor;
}

/* ── FOOTER ── */
footer {
  background: #111a11; color: rgba(245,240,232,.6);
  padding: 4rem 3rem 2rem;
  display: grid; grid-template-columns: 1.1fr 1.4fr 0.9fr 1.1fr; gap: 2rem;
}
footer > div { min-width: 0; }
footer iframe { max-width: 100%; }
.footer-brand .nav-logo { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; font-weight: 300; line-height: 1.7; max-width: 300px; }
footer h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: .6rem; }
footer ul a { color: rgba(245,240,232,.6); text-decoration: none; font-size: .88rem; font-weight: 300; transition: color .2s; }
footer ul a:hover { color: var(--cream); }
.footer-bottom {
  grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .78rem; }

/* ── BASE RESPONSIVE (NAV + FOOTER) ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
}
