    /* ===================== CSS VARIABLES ===================== */
    :root {
      --teal:    #1A6166;
      --teal-dk: #0f4a4f;
      --gold:    #FFB91D;
      --red:     #EA3E3B;
      --white:   #FFFFFF;
      --off-white: #FAF9F6;
      --text:    #2C2C2C;
      --text-light: #6B6B6B;
      --border:  rgba(26,97,102,0.15);
    }

    /* ===================== RESET & BASE ===================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Raleway', sans-serif;
      background: var(--off-white);
      color: var(--text);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    img { max-width: 100%; display: block; }

    a { text-decoration: none; color: inherit; }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--off-white); }
    ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

    /* ===================== NAV ===================== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(250,249,246,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 30px rgba(26,97,102,0.1); }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--teal);
      font-style: italic;
      letter-spacing: -0.5px;
    }
    .nav-logo span { color: var(--gold); font-style: normal; font-weight: 700; }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--teal); color: var(--white);
      padding: 0.65rem 1.6rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      transition: background 0.3s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--teal-dk); transform: translateY(-1px); }

    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--teal); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }



    /* ===================== SECTION SHARED ===================== */
    section { padding: 6rem 5%; }

    .section-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-tag::before {
      content: ''; display: block;
      width: 24px; height: 2px; background: var(--gold);
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.2;
      color: var(--teal);
      margin-bottom: 1.2rem;
    }
    .section-title em { color: var(--gold); }

    .section-lead {
      font-size: 1.05rem; line-height: 1.75;
      color: var(--text-light);
      max-width: 600px;
    }

    /* ===================== ABOUT ===================== */
    .about {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-left { position: relative; }

    .about-img-stack {
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
    }
    .about-img-main {
      width: 82%;
      height: 100%;
      object-fit: contain;
      border-radius: 24px;
      position: relative; z-index: 2;
    }
    .about-img-accent {
      position: absolute;
      bottom: 20px;
      width: 260px;
      height: 260px;
      left: 40px;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--teal), #2a8a91,var(--gold));
      opacity: 0.15;
      z-index: 1;
      transform: rotate(-10deg);
    }
    .about-img-bg {
      position: absolute;
      top: -20px; left: -20px;
      width: 70%; height: 70%;
      background: rgba(255,185,29,0.12);
      border-radius: 24px;
      z-index: 1;
    }
    .about-leaf-deco {
      position: absolute;
      top: 10px; right: 10px; z-index: 4;
    }

    .about-right {}

    .about-quote {
      border-left: 4px solid var(--gold);
      padding: 1.2rem 1.5rem;
      background: rgba(255,185,29,0.06);
      border-radius: 0 12px 12px 0;
      margin: 2rem 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--teal);
      line-height: 1.6;
    }

    .about-chips {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      margin-top: 1.5rem;
    }
    .chip {
      background: rgba(26,97,102,0.08);
      border: 1px solid rgba(26,97,102,0.2);
      border-radius: 50px;
      padding: 0.45rem 1.1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--teal);
    }

    /* ===================== SERVICES ===================== */
    .services { background: var(--off-white); }
    .services-header { text-align: center; margin-bottom: 4rem; }
    .services-header .section-lead { margin: 0 auto; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }

    .service-card {
      background: var(--white);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      border: 1px solid var(--border);
      transition: all 0.35s;
      position: relative; overflow: hidden;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,97,102,0.12); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 56px; height: 56px;
      background: rgba(26,97,102,0.08);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
    }
    .service-card:hover .service-icon { background: rgba(26,97,102,0.16); }

    .service-card h3 {
      font-size: 1.2rem;
      color: var(--teal);
      margin-bottom: 0.8rem;
    }
    .service-card p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--text-light);
    }

    .service-card.featured {
      background: var(--teal);
      border-color: transparent;
    }
    .service-card.featured::before { background: var(--gold); }
    .service-card.featured .service-icon { background: rgba(255,255,255,0.15); }
    .service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.9); }
    .service-card.featured h3 { color: var(--white); }
    .service-card.featured p { color: rgba(255,255,255,0.75); }

    /* ===================== IMPACT STRIP ===================== */
    .impact {
      background: var(--teal);
      padding: 5rem 5%;
      display: flex; align-items: center; justify-content: center; gap: 0;
      flex-wrap: wrap;
    }
    .impact-item {
      text-align: center;
      padding: 1.5rem 4rem;
      border-right: 1px solid rgba(255,255,255,0.15);
      flex: 1; min-width: 180px;
    }
    .impact-item:last-child { border-right: none; }
    .impact-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .impact-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
    }

    /* ===================== TESTIMONIALS ===================== */
    .testimonials { background: var(--white); }
    .testimonials-header { text-align: center; margin-bottom: 4rem; }
    .testimonials-header .section-lead { margin: 0 auto; }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }
    .testi-card {
      min-width:360px;
      max-width: 360px;
      flex-shrink: 0;
      background: white;
      border-radius: 28px;
      padding: 38px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(26,97,102,0.1); }

    .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

    .testi-text {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .testi-author { display: flex; align-items: center; gap: 0.8rem; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--white); font-weight: 700;
      font-family: 'Playfair Display', serif;
    }
    .testi-name { font-weight: 700; font-size: 0.88rem; color: var(--teal); }
    .testi-role { font-size: 0.76rem; color: var(--text-light); }

    /* ===================== RESOURCES ===================== */
    .resources { background: var(--off-white); }
    .resources-header { margin-bottom: 3rem; }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .resource-card {
      background: var(--white);
      border-radius: 20px;
      padding: 1.8rem 2rem;
      border: 1px solid var(--border);
      display: flex; align-items: center; gap: 1.5rem;
      transition: all 0.3s; cursor: pointer;
    }
    .resource-card:hover { box-shadow: 0 10px 30px rgba(26,97,102,0.1); transform: translateX(4px); }
    .resource-icon {
      width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    }
    .resource-icon.teal { background: rgba(26,97,102,0.1); }
    .resource-icon.gold { background: rgba(255,185,29,0.15); }
    .resource-icon.red { background: rgba(234,62,59,0.1); }
    .resource-title { font-weight: 700; font-size: 0.95rem; color: var(--teal); margin-bottom: 0.3rem; }
    .resource-desc { font-size: 0.82rem; color: var(--text-light); }
    .resource-arrow { margin-left: auto; color: var(--teal); font-size: 1.2rem; flex-shrink: 0; }

    /* ===================== BOOKING / CTA ===================== */
    .booking {
      background: var(--teal);
      padding: 7rem 5%;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .booking::before {
      content: '';
      position: absolute;
      top: -50%; left: -20%;
      width: 60%; height: 200%;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
    }
    .booking::after {
      content: '';
      position: absolute;
      bottom: -60%; right: -10%;
      width: 50%; height: 180%;
      background: rgba(255,185,29,0.05);
      border-radius: 50%;
    }

    .booking-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

    .booking h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .booking h2 em { color: var(--gold); font-style: italic; }
    .booking p {
      color: rgba(255,255,255,0.75);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .booking-form {
      display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
    }
    .booking-form input {
      flex: 1; min-width: 220px;
      padding: 0.95rem 1.5rem;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.3s;
    }
    .booking-form input::placeholder { color: rgba(255,255,255,0.5); }
    .booking-form input:focus { outline: none; border-color: var(--gold); }

    .booking-form button {
      background: var(--gold);
      color: var(--text);
      padding: 0.95rem 2.2rem;
      border-radius: 50px;
      border: none; cursor: pointer;
      font-family: 'Raleway', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      transition: all 0.3s;
    }
    .booking-form button:hover { background: #ffcc55; transform: translateY(-2px); }

    /* ===================== CONTACT ===================== */
    .contact { background: var(--white); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }
    .contact-info .section-title { margin-bottom: 1rem; }
    .contact-items { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-item {
      display: flex; align-items: center; gap: 1rem;
    }
    .contact-icon {
      width: 44px; height: 44px;
      background: rgba(26,97,102,0.08);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-text { font-size: 0.9rem; color: var(--text-light); }
    .contact-text strong { display: block; color: var(--text); font-size: 0.88rem; margin-bottom: 0.1rem; }

    .social-links { display: flex; gap: 0.8rem; margin-top: 2rem; }
    .social-btn {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: rgba(26,97,102,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      transition: all 0.3s;
    }
    .social-btn:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
    .form-group label {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--teal);
    }
    .form-group input, .form-group textarea, .form-group select {
      padding: 0.9rem 1.2rem;
      border: 2px solid var(--border);
      border-radius: 12px;
      font-family: 'Raleway', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--off-white);
      transition: border-color 0.3s;
      resize: none;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      outline: none; border-color: var(--teal);
    }
    .form-group textarea { height: 130px; }

    .form-submit {
      background: var(--teal); color: var(--white);
      padding: 1rem 2.5rem;
      border-radius: 50px; border: none; cursor: pointer;
      font-family: 'Raleway', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      align-self: flex-start;
      transition: all 0.3s;
    }
    .form-submit:hover { background: var(--teal-dk); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,97,102,0.3); }

    /* ===================== FOOTER ===================== */
    footer {
      background: #0d3d40;
      padding: 4rem 5% 2rem;
      color: rgba(255,255,255,0.7);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 2rem;
    }
    .footer-brand .nav-logo { font-size: 1.8rem; color: var(--white); }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; }
    .footer-motto {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: var(--gold);
      font-size: 1rem;
      margin-top: 1rem;
    }
    .footer-col h4 {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul li a { font-size: 0.88rem; transition: color 0.3s; }
    .footer-col ul li a:hover { color: var(--gold); }

    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.8rem;
    }
    .footer-bottom a { color: var(--gold); }

    /* ===================== LEAF SVG MOTIF ===================== */
    .leaf-motif {
      display: inline-block;
    }

    /* ===================== PATTERN BG ===================== */
    .pattern-bg {
      background-image: radial-gradient(circle, rgba(26,97,102,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* ===================== ANIMATIONS ===================== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s 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; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; padding: 7rem 5% 3rem; }
      .hero-left { padding-right: 0; text-align: center; }
      .hero-left .section-lead, .hero-sub { margin: 0 auto 2rem; }
      .hero-btns { justify-content: center; }
      .hero-right { display: none; }
      .hero-motto { position: static; margin-top: 2rem; }
      .about { grid-template-columns: 1fr; }
      .about-img-stack { aspect-ratio: 4/3; }
      .services-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .resources-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .impact { flex-direction: column; gap: 0; }
      .impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
      .impact-item:last-child { border-bottom: none; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      nav.open .nav-links {
        display: flex; flex-direction: column;
        position: fixed; top: 65px; left: 0; right: 0;
        background: var(--white);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      }

      .about{
        display:flex;
        flex-direction: column;
      }
      .about-right{
        order: 1;
      }
      .about-left{
        order: 2;
      }
    }

    .badge-icon i{
        font-size: 24px;
        color: #d4a017;
    }


    
/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#1A6166;
    overflow-x:hidden;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;

    padding:0 10%;

    background:#1A6166;
    padding-top: 90px;
    padding-left: 250px;
}

/* =========================
   VIDEO
========================= */

.hero video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0.38;

    filter:brightness(0.90);

    z-index:1;
}

/* =========================
   DARK OVERLAY
==== */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(3,10,14,0.72) 0%,
        rgba(3,10,14,0.58) 28%,
        rgba(3,10,14,0.55) 55%,
        rgba(3,10,14,0.18) 100%
    );

    z-index:2;
}

