/* =============================================
   SPRINGS RESIDENCES - MAIN STYLESHEET
   ============================================= */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Raleway:wght@200;300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --color-dark-green: #15383c;
  --color-deep-green: #1b4348;
  --color-forest-green: #215157;
  --color-mid-green: #29656d;
  --color-light-green: #327c85;
  --color-cream: #f5f0e8;
  --color-warm-white: #faf8f3;
  --color-ivory: #ede8de;
  --color-gold: #eed9a2;
  --color-gold-light: #f5ebd0;
  --color-text-light: #f8faec;
  --color-text-muted: #d6c390;
  --color-text-dark: #15383c;
  --color-black: #0c2022;
  --color-sand: #e7ddcc;
  --color-graphite: #4a453b;
  --color-bronze: #9c7b46;
  --color-ink-muted: #5c554a;

  /* Warm light-wheat panel theme (matches the pencil sketches) */
  --color-wheat: #ecdfc7;
  --color-wheat-deep: #ddceac;

  /* Reusable blended-panel gradient */
  --panel-wheat: linear-gradient(160deg, var(--color-wheat) 0%, var(--color-wheat-deep) 100%);

  --font-serif: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  --font-sans: 'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --transition-base: 0.4s ease;
  --transition-slow: 0.8s ease;
  --transition-fast: 0.2s ease;

  --nav-height: 70px;
}

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

html {
  font-size: 20px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-dark-green);
  color: var(--color-text-light);
  overflow-x: hidden;
  cursor: none;
}

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

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: 0.12s ease;
  opacity: 0.7;
}

.cursor.cursor-hover {
  width: 20px;
  height: 20px;
  background: var(--color-gold-light);
}

.cursor-follower.cursor-hover {
  width: 55px;
  height: 55px;
  opacity: 0.4;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: rgba(26, 42, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 5px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text-light);
  transition: var(--transition-base);
}

.nav-menu-btn:hover span {
  background: var(--color-gold);
}

.nav-text-menu {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-logo .logo-super {
  font-size: 15px;
  vertical-align: super;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.7;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-gold);
}

.nav-heart {
  width: 18px;
  height: 18px;
  cursor: none;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.nav-heart:hover {
  opacity: 1;
}

/* FULL SCREEN MENU */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark-green);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-menu.open {
  transform: translateY(0);
}

.menu-close-btn {
  position: absolute;
  top: 25px;
  left: 40px;
  cursor: none;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.menu-close-btn:hover {
  color: var(--color-gold);
}

.menu-close-icon {
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
}

.fullscreen-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fullscreen-menu nav a {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 94px);
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 2px;
  transition: color var(--transition-fast), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.fullscreen-menu nav a:hover {
  color: var(--color-gold);
  transform: translateX(10px);
}

.menu-footer-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.menu-footer-info p {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 50px;
}

.hero-left-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark-green);
}

.hero-left-image {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

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

.hero-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.hero-subtitle {
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 2;
  max-width: 220px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 50px;
}

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

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

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 42, 30, 0.5) 0%, transparent 60%);
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

/* --- GSAP UTILITIES --- */
.gsap-reveal {
  visibility: hidden;
}

.gsap-clip {
  clip-path: inset(100% 0 0 0);
}

.stacked-section {
  position: relative;
  z-index: 1;
  will-change: transform;
}

/* =============================================
   PERFORMANCE — GPU Acceleration
   ============================================= */
.nature-left-bg img,
.fitness-bg img,
.services-hero-bg img,
.hero-right-image img,
.hero-left-image img,
.about-vision-left img,
.location-left img {
  will-change: transform;
  transform: translateZ(0);
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.intro-left {
  position: relative;
  overflow: hidden;
  background: var(--color-sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

/* Fine hairline pattern, edge to edge */
.intro-left-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(115deg,
      var(--color-graphite) 0px,
      var(--color-graphite) 0.5px,
      transparent 0.5px,
      transparent 7px);
}

/* Architectural continuation sketch — hangs off the right edge, toward the photo */
.intro-sketch {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: var(--color-graphite);
}

.intro-sketch img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.intro-left .section-label {
  position: relative;
  z-index: 3;
  color: var(--color-forest-green);
}

.intro-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.1;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}

.intro-title em {
  font-style: italic;
  color: var(--color-bronze);
}

.intro-text {
  position: relative;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 2.2;
  color: var(--color-ink-muted);
  max-width: 340px;
  text-transform: uppercase;
}

.intro-right {
  position: relative;
  overflow: hidden;
}

.intro-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.intro-right:hover img {
  transform: scale(1.05);
}

/* =============================================
   FOUNDERS SECTION (About Us)
   ============================================= */
.founders-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--color-deep-green) 0%, var(--color-dark-green) 70%);
  overflow: hidden;
}

