/* ═══════════════════════════════════════
   MERIDIAN — Luxury Real Estate | JARES AI
   ANTIGRAVITY Design × Aria AI Agent
   Mediterranean Light · Ocean × Gold
═══════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --cream: #F2EFE9;
  --ocean: #0A2540;
  --ocean-mid: #1B4B7A;
  --sky: #4A9FD5;
  --sky-light: #A8D4F0;
  --sky-pale: #E8F4FD;
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #9A7A40;
  --text-dark: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #8899AA;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.14);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ─── Custom Cursor ─── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(74, 159, 213, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}
body.cursor-hover .cursor { width: 18px; height: 18px; background: var(--gold); }
body.cursor-hover .cursor-follower { width: 56px; height: 56px; border-color: rgba(201,169,110,0.4); }
body.cursor-text .cursor { width: 4px; height: 24px; border-radius: 2px; }
body.cursor-text .cursor-follower { opacity: 0; }
body.cursor-hidden .cursor, body.cursor-hidden .cursor-follower { opacity: 0; }

/* ─── Preloader ─── */
.preloader {
  position: fixed; inset: 0;
  background: var(--ocean);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.35em;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 20px;
}
.preloader-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky-light), transparent);
  margin: 0 auto;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scaleX(0.4); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  height: 66px;
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--ocean); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--sky-light);
  transition: right var(--transition);
}
.nav-link:hover::after { right: 0; }
.nav-link:hover { color: var(--white); }
.nav.scrolled .nav-link { color: var(--text-mid); }
.nav.scrolled .nav-link:hover { color: var(--ocean); }
.nav.scrolled .nav-link::after { background: var(--sky); }

/* ─── Lang Switcher ─── */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px; padding: 3px; margin-right: 12px;
}
.lang-btn {
  background: none; border: none;
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 4px 8px; border-radius: 16px;
  cursor: none; font-family: var(--font-sans);
  letter-spacing: 0.05em; transition: all 0.2s; line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.lang-btn.active { background: rgba(74,159,213,0.25); color: var(--sky-light); }
.nav.scrolled .lang-switcher { background: rgba(0,0,0,0.05); }
.nav.scrolled .lang-btn { color: rgba(0,0,0,0.4); }
.nav.scrolled .lang-btn:hover { color: var(--ocean); }
.nav.scrolled .lang-btn.active { background: rgba(74,159,213,0.15); color: var(--sky); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(74,159,213,0.15);
  border: 1px solid rgba(74,159,213,0.35);
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--sky-light); font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--sky); border-color: var(--sky);
  color: var(--white); transform: translateY(-1px);
}
.nav.scrolled .nav-cta {
  background: var(--ocean); border-color: var(--ocean); color: var(--white);
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all var(--transition);
}
.nav.scrolled .nav-burger span { background: var(--ocean); }

