/* ============================================================
   SARA MILAN | International Real Estate Advisor & Attorney
   Global Stylesheet — Yucatán Sophistication
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Italianno&display=swap');

/* ============================================================
   CSS VARIABLES — Yucatán Emerald + Warm Gold + Hacienda Cream
   ============================================================ */
:root {
  --emerald: #1B3A2D;
  --emerald-light: #2A5443;
  --emerald-dark: #0F2A1F;
  --emerald-deeper: #081A12;
  --gold: #B89968;
  --gold-light: #D4B788;
  --gold-dark: #8C6E45;
  --gold-bright: #E8D2A6;
  --cream: #FAF6EE;
  --warm-white: #FFFCF7;
  --sand: #EFE7D5;
  --soft-gray: #F4EFE3;
  --terracotta: #C97B5C;
  --text-dark: #1A2820;
  --text-mid: #4A5A52;
  --text-light: #8A9A92;
  --border: #E5DFD0;
  --border-soft: #EDE7D7;
  --max-width: 1240px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 14px rgba(15,42,31,0.06);
  --shadow-md: 0 10px 40px rgba(15,42,31,0.12);
  --shadow-lg: 0 24px 70px rgba(15,42,31,0.18);
  --shadow-gold: 0 12px 32px rgba(184,153,104,0.28);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: #fff; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.script-accent {
  font-family: 'Italianno', cursive;
  color: var(--gold);
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-label.no-lines::before,
.section-label.no-lines::after { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  line-height: 1.12;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.8;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

/* ============================================================
   ORNAMENTS
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.ornament-text {
  font-family: 'Italianno', cursive;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  border-radius: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--emerald);
  color: var(--gold-bright);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn i { font-size: 0.8rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#site-header.scrolled {
  background: rgba(255,252,247,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

#site-header.hero-header {
  background: transparent;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  transition: var(--transition);
  margin-bottom: 6px;
  font-style: italic;
}

.nav-logo-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-logo-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
  transition: var(--transition);
}

#site-header.scrolled .nav-logo-name { color: var(--emerald); }
#site-header.scrolled .nav-logo-tag { color: var(--gold-dark); }
#site-header.scrolled .nav-logo-tag::before { background: var(--gold-dark); }

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

#site-header.scrolled .nav-links a { color: var(--text-mid); }
#site-header.scrolled .nav-links a:hover,
#site-header.scrolled .nav-links a.active { color: var(--emerald); }
#site-header.scrolled .nav-links a::after { background: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 1px;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  border: 1px solid var(--gold);
}

.nav-cta:hover { background: var(--gold-dark) !important; border-color: var(--gold-dark); }
.nav-cta::after { display: none !important; }

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

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}

#site-header.scrolled .hamburger span { background: var(--emerald); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   HERO SECTION (with YouTube background video)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--emerald-deeper);
  padding: 11rem 0 7rem;
}

@media (max-width: 768px) {
  .hero { padding: 9rem 0 5rem; }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  pointer-events: none;
  border: 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,26,18,0.78) 0%, rgba(15,42,31,0.55) 50%, rgba(8,26,18,0.85) 100%),
    radial-gradient(ellipse at left bottom, rgba(184,153,104,0.18) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  animation: heroFadeUp 1.4s ease forwards;
}

.hero-inner {
  max-width: 760px;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(184,153,104,0.14);
  border: 1px solid rgba(184,153,104,0.5);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 1px;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-script {
  font-family: 'Italianno', cursive;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2.75rem;
  line-height: 1.7;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-credentials {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 2.75rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-cred-line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: rgba(184,153,104,0.55);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: bounce 2.4s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}

@media (max-width: 768px) {
  .hero-credentials { margin-top: 2rem; gap: 0.75rem; font-size: 0.62rem; letter-spacing: 0.18em; }
  .hero-cred-line { width: 30px; }
  .hero-scroll { display: none; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--emerald);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.18);
}

/* ============================================================
   ABOUT HOME (Editorial Layout)
   ============================================================ */
.about-home {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-home::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,153,104,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5.5rem;
  align-items: center;
}

.about-home-img-wrap {
  position: relative;
}

.about-home-img-frame {
  position: relative;
  z-index: 2;
}

.about-home-img-frame::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  right: 22px;
  bottom: 22px;
  border: 1.5px solid var(--gold);
  z-index: -1;
  opacity: 0.7;
}

.about-home-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1px;
  box-shadow: var(--shadow-lg);
}

