  :root {
    --forest: #1a2918;
    --moss: #2d4a2a;
    --sage: #4a6741;
    --gold: #c8a96e;
    --gold-light: #e8c98e;
    --cream: #f5f0e8;
    --paper: #faf7f2;
    --bark: #8b6f4e;
    --mist: #d4cfc7;
    --white: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--paper);
    color: var(--forest);
    overflow-x: hidden;
    cursor: default;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--forest);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../../images/inversion-garantizada-villa.jpg') center/cover no-repeat;
  }
  
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,41,24,0.75) 0%, rgba(26,41,24,0.88) 100%);
  }

  /* Animated tree silhouettes */
  .trees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    opacity: 0.12;
    background: 
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath fill='%23c8a96e' d='M0,400 L0,180 L20,160 L40,120 L60,80 L80,100 L100,60 L120,90 L140,50 L160,80 L180,140 L200,160 L200,400 M220,400 L220,200 L240,170 L260,130 L280,90 L300,110 L320,70 L340,100 L360,140 L380,170 L380,400 M400,400 L400,220 L420,190 L440,150 L460,110 L480,140 L500,100 L520,130 L540,165 L560,190 L560,400 M600,400 L600,160 L620,130 L650,80 L680,110 L700,60 L720,90 L740,130 L760,160 L760,400 M800,400 L800,200 L825,165 L850,120 L875,145 L900,100 L925,130 L950,170 L975,200 L975,400 M1020,400 L1020,180 L1050,140 L1080,95 L1110,120 L1140,80 L1170,110 L1200,150 L1230,180 L1230,400 M1260,400 L1260,210 L1285,175 L1310,135 L1335,160 L1360,120 L1385,150 L1410,185 L1440,210 L1440,400'/%3E%3C/svg%3E") bottom/cover no-repeat;
  }

  /* Grain overlay */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    padding-top: 120px;
  }

  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.5s forwards;
  }

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

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--mist);
    margin-bottom: 3.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.7s forwards;
  }

  .hero-location {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.9s forwards;
  }

  .location-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .location-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
  }

  .location-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 300;
  }

  .location-divider {
    width: 1px;
    height: 40px;
    background: rgba(200,169,110,0.3);
  }

  .hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s ease 1.1s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--forest);
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    color: var(--mist);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(212,207,199,0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
  }

  .btn-ghost:hover {
    color: var(--gold-light);
    border-color: var(--gold);
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
    z-index: 2;
  }

  .scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(200,169,110,0.6);
    text-transform: uppercase;
  }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
  }

  nav.scrolled {
    background: rgba(26, 41, 24, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(200,169,110,0.1);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.05em;
  }

  .nav-logo strong {
    font-weight: 600;
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--mist);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s;
  }

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

  .nav-cta {
    background: transparent;
    border: 1px solid rgba(200,169,110,0.5);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
  }

  .nav-cta:hover {
    background: var(--gold);
    color: var(--forest);
  }

  /* ── SECTION BASE ── */
  section {
    position: relative;
  }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  /* ── INTRO / CONCEPTO ── */
  .intro {
    background: var(--paper);
    padding: 10rem 5%;
  }

  .intro-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }

  .intro-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 2rem;
  }

  .intro-left h2 em {
    font-style: italic;
    color: var(--sage);
  }

  .intro-left p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #4a5040;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .intro-right {
    padding-top: 5rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 3rem;
  }

  .stat-box {
    background: var(--forest);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .stat-box:nth-child(2) { background: var(--moss); }
  .stat-box:nth-child(3) { background: var(--sage); }
  .stat-box:nth-child(4) { background: var(--bark); }

  .stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
    line-height: 1.4;
  }

  /* ── UBICACIÓN ── */
  .location {
    background: var(--forest);
    padding: 8rem 5%;
    overflow: hidden;
  }

  .location-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .location h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.15;
  }

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

  .location p {
    color: var(--mist);
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .distance-list {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .distance-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
    font-size: 0.85rem;
    color: var(--mist);
    font-weight: 300;
  }

  .distance-list li:first-child {
    border-top: 1px solid rgba(200,169,110,0.12);
  }

  .distance-list .place {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

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

  .distance-list .time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold-light);
  }

  .map-placeholder {
    background: var(--moss);
    height: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200,169,110,0.15);
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 50% 60%, rgba(200,169,110,0.15) 0%, transparent 50%),
      repeating-linear-gradient(0deg, rgba(200,169,110,0.03) 0px, rgba(200,169,110,0.03) 1px, transparent 1px, transparent 60px),
      repeating-linear-gradient(90deg, rgba(200,169,110,0.03) 0px, rgba(200,169,110,0.03) 1px, transparent 1px, transparent 60px);
  }

  .map-pin {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .map-pin-circle {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(200,169,110,0.2), 0 0 0 12px rgba(200,169,110,0.1);
    animation: pulse 2s ease infinite;
  }

  .map-pin-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
    white-space: nowrap;
  }

  .map-context {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
  }

  .map-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .map-tag {
    background: rgba(26,41,24,0.7);
    border: 1px solid rgba(200,169,110,0.2);
    color: var(--mist);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    backdrop-filter: blur(10px);
  }

  /* ── CASAS ── */
  .cabins {
    background: var(--cream);
    padding: 10rem 5%;
  }

  .cabins-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
  }

  .cabins-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.15;
  }

  .cabins-header p {
    color: #4a5040;
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 300;
  }

  .cabin-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .cabin-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  .cabin-card:hover { transform: translateY(-4px); }

  .cabin-card-img {
    height: 280px;
    background: var(--moss);
    position: relative;
    overflow: hidden;
  }

  .cabin-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26,41,24,0.6) 100%);
    z-index: 1;
  }

  /* Nordic cabin SVG illustration */
  .cabin-svg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .cabin-1-bg { background: linear-gradient(160deg, #1e3b1a 0%, #2d5226 40%, #3d6b35 100%); }
  .cabin-2-bg { background: linear-gradient(160deg, #2a2018 0%, #3d3020 40%, #4a3a28 100%); }

  .cabin-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    background: var(--gold);
    color: var(--forest);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    font-weight: 500;
  }

  .cabin-card-body {
    padding: 2.5rem;
  }

  .cabin-type {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.8rem;
  }

  .cabin-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .cabin-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage);
    margin-bottom: 0.3rem;
  }

  .cabin-price-note {
    font-size: 0.7rem;
    color: var(--bark);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }

  .cabin-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .cabin-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: #4a5040;
    font-weight: 300;
  }

  .cabin-features li::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .cabin-sauna {
    background: var(--forest);
    color: var(--cream);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .cabin-sauna span { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }

  .cabin-btn {
    display: block;
    text-align: center;
    border: 1px solid var(--sage);
    color: var(--sage);
    padding: 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
    width: 100%;
  }

  .cabin-btn:hover {
    background: var(--sage);
    color: var(--white);
  }

  /* Nordic house illustration */
  .house-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
  }

  /* ── INVERSIÓN ── */
  .investment {
    background: var(--forest);
    padding: 10rem 5%;
    overflow: hidden;
    position: relative;
  }

  .investment::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(74,103,65,0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .investment-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .investment h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.1;
  }

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

  .investment-intro {
    font-size: 0.9rem;
    color: var(--mist);
    max-width: 600px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 5rem;
  }

  .returns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 5rem;
  }

  .return-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,110,0.1);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .return-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,169,110,0.25);
  }

  .return-card.featured {
    background: rgba(200,169,110,0.1);
    border-color: rgba(200,169,110,0.3);
  }

  .return-scenario {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .return-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .return-label {
    font-size: 0.75rem;
    color: var(--mist);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .return-occupancy {
    font-size: 0.7rem;
    color: rgba(200,169,110,0.5);
    letter-spacing: 0.1em;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200,169,110,0.1);
  }

  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .condition-block {
    border-left: 2px solid rgba(200,169,110,0.25);
    padding-left: 2rem;
  }

  .condition-block h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
  }

  .condition-block p {
    font-size: 0.82rem;
    color: var(--mist);
    line-height: 1.8;
    font-weight: 300;
  }

  /* ── PROCESO DE PAGO ── */
  .process {
    background: var(--paper);
    padding: 10rem 5%;
  }

  .process-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .process h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .process-intro {
    font-size: 0.88rem;
    color: #4a5040;
    max-width: 580px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 5rem;
  }

  .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 5.5rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(200,169,110,0.1));
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(74,103,65,0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .timeline-item:hover .tl-content { transform: translateX(6px); }

  .tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .tl-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage);
    line-height: 1;
  }

  .tl-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
  }

  .tl-amount {
    font-size: 0.7rem;
    color: var(--bark);
    letter-spacing: 0.1em;
  }

  .tl-content {
    padding-top: 0.5rem;
    transition: transform 0.3s ease;
  }

  .tl-hito {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
  }

  .tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 0.5rem;
  }

  .tl-desc {
    font-size: 0.82rem;
    color: #5a6050;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── VENTAJAS ── */
  .advantages {
    background: var(--cream);
    padding: 10rem 5%;
  }

  .advantages-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .advantages h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
    line-height: 1.15;
    max-width: 700px;
  }

  .advantages h2 em { font-style: italic; color: var(--sage); }

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

  .adv-card {
    position: relative;
  }

  .adv-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(74,103,65,0.12);
    line-height: 1;
    margin-bottom: -1rem;
  }

  .adv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .adv-text {
    font-size: 0.83rem;
    color: #5a6050;
    line-height: 1.8;
    font-weight: 300;
  }

  .adv-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 1rem 0;
  }

  /* ── FAQ / SEGURIDAD ── */
  .security {
    background: var(--forest);
    padding: 8rem 5%;
  }

  .security-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    align-items: start;
  }

  .security h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: sticky;
    top: 8rem;
  }

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

  .security p.lead {
    color: var(--mist);
    font-size: 0.85rem;
    line-height: 1.9;
    font-weight: 300;
    position: sticky;
    top: 16rem;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid rgba(200,169,110,0.12);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 0;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--cream);
    transition: color 0.3s;
    gap: 1rem;
  }

  .faq-question:hover { color: var(--gold-light); }

  .faq-toggle {
    color: var(--gold);
    font-size: 1.4rem;
    font-family: 'Jost', sans-serif;
    font-weight: 200;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-answer {
    font-size: 0.83rem;
    color: var(--mist);
    line-height: 1.9;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
  }

  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  /* ── CTA FINAL ── */
  .cta-section {
    background: var(--cream);
    padding: 10rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,103,65,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    position: relative;
  }

  .cta-section h2 em { font-style: italic; color: var(--sage); }

  .cta-section p {
    font-size: 0.9rem;
    color: #4a5040;
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    font-weight: 300;
    position: relative;
  }

  .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .btn-dark {
    background: var(--forest);
    color: var(--cream);
    padding: 1.1rem 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-dark:hover { background: var(--moss); }

  .btn-outline-dark {
    background: transparent;
    color: var(--forest);
    padding: 1.1rem 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(26,41,24,0.3);
    transition: all 0.3s ease;
  }

  .btn-outline-dark:hover {
    background: var(--forest);
    color: var(--cream);
  }

  /* ── CONTACT MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,41,24,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .modal-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .modal {
    background: var(--paper);
    max-width: 560px;
    width: 90%;
    padding: 4rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
  }

  .modal-overlay.active .modal { transform: translateY(0); }

  .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--bark);
    line-height: 1;
    font-family: 'Jost', sans-serif;
    font-weight: 200;
  }

  .modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 0.5rem;
  }

  .modal p {
    font-size: 0.82rem;
    color: #5a6050;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

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

  .form-group label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 0.5rem;
    font-weight: 400;
  }

  .form-group input:not([type="checkbox"]),
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1px solid rgba(74,103,65,0.2);
    background: var(--white);
    padding: 0.9rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--forest);
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--sage);
  }

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

  .form-submit {
    width: 100%;
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.3s;
    font-weight: 500;
  }

  .form-submit:hover { background: var(--moss); }

  .form-note {
    font-size: 0.7rem;
    color: var(--mist);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.6;
  }

  /* Form messages */
  .form-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .form-message--error {
    background: rgba(180, 60, 60, 0.08);
    border: 1px solid rgba(180, 60, 60, 0.25);
    color: #8b3a3a;
  }

  /* Form success state */
  .form-success {
    text-align: center;
    padding: 3rem 2rem;
  }

  .form-success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--cream);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: fadeUp 0.6s ease forwards;
  }

  .form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
  }

  .form-success p {
    font-size: 0.95rem;
    color: #4a5040;
    line-height: 1.8;
    font-weight: 300;
  }

  /* Submit button disabled state */
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* ── FOOTER ── */
  footer {
    background: #111a10;
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(200,169,110,0.1);
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 300;
  }

  .footer-logo strong { color: var(--gold); }

  .footer-tagline {
    font-size: 0.65rem;
    color: rgba(212,207,199,0.4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }

  .footer-legal {
    font-size: 0.68rem;
    color: rgba(212,207,199,0.4);
    line-height: 1.7;
    max-width: 400px;
    text-align: right;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(200,169,110,0.2), 0 0 0 12px rgba(200,169,110,0.1); }
    50% { box-shadow: 0 0 0 10px rgba(200,169,110,0.15), 0 0 0 20px rgba(200,169,110,0.05); }
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(0.6); opacity: 0.3; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* ── EXPERIENCIA VISUAL ── */
  .experiencia-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .experiencia-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  /* ── CABIN GALLERY ── */
  .cabin-gallery {
    max-width: 1100px;
    margin: 6rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  /* ── PROMOTOR GRID ── */
  .promotor-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
  }

  /* ── DUAL RETURNS (Dos rentabilidades) ── */
  .dual-returns-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
  }

  .dual-returns-card {
    padding: 3.5rem;
  }

  .dual-returns-card--disfrute {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,110,0.15);
  }

  .dual-returns-card--financiera {
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.25);
  }

  .dual-returns-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .intro-grid,
    .location-inner,
    .cabins-header,
    .cabin-cards,
    .returns-grid,
    .conditions-grid,
    .adv-grid,
    .security-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { padding-top: 100px; }
    .timeline::before { left: 4rem; }
    .timeline-item { grid-template-columns: 7rem 1fr; }
    .footer-legal { text-align: left; }

    /* Promotor: de 2 columnas a 1 */
    .promotor-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    /* Dos rentabilidades: de 3 columnas a 1 */
    .dual-returns-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .dual-returns-card {
      padding: 2rem;
    }

    .dual-returns-separator {
      flex-direction: row;
      justify-content: center;
      padding: 0.5rem 0;
    }

    .dual-returns-separator > div {
      width: 60px;
      height: 1px;
    }

    /* Experiencia visual: de 2 cols a 1 */
    .experiencia-split {
      grid-template-columns: 1fr;
    }

    /* Galería 3 cols a 1 */
    .experiencia-gallery {
      grid-template-columns: 1fr;
    }

    /* Galería cabañas 4 cols a 2 */
    .cabin-gallery {
      grid-template-columns: 1fr 1fr;
    }
  }