/* ─── Mobile Nav Overlay ─── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: var(--ocean);
  z-index: 990;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}
.mobile-nav-overlay.active {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.mobile-nav-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.4rem; color: rgba(255,255,255,0.6);
  background: none; border: none; cursor: none;
  transition: color 0.2s; padding: 8px;
}
.mobile-nav-close:hover { color: var(--white); }
.mobile-lang-switcher {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(74,159,213,0.2);
  border-radius: 100px; padding: 5px 8px;
  margin-bottom: 36px;
}
.mobile-lang-btn {
  background: none; border: none;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 6px 12px; border-radius: 100px;
  cursor: none; font-family: var(--font-sans);
  letter-spacing: 0.06em; transition: all 0.2s;
  touch-action: manipulation;
}
.mobile-lang-btn:hover { color: rgba(255,255,255,0.9); }
.mobile-lang-btn.active {
  background: rgba(74,159,213,0.25); color: var(--sky-light);
}
.mobile-nav-links { text-align: center; }
.mobile-nav-links li { margin: 16px 0; }
.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 2rem; color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em; font-weight: 300;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--sky-light); }
.mobile-nav-cta {
  margin-top: 32px;
  display: inline-flex; align-items: center;
  background: var(--sky); color: var(--white);
  padding: 12px 32px; border-radius: 50px;
  font-size: 0.85rem; letter-spacing: 0.1em; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.mobile-nav-cta:hover { background: var(--ocean-mid); transform: translateY(-2px); }

/* ─── Hero ─── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; will-change: transform;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,rgba(10,37,64,0.72) 0%,rgba(10,37,64,0.45) 50%,rgba(10,37,64,0.60) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--sky-light);
  margin-bottom: 24px; font-weight: 400;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 28px; color: var(--white);
}
.hero-headline em { font-style: italic; color: var(--sky-light); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.78); margin-bottom: 48px; letter-spacing: 0.01em;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  padding: 22px 48px; gap: 48px;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 400; color: var(--white); line-height: 1;
}
.stat-label {
  display: block; font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px;
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.18); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: none; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08); opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }
.btn--primary {
  background: linear-gradient(135deg, var(--ocean-mid), var(--sky));
  color: var(--white); box-shadow: 0 4px 24px rgba(74,159,213,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(74,159,213,0.50); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--ocean); }
.btn--light:hover { background: var(--sky-pale); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ─── Sections ─── */
.section { position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--sky-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400; line-height: 1.15; color: var(--ocean);
}
.section-title em { font-style: italic; color: var(--sky); }
.section-desc {
  margin-top: 20px; font-size: 1rem; color: var(--text-mid);
  line-height: 1.8; max-width: 560px; margin-left: auto; margin-right: auto;
}
.section-cta { text-align: center; margin-top: 56px; }

/* ─── Quote Strip ─── */
.quote-strip {
  overflow: hidden; background: var(--ocean);
  padding: 18px 0; border-top: 1px solid rgba(74,159,213,0.2);
}
.quote-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 28s linear infinite;
}
.quote-track span {
  font-family: var(--font-serif); font-size: 0.88rem;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.6);
  text-transform: uppercase; white-space: nowrap; font-style: italic;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.quote-track:hover { animation-play-state: paused; }

/* ─── About Section ─── */
.about {
  padding: 120px 0; background: var(--white);
  position: relative; overflow: hidden;
}
.about-bg-figure {
  position: absolute; top: -10%; right: -8%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,159,213,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; height: 480px; }
.about-img {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--off-white);
}
.about-img-1 {
  width: 65%; height: 75%; top: 0; left: 0;
  background: url('hero_villa_cyprus.png') center/cover;
  box-shadow: var(--shadow-md);
}
.about-img-2 {
  width: 52%; height: 55%; bottom: 0; right: 0;
  background: url('property_penthouse.png') center/cover;
  box-shadow: var(--shadow-md);
}
.about-img-3 {
  width: 36%; height: 38%; top: 40%; left: 55%;
  background: url('property_villa_limassol.png') center/cover;
  box-shadow: var(--shadow-sm); border: 3px solid var(--white);
}
.about-stat-card {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--ocean); color: var(--white);
  padding: 20px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); text-align: center;
  z-index: 5;
}
.about-stat-card .stat-num {
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 400; color: var(--sky-light); display: block;
}
.about-stat-card .stat-label {
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-top: 4px; display: block;
}
.about-text { padding-left: 16px; }
.about-desc {
  font-size: 1rem; line-height: 1.9; color: var(--text-mid);
  margin-bottom: 20px;
}
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.feature-item { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--text-mid); }
.feature-icon { color: var(--sky); font-size: 0.8rem; }

/* ─── Aria Transition Strip ─── */
.aria-transition {
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--off-white) 100%);
  padding: 32px 0;
  border-top: 1px solid rgba(74,159,213,0.12);
  border-bottom: 1px solid rgba(74,159,213,0.12);
}
.at-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; text-align: center; padding: 0 40px;
}
.at-star { color: var(--sky); font-size: 1rem; opacity: 0.7; }
.at-inner p {
  font-family: var(--font-serif); font-size: 1.15rem;
  font-style: italic; color: var(--ocean); letter-spacing: 0.02em;
  font-weight: 400;
}

