@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --leather: #5E3721;
  --fall-leaves: #955827;
  --mustard: #CF922A;
  --trail-bust: #CDB185;
  --field-notes: #F4EEE6;
  --pine-dew: #BFBFA2;
  --moss-pillow: #7E7639;
  --pnw-breeze: #443B10;
  --white: #FFFFFF;
  --dark: #2A2018;
  --text: #3D3028;
  --text-light: #7A6E62;
  --shadow-sm: 0 2px 8px rgba(94, 55, 33, 0.06);
  --shadow-md: 0 8px 32px rgba(94, 55, 33, 0.08);
  --shadow-lg: 0 12px 48px rgba(94, 55, 33, 0.12);
  --shadow-xl: 0 20px 60px rgba(94, 55, 33, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--field-notes);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: var(--leather);
  line-height: 1.3;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(244, 238, 230, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(94, 55, 33, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--leather);
  letter-spacing: 4px;
}

.logo span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: var(--fall-leaves);
  text-transform: uppercase;
  margin-top: -1px;
}

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

.nav-links { display: flex; gap: 24px; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--mustard);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--leather); }
.nav-links a:hover::after { width: 100%; }

.header-swiss {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--leather);
  padding: 7px 16px;
  border: 1px solid rgba(94, 55, 33, 0.18);
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.header-swiss::after {
  content: '↗';
  font-size: 0.8rem;
  color: var(--mustard);
  transition: color var(--transition), transform var(--transition);
}

.header-swiss:hover {
  background: var(--leather);
  color: var(--field-notes);
  border-color: var(--leather);
}

.header-swiss:hover::after {
  color: var(--field-notes);
  transform: translate(1px, -1px);
}

.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(94, 55, 33, 0.05);
  border-radius: 50px;
  padding: 3px;
}

.lang-toggle button,
.lang-toggle .lang-btn {
  padding: 3px 8px;
  border: none;
  background: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.lang-toggle button.active,
.lang-toggle .lang-btn.active {
  background: var(--leather);
  color: var(--field-notes);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--leather);
  color: var(--field-notes);
}

.btn-primary:hover {
  background: var(--pnw-breeze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--leather);
  color: var(--field-notes);
  transform: translateY(-2px);
}

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

.btn-mustard:hover {
  background: var(--fall-leaves);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--leather);
  padding: 14px 0;
  font-weight: 500;
}

.btn-ghost::after {
  content: ' →';
  transition: transform var(--transition);
  display: inline-block;
}

.btn-ghost:hover { color: var(--mustard); }
.btn-ghost:hover::after { transform: translateX(4px); }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--leather);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 238, 230, 0.92) 0%,
    rgba(244, 238, 230, 0.82) 35%,
    rgba(205, 177, 133, 0.55) 70%,
    rgba(94, 55, 33, 0.3) 100%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--field-notes), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 0 100px;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 28px;
  color: var(--leather);
}

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

.hero-sub {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-motto {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 2;
  text-align: right;
}

.hero-motto p {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--leather);
  opacity: 0.4;
  letter-spacing: 1px;
}

/* ─── SECTIONS ─── */
.section { padding: 120px 0; }

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

.section-dark {
  background: var(--leather);
  color: var(--field-notes);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
}

/* ─── QUÉ ES HAVEN ─── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: 2rem;
  margin-bottom: 28px;
}

.about-intro-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
  font-weight: 300;
}

.about-intro-quote {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--leather);
  border-left: 3px solid var(--mustard);
  padding-left: 28px;
  margin-top: 36px;
  line-height: 1.6;
}

.about-intro-visual {
  position: relative;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
}

.visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.visual-placeholder span {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 10px;
}

/* ─── IMAGE WITH VEIL ─── */
.img-with-veil {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.img-with-veil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-with-veil::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
}

.img-veil-brown::after {
  background: linear-gradient(
    135deg,
    rgba(94, 55, 33, 0.25) 0%,
    rgba(149, 88, 39, 0.15) 50%,
    rgba(205, 177, 133, 0.1) 100%
  );
}

.img-veil-green::after {
  background: linear-gradient(
    135deg,
    rgba(126, 118, 57, 0.25) 0%,
    rgba(68, 59, 16, 0.18) 50%,
    rgba(191, 191, 162, 0.1) 100%
  );
}

/* ─── SERVICES CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 28px 36px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(94, 55, 33, 0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--fall-leaves));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(207, 146, 42, 0.08), rgba(149, 88, 39, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--leather);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 300;
}

.service-card .btn { padding: 10px 24px; font-size: 0.8rem; }

/* ─── AIRBNB MANAGEMENT ─── */
.airbnb-section { overflow: hidden; }

