

    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

    :root {

      --navy: #0D1F3C;

      --navy-mid: #162d52;

      --gold: #9A7B2F;

      --gold-light: #C9A84C;

      --gold-pale: #F0E6C8;

      --cream: #FAF7F2;

      --white: #ffffff;

      --text-dark: #1a1a2e;

      --text-mid: #444;

    }



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

    html {

      scroll-behavior: smooth;

    }

    body {

      background-color: var(--navy);

      font-family: 'Montserrat', sans-serif;

      color: var(--text-dark);

    }



    /* ── NAV ── */

    nav {

      background: var(--navy);

      padding: 14px 40px;

      display: flex;

      align-items: center;

      justify-content: space-between;

      border-bottom: 1px solid rgba(201,168,76,0.25);

      position: sticky;

      top: 0;

      z-index: 1;

    }



    .nav-logo {

      font-family: 'Cinzel', serif;

      font-size: 1.1rem;

      color: var(--gold-light);

      letter-spacing: 0.15em;

    }



    .nav-logo span {

      color: rgba(255,255,255,0.5);

      font-size: 0.7rem;

      display: block;

      letter-spacing: 0.2em;

      font-family: 'Montserrat', sans-serif;

      font-weight: 300;

      margin-top: 2px;

    }



    .nav-links {

      display: flex;

      gap: 32px;

      list-style: none;

      margin: 0;

      padding: 0;      

    }



    .nav-links a {

      font-family: 'Cinzel', serif;

      font-size: 0.82rem;

      letter-spacing: 0.2em;

      color: rgba(255,255,255,0.65);

      text-decoration: none;

      text-transform: uppercase;

      transition: color 0.2s;

    }

    .nav-links li{

      margin: 0;

    }

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



    nav .second-mobile-menu{

      font-size: 20px!important;

      display: none!important;

    }

    /* ── HERO ── */

    .hero {

      position: relative;

      width: 100%;

      height: 420px;

      background: linear-gradient(135deg, #8B0000 0%, #A50000 45%, #6B0000 100%);

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center;

      overflow: hidden;

    }



    .hero::before {

      content: '';

      position: absolute;

      inset: 0;

      background-image: repeating-linear-gradient(

        0deg, transparent, transparent 38px,

        rgba(255,255,255,0.03) 38px, rgba(255,255,255,0.03) 40px

      );

    }



    .hero::after {

      content: '';

      position: absolute;

      bottom: 0; left: 0; right: 0;

      height: 80px;

      background: linear-gradient(to bottom, transparent, rgba(13,31,60,0.6));

    }



    .hero-content {

      position: relative;

      z-index: 2;

      text-align: center;

    }



    .hero-eyebrow {

      font-family: 'Cinzel', serif;

      font-size: 0.7rem;

      letter-spacing: 0.4em;

      color: rgba(255,255,255,0.7);

      text-transform: uppercase;

      margin-bottom: 10px;

      animation: fadeUp 0.8s ease both;

    }



    .hero-gala {

      font-family: 'Cormorant Garamond', serif;

      font-style: italic;

      font-size: 8rem;

      color: var(--gold-light);

      line-height: 1;

      text-shadow: 0 4px 40px rgba(0,0,0,0.5);

      animation: fadeUp 0.9s 0.1s ease both;

    }



    .hero-tagline {

      font-family: 'Cinzel', serif;

      font-size: 0.6rem;

      letter-spacing: 0.22em;

      color: rgba(255,255,255,0.75);

      text-transform: uppercase;

      margin-top: 16px;

      animation: fadeUp 1s 0.2s ease both;

      max-width: 700px;

      line-height: 1.8;

    }



    /* ── ABOUT ── */

    .about-section {

      background-color: var(--cream);

      padding: 80px 20px;

    }



    .section-inner {

      max-width: 900px;

      margin: 0 auto;

    }



    .section-label {

      font-family: 'Cinzel', serif;

      font-size: 1.0rem;

      letter-spacing: 0.4em;

      color: var(--gold);

      text-transform: uppercase;

      text-align: center;

      margin-bottom: 10px;

    }



    .section-title {

      font-family: 'Cormorant Garamond', serif;

      font-size: 3rem;

      font-weight: 600;

      color: var(--navy);

      text-align: center;

      line-height: 1.1;

      margin-bottom: 16px;

    }



    .gold-rule {

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 16px;

      margin-bottom: 52px;

    }



    .gold-rule::before, .gold-rule::after {

      content: '';

      display: block;

      height: 1px;

      width: 80px;

    }

    .gold-rule::before { background: linear-gradient(to right, transparent, var(--gold-light)); }

    .gold-rule::after  { background: linear-gradient(to left, transparent, var(--gold-light)); }



    .gold-rule-diamond {

      width: 6px; height: 6px;

      background: var(--gold-light);

      transform: rotate(45deg);

    }



    /* Info grid */

    .info-grid {

      display: grid;

      grid-template-columns: 1fr 1px 1fr;

      gap: 0 40px;

      margin-bottom: 48px;

    }



    .divider-line {

      background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);

    }



    .info-block-label {

      font-family: 'Cinzel', serif;

      font-size: 1.00rem;

      letter-spacing: 0.3em;

      color: var(--gold);

      text-transform: uppercase;

      margin-bottom: 18px;

      display: block;

    }



    .event-detail {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.2rem;

      color: var(--navy);

      line-height: 1.7;

    }



    .event-detail strong { font-weight: 600; }



    .schedule-item {

      display: grid;

      grid-template-columns: 80px 1fr;

      gap: 0 14px;

      margin-bottom: 16px;

      align-items: start;

    }



    .schedule-time {

      font-family: 'Cinzel', serif;

      font-size: 0.90rem;

      color: var(--gold);

      font-weight: 600;

      letter-spacing: 0.05em;

      padding-top: 3px;

    }



    .schedule-event {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.15rem;

      color: var(--navy);

      border-left: 2px solid var(--gold-pale);

      padding-left: 14px;

      line-height: 1.4;

    }



    .dress-code {

      background: var(--navy);

      border-radius: 2px;

      padding: 20px 36px;

      display: flex;

      align-items: center;

      justify-content: center;

      margin-bottom: 48px;

    }



    .dress-code-text {

      font-family: 'Cinzel', serif;

      font-size: 0.90rem;

      letter-spacing: 0.22em;

      color: var(--gold-light);

      text-transform: uppercase;

      text-align: center;

    }



    .dress-code-text span {

      color: rgba(255,255,255,0.45);

      display: block;

      font-size: 1.20rem;

      letter-spacing: 0.2em;

      margin-bottom: 4px;

    }



    /* Invite text */

    .invite-text {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.2rem;

      color: var(--text-mid);

      line-height: 1.9;

      text-align: center;

      max-width: 760px;

      margin: 0 auto 40px;

    }



    /* CTA buttons */

    .cta-group {

      display: flex;

      gap: 16px;

      justify-content: center;

      flex-wrap: wrap;

      margin-bottom: 52px;

    }



    .btn {

      font-family: 'Cinzel', serif;

      font-size: 0.65rem;

      letter-spacing: 0.25em;

      text-transform: uppercase;

      text-decoration: none;

      padding: 14px 32px;

      border-radius: 2px;

      transition: all 0.2s;

      cursor: pointer;

      border: none;

      display: inline-block;

      font-weight: bold;

    }



    .btn-primary {

      background: var(--navy);

      color: var(--gold-light);

    }



    .btn-primary:hover {

      background: var(--navy-mid);

    }



    .btn-outline {

      background: transparent;

      color: var(--navy);

      border: 1.5px solid var(--navy);

    }



    .btn-outline:hover {

      background: var(--navy);

      color: var(--gold-light);

    }



    .btn-gold {

      background: var(--gold-light);

      color: var(--navy);

    }



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



    /* Video section */

    .video-banner {

      background: var(--navy);

      padding: 52px 20px;

      text-align: center;

    }



    .video-label {

      font-family: 'Cinzel', serif;

      font-size: 1.00rem;

      letter-spacing: 0.3em;

      color: var(--gold-light);

      text-transform: uppercase;

      margin-bottom: 20px;

    }



    .video-placeholder {

      max-width: 700px;

      margin: 0 auto;

      background: rgba(255,255,255,0.04);

      border: 1px solid rgba(201,168,76,0.25);

      border-radius: 4px;

      aspect-ratio: 16/9;

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center;

      gap: 16px;

      cursor: pointer;

      transition: background 0.2s;

    }



    .video-placeholder:hover { background: rgba(255,255,255,0.07); }



    .play-btn {

      width: 64px; height: 64px;

      border-radius: 50%;

      border: 2px solid var(--gold-light);

      display: flex;

      align-items: center;

      justify-content: center;

    }



    .play-btn::after {

      content: '';

      border-left: 22px solid var(--gold-light);

      border-top: 13px solid transparent;

      border-bottom: 13px solid transparent;

      margin-left: 4px;

    }



    .video-caption {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1rem;

      color: rgba(255,255,255,0.5);

      font-style: italic;

    }



    /* ── LOMBARDIA ── */

    .lombardia-section {

      background: linear-gradient(135deg, #1a2e4a 0%, #0D1F3C 100%);

      padding: 80px 20px;

      text-align: center;

      position: relative;

      overflow: hidden;

    }



    .lombardia-section::before {

      content: '';

      position: absolute;

      inset: 0;

      background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);

    }



    .lombardia-inner {

      max-width: 720px;

      margin: 0 auto;

      position: relative;

      z-index: 1;

    }



    .lombardia-section .section-title { color: var(--white); }

    .lombardia-section .section-label { color: var(--gold-light); }



    .lombardia-text {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.15rem;

      color: rgba(255,255,255,0.75);

      line-height: 1.9;

      margin-bottom: 32px;

    }



    .text-link {

      font-family: 'Cinzel', serif;

      font-size: 1.0rem;

      letter-spacing: 0.2em;

      color: var(--gold-light);

      text-decoration: none;

      text-transform: uppercase;

      border-bottom: 1px solid rgba(201,168,76,0.4);

      padding-bottom: 2px;

      transition: border-color 0.2s;

    }

    .text-link:hover { border-color: var(--gold-light); }



    /* ── HONOREES ── */

    .honorees-section {

      background-color: var(--cream);

      padding: 80px 20px;

    }



    .honoree-card {

      max-width: 360px;

      margin: 0 auto 40px;

      text-align: center;

    }



    .honoree-img-placeholder {

      width: 200px;

      height: 200px;

      border-radius: 50%;

      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);

      border: 3px solid var(--gold-light);

      margin: 0 auto 20px;

      display: flex;

      align-items: center;

      justify-content: center;

      overflow: hidden;

    }



    .honoree-initials {

      font-family: 'Cormorant Garamond', serif;

      font-size: 3rem;

      color: var(--gold-light);

      font-style: italic;

    }



    .honoree-name {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.8rem;

      font-weight: 600;

      color: var(--navy);

      margin-bottom: 6px;

    }



    .honoree-title {

      font-family: 'Cinzel', serif;

      font-size: 1.0rem;

      letter-spacing: 0.25em;

      color: var(--gold);

      text-transform: uppercase;

      margin-bottom: 16px;

    }



    .honoree-credit {

      font-family: 'Montserrat', sans-serif;

      font-size: 0.9rem;

      color: rgba(0,0,0,0.35);

      font-style: italic;

    }



    .more-honorees {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.5rem;

      color: var(--text-mid);

      text-align: center;

      margin-top: 8px;

    }



    /* ── MISSION ── */

    .mission-section {

      background: var(--navy);

      padding: 80px 20px;

    }



    .mission-inner {

      max-width: 800px;

      margin: 0 auto;

    }



    .mission-section .section-title { color: var(--white); }

    .mission-section .section-label { color: var(--gold-light); }



    .mission-list {

      list-style: none;

      margin-top: 36px;

    }



    .mission-list li {

      display: flex;

      align-items: flex-start;

      gap: 16px;

      padding: 18px 0;

      border-bottom: 1px solid rgba(201,168,76,0.15);

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.1rem;

      color: rgba(255,255,255,0.8);

      line-height: 1.6;

    }



    .mission-list li::before {

      content: '◆';

      color: var(--gold-light);

      font-size: 0.5rem;

      flex-shrink: 0;

      margin-top: 6px;

    }



    /* ── TICKET / HOTEL ── */

    .tickets-section {

      background: var(--cream);

      padding: 70px 20px;

      text-align: center;

    }



    .tickets-grid {

      display: grid;

      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

      gap: 20px;

      max-width: 800px;

      margin: 40px auto 0;

    }



    .ticket-card {

      border: 1px solid rgba(13,31,60,0.15);

      border-radius: 3px;

      padding: 36px 24px;

      text-align: center;

      transition: box-shadow 0.2s;

    }



    .ticket-card:hover {

      box-shadow: 0 8px 32px rgba(13,31,60,0.1);

    }



    .ticket-card-icon {

      font-size: 1.8rem;

      margin-bottom: 12px;

    }



    .ticket-card-title {

      font-family: 'Cinzel', serif;

      font-size: 0.65rem;

      letter-spacing: 0.2em;

      color: var(--navy);

      text-transform: uppercase;

      margin-bottom: 14px;

    }



    /* ── DONATE ── */

    .donate-section {

      background: linear-gradient(135deg, #8B0000, #6B0000);

      padding: 60px 20px;

      text-align: center;

    }



    .donate-section .section-title { color: var(--white); font-size: 2.2rem; }

    .donate-section .section-label { color: rgba(255,255,255,0.6); }



    .donate-text {

      font-family: 'Cormorant Garamond', serif;

      font-size: 1.15rem;

      color: rgba(255,255,255,0.8);

      margin: 16px auto 32px;

      max-width: 560px;

      line-height: 1.8;

    }



    /* ── FOOTER ── */

    footer {

      background: #060f1e;

      padding: 36px 40px;

      display: flex;

      align-items: center;

      justify-content: space-between;

      flex-wrap: wrap;

      gap: 16px;

      border-top: 1px solid rgba(201,168,76,0.15);

    }



    .footer-logo {

      font-family: 'Cinzel', serif;

      font-size: 0.9rem;

      color: var(--gold-light);

      letter-spacing: 0.15em;

    }



    .footer-text {

      font-family: 'Montserrat', sans-serif;

      font-size: 0.6rem;

      color: rgba(255,255,255,0.3);

      letter-spacing: 0.1em;

    }



.media-partner {
  font-family: 'Cinzel', serif;
  font-size: 0.90rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

footer .media-partner {
  flex: 1 0 100%;
}

    .media-partner strong {

      display: block;

      color: var(--gold-light);

      font-size: 0.8rem;

      margin-top: 4px;

    }



    @keyframes fadeUp {

      from { opacity: 0; transform: translateY(20px); }

      to   { opacity: 1; transform: translateY(0); }

    }



    @media (max-width: 660px) {

      .hero-gala { font-size: 5rem; }

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

      .divider-line { display: none; }

      nav{

        padding: 14px 20px;

      }

      nav .nav-links { 

        display: none;

        position: absolute;

        top: 36px;

        background-color: var(--navy);

        width: 100%;

        margin-left: -20px;

      }

      nav .nav-links li{

        margin: 10px 0;

      }

      nav.open .nav-links {

        display: block;

      }

      nav .second-mobile-menu{

        display: block!important;

      }



    }