.about-home-img-badge {
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  background: var(--emerald);
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 1px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  min-width: 180px;
}

.about-home-img-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  display: block;
  line-height: 1.2;
  font-weight: 500;
  font-style: italic;
}

.about-home-img-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 6px;
}

.about-home-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--emerald);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  line-height: 1.4;
  font-weight: 400;
}

.about-home-quote::first-letter {
  color: var(--gold);
  font-size: 1.3em;
}

.about-home-content p {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border-radius: 1px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.cred-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.cred-icon {
  width: 38px;
  height: 38px;
  background: rgba(27,58,45,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
  font-size: 0.95rem;
}

.cred-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.cred-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--warm-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 4rem;
}

.service-card {
  background: #fff;
  padding: 3rem 2.2rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--cream); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(27,58,45,0.07);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
  font-style: italic;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,45,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--emerald);
  color: var(--gold-light);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--emerald);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   PROCESS / HOW I WORK
   ============================================================ */
.process {
  background: var(--cream);
  position: relative;
}

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

.process-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  flex-shrink: 0;
  min-width: 70px;
}

.process-content h3 {
  font-size: 1.35rem;
  color: var(--emerald);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.process-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================================
   MARKETS / NEIGHBORHOODS
   ============================================================ */
.markets {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

.markets::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 35%;
  background: rgba(184,153,104,0.05);
  pointer-events: none;
}

.markets .section-title { color: #fff; }
.markets .section-title em { color: var(--gold-light); }
.markets .section-subtitle { color: rgba(255,255,255,0.7); }
.markets .section-label { color: var(--gold-light); }
.markets .section-label::before,
.markets .section-label::after { background: var(--gold-light); }

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

.market-card {
  position: relative;
  border-radius: 1px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}

.market-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.market-card:hover .market-img { transform: scale(1.08); }

.market-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,26,18,0.92) 0%, rgba(8,26,18,0.3) 50%, transparent 75%);
  transition: var(--transition);
}

.market-card:hover .market-overlay {
  background: linear-gradient(to top, rgba(8,26,18,0.95) 0%, rgba(8,26,18,0.5) 60%, rgba(8,26,18,0.2) 100%);
}

.market-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  color: #fff;
  z-index: 2;
}

.market-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184,153,104,0.18);
  border: 1px solid rgba(184,153,104,0.4);
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 0.75rem;
}

.market-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 500;
}

.market-content p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.market-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(184,153,104,0.2);
  border: 1px solid rgba(184,153,104,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  z-index: 2;
}

.market-card:hover .market-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
}

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

.testimonial-card {
  background: #fff;
  padding: 2.75rem 2.25rem;
  border-radius: 1px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.2;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  flex-shrink: 0;
  font-weight: 500;
}

.testimonial-author-info strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--emerald);
}

.testimonial-author-info span {
  font-size: 0.74rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--emerald-dark);
  padding: 90px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518105779142-d975f22f1b0a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,31,0.85) 0%, rgba(8,26,18,0.7) 100%);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.cta-banner h2 {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INSIGHTS / BLOG TEASER
   ============================================================ */
.insights-teaser {
  background: var(--warm-white);
}

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

.insight-card {
  background: #fff;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-soft);
  display: block;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.insight-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.insight-card:hover .insight-img { transform: scale(1.06); }

.insight-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
  font-weight: 500;
}

.insight-body {
  padding: 1.75rem 1.75rem 2rem;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

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

.insight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
}

.insight-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  transition: var(--transition);
}

.insight-card:hover .insight-link { gap: 0.75rem; color: var(--emerald); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--emerald);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.contact-info p {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 2.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,58,45,0.07);
  border: 1px solid rgba(27,58,45,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--emerald);
  font-weight: 500;
  transition: var(--transition);
}