.founders-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 70px 90px;
}

/* Fine gold hairline pattern, echoes the intro section */
.founders-left-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: repeating-linear-gradient(115deg,
      var(--color-gold) 0px,
      var(--color-gold) 0.5px,
      transparent 0.5px,
      transparent 9px);
}

.founders-label-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.founders-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.founders-label-line {
  display: block;
  height: 1px;
  width: 110px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform-origin: left center;
}

.founders-title {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(64px, 7.5vw, 120px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--color-cream);
  margin-bottom: 34px;
}

.founders-title em {
  font-style: italic;
  color: var(--color-gold);
}

/* Overflow masks for the line-rise reveal */
.ft-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.ft-line-inner {
  display: inline-block;
  will-change: transform;
}

.founders-lead {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.4px;
  color: rgba(245, 240, 232, 0.78);
  max-width: 480px;
  margin-bottom: 46px;
}

.founders-lead strong {
  color: var(--color-gold);
  font-weight: 500;
  white-space: nowrap;
}

.founders-names {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin-bottom: 46px;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(238, 217, 162, 0.16);
}

.founder-row:last-child {
  border-bottom: 1px solid rgba(238, 217, 162, 0.16);
}

.founder-index {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-bronze);
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-cream);
}

.founder-role {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.founders-vm {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 560px;
}

.vm-card {
  position: relative;
  padding-top: 22px;
  --vm-line: 1;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.55;
  transform: scaleX(var(--vm-line));
  transform-origin: left center;
}

.vm-card h4 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.vm-card p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.68);
}

/* --- The studio motto — a signature line closing the panel --- */
.founders-motto {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-top: 48px;
}

.founders-motto-rule {
  align-self: center;
  flex-shrink: 0;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform-origin: left center;
}

.founders-motto-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.35;
  letter-spacing: 1.5px;
  color: var(--color-cream);
}

.founders-motto-text .motto-half {
  display: inline-block;
  white-space: nowrap;
}

.founders-motto-text .motto-half--gold {
  color: var(--color-gold);
}

.founders-motto-text .motto-dots {
  letter-spacing: 4px;
  opacity: 0.7;
}

/* --- Right panel: the founders portrait --- */
.founders-right {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.founders-photo {
  position: absolute;
  inset: clamp(28px, 4vw, 58px);
  overflow: hidden;
  background: var(--color-black);
}

.founders-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias the crop toward the image's right side — empty wall sits on the
     left, so narrow screens trim wall instead of the second founder */
  object-position: 62% 22%;
  filter: grayscale(100%) contrast(1.02);
  will-change: transform;
}

/* Offset gold frame behind the portrait */
.founders-photo-frame {
  position: absolute;
  inset: clamp(28px, 4vw, 58px);
  transform: translate(14px, 14px);
  border: 1px solid rgba(238, 217, 162, 0.35);
  pointer-events: none;
}

