/* ===== VARIABLES ===== */
:root {
  --sage: #7EA878;
  --sage-light: #9FC496;
  --sage-pale: #E8F0E6;
  --gold: #BFA76A;
  --gold-light: #D4C08A;
  --cream: #FAFBF8;
  --warm-white: #F5F4F0;
  --charcoal: #2C2C2C;
  --text: #3D3D3D;
  --text-light: #6A6A6A;
  --border: #E2E0DA;
  --dark-bg: #3A3D34;
  --dark-text: #D4D2CC;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
}

h2 em {
  color: var(--sage);
  font-style: italic;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

p { margin-bottom: 1rem; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 3rem;
  line-height: 1.9;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.05em;
}

.nav-brand canvas {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
  font-weight: 500;
}

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

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  background: var(--sage);
  color: white !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--sage-light) !important;
  color: white !important;
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 0.8rem; }
  .nav-brand canvas { display: none; }
  .nav-brand span { font-size: 0.95rem; }
  .nav-links { gap: 0.6rem; }
  .nav-links a { font-size: 0.55rem; letter-spacing: 0.04em; }
  .nav-cta { padding: 0.35rem 0.6rem !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage);
  color: white;
}

.btn-primary:hover {
  background: var(--sage-light);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: white;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.82rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(126, 168, 120, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(191, 167, 106, 0.04) 0%, transparent 50%),
    var(--cream);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  margin-bottom: 0.3rem;
  letter-spacing: 0.08em;
}

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

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}

.hero-operating {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#heroCanvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--dark-bg);
  padding: 2.5rem 2rem;
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.proof-item { text-align: center; }

.proof-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}

.proof-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 200, 190, 0.7);
  margin-top: 0.3rem;
  font-weight: 400;
}

.proof-divider-v {
  width: 1px;
  height: 40px;
  background: rgba(200, 200, 190, 0.2);
}

@media (max-width: 700px) {
  .proof-inner {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
  .proof-divider-v { display: none; }
  .proof-item { min-width: 120px; }
}

/* ===== GUEST REVIEWS ===== */
.reviews-section {
  padding: 4rem 2rem;
  background: var(--warm-white);
}

.reviews-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 2rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.reviews-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.reviews-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}

.reviews-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem 1.8rem;
}

.review-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.review-attr {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage);
}

.review-detail {
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (max-width: 650px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5.5rem 2rem;
}

.section-alt {
  background: var(--warm-white);
}

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

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 720px;
}

/* ===== CONCEPT CARDS ===== */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.concept-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.concept-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.concept-icon {
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.concept-card h3 {
  margin-bottom: 0.5rem;
}

.concept-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 700px) {
  .concept-grid { grid-template-columns: 1fr; }
}

/* ===== PROPERTY PLAN ===== */
.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.property-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.property-list {
  list-style: none;
}

.property-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  padding: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.property-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.5;
}

.property-note {
  background: white;
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.8rem;
  border-radius: 0 3px 3px 0;
}

.property-note p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

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

/* ===== MODEL ===== */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.model-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 3px;
}

.model-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage-pale);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.model-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

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

.model-stat {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.model-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.2;
}

.model-stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.model-example {
  font-size: 0.82rem;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 0.7rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}

.model-total {
  background: var(--sage);
  border-radius: 3px;
  padding: 2rem 2.5rem;
}

.model-total-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.model-total-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.model-total-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

.model-total-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .model-grid { grid-template-columns: 1fr; }
  .model-total-inner { flex-direction: column; text-align: center; }
  .model-total-note { max-width: none; }
}

/* ===== DESIGN ADVANTAGE ===== */
h2.light { color: white; }
h2.light em { color: var(--sage-light); }
.light-sub { color: rgba(200, 200, 190, 0.8); }

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.advantage-item {
  padding: 1.8rem;
  border: 1px solid rgba(200, 200, 190, 0.15);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.advantage-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}

.advantage-item p {
  font-size: 0.88rem;
  color: rgba(200, 200, 190, 0.7);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 600px) {
  .advantage-grid { grid-template-columns: 1fr; }
}

/* ===== CAPITAL TABLE ===== */
.capital-table {
  margin-top: 2rem;
}

.capital-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.capital-row:first-child {
  border-top: 1px solid var(--border);
}

.capital-name {
  font-size: 0.9rem;
  color: var(--text);
}

.capital-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sage);
  font-weight: 500;
  white-space: nowrap;
}

.capital-detail {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.15rem;
}