.airbnb-hero-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.airbnb-hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* Premium statement */
.airbnb-statement {
  font-size: 2.05rem;
  line-height: 1.5;
  margin-bottom: 0 !important;
  font-weight: 700;
}

.airbnb-statement .hl {
  background: linear-gradient(to top, rgba(207, 146, 42, 0.22) 0%, rgba(207, 146, 42, 0.22) 32%, transparent 32%);
  padding: 0 3px;
}

.airbnb-punchline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.airbnb-punchline::before,
.airbnb-punchline::after {
  content: '';
  height: 1px;
  width: 56px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(207, 146, 42, 0.7));
}

.airbnb-punchline::after {
  background: linear-gradient(90deg, rgba(207, 146, 42, 0.7), transparent);
}

.airbnb-punchline span {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--mustard);
  white-space: nowrap;
}

/* Premium cycle */
.cycle-section {
  margin-bottom: 72px;
}

.cycle-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.cycle-flow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mustard), var(--mustard), transparent);
  opacity: 0.3;
  transform: translateY(-14px);
}

.cycle-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cycle-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Merriweather', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}

.cycle-step:nth-child(1) .cycle-number {
  background: linear-gradient(135deg, rgba(207, 146, 42, 0.12), rgba(207, 146, 42, 0.04));
  color: var(--mustard);
  border: 1.5px solid rgba(207, 146, 42, 0.2);
}

.cycle-step:nth-child(2) .cycle-number {
  background: linear-gradient(135deg, rgba(149, 88, 39, 0.12), rgba(149, 88, 39, 0.04));
  color: var(--fall-leaves);
  border: 1.5px solid rgba(149, 88, 39, 0.2);
}

.cycle-step:nth-child(3) .cycle-number {
  background: linear-gradient(135deg, rgba(126, 118, 57, 0.12), rgba(126, 118, 57, 0.04));
  color: var(--moss-pillow);
  border: 1.5px solid rgba(126, 118, 57, 0.2);
}

.cycle-step:nth-child(4) .cycle-number {
  background: linear-gradient(135deg, rgba(94, 55, 33, 0.12), rgba(94, 55, 33, 0.04));
  color: var(--leather);
  border: 1.5px solid rgba(94, 55, 33, 0.2);
}

.cycle-step h4 {
  font-size: 0.95rem;
  color: var(--leather);
  margin-bottom: 6px;
  font-family: 'Merriweather', serif;
}

.cycle-step p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.6;
}

.cycle-arrow-icon {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-14px);
  color: var(--mustard);
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0.5;
}

/* Airbnb features — editorial layout */
.airbnb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(94, 55, 33, 0.08);
}

.airbnb-feature {
  padding: 40px 36px;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(94, 55, 33, 0.06);
  border-right: 1px solid rgba(94, 55, 33, 0.06);
  position: relative;
}

.airbnb-feature:nth-child(2n) { border-right: none; }
.airbnb-feature:nth-last-child(-n+2) { border-bottom: none; }

.airbnb-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--mustard), var(--fall-leaves));
  transition: width var(--transition);
  opacity: 0.8;
}

.airbnb-feature:hover::before { width: 3px; }

.airbnb-feature:hover {
  background: rgba(207, 146, 42, 0.03);
}

.feature-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}

.feature-num {
  font-family: 'Merriweather', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--trail-bust);
  letter-spacing: 1px;
}

.airbnb-feature h4 {
  font-size: 0.95rem;
  color: var(--leather);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.airbnb-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
  padding-left: 42px;
}

/* Last feature spans full width */
.airbnb-feature.full-width {
  grid-column: 1 / -1;
  border-right: none;
  text-align: center;
}

.airbnb-feature.full-width .feature-header { justify-content: center; }
.airbnb-feature.full-width p { padding-left: 0; max-width: 480px; margin: 0 auto; }

/* ─── BIENES EN VENTA — COMING SOON ─── */
.coming-soon-section {
  text-align: center;
  padding: 100px 40px;
  border: 1.5px solid rgba(94, 55, 33, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white) 0%, rgba(205, 177, 133, 0.06) 100%);
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(207, 146, 42, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(207, 146, 42, 0.1), rgba(149, 88, 39, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
}

.coming-soon-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--leather);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coming-soon-section h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  position: relative;
}

.coming-soon-section > p {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 12px;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}

.coming-soon-divider {
  width: 48px;
  height: 2px;
  background: var(--mustard);
  margin: 32px auto;
  border-radius: 2px;
  opacity: 0.6;
  position: relative;
}

.coming-soon-types {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  position: relative;
}

.coming-soon-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.coming-soon-type-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(94, 55, 33, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.coming-soon-type:hover .coming-soon-type-icon {
  background: rgba(207, 146, 42, 0.1);
  transform: translateY(-4px);
}

.coming-soon-type-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--fall-leaves);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coming-soon-type span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ─── OWNERS SECTION ─── */
.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 0;
}