.founders-vertical-tag {
  position: absolute;
  top: 50%;
  right: clamp(4px, 0.9vw, 16px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.8;
}

.founders-photo-caption {
  position: absolute;
  left: clamp(48px, 6vw, 88px);
  bottom: clamp(48px, 6vw, 88px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 22px;
  background: rgba(12, 32, 34, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 2px solid var(--color-gold);
}

.founders-photo-caption span {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.5px;
  color: var(--color-cream);
}

.founders-photo-caption em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* =============================================
   OFFICE SECTION (From sketch to reality)
   ============================================= */
.office-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.office-left {
  position: relative;
  overflow: hidden;
}

/* Absolute so a portrait photo can't stretch the section beyond ~100vh —
   it cover-crops inside the panel instead */
.office-left img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-photo-caption {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 22px;
  background: rgba(12, 32, 34, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 2px solid var(--color-gold);
}

.office-photo-caption span {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.5px;
  color: var(--color-cream);
}

.office-photo-caption em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.office-right {
  position: relative;
  overflow: hidden;
  background: var(--color-wheat);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 70px;
}

/* The pencil sketch of the office fills the panel behind the text */
.office-sketch {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.office-sketch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Soft wheat wash on the left so the text stays readable over the sketch */
.office-sketch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(236, 223, 199, 0.94) 0%,
      rgba(236, 223, 199, 0.6) 42%,
      rgba(236, 223, 199, 0) 70%);
}

.office-right .section-label {
  position: relative;
  z-index: 3;
  color: var(--color-forest-green);
}

.office-title {
  position: relative;
  z-index: 3;
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.office-title em {
  font-style: italic;
  color: var(--color-bronze);
}

.office-text {
  position: relative;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 2;
  color: var(--color-ink-muted);
  max-width: 400px;
  margin-bottom: 34px;
}

.office-more {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-bronze);
}

.office-more::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--color-bronze);
}

/* Mirrored variant — sketch panel on the left, photo on the right */
.office-section--flip .office-left {
  order: 2;
}

.office-section--flip .office-right {
  order: 1;
}

/* Tall variant — the section takes the portrait sketch's own proportions
   (panel = 50vw wide, sketch is ~1:1.55), so sketch and photo show full height */
.office-section--tall {
  min-height: calc(50vw * 1.55);
}

/* =============================================
   AMENITIES SECTION
   ============================================= */
.amenities-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.amenities-left {
  position: relative;
  overflow: hidden;
}

.amenities-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-right {
  background: var(--panel-wheat);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.amenities-list {
  margin-top: 30px;
}

.amenity-item {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 300;
  color: var(--color-dark-green);
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(156, 123, 70, 0.25);
  cursor: none;
  transition: color var(--transition-base), padding-left var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amenity-item:hover {
  color: var(--color-bronze);
  padding-left: 14px;
}

.amenity-item:hover .amenity-arrow {
  opacity: 1;
}

.amenity-item .amenity-arrow {
  font-size: 22px;
  opacity: 0;
  color: var(--color-bronze);
  transition: opacity var(--transition-base);
}

/* =============================================
   BLENDED CREAM PANELS + NATURE SKETCH DECOR
   (shared by the recoloured green panels)
   ============================================= */

/* Faint diagonal hairline texture, echoes the sketch panels */
.amenities-right::before,
.location-right::before,
.nature-right::before,
.contact-form-left::before,
.contact-info-right::before,
.about-stats::before,
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  background-image: repeating-linear-gradient(115deg,
      var(--color-graphite) 0px,
      var(--color-graphite) 0.5px,
      transparent 0.5px,
      transparent 7px);
}

/* Keep the real content above the texture and the leaves
   (leave the full-bleed sketch image alone) */
.amenities-right > *:not(.panel-leaf):not(.nature-sketch),
.location-right > *:not(.panel-leaf):not(.nature-sketch),
.nature-right > *:not(.panel-leaf):not(.nature-sketch),
.contact-form-left > *:not(.panel-leaf),
.contact-info-right > *:not(.panel-leaf),
.about-stats > *:not(.panel-leaf),
.services-hero > *:not(.panel-leaf) {
  position: relative;
  z-index: 2;
}

/* Section labels stay readable on the wheat field */
.amenities-right .section-label,
.location-right .section-label,
.nature-right .section-label,
.contact-hero .section-label,
.services-hero .section-label {
  color: var(--color-forest-green);
}

/* Hand-sketched nature accents (vines hang from the top, sprigs rise from the bottom) */
.panel-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: var(--color-bronze);
}

.panel-leaf svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: leafSway 7s ease-in-out infinite;
}

/* Hanging vines */
.panel-leaf--vine-tr,
.panel-leaf--vine-tl {
  top: -12px;
  width: 128px;
  height: 216px;
  opacity: 0.5;
}

.panel-leaf--vine-tr {
  right: 26px;
}

.panel-leaf--vine-tl {
  left: 26px;
  transform: scaleX(-1);
}

.panel-leaf--vine-tr svg,
.panel-leaf--vine-tl svg {
  transform-origin: top center;
}