/* GOLD GLOW */

.hero::after{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(228,177,74,0.18),
        transparent 70%
    );

    right:-15%;
    top:50%;

    transform:translateY(-50%);

    z-index:2;
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:5;

    max-width:760px;
    

}

/* SMALL TAG */

.hero-tag{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:28px;

    color:#d7b15a;

    letter-spacing:0.28em;

    text-transform:uppercase;

    font-size:0.78rem;

    font-weight:700;
}

.hero-tag::before{
    content:"";
    width:45px;
    height:1px;
    background:#d7b15a;
}
/* HEADING */

.hero h1{
    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3.5rem,7vw,6rem);

    line-height:0.9;

    font-weight:700;

    color: #f7f1e8;;

    margin-bottom:30px;
}

/* GOLD WORD */

.hero h1 span{
    color:#e5b24c;

    text-shadow:
    0 0 20px rgba(229,178,76,0.22);
}
/* PARAGRAPH */

.hero p{
    max-width:620px;

    color:rgba(255,255,255,0.72);

    font-size:1.05rem;

    line-height:1.9;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.hero-btn-primary{
    padding:18px 34px;

    border-radius:60px;

    background:
    linear-gradient(
        135deg,
        #f1c15d,
        #cf9532
    );

    color:#1A6166;

    text-decoration:none;

    font-weight:700;

    transition:0.4s ease;
}

.hero-btn-primary:hover{
    transform:translateY(-5px);

    box-shadow:
    0 15px 40px rgba(241,193,93,0.28);
}

/* SECONDARY BUTTON */
.hero-btn-secondary{
    padding:18px 34px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,0.15);

    color:white;

    text-decoration:none;

    backdrop-filter:blur(10px);

    background:rgba(255,255,255,0.04);

    transition:0.4s ease;
}
.hero-btn-secondary:hover{
    background:rgba(255,255,255,0.09);
    transform:translateY(-5px);
}

