/* ═══════════════════════════════════════════
   PINK MEADOWS — styles.css
   Palette: cream, dusty rose, gold, forest
═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --cream:        #F5EDE8;
  --cream-light:  #FAF4F1;
  --rose:         #B0435A;
  --rose-mid:     #C2576A;
  --rose-light:   #E8C4CC;
  --rose-pale:    #F2DDE0;
  --gold:         #8C7044;
  --gold-light:   #C4A96A;
  --forest:       #3A4A35;
  --forest-mid:   #4E6045;
  --charcoal:     #2C2A28;
  --muted:        #7A6E68;
  --white:        #FFFFFF;

  --font-serif:   'EB Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;

  --max-w:        1180px;
  --section-pad:  100px 24px;
  --radius:       4px;
  --radius-lg:    12px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream-light);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION BASE ─── */
.section {
  padding: var(--section-pad);
  position: relative;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.section-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.section-tag.light { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rose);
  line-height: 1.15;
  margin-bottom: 32px;
}

.body-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.body-copy {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176,67,90,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 0.85rem; }

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

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(250, 244, 241, 0.97);
  box-shadow: 0 2px 24px rgba(44,42,40,0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-links .nav-cta {
  background: var(--rose);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--rose-mid);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(176,67,90,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(140,112,68,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: 10%; left: 5%;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(176,67,90,0.08);
  animation: spin-slow 40s linear infinite;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: 8%; right: 4%;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(140,112,68,0.1);
  animation: spin-slow 30s linear infinite reverse;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: hero-in 1s ease 0.2s both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.08;
  color: var(--rose);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Divider line */
.hero-content::before {
  content: '— ✿ —';
  display: block;
  font-family: var(--font-serif);
  color: var(--rose-light);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 1.2s ease 1s both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose-light), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  background: var(--cream-light);
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: start;
  margin-top: 8px;
}
.about-text{
  width: 70%;
  text-align: center;
  align-self: center;
}
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  padding: 14px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--rose-light);
  transition: border-color var(--transition), background var(--transition);
}
.icon-list li:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
}
.icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.icon-wrap svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════
   PHOTO CAROUSEL
══════════════════════════════════════════ */
.carousel-section {
  background: var(--cream-light);
  padding-bottom: 80px;
  overflow: hidden;
}
.carousel-header {
  text-align: center;
  margin-bottom: 48px;
}
.carousel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--rose);
  font-weight: 500;
  line-height: 1.2;
}

/* ── Track wrapper holds the viewport + arrow buttons ── */
.carousel-track-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Viewport: clips the scrolling track ── */
.carousel-viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.carousel-viewport:active { cursor: grabbing; }

/* ── Track: the sliding strip ── */
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Individual slide ── */
.carousel-slide {
  flex: 0 0 100%;
  margin-right: 0;
  border-radius: 14px;
  overflow: hidden;
}
.slide-img-wrap {
  position: relative;

  overflow: hidden;
  border-radius: 14px;
  background: var(--rose-pale);
}
.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.carousel-slide:hover .slide-img-wrap img {
  transform: scale(1.04);
}
.slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(to top, rgba(44,42,40,0.55) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.carousel-slide:hover .slide-overlay { opacity: 1; }
.slide-overlay span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ── Arrow buttons ── */
.carousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--rose-light);
  background: var(--white);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
  margin: 0 16px;
}
.carousel-btn:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 6px 20px rgba(176,67,90,0.25);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.carousel-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Dots ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--rose);
  width: 22px;
  border-radius: 4px;
}

/* ── Counter ── */
.carousel-counter {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.counter-sep { margin: 0 4px; color: var(--rose-light); }

/* ── Responsive breakpoints ── */
@media (max-width: 600px) {
    #about .container{
    padding: 0;
}
  .carousel-btn { width: 36px; height: 36px; margin: 0 8px; display: none; }
  .carousel-section { padding-left: 0; padding-right: 0; }
  .carousel-section .container { padding: 0 20px; }
  .carousel-track-wrapper { padding: 0 4px; }
  .slide-img-wrap { aspect-ratio: 4 / 3; }
}

/* ══════════════════════════════════════════
   JAIN FARMS
══════════════════════════════════════════ */
.jain-farms {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}
.jf-bg-ornament {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.jf-bg-ornament::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}
.jain-farms .section-tag.light { color: var(--gold-light); }
.jf-intro {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.75;
  color: rgba(245,237,232,0.8);
  max-width: 600px;
  margin-bottom: 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 24px;
  text-align: center;
  transition: background var(--transition);
  border-radius: var(--radius);
}
.stat-card:hover { background: rgba(255,255,255,0.1); }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-number sup { font-size: 0.55em; vertical-align: super; }
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,232,0.55);
}
.locations { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; }
.locations-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.locations-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.locations-pills span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(245,237,232,0.75);
}
.locations-pills .dot {
  color: var(--rose-light);
  font-size: 0.6rem;
}

