/* ==========================================================================
   Cypress Forest Links & Park Trustee Foundation — Website Styles
   Matching the Neighborhood Burn Deck editorial design
   ========================================================================== */

/* Design Tokens */
:root {
  --green-dark: #2D3A2D;
  --green-mid: #3D5A3D;
  --green-card: #2F4A2F;
  --gold: #C4A265;
  --gold-light: #E8D5A8;
  --cream: #FAF8F3;
  --cream-dark: #F0EDE6;
  --text-dark: #1A1A1A;
  --text-body: #333333;
  --text-light: #C8C3B8;
  --text-muted: #999;
  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --section-pad-sm: clamp(2rem, 4vw, 4rem);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold { color: var(--gold); }
.text-light { color: var(--text-light); font-size: 0.9rem; }
.strikethrough { text-decoration: line-through; opacity: 0.6; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(45, 58, 45, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem 0 2rem;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.hero-brand {
  text-align: right;
  flex-shrink: 0;
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-style: normal;
  color: var(--white);
  white-space: nowrap;
}

.hero-logo {
  height: 80px;
  width: auto;
}

.hero-definition {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0;
  animation: fadeInBounce 1s 1.5s forwards;
}

@keyframes fadeInBounce {
  0% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
}

.hero-scroll:hover { opacity: 1; }

/* Photo Captions */
.photo-caption {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
}

.split-media {
  position: relative;
}

.night-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.night-photo img {
  width: 100%;
  height: 85vh;
  display: block;
  object-fit: cover;
  object-position: center 35%;
}

/* ==========================================================================
   Section Defaults
   ========================================================================== */

.section {
  padding: var(--section-pad) 0;
}

.section--cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section--green {
  background: var(--green-dark);
  color: var(--cream);
}

.section--dark {
  background: var(--green-dark);
  color: var(--cream);
  padding-top: 0;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.section--cream .section-heading { color: var(--text-dark); }
.section--green .section-heading { color: var(--gold-light); }

.section-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 52rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* ==========================================================================
   Pillar Cards (3-column grid, dark green cards)
   ========================================================================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

#proposal .pillars {
  grid-template-columns: repeat(4, 1fr);
}

.pillar-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 4px;
}

.pillar-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold);
}

.pillar-card p:last-child {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Split Layout
   ========================================================================== */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

.split-image {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.split-image--tall {
  max-height: 700px;
}

/* Benefits List */
.benefit-list {
  list-style: none;
  margin-top: 2rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 4px;
  height: 1.1rem;
  background: var(--gold);
  border-radius: 2px;
}

/* Callout Box */
.callout-box {
  background: var(--green-mid);
  padding: 2rem;
  border-radius: 4px;
  margin-top: 1.5rem;
}

.callout-box h3 {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.callout-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

.callout-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 162, 101, 0.3);
}

.aerial-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 1.5rem;
  height: 400px;
}

.aerial-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
}

/* ==========================================================================
   Stat Card
   ========================================================================== */

.stat-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  margin-top: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-style: italic;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   Course Section
   ========================================================================== */

.course-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 52vw;
  max-height: 520px;
}

.course-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.course-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


.course-features {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.course-stat-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-style: italic;
  line-height: 1;
  display: block;
}

.course-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-top: 0.5rem;
}

.course-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.course-feature {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
}

.course-feature > span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  white-space: nowrap;
}

.course-feature strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
}

.course-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.designer-card {
  background: var(--green-mid);
  padding: 2rem;
  border-radius: 4px;
  align-self: start;
}

.designer-entry + .designer-entry {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 162, 101, 0.3);
}

.designer-card h3 {
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
}

.designer-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.routing-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.routing-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.routing-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.routing-course {
  flex: 1;
  min-width: 0;
}

.routing-map {
  width: 100%;
  border-radius: 4px;
}

.routing-map-link {
  display: block;
  position: relative;
  cursor: zoom-in;
}

.routing-tap-hint,
.scorecard-tap-hint {
  display: none;
}

.scorecard-map-link {
  display: block;
  position: relative;
  cursor: zoom-in;
}

.routing-scorecard {
  flex: 0 0 220px;
}

.routing-scorecard img {
  width: 100%;
  border-radius: 4px;
}