/* MOBILE */

@media(max-width:768px){
    .hero{
        padding:120px 7% 40px;
        align-items:flex-start;
        
    }

    .hero{
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
      width: auto !important;
      min-width: 250px;
      text-align: center;
    }
    .hero h1{
        font-size:5rem;
        line-height: 1.05;
    }

    .hero-content{
      padding-left: 20px;
    }
    .hero p{
        font-size:0.98rem;
    }
    .hero-buttons{
        flex-direction:column;
    }
    .hero-btn-primary,
    .hero-btn-secondary{
        width:auto;
        min-width: 220px;
        max-width: 280px;
        text-align:center;
    }
}



    /* =========================
   TESTIMONIAL SLIDER
========================= */

.testi-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.testi-track{

    display:flex;

    gap:24px;

    width:max-content;

    animation:testiScroll 28s linear infinite;
}

.testi-track:hover{
    animation-play-state:paused;
}

/* CARDS */

.testi-card{

    min-width:380px;

    flex-shrink:0;
}

/* ANIMATION */

@keyframes testiScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}


@media(max-width:768px){

    .testi-card{
        min-width:85vw;
    }

    .testi-track{
        gap:18px;
    }
}

/* =========================
   TESTIMONIAL SLIDER
========================= */

.testi-slider{
    position:relative;
    overflow:hidden;
}