.capital-total {
  background: var(--sage);
  border: none;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.capital-total .capital-name {
  color: white;
  font-weight: 600;
}

.capital-total .capital-amount {
  color: white;
  font-size: 1.3rem;
}

/* ===== FOUNDER ===== */
.founder-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 2.5rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.founder-bio p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.85;
}

.highlight {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-bottom: 1rem;
}

.highlight-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 700px) {
  .founder-grid { grid-template-columns: 1fr; }
}

/* ===== VISION ===== */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vision-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vision-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.vision-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.vision-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.vision-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

.vision-close {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.vision-close p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .vision-grid { grid-template-columns: 1fr; }
}

/* ===== MARKET ===== */
.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.market-stat {
  text-align: center;
  padding: 1.5rem;
}

.market-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.market-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 650px) {
  .market-stats { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.section-cta {
  padding: 6rem 2rem;
  background: var(--cream);
}

#ctaCanvas {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  opacity: 0.7;
}

.section-cta h2 {
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.cta-note {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-bg);
  text-align: center;
  padding: 3rem 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-values {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(200, 200, 190, 0.3);
  line-height: 1.8;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 200, 190, 0.1);
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(200, 200, 190, 0.5);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.section,
.proof-bar {
  animation: none;
}

@media (prefers-reduced-motion: no-preference) {
  .concept-card,
  .model-card,
  .advantage-item,
  .highlight,
  .market-stat,
  .capital-row {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease forwards;
  }

  .concept-card:nth-child(1) { animation-delay: 0.1s; }
  .concept-card:nth-child(2) { animation-delay: 0.2s; }
  .concept-card:nth-child(3) { animation-delay: 0.3s; }

  .model-card:nth-child(1) { animation-delay: 0.1s; }
  .model-card:nth-child(2) { animation-delay: 0.2s; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO ENTRANCE ===== */
.hero-badge { opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.hero h1 { opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards; }
.hero-tagline { opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards; }
.hero-divider { opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards; }
.hero-operating { opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.hero-sub { opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards; }
.hero-ctas { opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards; }

/* ===== GATE ===== */
#gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(126, 168, 120, 0.07) 0%, transparent 55%),
    var(--cream);
}

.gate-inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.gate-inner canvas {
  display: block;
  margin: 0 auto 1.5rem;
}

.gate-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--sage);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gate-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.gate-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gate-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 500px) {
  .gate-contacts { grid-template-columns: 1fr; }
}

.gate-contact {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.gate-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 168, 120, 0.1);
}

.gate-contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.gate-contact-value {
  font-size: 0.82rem;
  color: var(--sage);
}

.gate-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.gate-divider::before,
.gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.gate-form {
  display: flex;
  gap: 0.5rem;
}

.gate-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.gate-input:focus {
  border-color: var(--sage);
}

.gate-input::placeholder {
  color: var(--border);
}

.gate-btn {
  padding: 0.75rem 1.5rem;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 3px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.gate-btn:hover {
  background: var(--sage-light);
}

.gate-error {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 0.6rem;
  display: none;
}

/* ===== CONTENT PAGES ===== */
.content-page { }

.hero-canvas-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.cta-canvas {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  opacity: 0.7;
}

/* ===== SPIRITUAL: HERO VARIANT ===== */
.hero-bg-spirit {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(126, 168, 120, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(201, 168, 232, 0.05) 0%, transparent 50%),
    var(--cream) !important;
}

/* ===== SPIRITUAL: LAND CARDS ===== */
.spirit-land-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

.spirit-land-card {
  text-align: center;
}

.spirit-land-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .spirit-land-grid { grid-template-columns: 1fr !important; }
}

/* ===== SPIRITUAL: SANCTUARY GRID ===== */
.sanctuary-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sanctuary-main h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--sage);
}

.sanctuary-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sanctuary-pricing {
  background: var(--sage);
  color: white;
  border-radius: 3px;
  padding: 2rem;
  text-align: center;
}

.sanctuary-pricing-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.sanctuary-pricing-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.sanctuary-pricing-detail {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.5;
}

.sanctuary-note {
  background: white;
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 3px 3px 0;
}

.sanctuary-note p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 700px) {
  .sanctuary-grid { grid-template-columns: 1fr; }
}

/* ===== SPIRITUAL: HEALING ===== */
.healing-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
}