/* ============================================
   LUMINA SALTUS — AJUSTE TIPOGRAFÍA +25-30%
   Pegar en: Apariencia → Personalizar → CSS adicional
   ============================================ */

/* Base global */
body {
  font-size: 18px; /* antes ~14px */
}

/* Párrafos y texto general */
p, li, span, label, input, select, textarea {
  font-size: 1.1rem;
  line-height: 2;
}

/* Eyebrow / etiquetas pequeñas */
.hero-eyebrow,
.section-label,
.cabin-type,
.return-scenario,
.tl-hito,
.adv-number,
.location-label,
.footer-tagline,
.footer-legal,
.form-note,
.cabin-price-note,
.return-occupancy,
.map-tag,
.map-tags span {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
}

/* Títulos Hero */
.hero-title {
  font-size: clamp(4.5rem, 10vw, 9.5rem);
}

.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

/* Títulos de sección H2 */
.intro-left h2,
.location h2,
.cabins-header h2,
.investment h2,
.process h2,
.advantages h2,
.security h2,
.cta-section h2 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

/* Subtítulos H3 y H4 */
h3.cabin-name {
  font-size: 2.5rem;
}

.condition-block h4,
.return-pct + p,
.faq-question {
  font-size: 1.35rem;
}

/* Precios cabañas */
.cabin-price {
  font-size: 3.2rem;
}