.contact-detail-text a:hover { color: var(--gold-dark); }

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  background: var(--cream);
  padding: 3rem;
  border-radius: 1px;
  border: 1px solid var(--border-soft);
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form-wrap > p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 1px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(27,58,45,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.honeypot {
  position: absolute !important;
  left: -9999px;
  visibility: hidden;
}

.form-submit {
  width: 100%;
  background: var(--emerald);
  color: var(--gold-bright);
  padding: 16px;
  border: none;
  border-radius: 1px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: rgba(27,58,45,0.06);
  border: 1px solid var(--emerald);
  border-radius: 1px;
  padding: 1.75rem;
  text-align: center;
  color: var(--emerald);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
}

.form-error {
  display: none;
  background: rgba(201,123,92,0.07);
  border: 1px solid var(--terracotta);
  border-radius: 1px;
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--terracotta);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--emerald-deeper);
  color: #fff;
}

.footer-top {
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.footer-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 500;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.88rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 28px 0;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--emerald);
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero.bg-merida::before {
  background-image: url('https://images.unsplash.com/photo-1568849676085-51415703900f?auto=format&fit=crop&w=1600&q=80');
}

.page-hero.bg-cenote::before {
  background-image: url('https://images.unsplash.com/photo-1578894381163-e72c17f2d45f?auto=format&fit=crop&w=1600&q=80');
}

.page-hero.bg-villa::before {
  background-image: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1600&q=80');
}

.page-hero.bg-architecture::before {
  background-image: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?auto=format&fit=crop&w=1600&q=80');
}

.page-hero.bg-luxury::before {
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1600&q=80');
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,31,0.85) 0%, rgba(8,26,18,0.75) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero .section-label { color: var(--gold-light); justify-content: center; }
.page-hero .section-label::before,
.page-hero .section-label::after { background: var(--gold-light); }

.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.1;
}

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

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   ABOUT PAGE — full layout
   ============================================================ */
.about-full {
  background: var(--warm-white);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.about-full-img-col {
  position: sticky;
  top: 110px;
}

.about-full-img-frame {
  position: relative;
}

.about-full-img-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1.5px solid var(--gold);
  z-index: -1;
  opacity: 0.6;
}

.about-full-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1px;
  box-shadow: var(--shadow-lg);
}

.about-full-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--emerald);
  margin: 2.25rem 0 1rem;
  font-weight: 500;
}

.about-full-content h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-full-content h2:first-child { margin-top: 0; }

.about-full-content p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.about-full-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--emerald);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.value-item {
  background: var(--cream);
  padding: 1.5rem 1.5rem;
  border-radius: 1px;
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--emerald);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CREDENTIAL ROW (about page)
   ============================================================ */
.credentials-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.credentials-row .cred-item {
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 1.75rem 1rem;
  background: var(--cream);
}

.credentials-row .cred-icon {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   INSIGHTS PAGE LIST
   ============================================================ */
.insights-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.insight-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.insight-row:hover { transform: translateX(4px); }

.insight-row:last-child { border-bottom: none; }

.insight-row-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1px;
}

.insight-row-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.insight-row-meta .tag {
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 1px;
  font-size: 0.62rem;
}

.insight-row h2 {
  font-size: 1.6rem;
  color: var(--emerald);
  margin-bottom: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
  transition: var(--transition);
}

.insight-row:hover h2 { color: var(--gold-dark); }

.insight-row p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   CHATBOT
   ============================================================ */
.chat-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--emerald);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  transition: var(--transition);
}

.chat-toggle:hover {
  background: var(--emerald-dark);
  transform: scale(1.06);
}

.chat-toggle .chat-close { display: none; }
.chat-toggle.open .chat-open { display: none; }
.chat-toggle.open .chat-close { display: block; }

.chat-window {
  position: fixed;
  bottom: 6.25rem;
  right: 2rem;
  width: 370px;
  max-height: 540px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 1099;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.chat-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: var(--emerald);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.chat-header-info strong {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

.chat-header-info span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
}

.chat-header-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  color: #4ade80;
}

.chat-header-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--cream);
}

.chat-msg {
  max-width: 84%;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.chat-msg.bot {
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--text-dark);
}

.chat-msg.user {
  background: var(--emerald);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-msg a { color: var(--gold-dark); font-weight: 600; }

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.chat-suggestion-btn {
  background: rgba(27,58,45,0.07);
  border: 1px solid rgba(27,58,45,0.15);
  color: var(--emerald);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.chat-suggestion-btn:hover {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald);
}

.chat-input-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 9px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
  color: var(--text-dark);
}