/* ─── Properties Section (ANTIGRAVITY) ─── */
.properties { padding: 120px 0; background: var(--off-white); }
.properties-filter {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 26px; border-radius: 50px;
  border: 1px solid rgba(10,37,64,0.15); background: var(--white);
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid); cursor: none; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ocean); border-color: var(--ocean); color: var(--white);
}
.filter-btn--inactive {
  opacity: 0.35; cursor: default !important; pointer-events: none;
}
.properties-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.property-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; height: 300px; overflow: hidden; }
.card-image img { transition: transform 0.7s var(--ease-smooth); }
.property-card:hover .card-image img { transform: scale(1.08); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.88) 0%, rgba(10,37,64,0.2) 55%, transparent 100%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.property-card:hover .card-overlay { opacity: 1; }
.card-tag {
  display: inline-block; background: rgba(74,159,213,0.25);
  border: 1px solid rgba(74,159,213,0.4); backdrop-filter: blur(8px);
  color: var(--sky-light); font-size: 0.66rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
  margin-bottom: 16px; width: fit-content;
}
.card-details { color: var(--white); }
.card-details .card-location { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.card-details .card-price { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 6px; }
.card-details .card-specs { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.card-btn {
  display: inline-block; padding: 9px 22px; border-radius: 50px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; backdrop-filter: blur(8px); transition: all var(--transition-fast);
}
.card-btn:hover { background: var(--white); color: var(--ocean); }
.card-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--white); font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}
.card-info {
  padding: 22px 24px 24px;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.card-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--ocean); }
.card-subtitle { font-size: 0.75rem; color: var(--text-light); margin-top: 3px; }
.card-price-inline { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--sky); white-space: nowrap; }

/* ─── Why Us Section (ANTIGRAVITY) ─── */
.why { padding: 120px 0; background: var(--white); overflow: hidden; }
.why-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(74,159,213,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(10,37,64,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
  padding: 40px 32px; border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-lg); background: var(--white);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sky-pale), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.why-card:hover { border-color: rgba(74,159,213,0.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 52px; height: 52px; color: var(--sky); margin-bottom: 24px; position: relative; z-index: 1; }
.why-icon svg { width: 100%; height: 100%; }
.why-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--ocean); margin-bottom: 12px; position: relative; z-index: 1; }
.why-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; position: relative; z-index: 1; }

/* ─── Pain Points ─── */
.aria-pain { padding: 100px 0; background: var(--off-white); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pain-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 28px; border-left: 3px solid var(--sky);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-icon { font-size: 1.6rem; margin-bottom: 16px; }
.pain-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 400; color: var(--ocean); margin-bottom: 10px;
}
.pain-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ─── Parallax Banner ─── */
.parallax-banner {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--white);
}
.parallax-banner-bg {
  position: absolute; inset: -20%;
  background: url('lifestyle_yacht_sunset.png') center/cover no-repeat;
  will-change: transform; z-index: 0;
}
.parallax-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.65) 100%);
  z-index: 1;
}
.parallax-banner-content {
  position: relative; z-index: 2; text-align: center; padding: 80px 24px;
}
.parallax-banner-content .section-eyebrow { color: var(--sky-light); margin-bottom: 20px; }
.parallax-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 36px;
}
.parallax-banner-content h2 em { font-style: italic; color: var(--sky-light); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--ocean-mid), var(--sky));
  color: var(--white); padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(74,159,213,0.35); cursor: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(74,159,213,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 15px 36px; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: none;
  backdrop-filter: blur(8px); transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

/* ─── Lifestyle Section (ANTIGRAVITY) ─── */
.lifestyle {
  position: relative; min-height: 85vh;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 120px 80px; color: var(--white); overflow: hidden;
}
.lifestyle-parallax { position: absolute; inset: -15%; z-index: 0; }
.lifestyle-bg-img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,37,64,0.80) 0%, rgba(10,37,64,0.50) 50%, rgba(10,37,64,0.30) 100%);
}
.lifestyle-content { position: relative; z-index: 2; max-width: 600px; }
.lifestyle-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 28px;
}
.lifestyle-title em { font-style: italic; color: var(--sky-light); }
.lifestyle-text { font-size: 1rem; line-height: 1.9; color: rgba(255,255,255,0.78); margin-bottom: 40px; }
.lifestyle-features {
  position: absolute; bottom: 56px; right: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 18px;
}
.lf-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 300; }
.lf-icon { font-size: 1.1rem; }

