  :root {
    --cream: #F5F0EB;
    --cream-dark: #EDE6DC;
    --gold: #B8973A;
    --gold-light: #D4AF6A;
    --gold-pale: #E8D9B5;
    --charcoal: #1E1E1E;
    --charcoal-soft: #3A3A3A;
    --text-muted: #6E6353; /* darkened from #7A7060: original failed WCAG AA contrast (4.3:1) at body text sizes */
    --white: #FDFAF7;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }
 
  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 30, 30, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 0.5px solid rgba(184, 151, 58, 0.25);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-logo span { color: var(--gold); }

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

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s;
  }
 
  .nav-links a:hover { color: var(--gold); }

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

  .nav-lang {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 0.5px solid var(--gold);
    padding: 0.4rem 0.7rem;
    flex-shrink: 0;
    transition: all 0.3s;
  }

  .nav-lang:hover {
    background: var(--gold);
    color: var(--charcoal);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
 
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }
 
  .hero::before {
    content: '';
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(184,151,58,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
  }

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

  .hero-ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeUp 1s ease both;
  }
 
  .hero-ornament::before,
  .hero-ornament::after {
    content: '';
    display: block;
    width: 40px;
    height: 0.5px;
    background: var(--gold-light);
  }
 
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    margin-bottom: 1rem;
    animation: fadeUp 1s ease 0.15s both;
  }
 
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }
 
  .hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--gold);
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease 0.3s both;
  }
 
  .hero-desc {
    max-width: 480px;
    margin: 0 auto 3.5rem;
    font-size: 0.82rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    animation: fadeUp 1s ease 0.45s both;
  }
 
  .hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.6s both;
  }
 
  .btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.9rem 2.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: 0.5px solid var(--gold);
  }
 
  .btn-primary:hover {
    background: transparent;
    color: var(--gold);
  }
 
  .hero-scroll {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: fadeUp 1s ease 0.9s both;
  }
 
  .hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
 
  .scroll-line {
    width: 0.5px;
    height: 48px;
    background: var(--gold-light);
    animation: scrollPulse 2s ease-in-out infinite;
  }
 
  /* ── EXPERIENCE JOURNEY ── */
  .journey {
    padding: 7rem 4rem;
    background: var(--white);
    text-align: center;
  }
 
  .section-tag {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
 
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem;
  }
 
  .section-title em { font-style: italic; color: var(--gold); }
 
  .section-sub {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 5rem;
    letter-spacing: 0.03em;
  }
 