/* SLIDER TRACK */

.testi-grid{

    display:flex;

    gap:24px;

    transition:0.5s ease;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;
}

.testi-grid::-webkit-scrollbar{
    display:none;
}

/* BUTTONS */

.testi-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    color:white;

    font-size:1.2rem;

    cursor:pointer;

    z-index:5;

    transition:0.3s ease;
}

.testi-btn:hover{

    background:#d7b15a;

    color:#1A6166;
}

/* LEFT */

.prev-btn{
    left:10px;
}

/* RIGHT */

.next-btn{
    right:10px;
}

/* MOBILE */

@media(max-width:768px){

    .testi-btn{

        width:42px;
        height:42px;

        font-size:1rem;
    }
}




.cta-buttons{
    display:flex;
    gap:1rem;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top:2rem;
}

.cta-primary{
    padding:1rem 2.2rem;
    border-radius:999px;

    background:linear-gradient(
        135deg,
        #f4b860,
        #ffcc73
    );

    color:#0f172a;
    font-weight:600;
    text-decoration:none;

    box-shadow:0 10px 30px rgba(244,184,96,0.25);

    transition:all 0.4s ease;
}

.cta-whatsapp{
    padding:1rem 2.2rem;
    border-radius:999px;

    border:1px solid rgba(255,255,255,0.25);

    color:white;
    font-weight:600;
    text-decoration:none;

    background:rgba(255,255,255,0.06);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:all 0.4s ease;
}

.cta-primary:hover,
.cta-whatsapp:hover{
    transform:translateY(-4px);
}