/* ─── Locations Section (ANTIGRAVITY) ─── */
.locations { padding: 120px 0; background: var(--off-white); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.location-image { position: relative; height: 240px; overflow: hidden; }
.location-image img { transition: transform 0.7s ease; }
.location-card:hover .location-image img { transform: scale(1.06); }
.location-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.55), transparent);
}
.location-content { padding: 28px 28px 24px; }
.location-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--ocean); margin-bottom: 10px; }
.location-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.location-stats {
  display: flex; gap: 24px; font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(10,37,64,0.07);
}
.location-link { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; color: var(--sky); text-transform: uppercase; transition: color var(--transition-fast); }
.location-link:hover { color: var(--ocean); }

/* ─── How It Works ─── */
.aria-how { padding: 100px 0; background: var(--white); }
.how-steps {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0; margin-top: 64px;
}
.how-step { flex: 1; max-width: 300px; text-align: center; padding: 0 24px; }
.how-connector {
  flex-shrink: 0; width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--sky-light), var(--gold-light));
  margin-top: 36px;
}
.how-num {
  font-family: var(--font-serif); font-size: 3rem;
  font-weight: 300; color: var(--sky); opacity: 0.35;
  line-height: 1; margin-bottom: 20px;
}
.how-step h3 {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 400; color: var(--ocean); margin-bottom: 12px;
}
.how-step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

/* ─── Results ─── */
.aria-results {
  padding: 80px 0;
  background: var(--ocean);
}
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.result-item {
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.result-item:last-child { border-right: none; }
.result-num {
  display: block; font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--sky-light); line-height: 1; margin-bottom: 12px;
}
.result-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; letter-spacing: 0.04em; }

/* ─── Social Proof ─── */
.aria-social { padding: 100px 0; background: var(--off-white); }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.social-quote {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sky);
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sq-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 6px; margin-bottom: 20px; }
.sq-text {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-style: italic; color: var(--ocean); line-height: 1.75;
  margin-bottom: 24px; font-weight: 300;
}
.sq-author { display: flex; flex-direction: column; gap: 4px; }
.sq-name { font-size: 0.88rem; font-weight: 500; color: var(--ocean); }
.sq-role { font-size: 0.78rem; color: var(--text-light); }

/* ─── Testimonial Section (ANTIGRAVITY) ─── */
.testimonial-section { padding: 100px 0; background: var(--ocean-mid); }
.testimonial-card { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 24px; }
.quote-mark {
  font-family: var(--font-serif); font-size: 7rem;
  line-height: 0.5; color: var(--sky); opacity: 0.3; margin-bottom: 24px;
}
.testimonial-text {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300; font-style: italic; line-height: 1.7;
  color: rgba(255,255,255,0.90); margin-bottom: 40px;
}
.testimonial-author { display: inline-flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-mid), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 0.9rem; color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
}
.author-name { font-size: 0.9rem; font-weight: 500; color: var(--white); text-align: left; }
.author-title { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-align: left; margin-top: 2px; }

/* ─── Pricing ─── */
.aria-pricing { padding: 100px 0; background: var(--white); }
.pricing-note { font-size: 0.8rem; color: var(--text-light); margin-top: 36px; letter-spacing: 0.03em; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-plan {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid rgba(10,37,64,0.08);
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.price-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-plan--popular {
  background: var(--ocean); border-color: var(--ocean);
  transform: scale(1.03);
}
.price-plan--popular:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sky); color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}
.plan-name {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 20px; font-weight: 600;
}
.price-plan--popular .plan-name { color: rgba(255,255,255,0.5); }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.plan-price {
  font-family: var(--font-serif); font-size: 2.8rem;
  font-weight: 300; color: var(--ocean);
}
.price-plan--popular .plan-price { color: var(--white); }
.plan-mo { font-size: 0.85rem; color: var(--text-light); }
.price-plan--popular .plan-mo { color: rgba(255,255,255,0.5); }
.plan-sub { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 6px; }
.price-plan--popular .plan-sub { color: rgba(255,255,255,0.6); }
.plan-setup {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--sky); margin-bottom: 22px;
  padding: 4px 12px; display: inline-block;
  background: rgba(74,159,213,0.1); border-radius: 20px;
}
.price-plan--popular .plan-setup {
  color: var(--gold); background: rgba(201,169,110,0.15);
}
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  font-size: 0.85rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--sky); font-weight: 600; flex-shrink: 0; }
.price-plan--popular .plan-features li { color: rgba(255,255,255,0.75); }
.price-plan--popular .plan-features li::before { color: var(--sky-light); }
.plan-cta {
  display: block; text-align: center; padding: 14px 24px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: none;
  transition: all var(--transition);
}
.plan-cta--outline {
  background: transparent; border: 1px solid rgba(10,37,64,0.2); color: var(--ocean);
}
.plan-cta--outline:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.plan-cta--primary {
  background: linear-gradient(135deg, var(--ocean-mid), var(--sky));
  color: var(--white); border: none;
  box-shadow: 0 4px 20px rgba(74,159,213,0.3);
}
.plan-cta--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(74,159,213,0.4); }