/* Números de rentabilidad */
.return-pct {
  font-size: 5.2rem;
}

/* Estadísticas */
.stat-number {
  font-size: 3.8rem;
}

.stat-label {
  font-size: 0.85rem;
}

/* Timeline */
.tl-pct {
  font-size: 3.2rem;
}

.tl-title {
  font-size: 1.9rem;
}

.tl-desc,
.tl-amount {
  font-size: 1rem;
}

/* Ventajas */
.adv-title {
  font-size: 1.9rem;
}

.adv-text {
  font-size: 1.05rem;
}

/* FAQ */
.faq-question {
  font-size: 1.4rem;
}

.faq-answer {
  font-size: 1rem;
}

/* Distancias ubicación */
.distance-list li {
  font-size: 1.1rem;
}

.distance-list .time {
  font-size: 1.8rem;
}

/* Intro paragraphs */
.intro-left p,
.investment-intro,
.process-intro,
.cta-section p,
.location p,
.cabins-header p {
  font-size: 1.1rem;
  line-height: 2;
}

/* Condition blocks */
.condition-block p,
.adv-text,
.faq-answer {
  font-size: 1.05rem;
  line-height: 2;
}

/* Nav */
.nav-links a {
  font-size: 0.9rem;
}

.nav-cta {
  font-size: 0.85rem;
}