.cta-primary:hover{
    box-shadow:0 18px 40px rgba(244,184,96,0.35);
}

.cta-whatsapp:hover{
    background:rgba(255,255,255,0.12);
    border-color:rgba(255,255,255,0.4);
}

@media(max-width:768px){

    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta-primary,
    .cta-whatsapp{
        width:100%;
        text-align:center;
    }

}







*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
button { font-family: 'Raleway', sans-serif; cursor: pointer; }

/* =============================================================
   SECTION WRAPPER
============================================================= */
#events {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

/* =============================================================
   SECTION HEADER
============================================================= */
.ev-header {
  padding: 6rem 8% 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ev-section-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.ev-section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.ev-section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ev-section-heading em {
  font-style: italic;
  color: var(--gold);
}

.ev-header-stats {
  display: flex;
  gap: 2.5rem;
}
.ev-hstat {}
.ev-hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.ev-hstat-num span { color: var(--gold); }
.ev-hstat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
  display: block;
}

/* =============================================================
   TABS
============================================================= */
.ev-tabs {
  display: flex;
  padding: 0 8%;
  border-bottom: 1px solid var(--border);
  margin-top: 3rem;
  position: sticky;
  top: 0;
  background: rgba(250,249,246,0.97);
  z-index: 100;
}
.ev-tab {
  padding: 1.1rem 0;
  margin-right: 2.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ev-tab:hover { color: var(--teal); }
.ev-tab.active {
  color: var(--teal);
  border-bottom-color: var(--gold);
}

/* =============================================================
   UPCOMING PANEL
============================================================= */
.ev-upcoming {
  padding: 4rem 8% 6rem;
}

/* ── FEATURED EVENT ── */
.ev-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--border-dk);
  margin-bottom: 3rem;
  overflow: hidden;
}

/* Left — image side */
.ev-featured-img {
  position: relative;
  min-height: 500px;
  /*
    REPLACE:
    background-image: url('images/event-main.jpg');
  */
  background-image: url('images/event-main.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
}
.ev-featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,61,64,0.7) 0%, rgba(13,61,64,0.1) 60%);
}

.ev-featured-img-bottom {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  z-index: 2;
}
.ev-featured-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--teal-dk);
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.ev-featured-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
}

/* Right — content side */
.ev-featured-content {
  padding: 3rem 3rem 3rem;
  background: var(--white);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ev-featured-top {}

.ev-featured-next {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.ev-featured-next::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.ev-featured-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.ev-featured-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.ev-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.4rem;
  background: var(--cream);
  border: 1px solid var(--border);
}
.ev-featured-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.ev-featured-meta-row strong { color: var(--text); font-weight: 600; }

/* Countdown */
.ev-countdown-wrap {}
.ev-countdown-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}
.ev-countdown-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 1.8rem;
}
.ev-cd-box {
  background: var(--teal-lt);
  border: 1px solid var(--border);
  padding: 0.9rem 0.5rem;
  text-align: center;
}
.ev-cd-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.ev-cd-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
  display: block;
}

.ev-featured-footer {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.ev-btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s;
}
.ev-btn-primary:hover { background: var(--teal-dk); }

.ev-btn-outline {
  background: transparent;
  border: 1px solid var(--border-dk);
  color: var(--teal);
  padding: 0.85rem 1.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.ev-btn-outline:hover { border-color: var(--teal); background: var(--teal-lt); }

.ev-featured-spots {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── MORE UPCOMING GRID ── */
.ev-grid-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1px;
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ev-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
}
.ev-card:hover { background: var(--cream); }

.ev-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
}
.ev-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,61,64,0.75) 0%, transparent 55%);
}

