/* ── CSS reused from refund.css base ── */
:root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --gold-dim: #8B6914;
      --black: #050505;
      --black-2: #0D0D0D;
      --black-3: #111111;
      --black-4: #1A1A1A;
      --white: #F5F0E8;
      --white-dim: rgba(245,240,232,0.6);
      --glass: rgba(201,168,76,0.05);
      --glass-border: rgba(201,168,76,0.18);
      --glow: rgba(201,168,76,0.25);
      --red-dim: rgba(200, 80, 80, 0.12);
      --red-accent: #E07070;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 300; line-height: 1.8; overflow-x: hidden; }
    #loader { position: fixed; inset: 0; z-index: 9999; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
    #loader.hidden { opacity: 0; visibility: hidden; }
    .loader-ring { width: 70px; height: 70px; position: relative; }
    .loader-ring::before, .loader-ring::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid transparent; }
    .loader-ring::before { border-top-color: var(--gold); animation: spin 1s linear infinite; }
    .loader-ring::after { border-bottom-color: var(--gold-dim); animation: spin 1.5s linear infinite reverse; }
    .loader-gem { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.2rem; }
    .loader-label { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase; margin-top: 1.5rem; animation: pulse 1.5s ease-in-out infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 0 5%; height: 80px; display: flex; align-items: center; justify-content: space-between; background: rgba(5,5,5,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); transition: all 0.4s ease; }
    nav.scrolled { height: 64px; }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--gold); text-decoration: none; letter-spacing: 0.05em; }
    .nav-logo span { font-style: italic; color: var(--gold-light); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: var(--white-dim); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: all 0.3s ease; }
    .nav-mobile { display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: rgba(5,5,5,0.97); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 998; }
    .nav-mobile.open { display: flex; }
    .nav-mobile a { color: var(--white-dim); text-decoration: none; font-size: 1.2rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Cormorant Garamond', serif; transition: color 0.3s; }
    .nav-mobile a:hover { color: var(--gold); }
    .page-hero { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px 5% 80px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
    .hero-ornament { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); margin: 0 auto 2rem; animation: fadeInUp 1s ease 0.5s both; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; animation: fadeInUp 1s ease 0.7s both; }
    .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; animation: fadeInUp 1s ease 0.9s both; }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-subtitle { font-size: 0.78rem; letter-spacing: 0.15em; color: var(--white-dim); animation: fadeInUp 1s ease 1.1s both; }
    .hero-line { width: 120px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 2rem auto 0; animation: fadeInUp 1s ease 1.3s both; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .content-wrapper { max-width: 960px; margin: 0 auto; padding: 0 5% 100px; }
    .policy-section { margin-bottom: 2.5rem; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .policy-section.visible { opacity: 1; transform: translateY(0); }
    .glass-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 2px; padding: 2.5rem 3rem; position: relative; overflow: hidden; transition: border-color 0.4s ease, box-shadow 0.4s ease; }
    .glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
    .glass-card:hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 0 40px var(--glow); }
    .section-number { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; color: var(--gold-dim); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 0.5rem; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; color: var(--gold-light); margin-bottom: 1.5rem; line-height: 1.2; }
    .section-body { font-size: 0.85rem; color: var(--white-dim); line-height: 1.9; }
    .section-body p { margin-bottom: 1rem; }
    .section-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); transition: border-color 0.3s, color 0.3s; }
    .section-body a:hover { color: var(--gold-light); border-color: var(--gold-light); }

    /* CONTACT CARDS GRID */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
      animation: fadeInUp 1s ease 1.5s both;
    }
    .contact-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 2px;
      padding: 2.5rem 2rem;
      text-decoration: none;
      color: var(--white);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      position: relative; overflow: hidden;
    }
    .contact-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    }
    .contact-card:hover {
      border-color: rgba(201,168,76,0.4);
      box-shadow: 0 0 40px var(--glow);
      transform: translateY(-4px);
    }
    .contact-card--primary { border-color: var(--gold-dim); }
    .contact-card--primary::before { background: linear-gradient(to right, transparent, var(--gold), transparent); }
    .contact-card-icon { font-size: 2rem; }
    .contact-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-light); }
    .contact-card-desc { font-size: 0.78rem; color: var(--white-dim); line-height: 1.6; }
    .contact-card-value { font-size: 0.82rem; color: var(--white); word-break: break-word; }
    .contact-card-cta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: auto; padding-top: 0.5rem; }

    /* HOURS */
    .hours-grid { display: flex; flex-direction: column; gap: 0.2rem; }
    .hours-row { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
    .hours-row:last-child { border-bottom: none; }
    .hours-day { font-size: 0.82rem; color: var(--white-dim); }
    .hours-time { font-size: 0.82rem; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; letter-spacing: 0.05em; }
    .hours-row--muted .hours-time { color: var(--white-dim); }

    /* STEPS */
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
    .step-item { background: rgba(201,168,76,0.06); border: 1px solid var(--glass-border); border-radius: 2px; padding: 1.5rem; text-align: center; transition: border-color 0.3s, transform 0.3s; }
    .step-item:hover { border-color: var(--gold); transform: translateY(-4px); }
    .step-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
    .step-label { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--white-dim); text-transform: uppercase; line-height: 1.5; }

    /* SOCIAL */
    .social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
    .social-card { background: rgba(201,168,76,0.06); border: 1px solid var(--glass-border); border-radius: 2px; padding: 1.5rem; text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; transition: border-color 0.3s, transform 0.3s; }
    .social-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .social-icon { font-size: 1.8rem; }
    .social-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold-light); }
    .social-handle { font-size: 0.72rem; color: var(--white-dim); }

    /* FOOTER */
    footer { background: var(--black-2); border-top: 1px solid var(--glass-border); padding: 5rem 5% 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto 4rem; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 500; margin-bottom: 1rem; display: block; }
    .footer-logo span { font-style: italic; color: var(--gold-light); }
    .footer-tagline { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--white-dim); text-transform: uppercase; margin-bottom: 1.5rem; }
    .footer-contact p { font-size: 0.8rem; color: var(--white-dim); margin-bottom: 0.6rem; }
    .footer-contact a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
    .footer-contact a:hover { color: var(--gold-light); }
    .footer-col-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.8rem; }
    .footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 1px; background: var(--gold); }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.8rem; }
    .footer-links a { color: var(--white-dim); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; transition: color 0.3s, padding-left 0.3s; display: inline-block; }
    .footer-links a:hover { color: var(--gold); padding-left: 6px; }
    .footer-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--glass-border), transparent); max-width: 1100px; margin: 0 auto 2rem; }
    .footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-size: 0.72rem; color: var(--white-dim); letter-spacing: 0.08em; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.72rem; color: var(--white-dim); text-decoration: none; transition: color 0.3s; }
    .footer-legal a:hover { color: var(--gold); }
    .whatsapp-btn { position: fixed; bottom: 30px; right: 30px; z-index: 888; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; animation: float 3s ease-in-out infinite; }
    .whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
    .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-title { font-size: 2.5rem; }
      .contact-grid { grid-template-columns: 1fr; }
      .glass-card { padding: 2rem 1.5rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .social-grid { grid-template-columns: 1fr; }
    }