/* Routing Modal */
.routing-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.routing-modal.open {
  display: flex;
}

.routing-modal-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 10000;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.routing-modal-body {
  max-width: 95vw;
  max-height: 95vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.routing-modal-body img {
  width: auto;
  max-width: none;
  height: auto;
  max-height: 90vh;
}

/* Foundership Section */
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.founder-text {
  padding: 3rem 3rem 3rem 0;
}

.founder-text h2 {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.founder-explain p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.founder-divider {
  border: none;
  border-top: 1px solid rgba(196, 162, 101, 0.25);
  margin: 1.25rem 0;
}

.founder-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.founder-perks li {
  font-size: 0.95rem;
  color: var(--cream);
  padding: 0.35rem 0;
}

.founder-footnote {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  line-height: 1.5;
  opacity: 0.7;
}

/* Founder Tiers — White Panel */
.founder-tiers {
  background: #fff;
  padding: 2.5rem 2.5rem;
  border-radius: 6px;
}

.founder-tiers-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9C8B7A;
  margin-bottom: 0.5rem;
}

.founder-tier-divider {
  border: none;
  border-top: 1px solid #D0C9BF;
  margin: 1.25rem 0;
}

.founder-tier-divider--gold {
  border-top: 2px solid var(--gold);
}

.founder-tier {
  padding: 0.25rem 0;
}

.founder-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.founder-tier-header h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: #3D3832;
  margin: 0;
}