.ev-card-date {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 0.7rem;
  text-align: center;
  z-index: 2;
}
.ev-card-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.ev-card-date-mo {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.ev-card-cat {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 2;
}

.ev-card-body { padding: 1.5rem 1.8rem 1.8rem; }
.ev-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.ev-card:hover .ev-card-title { color: var(--teal-dk); }

.ev-card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.ev-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.4rem;
}
.ev-card-info-row {
  font-size: 0.74rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ev-card-info-row strong { color: var(--text); }

.ev-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.ev-spots-low  { font-size: 0.68rem; font-weight: 700; color: var(--red); }
.ev-spots-open { font-size: 0.68rem; font-weight: 700; color: var(--teal); }

.ev-card-btn {
  background: transparent;
  border: 1px solid var(--border-dk);
  color: var(--teal);
  padding: 0.5rem 1.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.ev-card-btn:hover { background: var(--teal); color: var(--white); }

/* =============================================================
   PAST EVENTS PANEL
============================================================= */
.ev-past {
  display: none;
  padding: 4rem 8% 6rem;
}

.ev-past-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.ev-past-filters {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.ev-filter {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 0.5rem 1.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.ev-filter:hover { border-color: var(--teal); color: var(--teal); }
.ev-filter.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ── EVENT ROWS ── */
.ev-past-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ev-row {
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.ev-row:hover { background: var(--cream); }

.ev-row-header {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  min-height: 140px;
}

.ev-row-thumb {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
}
.ev-row-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--white) 100%);
}
.ev-row:hover .ev-row-thumb::after {
  background: linear-gradient(to right, transparent 55%, var(--cream) 100%);
}
.ev-row-thumb-date {
  position: absolute;
  bottom: 0.7rem; left: 0.7rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(13,61,64,0.6);
  padding: 0.2rem 0.5rem;
}

.ev-row-info {
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ev-row-cat {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.ev-row-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.ev-row:hover .ev-row-title { color: var(--teal-dk); }
.ev-row-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.ev-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.ev-row-meta-item {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ev-row-meta-item strong { color: var(--text); }

.ev-row-right {
  padding: 1.6rem 2rem 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 180px;
  border-left: 1px solid var(--border);
}
.ev-row-stats {
  display: flex;
  gap: 1.5rem;
}
.ev-row-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.ev-row-stat-num span { color: var(--gold); }
.ev-row-stat-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
  display: block;
}
.ev-row-cta {
  background: transparent;
  border: 1px solid var(--border-dk);
  color: var(--teal);
  padding: 0.55rem 1.1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.ev-row-cta:hover { background: var(--teal); color: var(--white); }
.ev-row-media-label {
  font-size: 0.6rem;
  color: var(--text-light);
  text-align: right;
}

/* ── GALLERY DRAWER ── */
.ev-drawer {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.ev-drawer.open { display: block; }

.ev-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.ev-drawer-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
}
.ev-drawer-title span {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.76rem;
  margin-left: 0.4rem;
}
.ev-dtabs { display: flex; gap: 2px; }
.ev-dtab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.ev-dtab.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.ev-dtab:hover  { color: var(--teal); border-color: var(--teal); }

/* Photo grid */
.ev-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 2px;
  padding: 2px;
}
.ev-photo-grid .pg-wide { grid-column: span 2; }
.ev-photo-grid .pg-tall { grid-row: span 2; }

.pg-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: var(--teal-lt);
}
.pg-item::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,61,64,0.08);
  transition: background 0.2s;
  z-index: 1;
}
.pg-item:hover::before { background: rgba(13,61,64,0.45); }

.pg-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px dashed var(--border-dk);
}
.pg-placeholder span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.5;
  text-align: center;
  padding: 0 1rem;
}