.chat-input:focus { border-color: var(--emerald); }

.chat-send {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  color: var(--gold-light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send:hover { background: var(--emerald-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-home-grid,
  .about-full-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-home-img-wrap,
  .about-full-img-col { max-width: 520px; margin: 0 auto; }
  .about-full-img-col { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .credentials-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .insight-row { grid-template-columns: 200px 1fr; gap: 1.75rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 75px 0; }
  .services-grid,
  .markets-grid,
  .testimonials-grid,
  .insights-grid,
  .footer-grid,
  .about-credentials,
  .about-values,
  .form-row { grid-template-columns: 1fr; }
  .credentials-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .chat-window { width: calc(100vw - 2rem); right: 1rem; bottom: 5.5rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }
  .hero-meta { flex-direction: column; gap: 1rem; padding: 0 1.5rem; bottom: 1.5rem; }
  .hero-meta-left .line { display: none; }
  .insight-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .insight-row-img { aspect-ratio: 16/10; max-height: 220px; }
  .about-home-img-badge { right: -0.5rem; bottom: -1.5rem; padding: 1.1rem 1.5rem; }
  .contact-form-wrap { padding: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .hero-content { padding: 0 1.5rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .credentials-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .stat-num { font-size: 1.5rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .service-card { padding: 2.25rem 1.5rem; }
  .market-content { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON — bottom-right, above chatbot
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1100;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.55);
  animation: whatsappPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0%   { opacity: 1; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(1.5); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 9.25rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
}

/* ============================================================
   MOBILE STICKY CTA BAR — premium, single-line, refined
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(255, 252, 247, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(184,153,104,0.25);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -6px 24px rgba(15,42,31,0.08);
}

.mobile-cta-bar .mcta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 46px;
  padding: 0 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 1.5px solid;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.mobile-cta-bar .mcta-btn span { line-height: 1; }
.mobile-cta-bar .mcta-btn i { font-size: 0.85rem; }

.mobile-cta-bar .mcta-call {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-color: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(184,153,104,0.32);
}
.mobile-cta-bar .mcta-call:active,
.mobile-cta-bar .mcta-call:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184,153,104,0.42);
}

.mobile-cta-bar .mcta-msg {
  background: var(--emerald);
  color: var(--gold-light);
  border-color: var(--emerald);
  box-shadow: 0 4px 12px rgba(15,42,31,0.18);
}
.mobile-cta-bar .mcta-msg:active,
.mobile-cta-bar .mcta-msg:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
  body.has-safe-area { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .chat-toggle { bottom: 5rem; right: 1rem; width: 48px; height: 48px; font-size: 1.15rem; }
  .chat-window { bottom: 8.5rem; max-height: calc(100vh - 13rem); }
}

@media (max-width: 380px) {
  .mobile-cta-bar .mcta-btn { font-size: 0.66rem; letter-spacing: 0.12em; gap: 0.4rem; }
}

/* ============================================================
   COST OF OWNERSHIP CALCULATOR
   ============================================================ */
.calculator-section {
  background: var(--cream);
  padding: 100px 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.calc-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.calc-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.calc-inputs h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.calc-inputs > p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.calc-field {
  margin-bottom: 1.65rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.calc-label .calc-value-display {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--emerald);
  font-weight: 500;
  font-style: italic;
}

.calc-input-text,
.calc-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 1px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.calc-input-text:focus,
.calc-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(27,58,45,0.07);
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin-top: 0.5rem;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(184,153,104,0.4);
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(184,153,104,0.4);
}

.calc-toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--soft-gray);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px;
}

.calc-toggle-row label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 1px;
  transition: var(--transition);
  color: var(--text-mid);
  text-align: center;
}

.calc-toggle-row input[type="radio"] { display: none; }
.calc-toggle-row input[type="radio"]:checked + label {
  background: var(--emerald);
  color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

/* Results */
.calc-results {
  background: var(--emerald);
  color: #fff;
  border: 1px solid var(--emerald);
}

.calc-results::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}

.calc-results h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-style: italic;
}

.calc-results > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem;
  margin-bottom: 1.75rem;
}

.calc-headline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(184,153,104,0.18);
  border-radius: 1px;
}

.calc-headline-item {
  text-align: center;
}

.calc-headline-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.calc-headline-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  color: var(--gold-light);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
}

.calc-headline-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* Breakdown */
.calc-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin: 1.75rem 0 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.calc-section-title:first-of-type { margin-top: 0.5rem; padding-top: 0; border: none; }

.calc-line {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.calc-line:last-of-type { border-bottom: none; }

.calc-line .calc-line-label {
  color: rgba(255,255,255,0.7);
}
.calc-line .calc-line-value {
  color: #fff;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.calc-line.calc-line-total {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1.5px solid var(--gold);
  border-bottom: none;
  font-size: 0.95rem;
}
.calc-line.calc-line-total .calc-line-label { color: var(--gold-light); font-weight: 600; letter-spacing: 0.06em; }
.calc-line.calc-line-total .calc-line-value { color: var(--gold-light); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; }

/* Visual bar comparison */
.calc-bars {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calc-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 80px;
  gap: 0.85rem;
  align-items: center;
  font-size: 0.78rem;
}

.calc-bar-row .calc-bar-label {
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.calc-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.calc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calc-bar-row .calc-bar-value {
  text-align: right;
  color: #fff;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.calc-disclaimer {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.6;
  font-style: italic;
}

/* Lead capture under calculator */
.calc-cta {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.calc-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.calc-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--emerald);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.calc-cta h3 em { font-style: italic; color: var(--gold-dark); }

.calc-cta p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.calc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .calculator-section { padding: 70px 0; }
  .calc-panel { padding: 2rem 1.5rem; }
  .calc-headline { grid-template-columns: 1fr; padding: 1.25rem; }
  .calc-headline-value { font-size: 1.6rem; }
  .calc-bar-row { grid-template-columns: 80px 1fr 70px; gap: 0.6rem; font-size: 0.72rem; }
  .calc-cta { padding: 2rem 1.5rem; }
  .calc-cta h3 { font-size: 1.35rem; }
}

/* ============================================================
   LEAD MAGNET SECTION
   ============================================================ */
.lead-magnet {
  background: var(--emerald-deeper);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: 0.1;
}

.lead-magnet::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,26,18,0.92) 0%, rgba(15,42,31,0.85) 100%);
}