/* Rising leafy branches */
.panel-leaf--sprig-bl,
.panel-leaf--sprig-br {
  bottom: 0;
  width: 175px;
  height: 135px;
  opacity: 0.4;
}

.panel-leaf--sprig-bl {
  left: 0;
}

.panel-leaf--sprig-br {
  right: 0;
  transform: scaleX(-1);
}

.panel-leaf--sprig-bl svg,
.panel-leaf--sprig-br svg {
  transform-origin: bottom left;
  animation-duration: 8.5s;
}

@keyframes leafSway {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(2.5deg);
  }
}

/* =============================================
   NATURE SECTION
   ============================================= */
.nature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.nature-left {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 60px;
}

.nature-left-bg {
  position: absolute;
  inset: 0;
}

.nature-left-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nature-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 42, 30, 0.75) 0%, transparent 55%);
}

.nature-text-big {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1;
}

.nature-text-big em {
  font-style: italic;
  display: block;
}

.nature-text-sub {
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 15px;
}

.nature-right {
  position: relative;
  overflow: hidden;
  background: var(--panel-wheat);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
}

.nature-sketch {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nature-sketch img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.nature-description {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 1px;
  color: var(--color-ink-muted);
  max-width: 380px;
}

.nature-icons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.nature-icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  font-size: 18px;
}

.nature-icon-btn:hover {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.1);
}

.nature-nav-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(156, 123, 70, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all var(--transition-fast);
  font-size: 18px;
  color: var(--color-bronze);
}

.nature-nav-arrow:hover {
  border-color: var(--color-bronze);
  background: rgba(156, 123, 70, 0.12);
}

/* =============================================
   FITNESS SECTION (Running / Lifestyle)
   ============================================= */
.fitness-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.fitness-bg {
  position: absolute;
  inset: 0;
}

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

.fitness-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 30%, rgba(26, 42, 30, 0.8) 70%);
}

.fitness-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 500px;
  padding: 80px 60px;
}

.fitness-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-cream);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fitness-text {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  opacity: 0.8;
}

/* Left-text variant — keeps the photo's lit signage visible on the right */
.fitness-overlay--left {
  background: linear-gradient(to left, transparent 30%, rgba(12, 32, 34, 0.82) 70%);
}

.fitness-content--left {
  margin-left: 0;
  margin-right: auto;
}

/* Office-at-dusk photo: frame the building (not the sky), with vertical
   bleed so the parallax drift never exposes the section edges */
.fitness-bg--office img {
  height: calc(100% + 120px);
  margin-top: -60px;
  object-position: center 68%;
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.location-left {
  position: relative;
  overflow: hidden;
}

.location-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-map-pin {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translate(50%, -50%);
  z-index: 5;
}

.pin-circle {
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pinPulse 2s ease-in-out infinite;
}

.pin-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

@keyframes pinPulse {

  0%,
  100% {
    transform: translate(50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(50%, -50%) scale(1.1);
    opacity: 0.7;
  }
}

.location-right {
  background: var(--panel-wheat);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.location-heading {
  font-family: var(--font-serif);
  font-size: clamp(44px, 4vw, 66px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.1;
  margin-bottom: 30px;
}

.location-heading em {
  font-style: italic;
  color: var(--color-bronze);
}

.location-description {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.8px;
  color: var(--color-ink-muted);
  max-width: 360px;
}

/* =============================================
   RESIDENCES SECTION
   ============================================= */
.residences-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.residences-left {
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

.residences-tag {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.residences-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.1;
  margin-bottom: 30px;
}

.residences-title em {
  font-style: italic;
}

.residences-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.8px;
  color: #5a5a4a;
  max-width: 360px;
  margin-bottom: 40px;
}

.residences-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.residences-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.residences-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.residences-gallery-item:hover img {
  transform: scale(1.08);
}

.residence-more-btn {
  align-self: flex-start;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-dark-green);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 3px;
  transition: color var(--transition-fast);
  cursor: none;
}

.residences-right {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 50px;
}

.residences-right-image {
  position: absolute;
  inset: 0;
}

.residences-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-card {
  position: relative;
  z-index: 2;
  background: var(--color-dark-green);
  padding: 30px;
  max-width: 240px;
  margin-left: auto;
}

.plans-card-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.plans-card-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.plans-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  margin-bottom: 20px;
}

.plans-explore-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 12px 24px;
  display: inline-block;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  cursor: none;
}

.plans-explore-btn:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--color-gold);
}

