:root {
  --accent: #C8843A;
  --accent-tint: #F0E4D0;
  --accent-deep: #A56728;
  --dark: #1C2A22;
  --dark-mid: #2D3F33;
  --dark-light: #3A5040;
  --light: #F7F3EC;
  --white: #FFFFFF;
  --text: #2A332C;
  --text-muted: #5C6B60;
  --border: #E2D9CC;
  --radius: 14px;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-filled {
  background: var(--accent);
  color: var(--white);
}
.btn-filled:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(247,243,236,0.5);
  color: var(--light);
  background: transparent;
}
.btn-outline:hover { border-color: var(--light); background: rgba(247,243,236,0.1); }
.btn-outline-light {
  border-color: rgba(247,243,236,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.eyebrow.center { display: block; text-align: center; }

/* Section heads */
.section-head {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.section-head.left { text-align: left; }
.center { text-align: center; }
.section-head.center { text-align: center; }
.section-sub {
  max-width: 600px;
  margin: 14px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 42px;
  background: rgba(28,42,34,0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.wordmark-icon { width: 28px; height: 28px; color: var(--accent); }
.wordmark span { white-space: nowrap; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(247,243,236,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: auto; font-size: 0.9rem; padding: 10px 20px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 42px);
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-scene { width: 100%; height: 100%; display: block; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.hero-content .eyebrow {
  color: var(--accent);
  padding: 7px 16px;
  border: 1px solid rgba(200,132,58,0.4);
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(247,243,236,0.85);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Pillars */
.pillars {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pillar { text-align: center; }
.pillar-chip {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pillar-chip svg { width: 28px; height: 28px; color: var(--accent-deep); }
.pillar h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pillar p { font-size: 0.92rem; color: var(--text-muted); max-width: 220px; margin: 0 auto; }

/* Sections */
.section { padding: 90px 0; }
.section-tint { background: var(--accent-tint); }

/* Sites cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,42,34,0.08); }
.card-chip {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card-chip svg { width: 26px; height: 26px; color: var(--accent-deep); }
.card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  margin-top: 48px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(200,132,58,0.18);
}
.amenity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Location */
.location-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.location-text p { margin-bottom: 16px; color: var(--text-muted); }
.location-text .section-head { margin-bottom: 18px; }
.location-near { color: var(--text) !important; font-weight: 500; }
.location-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
}
.location-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.location-card-head svg { width: 22px; height: 22px; color: var(--accent); }
.location-card address { font-style: normal; font-size: 1.15rem; line-height: 1.6; margin-bottom: 20px; }
.location-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.location-phone:hover { color: var(--accent); }
.location-email {
  display: block;
  color: rgba(247,243,236,0.8);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.location-email:hover { color: var(--accent); }
.location-hours {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(200,132,58,0.5);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.review p { color: var(--text); font-size: 1.02rem; margin-bottom: 18px; position: relative; z-index: 1; }
.review cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 0.9rem;
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text .section-head { margin-bottom: 18px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-visual { display: flex; justify-content: center; }
.about-svg { width: 100%; max-width: 300px; height: auto; }

/* CTA band */
.cta-band {
  position: relative;
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-scene { width: 100%; height: 100%; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-content p { color: rgba(247,243,236,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(247,243,236,0.8);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .wordmark { margin-bottom: 16px; }
.footer-tag { font-size: 0.95rem; max-width: 280px; color: rgba(247,243,236,0.7); }
.footer-links h4, .footer-contact h4, .footer-hours h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links a {
  display: block;
  color: rgba(247,243,236,0.75);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact address { font-style: normal; margin-bottom: 12px; line-height: 1.6; color: rgba(247,243,236,0.85); }
.footer-contact a { display: block; color: rgba(247,243,236,0.75); font-size: 0.92rem; margin-bottom: 7px; }
.footer-contact a:hover { color: var(--accent); }
.footer-hours p { margin-bottom: 8px; font-size: 0.95rem; }
.footer-owners { color: var(--accent) !important; font-weight: 600; margin-top: 14px !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247,243,236,0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .card-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: calc(42px + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .pillars { padding: 50px 0; }
  .cta-band { padding: 70px 0; }
  .amenity-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .hero-sub { font-size: 1.05rem; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}