.healing-values {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.healing-value {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.4rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.healing-value-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  white-space: nowrap;
  min-width: 120px;
}

.healing-value span:last-child {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .healing-value { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .healing-value-tag { min-width: auto; }
}

/* ===== SPIRITUAL: VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 1.5rem;
  border: 1px solid rgba(200, 200, 190, 0.15);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(200, 200, 190, 0.7);
  line-height: 1.7;
  margin: 0;
}

.value-card-wide {
  grid-column: 1 / -1;
  text-align: center;
  background: rgba(191, 167, 106, 0.08);
  border-color: rgba(191, 167, 106, 0.25);
}

@media (max-width: 700px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card-wide { grid-column: auto; text-align: left; }
}

/* ===== SPIRITUAL: PARTNERSHIP CARDS ===== */
.partnership-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.partnership-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
}

.partnership-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.partnership-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.partnership-card-accent {
  background: var(--sage-pale);
  border-color: var(--sage-light);
}

/* ===== FLIP FEATHER CARDS ===== */
.flip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  margin-top: 1rem;
}

.flip-card {
  -webkit-perspective: 800px;
  perspective: 800px;
  cursor: pointer;
  width: 140px;
  height: 260px;
  flex-shrink: 0;
}

.flip-card-wide { width: 160px; }

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.7s ease, transform 0.7s ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.6rem 1.2rem;
  text-align: center;
  background: transparent;
  border: none;
}

.flip-front canvas,
.flip-back canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.flip-name {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.15rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.flip-tag {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  color: rgba(200,200,190,.8);
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.flip-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  justify-content: center;
  padding: 0.8rem;
  background: var(--dark-bg);
}

/* Hide front content when flipped (mobile Safari fallback) */
.flip-card.flipped .flip-front {
  visibility: hidden;
}

.flip-back-name {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.flip-back p {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  color: rgba(200,200,190,.85);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

@media (max-width: 600px) {
  .flip-grid { gap: 0.3rem 0; }
  .flip-card { width: 110px; height: 210px; }
  .flip-card-wide { width: 120px; }
  .flip-name { font-size: 0.88rem; }
  .flip-tag { font-size: 0.6rem; }
  .flip-back p { font-size: 0.65rem; }
  .flip-back-name { font-size: 0.85rem; }
}

/* ===== ZOME SACRED GEOMETRY SECTION ===== */
.zome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.zome-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.zome-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.zome-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.zome-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.zome-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

.zome-credit {
  text-align: center;
  margin-top: 1rem;
}

.zome-credit p {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.zome-credit a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
}

.zome-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .zome-grid { grid-template-columns: 1fr; }
}

/* ===== ADDITIONAL MOBILE FIXES ===== */

/* Gate page mobile */
@media (max-width: 500px) {
  .gate-inner { padding: 0 0.5rem; }
  .gate-title { font-size: 2rem; }
  .gate-text { font-size: 0.85rem; }
  .gate-form { flex-direction: column; }
  .gate-btn { width: 100%; }
}

/* Hero mobile */
@media (max-width: 600px) {
  .hero { padding: 80px 1.2rem 3rem; min-height: auto; }
  .hero h1 { font-size: 2.5rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

/* Proof bar mobile */
@media (max-width: 500px) {
  .proof-bar { padding: 1.5rem 1rem; }
  .proof-inner { gap: 1rem; }
  .proof-number { font-size: 1.4rem; }
  .proof-label { font-size: 0.6rem; }
}

/* General section mobile */
@media (max-width: 600px) {
  .section { padding: 3.5rem 1.2rem; }
  .section-inner { padding: 0; }
  h2 { font-size: 1.6rem; }
  .section-lead { font-size: 0.92rem; }
  .sanctuary-pricing-range { font-size: 1.5rem; }
}

/* Capital table mobile */
@media (max-width: 600px) {
  .capital-row { padding: 0.8rem; flex-wrap: wrap; gap: 0.2rem; }
  .capital-name { font-size: 0.82rem; }
  .capital-amount { font-size: 1rem; }
}

/* CTA mobile */
@media (max-width: 600px) {
  .section-cta { padding: 4rem 1.2rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; text-align: center; }
  .cta-contact { flex-direction: column; gap: 0.3rem; }
  .cta-dot { display: none; }
}

/* Partnership cards mobile */
@media (max-width: 600px) {
  .partnership-card { padding: 1.5rem; }
  .partnership-card h3 { font-size: 1.05rem; }
}

/* Zome grid mobile */
@media (max-width: 600px) {
  .zome-grid { grid-template-columns: 1fr; }
  .zome-card { padding: 1.5rem; }
}

/* Healing values mobile */
@media (max-width: 500px) {
  .healing-value { padding: 0.8rem 1rem; }
  .healing-value-tag { font-size: 0.62rem; min-width: 90px; }
}

/* Footer mobile */
@media (max-width: 500px) {
  footer { padding: 2rem 1rem; }
  .footer-brand { font-size: 1.2rem; }
  .footer-values { font-size: 0.58rem; }
}