/* =============================================
   FLOOR PLAN SECTION
   ============================================= */
.floorplan-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.floorplan-left {
  position: relative;
  overflow: hidden;
}

.floorplan-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floorplan-right {
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

.floorplan-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.1;
  margin-bottom: 8px;
}

.floorplan-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.1;
  margin-bottom: 30px;
}

.floorplan-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.8px;
  color: #6a6a56;
  max-width: 380px;
  margin-bottom: 40px;
}

.floorplan-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-dark-green);
  border-bottom: 1px solid rgba(26, 42, 30, 0.3);
  padding-bottom: 4px;
  display: inline-block;
  transition: color var(--transition-fast);
  cursor: none;
}

.floorplan-cta:hover {
  color: var(--color-text-muted);
}

.live-more-tag {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-black);
  color: var(--color-text-light);
  padding: 80px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 2;
  color: var(--color-text-muted);
  max-width: 200px;
}

.footer-nav-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-nav-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-nav-col ul li {
  margin-bottom: 12px;
}

.footer-nav-col ul li a {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-col ul li a:hover {
  color: var(--color-cream);
}

.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-contact p {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
  color: var(--color-text-muted);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(160, 149, 110, 0.4);
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(160, 149, 110, 0.4);
  transition: color var(--transition-fast);
}

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

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 80px;
  padding-top: calc(var(--nav-height) + 40px);
  background: var(--panel-wheat);
  position: relative;
  overflow: hidden;
}



.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-page-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 8vw, 124px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 0.95;
}

.contact-page-title em {
  font-style: italic;
  color: var(--color-bronze);
  display: block;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-form-left {
  background: var(--panel-wheat);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.contact-form-left h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-dark-green);
  margin-bottom: 10px;
}

.contact-form-left .sub {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-forest-green);
  margin-bottom: 50px;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(156, 123, 70, 0.4);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--color-dark-green);
  outline: none;
  transition: border-color var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(92, 85, 74, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--color-bronze);
}

.contact-form select option {
  background: var(--color-wheat);
  color: var(--color-dark-green);
}

.contact-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-submit-btn {
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-dark-green);
  background: var(--color-gold);
  border: none;
  padding: 18px 50px;
  cursor: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.contact-submit-btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.contact-info-right {
  background: var(--panel-wheat);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info-right h3 {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--color-dark-green);
  margin-bottom: 50px;
  line-height: 1.2;
}

.contact-info-item {
  margin-bottom: 40px;
}

.contact-info-item h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-bronze);
  margin-bottom: 10px;
}

.contact-info-item p {
  font-family: var(--font-sans);
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: var(--color-ink-muted);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
}

.about-hero-left {
  position: relative;
  overflow: hidden;
  background: var(--color-deep-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

/* Text sits above the sketch image */
.about-hero-left > *:not(.about-hero-sketch) {
  position: relative;
  z-index: 2;
}

.about-hero-sketch {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero-sketch img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.about-hero-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-forest-green);
  margin-bottom: 30px;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.05;
  margin-bottom: 40px;
}

.about-hero-title em {
  font-style: italic;
  color: var(--color-bronze);
}

.about-hero-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.5;
  letter-spacing: 0.8px;
  color: var(--color-ink-muted);
  max-width: 360px;
}

.about-hero-right {
  position: relative;
  overflow: hidden;
}

.about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-vision-left {
  position: relative;
  overflow: hidden;
}

.about-vision-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-vision-right {
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

.about-vision-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-vision-title em {
  font-style: italic;
}

.about-vision-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.8px;
  color: #5a5a4a;
  max-width: 380px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--panel-wheat);
  position: relative;
  overflow: hidden;
}

.stat-item {
  padding: 80px 60px;
  border-right: 1px solid rgba(156, 123, 70, 0.25);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 94px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-forest-green);
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px;
  padding-top: calc(var(--nav-height) + 60px);
  background: var(--panel-wheat);
  position: relative;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

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

.services-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 300;
  color: var(--color-dark-green);
  line-height: 1;
  margin-bottom: 30px;
}