.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
 
  .journey-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 10%;
    right: 10%;
    height: 0.5px;
    background: linear-gradient(to right, transparent, var(--gold-pale), var(--gold-light), var(--gold-pale), transparent);
  }
 
  .step {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
  }
 
  .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 0.5px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: all 0.3s;
  }
 
  .step:hover .step-num {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }
 
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.05em;
  }
 
  .step-desc {
    font-size: 0.72rem;
    line-height: 1.8;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }
 
  /* Mobile: vertical timeline */
  @media (max-width: 640px) {
    .journey-steps {
      grid-template-columns: 1fr;
      gap: 0;
      max-width: 320px;
    }
 
    .journey-steps::before { display: none; }
 
    .step {
      flex-direction: row;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 0;
      text-align: left;
      position: relative;
    }
 
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 23px;
      top: 48px;
      width: 1px;
      height: calc(100% + 1.5rem);
      background: linear-gradient(to bottom, var(--gold-light), transparent);
    }
 
    .step-content {
      padding-bottom: 2rem;
    }

    .step:last-child .step-content { padding-bottom: 0; }
 
    .step-title {
      margin-bottom: 0.2rem;
    }
  }
 
  /* ── FEATURES ── */
  .features {
    padding: 7rem 4rem;
    background: var(--cream);
  }
 
  .features-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
 
  .features-header {
    text-align: center;
    margin-bottom: 5rem;
  }
 
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184,151,58,0.15);
  }
 
  .feature-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
  }
 
  .feature-card:hover { background: var(--white); }
 
  .feature-icon {
    width: 36px; height: 36px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }

  .feature-icon path,
  .feature-icon rect,
  .feature-icon circle,
  .feature-icon polyline {
    stroke: var(--gold);
  }
 
  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
  }

  .feature-plan-tag {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
  }

  .feature-desc {
    font-size: 0.75rem;
    line-height: 1.9;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }
 
  /* ── OCCASIONS ── */
  .occasions {
    padding: 4.5rem 4rem;
    background: var(--charcoal);
    text-align: center;
  }

  .occasions .section-tag { color: var(--gold-light); }
  .occasions .section-title { color: var(--white); }
  .occasions .section-sub { color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; }

  .occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
  }
 
  .occasion-card {
    background: var(--charcoal);
    padding: 2rem 1.5rem;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
 
  .occasion-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
 
  .occasion-card:hover::before { transform: scaleX(1); }
  .occasion-card:hover { background: rgba(255,255,255,0.04); }
 
  .occasion-glyph {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
    font-style: italic;
  }
 
  .occasion-name {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* ── PROCESO ── */
  .process {
    padding: 7rem 4rem;
    background: var(--cream);
    text-align: center;
  }

  .process-steps {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    position: relative;
    padding-bottom: 2.4rem;
  }

  .process-step:last-child { padding-bottom: 0; }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    width: 1px;
    height: calc(100% - 48px);
    background: linear-gradient(to bottom, var(--gold-light), transparent);
  }

  .process-num {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    border: 0.5px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }

  .process-step:hover .process-num {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }

  .process-content { padding-top: 0.6rem; }

  .process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
  }

  .process-desc {
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }

  /* ── PLANES ── */
  .planes {
    padding: 7rem 4rem;
    background: var(--white);
    text-align: center;
  }

  .planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184,151,58,0.15);
    max-width: 1100px;
    margin: 0 auto;
  }

  .plan-card {
    background: var(--white);
    border: 0.5px solid rgba(184,151,58,0.25);
    padding: 2.6rem 2.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .plan-card--popular {
    background: var(--cream);
    border-top: 2px solid var(--gold);
    position: relative;
  }

  .plan-badge {
    position: absolute;
    top: -13px;
    left: 2.2rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
  }

  .plan-num {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }

  .plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.7rem;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
  }

  .plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
  }

  .plan-price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
  }

  .plan-price-new {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .plan-divider {
    margin-top: auto;
    padding-top: 1.6rem;
    margin-bottom: 1.2rem;
    border-bottom: 0.5px solid rgba(184,151,58,0.25);
  }

  .plan-features li {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--charcoal-soft);
    letter-spacing: 0.02em;
    padding-left: 1.3rem;
    position: relative;
  }

  .plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
  }

  .plan-cta {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0.5px solid var(--gold);
    transition: all 0.3s;
  }

  .plan-cta:hover {
    background: transparent;
    color: var(--gold);
  }

  .plan-note {
    font-size: 0.68rem;
    line-height: 1.7;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
  }

  .plan-note--elite {
    padding: 0.9rem 1rem;
    background: var(--cream);
    border-left: 2px solid var(--gold);
  }


  .planes-note {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-align: right;
  }

  @media (max-width: 900px) {
    .planes-grid { grid-template-columns: 1fr; }
    .plan-card--popular { border-top: none; border-left: 2px solid var(--gold); }
    .planes-note { text-align: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .plan-badge {
      position: static;
      display: inline-block;
      align-self: flex-start;
      margin-bottom: 1rem;
    }
  }

  /* ── MOCKUP / PREVIEW ── */
  .preview {
    padding: 7rem 4rem;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
  }
 
  .preview-text { max-width: 420px; }
  .preview-text .section-tag { text-align: left; }
  .preview-text .section-title { text-align: left; }
 
  .preview-text p {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
    letter-spacing: 0.03em;
  }
 
  .preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }
 
  .preview-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--charcoal-soft);
    letter-spacing: 0.03em;
  }
 
  .preview-list li::before {
    content: '';
    display: block;
    width: 20px; height: 0.5px;
    background: var(--gold);
    flex-shrink: 0;
  }
 
  .preview-mock {
    width: 100%;
    max-width: 480px;
  }

  .preview-mock img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ── FAQ ── */
  .faq {
    padding: 7rem 4rem;
    background: var(--cream-dark);
    text-align: center;
  }

  .faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .faq-item {
    background: var(--white);
    border: 0.5px solid rgba(184, 151, 58, 0.2);
    padding: 0 1.6rem;
    transition: border-color 0.3s;
  }

  .faq-item[open] { border-color: var(--gold-light); }

  .faq-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    padding: 1.3rem 3rem 1.3rem 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .faq-question::before {
    content: '';
    flex: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
  }

  .faq-question::-webkit-details-marker { display: none; }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0.5px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1;
    transition: background 0.3s, color 0.3s;
  }

  .faq-item[open] .faq-question::after {
    content: '–';
    background: var(--gold);
    color: var(--white);
  }

  .faq-answer {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    padding: 0 0 1.5rem;
    margin: 0;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 8rem 4rem;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .cta-section .section-tag { color: var(--gold-light); }
 
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
  }
 
  .cta-title em { font-style: italic; color: var(--gold-light); }
 
  .cta-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    max-width: 440px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    letter-spacing: 0.03em;
    position: relative;
  }
 
  .cta-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--gold);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0.5px solid var(--gold);
    transition: all 0.3s;
    position: relative;
  }
 
  .cta-wa-btn:hover {
    background: transparent;
    color: var(--gold);
  }
 
  .cta-wa-btn:hover .wa-icon { fill: var(--gold); }
 
  .wa-icon {
    width: 18px; height: 18px;
    fill: var(--white);
    flex-shrink: 0;
    transition: fill 0.3s;
  }
 
  .cta-wa-note {
    margin-top: 1.2rem;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
  }
 
  /* ── FOOTER ── */
  footer {
    padding: 3rem 4rem;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 0.5px solid rgba(184,151,58,0.15);
  }
 
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
  }
 
  .footer-logo span { color: var(--gold); }
 
  .footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.2rem;
  }
 
  .footer-brand,
  .footer-links,
  .footer-copy {
    flex: 1 1 0;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: center;
  }

  .footer-copy { text-align: right; }
 
  .footer-links a {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
 
  .footer-links a:hover { color: var(--gold); }
 
  .footer-copy {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
  }
  
    .footer-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .footer-social:hover { opacity: 0.7; }

  .footer-social span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .footer-social svg rect,
  .footer-social svg circle {
    stroke: var(--gold);
  }

  /* ── STORY PAGE (historia.php) ── */
  .story-hero {
    padding: 9rem 4rem 6rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .story-hero::before {
    content: '';
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(184,151,58,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .story-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }

  .story-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 2.4rem;
  }

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

  .story-body {
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.95;
    color: var(--charcoal-soft);
    letter-spacing: 0.015em;
  }

  .story-body p { margin-bottom: 1.5rem; }
  .story-body p:last-child { margin-bottom: 0; }

  .story-signoff {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }

  .story-photo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--gold);
    background: var(--cream-dark);
  }

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

  .story-signature {
    text-align: right;
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--gold);
  }

  .mission-band {
    padding: 6rem 4rem;
    background: var(--white);
    text-align: center;
  }

  .mission-statement {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.55;
    color: var(--charcoal);
    max-width: 40ch;
    margin: 0 auto;
  }

  .mission-statement em { font-style: italic; color: var(--gold); }

  .values-section {
    padding: 7rem 4rem;
    background: var(--cream-dark);
    text-align: center;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184,151,58,0.15);
    max-width: 1100px;
    margin: 0 auto 3rem;
  }

  .value-card {
    background: var(--white);
    padding: 2.6rem 2.2rem;
    text-align: left;
  }

  .value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
  }

  .value-card p {
    font-size: 0.78rem;
    line-height: 1.85;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
  }
 
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }

    .nav-toggle { display: flex; }

    .nav-links {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow-y: auto;
      background: rgba(30, 30, 30, 0.97);
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
      transition: max-height 0.35s ease;
    }

    /* calc, not a guessed px value: always fits every item regardless of how many the list holds */
    .nav-links.open { max-height: calc(100vh - 64px); }

    .occasions-grid { grid-template-columns: repeat(2, 1fr); }

    .occasion-card { padding: 1.6rem 1rem; }

    .occasion-glyph { font-size: 1.6rem; margin-bottom: 0.5rem; }

    .occasion-name { font-size: 0.58rem; letter-spacing: 0.15em; }

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

    .story-hero { padding: 6.5rem 1.5rem 3.5rem; }
    .mission-band { padding: 4rem 1.5rem; }
    .values-section { padding: 5rem 1.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 2rem 1.5rem; }
    .story-signoff { justify-content: flex-start; }
    .story-signature { text-align: left; }

    .feature-card { padding: 2rem 1.5rem; text-align: center; }

    .feature-icon { margin: 0 auto 1rem; }

    .nav-links li { width: 100%; }

    .nav-links a {
      display: block;
      padding: 1.1rem 1.5rem;
      font-size: 0.72rem;
    }

    .hero { padding: 6rem 1.5rem 3rem; }
    .journey, .features, .occasions, .process, .planes, .preview, .faq, .cta-section { padding: 4rem 1.5rem 2.75rem; }
    .journey .section-sub,
    .features .features-header,
    .features .section-sub,
    .process .section-sub,
    .planes .section-sub { margin-bottom: 1.5rem; }
    .preview { gap: 3rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }

    .footer-brand,
    .footer-links,
    .footer-copy {
      flex: none;
    }

    .footer-copy { text-align: center; }
    .footer-links { justify-content: center; }
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .hero-video { display: none; }

    .hero-ornament, .hero-title, .hero-subtitle, .hero-desc, .hero-buttons, .hero-scroll {
      animation: none;
    }

    .scroll-line { animation: none; }

    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