/* ══════════════════════════════════════════
   PROJECTS ACROSS INDIA
══════════════════════════════════════════ */
.projects-section {
  background: var(--cream-light);
}

/* ── Tab Nav ── */
.projects-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1.5px solid var(--rose-pale);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.proj-tab {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  position: relative;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.proj-tab::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px 2px 0 0;
}
.proj-tab:hover { color: var(--rose); }
.proj-tab.active { color: var(--rose); }
.proj-tab.active::after { transform: scaleX(1); }

.tab-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--rose);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ── Panels ── */
.proj-panel {
  display: none;
}
.proj-panel.active {
  display: block;
  animation: panel-in 0.4s ease both;
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Grid ── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-grid--single {
  grid-template-columns: minmax(0, 480px);
}

/* ── Cards ── */
.proj-card {
  background: var(--white);
  border: 1px solid var(--rose-pale);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(176,67,90,0.09);
  border-color: var(--rose-light);
}
.proj-card.featured {
  border-color: var(--rose-light);
  background: var(--rose-pale);
}
.proj-card.new-launch-card {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--cream) 0%, rgba(196,169,106,0.08) 100%);
}

.proj-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.proj-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
}
.proj-tag.launch {
  background: var(--gold);
}

.proj-location-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.proj-location-pill svg {
  width: 12px; height: 12px;
  stroke: var(--rose);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.proj-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.proj-card.featured .proj-name { color: var(--rose); }

.proj-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}

.proj-early-access {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
}
.proj-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}
.proj-link:hover { color: var(--rose-mid); }
.proj-link:hover svg { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-grid--single { grid-template-columns: 1fr; }
  .projects-tabs { gap: 0; }
  .proj-tab { padding: 10px 14px; font-size: 0.72rem; }
}

/* ══════════════════════════════════════════
   WHY
══════════════════════════════════════════ */
.why { background: var(--cream); }
.why-intro {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 52px;
  font-style: italic;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.why-card {
  background: var(--cream-light);
  border: 1px solid var(--rose-pale);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(176,67,90,0.1);
  border-color: var(--rose-light);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--rose-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  margin-bottom: 20px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; line-height: 1.75; color: var(--muted); }
.why-footer {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
  color: var(--rose);
}

/* ══════════════════════════════════════════
   HIGHLIGHTS
══════════════════════════════════════════ */
.highlights { background: var(--cream-light); }
.highlights-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rose-pale);
}
.check-list li:last-child { border-bottom: none; }
.check {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.quote-card {
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 40px;
  position: relative;
}
.quote-icon {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: 36px;
  left: 32px;
  pointer-events: none;
}
.quote-card p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.quote-card cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-style: normal;
  color: rgba(255,255,255,0.7);
}
.vision-text p { font-size: 0.92rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.vision-text strong { color: var(--charcoal); }
.dot-list { display: flex; flex-direction: column; gap: 10px; }
.dot-list li {
  font-size: 0.88rem;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.dot-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 1.4rem;
  line-height: 1;
}

/* ══════════════════════════════════════════
   MORE THAN LAND
══════════════════════════════════════════ */
.more-than-land { background: var(--cream); }
.mtl-intro {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 52px;
  font-style: italic;
}
.mtl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.mtl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 16px;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rose-pale);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mtl-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(176,67,90,0.1);
}
.mtl-icon {
  width: 52px; height: 52px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.mtl-icon svg { width: 22px; height: 22px; }
.mtl-item span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.mtl-footer {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  text-align: center;
  color: var(--rose);
}

/* ══════════════════════════════════════════
   OWNERSHIP
══════════════════════════════════════════ */
.ownership {
  background: var(--forest);
  color: var(--cream);
}
.ownership-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(245,237,232,0.6);
  margin-bottom: 56px;
  font-style: italic;
}
.ownership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.own-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border-top: 3px solid var(--gold);
  transition: background var(--transition), transform var(--transition);
}
.own-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.own-icon {
  width: 52px; height: 52px;
  background: rgba(196,169,106,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.own-icon svg { width: 24px; height: 24px; }
.own-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.own-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245,237,232,0.6);
}

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
  background: var(--rose);
  text-align: center;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-tag.light { color: rgba(255,255,255,0.6); }
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.4;
}
.cta-section .btn-primary {
  background: var(--white);
  color: var(--rose);
  margin-bottom: 40px;
}
.cta-section .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.contact-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.contact-info a:hover { color: var(--white); }
.contact-info svg {
  width: 16px; height: 16px;
  stroke: currentColor;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  height: 48px;
  width: auto;
}
.footer p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mtl-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream-light);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 101; position: relative; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .highlights-inner { grid-template-columns: 1fr; gap: 48px; }
  .mtl-grid { grid-template-columns: repeat(2, 1fr); }
  .ownership-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
}

@media (max-width: 480px) {
  .mtl-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-info { flex-direction: column; align-items: center; gap: 20px; }
}