.lead-magnet-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-magnet-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-magnet-cover {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 12px 30px rgba(184,153,104,0.18);
  position: relative;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform var(--transition);
}

.lead-magnet-cover:hover { transform: rotate(0deg) scale(1.02); }

.lead-magnet-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.lead-magnet-cover-inner {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.lead-magnet-cover-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead-magnet-cover h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--emerald);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1rem;
}

.lead-magnet-cover h3 em {
  font-style: italic;
  color: var(--gold-dark);
}

.lead-magnet-cover-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.lead-magnet-cover-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.lead-magnet-cover-author {
  font-family: 'Italianno', cursive;
  color: var(--gold);
  font-size: 1.5rem;
  font-style: normal;
  letter-spacing: 0;
}

.lead-magnet-content .section-label { color: var(--gold-light); }
.lead-magnet-content .section-label::before,
.lead-magnet-content .section-label::after { background: var(--gold-light); }

.lead-magnet-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  font-weight: 400;
}

.lead-magnet-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.lead-magnet-content > p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.lead-magnet-bullets {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lead-magnet-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lead-magnet-bullets li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.lead-magnet-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.lead-magnet-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: 1.5px solid rgba(184,153,104,0.45);
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.lead-magnet-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }

.lead-magnet-form input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.lead-magnet-form button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 1px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lead-magnet-form button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.lead-magnet-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.lead-magnet-success {
  display: none;
  background: rgba(184,153,104,0.12);
  border: 1px solid var(--gold);
  border-radius: 1px;
  padding: 1.25rem 1.5rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  margin-top: 1rem;
}

.lead-magnet-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .lead-magnet-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lead-magnet-visual { order: 2; }
  .lead-magnet-cover { max-width: 320px; }
}

@media (max-width: 480px) {
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-form input[type="email"],
  .lead-magnet-form button { width: 100%; }
}