/* Botones */
.btn-primary span,
.btn-dark,
.btn-outline-dark,
.btn-ghost,
.cabin-btn,
.form-submit,
.nav-cta {
  font-size: 0.9rem;
}

/* Nav logo */
.nav-logo {
  font-size: 1.7rem;
}

/* Footer */
.footer-logo {
  font-size: 1.5rem;
}

/* Location values en hero */
.location-value {
  font-size: 1.4rem;
}

/* Modal */
.modal h3 {
  font-size: 2.5rem;
}

.modal p {
  font-size: 1rem;
}

/* Cabin features */
.cabin-features li {
  font-size: 1rem;
}

.cabin-sauna {
  font-size: 0.95rem;
}

.cabin-sauna span {
  font-size: 1.5rem;
}

/* Badges */
.cabin-badge,
.map-tag {
  font-size: 0.8rem;
}

/* ============================================
   MODAL SCROLL FIX
   ============================================ */

.modal-overlay {
  overflow-y: auto;
  padding: 2rem 0;
  align-items: flex-start;
}

.modal {
  max-height: 85vh;
  overflow-y: auto;
  margin: 2rem auto;
}

/* Asegurar que el botón de enviar sea visible */
.form-submit {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* ============================================
   NAV LOGO COLOR FIX
   ============================================ */

.nav-logo a,
.nav-logo strong {
  color: var(--cream) !important;
}

.nav-logo {
  color: var(--cream) !important;
}

/* ============================================
   RESPONSIVE - SOLO LO NECESARIO
   ============================================ */

@media (max-width: 768px) {
  /* Grids de 2 columnas a 1 */
  .intro-grid,
  .location-inner,
  .cabin-cards,
  .returns-grid,
  .conditions-grid,
  .adv-grid {
    grid-template-columns: 1fr;
  }
  
  /* Hero location apilado */
  .hero-location {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .location-divider {
    display: none;
  }
  
  /* Botones full width */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-ghost,
  .btn-dark,
  .btn-outline-dark,
  .cabin-btn {
    width: 100%;
  }
  
  /* Nav links ocultos en móvil */
  .nav-links {
    display: none;
  }
  
  /* Modal más ancho en móvil */
  .modal {
    width: 95%;
    max-height: 85vh;
  }
  
  /* Stats 2x2 */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Promotor a 1 columna */
  .promotor-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Dos rentabilidades a 1 columna */
  .dual-returns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dual-returns-card {
    padding: 2rem;
  }

  .dual-returns-separator {
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .dual-returns-separator > div {
    width: 60px;
    height: 1px;
  }

  /* Experiencia visual a 1 columna */
  .experiencia-split {
    grid-template-columns: 1fr;
  }

  .experiencia-gallery {
    grid-template-columns: 1fr;
  }

  /* Galería cabañas a 2 columnas */
  .cabin-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

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

/* Scrolled state */
.scrolled .nav-hamburger span {
  background: var(--forest);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--forest);
  z-index: 999;
  padding: 6rem 2.5rem 3rem;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(200,169,110,0.12);
}

.mobile-menu ul li a {
  display: block;
  padding: 1rem 0;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.mobile-menu-langs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mobile-menu-langs a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(200,169,110,0.2);
  transition: all 0.3s ease;
}

.mobile-menu-langs a.active,
.mobile-menu-langs a:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.mobile-menu .nav-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */

.lang-selector {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  padding: 0.35rem 0.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scrolled .lang-current {
  color: var(--forest);
  border-color: rgba(74,103,65,0.2);
}

.lang-current:hover {
  border-color: var(--gold);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(74,103,65,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: none;
  min-width: 60px;
  z-index: 100;
}

.lang-selector.open .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--forest);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: background 0.2s ease;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: rgba(200,169,110,0.1);
  color: var(--gold);
}

/* ============================================
   PRIVACY CHECKBOX
   ============================================ */

.form-checkbox {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.form-checkbox label {
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--mist);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

.form-checkbox a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */

.privacy-content {
  font-family: 'Jost', sans-serif;
  color: #4a5040;
  line-height: 1.9;
  font-weight: 300;
}

.privacy-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.privacy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(74,103,65,0.1);
  padding-bottom: 0.5rem;
}

.privacy-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.privacy-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.privacy-content .privacy-date {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE — HAMBURGER & LANG
   ============================================ */

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .nav-cta {
    display: none;
  }

  .nav-right .nav-cta {
    display: none;
  }

  .lang-selector {
    display: none;
  }

  .mobile-menu .nav-cta {
    display: block;
  }
}