.founder-price {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Flame temperature tier colors — hottest to coolest */
.tier-blue { color: #3B6FA0; }
.tier-gold { color: #C4A96A; }
.tier-orange { color: #C07B3F; }
.tier-red { color: #9B4D4D; }

.founder-tier > p {
  font-size: 0.85rem;
  color: #9C8B7A;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.founder-avail {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  border: none;
}

.founder-avail--blue { background: #3B6FA0; }
.founder-avail--gold { background: #C4A96A; }
.founder-avail--orange { background: #C07B3F; }
.founder-avail--red { background: #9B4D4D; }

.founder-tier-footer {
  font-size: 0.85rem;
  font-style: italic;
  color: #9C8B7A;
  line-height: 1.6;
  margin-top: 1.25rem;
}

/* Welcome Popup */
.welcome-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.welcome-popup.open {
  display: flex;
}

.welcome-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.welcome-popup-card {
  position: relative;
  background: var(--cream);
  color: var(--green-dark);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.welcome-popup-logo {
  display: block;
  width: 80px;
  margin: 0 auto 1.5rem;
}

.welcome-popup-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  text-align: center;
}

.welcome-popup-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #3a3a3a;
}

.welcome-popup-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.35rem;
}

.welcome-popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.welcome-popup-list li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a3a3a;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  border-left: 2px solid var(--gold);
}

.welcome-popup-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--green-dark) !important;
  margin-top: 0.5rem;
}

.welcome-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--green-dark);
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
}

.welcome-popup-close:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .welcome-popup-card {
    padding: 1.5rem;
  }
  .welcome-popup-card h3 {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Food & Beverage
   ========================================================================== */

.fb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.fb-partner {
  text-align: right;
}

.fb-partner strong {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream);
}

.fb-partner p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.phase-card {
  background: transparent;
  padding: 0;
  color: var(--cream);
}

.phase-card h3 {
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
  padding-bottom: 0;
  border-bottom: none;
}

.phase-type {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.phase-card p:last-child {
  color: var(--text-light);
  font-size: 0.95rem;
}

.phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.section--green .pillars {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.fb-photo {
  position: relative;
  margin-top: 3rem;
}

.fb-photo img {
  width: 100%;
  border-radius: 4px;
}

/* ==========================================================================
   Team
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-member { text-align: center; }

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.team-member h4 {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
}

.team-member > p:last-child {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   Amenities
   ========================================================================== */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.amenity-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.amenity-card strong {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   Pricing Table
   ========================================================================== */

.pricing-table {
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.pricing-table thead {
  background: var(--green-mid);
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 1rem 1.5rem;
}

.pricing-table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
  font-size: 1rem;
  vertical-align: middle;
}

.pricing-table td.gold em {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.pricing-footnote {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Value Points
   ========================================================================== */

.value-points { margin-top: 1.5rem; }

.value-point {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section--green .value-point { border-bottom-color: rgba(196, 162, 101, 0.2); }

.value-point:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.value-point strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}

.value-point p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.value-point em {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.section--cta {
  position: relative;
  padding: 0;
}

.cta-image {
  position: relative;
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cta-overlay {
  background: rgba(26, 26, 26, 0.93);
  color: var(--cream);
  padding: var(--section-pad) 0;
}

.cta-content { margin-bottom: 3rem; }

.cta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.cta-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}

.cta-logo {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.cta-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.cta-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   Signup Form
   ========================================================================== */

.signup-form {
  background: var(--green-dark);
  padding: 2.5rem;
  border-radius: 4px;
  max-width: 700px;
}

.signup-form h3 {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.signup-form > p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.kit-form input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(196, 162, 101, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.kit-form input::placeholder { color: var(--text-light); opacity: 0.6; }
.kit-form input:focus { border-color: var(--gold); }

.btn-gold {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--cream);
  color: var(--text-dark);
  padding: var(--section-pad) 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 2rem;
}

.footer-name { margin-bottom: 1rem; }

.footer-contact a {
  text-decoration: none;
  color: var(--text-body);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-contact p { margin-bottom: 0.35rem; }

.footer-address {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-brand-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 0.5rem;
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand-card hr {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 1.5rem auto;
  max-width: 200px;
}

.footer-brand-card .gold {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-brand-type {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.footer-brand-rooted {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Shop
   ========================================================================== */

.shop-page {
  padding-top: calc(64px + var(--section-pad));
  min-height: 100vh;
}

.shop-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 2rem;
  border: 1px dashed var(--gold);
  border-radius: 8px;
}

.shop-coming-soon-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.shop-coming-soon p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.shop-card {
  background: var(--green-card);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.shop-card:hover {
  transform: translateY(-4px);
}

.shop-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--green-mid);
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}

.shop-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card-body h3 {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.shop-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
}

.shop-price {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
}

.shop-buy {
  display: inline-block;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

.shop-buy--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.shop-badge--soldout {
  background: var(--text-muted);
  color: var(--white);
}

.shop-grid-loading {
  text-align: center;
  color: var(--text-light);
  padding: 3rem 0;
  grid-column: 1 / -1;
}

/* ==========================================================================
   Fade-in Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #proposal .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(45, 58, 45, 0.98);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(196, 162, 101, 0.15);
  }
  .nav-cta { text-align: center; margin-top: 0.5rem; }

  /* Nav */
  .site-nav {
    top: 0;
  }

  /* Hero */
  .hero {
    min-height: 45vh;
  }
  .hero-image .photo-caption {
    display: none;
  }
  .hero-image img {
    object-position: center 50%;
  }
  .hero-overlay {
    padding: 1rem 0 1rem;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-brand { text-align: left; }
  .hero-logo { margin-left: 0; height: 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-label { margin-bottom: 0.5rem; }
  .hero-sub { margin-top: 0.5rem; }
  .hero-definition { margin-top: 0.5rem; }

  /* Grids */
  .pillars,
  .section--green .pillars,
  #proposal .pillars {
    grid-template-columns: 1fr;
  }
  .phase-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .course-content {
    grid-template-columns: 1fr;
  }

  .course-features {
    flex-direction: column;
    gap: 2rem;
  }

  .routing-layout {
    flex-direction: column;
  }

  .routing-scorecard {
    flex: none;
    width: 260px;
    max-width: 100%;
    margin: 0 auto;
  }

  .routing-tap-hint,
  .scorecard-tap-hint {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.8;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .founder-text {
    padding: 0 0 2rem 0;
  }

  .founder-tiers {
    border-radius: 6px;
    margin: 0 -1rem;
    padding: 2rem 1.5rem;
  }

  .founder-tier-header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .cta-header { flex-direction: column; }
  .cta-logo { height: 50px; }
  .cta-actions { flex-direction: column; gap: 1rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; gap: 2rem; }

  .fb-header { flex-direction: column; }
  .fb-partner { text-align: left; }

  .night-photo img {
    height: 60vh;
    object-position: center 40%;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .section-heading { font-size: 1.75rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { width: 100px; height: 100px; }
  .signup-form { padding: 1.5rem; }
}