.pg-hover {
  position: absolute; inset: 0; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.pg-item:hover .pg-hover { opacity: 1; }
.pg-hover-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Video grid */
.ev-video-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
}
.ev-video-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--teal-lt);
}
.ev-video-item::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,61,64,0.35);
  transition: background 0.2s;
}
.ev-video-item:hover::before { background: rgba(13,61,64,0.2); }
.ev-video-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.ev-video-play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}
.ev-video-item:hover .ev-video-play-btn { background: #ffc93d; }
.ev-video-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.4;
}
.ev-video-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-video-placeholder span {
  font-size: 0.58rem;
  color: var(--text-light);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================================
   REGISTRATION MODAL
============================================================= */
.ev-modal-bg {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,22,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.ev-modal-bg.open { display: flex; }

.ev-modal {
  background: var(--white);
  border: 1px solid var(--border-dk);
  border-top: 3px solid var(--gold);
  width: 100%;
  max-width: 500px;
  position: relative;
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.ev-modal-head {
  padding: 2rem 2.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
}
.ev-modal-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.ev-modal-title {
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.ev-modal-date { font-size: 0.78rem; color: var(--text-light); }
.ev-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ev-modal-close:hover { background: var(--teal-lt); color: var(--teal); }

.ev-modal-body { padding: 1.6rem 2.2rem 2rem; }
.ev-form { display: flex; flex-direction: column; gap: 0.9rem; }
.ev-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.ev-field { display: flex; flex-direction: column; gap: 0.35rem; }
.ev-field label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.ev-field input,
.ev-field select {
  background: var(--cream);
  border: 1px solid var(--border-dk);
  padding: 0.8rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.2s;
}
.ev-field input::placeholder { color: rgba(44,44,44,0.3); }
.ev-field input:focus,
.ev-field select:focus { outline: none; border-color: var(--teal); }
.ev-field select option { background: var(--white); }

.ev-form-submit {
  background: var(--teal);
  color: var(--white);
  padding: 1rem;
  border: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  transition: background 0.2s;
}
.ev-form-submit:hover { background: var(--teal-dk); }

.ev-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.ev-success-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.ev-success-title { font-size: 1.2rem; color: var(--teal); margin-bottom: 0.5rem; }
.ev-success-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.75; }
.ev-success-text strong { color: var(--gold); }

/* =============================================================
   LIGHTBOX
============================================================= */
.lb-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(8,20,22,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lb-overlay.open { display: flex; }

.lb-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 5;
}
.lb-close:hover { background: rgba(255,255,255,0.15); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 5;
}
.lb-nav:hover { border-color: var(--gold); color: var(--gold); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-main {
  width: 100%; max-height: 78vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-main img { max-width: 100%; max-height: 78vh; object-fit: contain; }
.lb-main video { max-width: 100%; max-height: 78vh; }
.lb-main iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.lb-caption { text-align: center; }
.lb-caption-event {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.25rem;
}
.lb-caption-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.lb-counter {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  background: rgba(13,61,64,0.8);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.lb-strip {
  display: flex; gap: 3px; overflow-x: auto; max-width: 100%;
  scrollbar-width: none;
}
.lb-strip::-webkit-scrollbar { display: none; }
.lb-thumb {
  width: 56px; height: 40px; flex-shrink: 0;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.4;
  transition: opacity 0.2s, border-color 0.2s;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gold);
}
.lb-thumb.active { border-color: var(--gold); opacity: 1; }
.lb-thumb:hover { opacity: 0.75; }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
  .ev-featured { grid-template-columns: 1fr; }
  .ev-featured-img { min-height: 280px; }
  .ev-featured-img::after { display: none; }
  .ev-row-header { grid-template-columns: 200px 1fr; }
  .ev-row-right { display: none; }
  .ev-grid { grid-template-columns: repeat(2,1fr); }
  .ev-photo-grid { grid-template-columns: repeat(3,1fr); }
  .ev-video-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .ev-header { padding: 4rem 6% 0; }
  .ev-tabs { padding: 0 6%; }
  .ev-upcoming, .ev-past { padding: 3rem 6% 5rem; }
  .ev-header-stats { display: none; }
  .ev-row-header { grid-template-columns: 1fr; }
  .ev-row-thumb { height: 160px; }
  .ev-grid { grid-template-columns: 1fr; }
  .ev-photo-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .ev-photo-grid .pg-wide { grid-column: span 1; }
  .ev-video-grid { grid-template-columns: 1fr; }
  .ev-form-row { grid-template-columns: 1fr; }
  .lb-nav { display: none; }
  .ev-past-filters { flex-wrap: wrap; }
}


.success-message{
    display:none;
    margin-top:20px;
    padding:30px;
    background:#ffffff;
    border:1px solid rgba(42,138,145,0.15);
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.success-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#2a8a91;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:bold;
}

.success-message h3{
    margin-bottom:10px;
    color:#1f3340;
}

.success-message p{
    color:#667085;
    line-height:1.7;
}