.services-hero-title em {
  font-style: italic;
  color: var(--color-bronze);
}

.services-hero-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.8px;
  color: var(--color-ink-muted);
  max-width: 400px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
}

.service-card-image {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

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

.service-card:hover .service-card-image {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 42, 30, 0.85) 0%, rgba(26, 42, 30, 0.2) 60%, transparent 100%);
  transition: background var(--transition-base);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(26, 42, 30, 0.92) 0%, rgba(26, 42, 30, 0.4) 70%, rgba(26, 42, 30, 0.1) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}

.service-card-name {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 15px;
}

.service-card-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.service-card:hover .service-card-desc {
  max-height: 100px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* =============================================
   PAGE TRANSITIONS
   ============================================= */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark-green);
  z-index: 5000;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition-overlay.entering {
  transform: translateY(0);
}

.page-transition-overlay.leaving {
  transform: translateY(100%);
}

/* =============================================
   LOADING SCREEN
   ============================================= */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-dark-green);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  /* Theme synchronization */
  z-index: 1;
}

.loading-logo {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 6px;
  margin-bottom: 40px;
}

.loading-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: var(--color-gold);
  width: 0;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }

  .hero,
  .intro-section,
  .founders-section,
  .office-section,
  .amenities-section,
  .nature-section,
  .location-section,
  .residences-section,
  .floorplan-section,
  .about-hero,
  .about-vision,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

  /* Portrait first, story below — mirrors the hero's mobile order */
  .founders-right {
    order: 1;
    min-height: 72vh;
  }

  .office-left {
    min-height: 55vh;
  }

  /* Single column: photo stacks on top again, sketch panel below */
  .office-section--flip .office-left,
  .office-section--flip .office-right {
    order: initial;
  }

  /* Single column: drop the sketch-proportioned height, give the
     portrait photo a taller panel instead */
  .office-section--tall {
    min-height: 0;
  }

  .office-section--tall .office-left {
    min-height: 70vh;
  }

  .founders-left {
    order: 2;
    padding: 80px 40px;
  }

  .founders-vertical-tag {
    display: none;
  }

  .hero {
    height: auto;
  }

  .hero-left,
  .hero-right {
    height: 60vh;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 50px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav-group {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    padding: 60px 40px 30px;
  }
}

@media (max-width: 768px) {
  .nav-right .nav-link:not(:last-child) {
    display: none;
  }

  .hero-title {
    font-size: 52px;
  }

  .intro-title,
  .office-title,
  .nature-text-big {
    font-size: 48px;
  }

  .founders-title {
    font-size: clamp(56px, 16vw, 80px);
  }

  .founders-vm {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founders-right {
    min-height: 60vh;
  }

  .founders-photo-caption {
    left: clamp(36px, 8vw, 60px);
    bottom: clamp(36px, 8vw, 60px);
    padding: 12px 18px;
  }

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

  .amenities-section {
    grid-template-columns: 1fr;
  }

  .amenities-left {
    height: 40vh;
  }

  .residences-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-hero {
    padding: 80px 40px;
  }

  .contact-form-left,
  .contact-info-right {
    padding: 60px 40px;
  }

  .services-hero {
    padding: 80px 40px;
  }

  .footer-nav-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .intro-left,
  .office-right,
  .nature-right,
  .location-right,
  .residences-left,
  .floorplan-right,
  .about-hero-left,
  .about-vision-right {
    padding: 60px 40px;
  }

  .fitness-content {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
  }

  .hero-left,
  .hero-right {
    height: 50vh;
    padding: 40px 30px;
  }

  .hero-title {
    font-size: 42px;
  }

  .amenity-item {
    font-size: 36px;
  }

  .intro-title,
  .office-title,
  .nature-text-big {
    font-size: 40px;
  }

  .founders-left {
    padding: 60px 25px;
  }

  .office-right {
    padding: 60px 25px;
  }

  .founders-title {
    font-size: 52px;
  }

  .founder-name {
    font-size: 24px;
  }

  .founders-right {
    min-height: 55vh;
  }

  .founders-photo,
  .founders-photo-frame {
    inset: 18px;
  }

  .founders-photo-frame {
    transform: translate(9px, 9px);
  }

  .footer {
    padding: 50px 25px 25px;
  }
}