/* ─── Contact / Demo Form Section ─── */
.contact {
  position: relative; padding: 100px 0;
  background: var(--cream); overflow: hidden;
}
.contact-bg {
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(74,159,213,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info { padding-right: 16px; }
.contact-sub { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-top: 20px; margin-bottom: 36px; }
.demo-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.demo-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid rgba(74,159,213,0.2);
  border-radius: 50px; padding: 8px 16px;
  font-size: 0.78rem; color: var(--text-mid); letter-spacing: 0.03em;
}
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px; box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 400; color: var(--ocean); margin-bottom: 28px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(10,37,64,0.12);
  border-radius: var(--radius-sm); font-family: var(--font-sans);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--off-white); outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--sky); background: var(--white);
}
.contact-form .form-group input::placeholder { color: var(--text-light); }
.btn-full { width: 100%; justify-content: center; display: flex; }

/* ─── JARES Bar ─── */
.jares-bar {
  background: var(--ocean); padding: 20px 0;
  border-top: 1px solid rgba(74,159,213,0.2);
}
.jares-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.jares-bar p { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-align: center; }
.jares-bar a { color: var(--sky-light); transition: color 0.2s; }
.jares-bar a:hover { color: var(--white); }
.jares-bar-contact {
  font-size: 0.82rem; color: rgba(255,255,255,0.65) !important;
  letter-spacing: 0.04em;
}
.jares-bar-contact a {
  color: var(--gold) !important; font-weight: 500;
  border-bottom: 1px solid rgba(201,169,110,0.35); padding-bottom: 1px;
}
.jares-bar-contact a:hover { color: var(--white) !important; border-bottom-color: var(--white); }

/* ─── Footer (ANTIGRAVITY) ─── */
.footer { background: var(--ocean); color: var(--white); padding: 72px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px;
}
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: 0.2em; color: var(--white); font-weight: 400;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 260px; }
.footer-links-group h4 {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 500;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.footer-links-group a:hover { color: var(--sky-light); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--sky-light); }

/* ─── Aria Widget ─── */
.aria-widget-wrap {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  /* NOTE: never add filter here — it breaks position:fixed on the ElevenLabs child */
}

/* ─── Reveal Animations ─── */
.reveal-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-card {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .result-item:nth-child(2), .result-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 900px) {
  .lang-switcher { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-plan--popular { transform: none; }
  .price-plan--popular:hover { transform: translateY(-4px); }
  .how-steps { flex-direction: column; align-items: center; gap: 40px; }
  .how-connector { width: 1px; height: 40px; background: linear-gradient(180deg, var(--sky-light), var(--gold-light)); margin: 0; }
}

@media (max-width: 868px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 24px; padding: 18px 24px; }
  .hero-headline { font-size: clamp(2.8rem, 9vw, 4.5rem); }
  .properties-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .lifestyle { padding: 80px 32px; }
  .lifestyle-features { position: static; margin-top: 48px; flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .at-inner { flex-direction: column; gap: 12px; }
  .aria-widget-wrap { bottom: 16px; left: 16px; }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 80px; height: 1px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
}