.owner-benefit {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid rgba(94, 55, 33, 0.04);
}

.owner-benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.owner-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(207, 146, 42, 0.1), rgba(149, 88, 39, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.owner-benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--leather);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.owner-benefit h3 {
  font-size: 1.08rem;
  margin-bottom: 14px;
}

.owner-benefit p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── BUYERS SECTION ─── */
.buyers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.buyers-text h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.buyers-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
  font-weight: 300;
}

.buyers-list { margin: 36px 0 40px; }

.buyers-list li {
  padding: 18px 4px 18px 0;
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 400;
  border-bottom: 1px solid rgba(94, 55, 33, 0.08);
  transition: all var(--transition);
}

.buyers-list li:last-child { border-bottom: none; }

.buyers-list .num {
  font-family: 'Merriweather', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--trail-bust);
  flex-shrink: 0;
  width: 24px;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.buyers-list .txt { line-height: 1.5; }

.buyers-list li:hover { padding-left: 10px; }

.buyers-list li:hover .num { color: var(--mustard); }

.buyers-visual {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ─── SWISS LIMA SECTION ─── */
.swiss-section {
  background: linear-gradient(135deg, var(--leather) 0%, var(--pnw-breeze) 100%);
  color: var(--field-notes);
  text-align: center;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.swiss-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(207, 146, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.swiss-section h2 {
  color: var(--trail-bust);
  font-size: 1.7rem;
  margin-bottom: 20px;
  position: relative;
}

.swiss-section p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(244, 238, 230, 0.75);
  line-height: 1.85;
  font-weight: 300;
  position: relative;
}

.swiss-section .btn-outline {
  border-color: var(--trail-bust);
  color: var(--trail-bust);
  position: relative;
}

.swiss-section .btn-outline:hover {
  background: var(--trail-bust);
  color: var(--leather);
}

/* ─── ABOUT ─── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-portrait {
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 28px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.85;
  font-weight: 300;
}

.about-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-value {
  padding: 14px 20px;
  background: var(--field-notes);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--leather);
  font-weight: 500;
  border-left: 2px solid var(--mustard);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}

.about-value:hover {
  transform: translateX(4px);
  background: rgba(207, 146, 42, 0.06);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.85;
  font-weight: 300;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid rgba(94, 55, 33, 0.04);
}

.contact-channel:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(207, 146, 42, 0.12);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-channel h4 {
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--leather);
}

.contact-channel p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 300;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px;
  border: 1px solid rgba(94, 55, 33, 0.04);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--leather);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(94, 55, 33, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--field-notes);
  transition: all var(--transition);
  outline: none;
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(207, 146, 42, 0.06);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235E3721' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.contact-form-wrap .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(244, 238, 230, 0.55);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  color: var(--trail-bust);
  margin-bottom: 18px;
}

.footer-brand .logo span { color: var(--pine-dew); }

.footer-brand > p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 238, 230, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--trail-bust);
}

.footer-social a:hover {
  background: var(--mustard);
  color: var(--white);
  transform: translateY(-2px);
}

.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--trail-bust);
  margin-bottom: 22px;
}

.footer-links a {
  display: block;
  font-size: 0.84rem;
  padding: 5px 0;
  transition: all var(--transition);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--mustard);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 238, 230, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 300;
}

/* ─── WHATSAPP FLOATING ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .airbnb-features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
  .hero-motto { display: none; }
  .cycle-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cycle-flow::before { display: none; }
  .cycle-arrow-icon { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(244, 238, 230, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 998;
  }
  .nav.active .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .nav.active .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 999; }

  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 0.92rem; }

  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-visual { height: 320px; }

  .services-grid { grid-template-columns: 1fr; }
  .airbnb-features { grid-template-columns: 1fr; }
  .airbnb-feature { border-right: none !important; }
  .owners-grid { grid-template-columns: 1fr; }
  .cycle-flow { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .airbnb-statement { font-size: 1.5rem; }
  .airbnb-punchline { gap: 14px; }
  .airbnb-punchline span { font-size: 1.2rem; }
  .airbnb-punchline::before,
  .airbnb-punchline::after { width: 28px; }

  .buyers-content { grid-template-columns: 1fr; gap: 48px; }
  .buyers-visual { height: 300px; }

  .about-content { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { height: 340px; }
  .about-values { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 36px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 56px; }
  .section-header h2 { font-size: 1.7rem; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .coming-soon-types { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; }
  .section-header h2 { font-size: 1.45rem; }
  .logo { font-size: 1.4rem; }
  .cycle-flow { grid-template-columns: 1fr 1fr; }
}
