    /* ===== CSS RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* Colors */
      --white: #fffdfb;
      --white-pure: #ffffff;
      --gold: #c9a227;
      --gold-light: #e8d5a3;
      --gold-dark: #9a7b1a;
      --rose: #d8a5b3;
      --rose-light: #f1dde3;
      --rose-dark: #b47a8b;
      --text-dark: #3d3530;
      --text-muted: #6b5f57;
      --border-gold: rgba(201, 162, 39, 0.3);
      
      /* Typography */
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Lato', system-ui, sans-serif;
      
      /* Spacing */
      --section-padding: 6rem 1.5rem;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-sans);
      font-weight: 300;
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-serif);
      font-weight: 400;
      line-height: 1.2;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 253, 251, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-gold);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    @media (max-width: 767px) {
      .nav-container {
        padding: 0.85rem 1rem;
      }
    }

    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--gold-dark);
    }

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

    .nav.nav-open .nav-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 1.5rem;
      right: 1.5rem;
      background: var(--white-pure);
      border: 1px solid var(--border-gold);
      border-radius: 0.85rem;
      box-shadow: 0 16px 30px rgba(61, 53, 48, 0.12);
      overflow: hidden;
    }

    .nav.nav-open .nav-links li + li {
      border-top: 1px solid var(--border-gold);
    }

    .nav-links a {
      font-size: 0.875rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.3s ease;
    }

    .nav.nav-open .nav-links a {
      display: block;
      padding: 0.9rem 1rem;
    }

    .nav-mobile-toggle {
      width: 2.75rem;
      height: 2.75rem;
      border: 1px solid var(--border-gold);
      border-radius: 0.7rem;
      background: var(--white-pure);
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
      margin-left: 0;
    }

    @media (min-width: 768px) {
      .nav-mobile-toggle {
        display: none;
        margin-left: unset;
      }
    }

    .nav-mobile-toggle-line {
      width: 1.2rem;
      height: 2px;
      border-radius: 2px;
      background: var(--gold-dark);
      transition: transform 0.25s ease, opacity 0.25s ease;
      transform-origin: center;
    }

    .nav-mobile-toggle[aria-expanded="true"] .nav-mobile-toggle-line:nth-child(2) {
      transform: translateY(7px) rotate(45deg);
    }

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

    .nav-mobile-toggle[aria-expanded="true"] .nav-mobile-toggle-line:nth-child(4) {
      transform: translateY(-7px) rotate(-45deg);
    }

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

    .nav-cta {
      display: none;
      padding: 0.75rem 1.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white-pure);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2rem;
      border: none;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      white-space: nowrap;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    }

    @media (min-width: 768px) {
      .nav-cta {
        display: inline-block;
      }
    }

    .nav-actions {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
    }

    @media (max-width: 767px) {
      .nav-actions {
        display: none;
      }
    }

    .language-switcher {
      position: relative;
      z-index: 1200;
    }

    @media (max-width: 767px) {
      .language-switcher {
        margin-left: auto;
        margin-right: 0.35rem;
      }
    }

    #language-select {
      appearance: none;
      border: 1px solid var(--border-gold);
      border-radius: 0.7rem;
      background: var(--white-pure);
      color: var(--gold-dark);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.72rem 1.85rem 0.72rem 0.85rem;
      cursor: pointer;
      min-width: 4.4rem;
      line-height: 1;
    }

    @media (max-width: 767px) {
      #language-select {
        min-width: 3.8rem;
        padding: 0.66rem 1.6rem 0.66rem 0.75rem;
        font-size: 0.7rem;
      }
    }

    .language-switcher::after {
      content: '▼';
      position: absolute;
      right: 0.7rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.55rem;
      color: var(--gold-dark);
      pointer-events: none;
    }

    #language-select:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    @media (max-width: 767px) {
      .nav-container {
        gap: 0.6rem;
        justify-content: flex-start;
      }

      .nav-logo {
        font-size: 1.2rem;
      }

      #language-select {
        min-width: 4rem;
        padding: 0.66rem 1.6rem 0.66rem 0.75rem;
      }

      .hero {
        min-height: 100svh;
        padding-top: 5.25rem;
      }

      .hero-bg-image {
        background-position: center top;
      }
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: linear-gradient(180deg, var(--white) 0%, var(--rose-light) 50%, var(--white) 100%);
      overflow: hidden;
    }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: 
        radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, var(--gold) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background-image: url('/public/Madalena_costa_ao_comprido.jpeg');
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: 1;
    }

    /* Harp Strings Animation */
    .harp-strings {
      position: absolute;
      left: 5%;
      top: 20%;
      bottom: 20%;
      width: 2px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      opacity: 0.15;
    }

    .harp-strings.right {
      left: auto;
      right: 5%;
    }

    .string {
      width: 2px;
      height: 100%;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      animation: string-vibrate 3s ease-in-out infinite;
    }

    .string:nth-child(1) { animation-delay: 0s; }
    .string:nth-child(2) { animation-delay: 0.5s; }
    .string:nth-child(3) { animation-delay: 1s; }
    .string:nth-child(4) { animation-delay: 1.5s; }
    .string:nth-child(5) { animation-delay: 2s; }

    @keyframes string-vibrate {
      0%, 100% { transform: scaleX(1); opacity: 0.3; }
      50% { transform: scaleX(2); opacity: 1; }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 1.5rem;
      max-width: 900px;
    }

    .hero-subtitle {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      padding: 0.5rem 1.5rem;
      border: 1px solid var(--border-gold);
      border-radius: 2rem;
    }

    .hero-title {
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .hero-title span {
      display: block;
      font-style: italic;
      color: var(--gold);
    }

    .hero-description {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }

    @media (min-width: 640px) {
      .hero-buttons {
        flex-direction: row;
      }
    }

    .btn-primary {
      padding: 1rem 2.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white-pure);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 3rem;
      border: none;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    }

    .btn-secondary {
      padding: 1rem 2.5rem;
      background: transparent;
      color: var(--text-dark);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 3rem;
      border: 2px solid var(--border-gold);
      cursor: pointer;
      transition: all 0.3s ease;
    }

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

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: scroll-pulse 2s ease-in-out infinite;
    }

    @keyframes scroll-pulse {
      0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    /* ===== HERO DONATION BAR (Horizontal) ===== */
    .hero-donation-bar {
      width: 100%;
      max-width: 500px;
      margin: 0 auto 2rem;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1.25rem 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--border-gold);
    }

    .hero-donation-bar-title {
      font-family: var(--font-serif);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-dark);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-align: center;
      margin-bottom: 0.75rem;
    }

    .hero-donation-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 0.5rem;
    }

    .hero-donation-amount {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .hero-donation-current {
      font-family: var(--font-serif);
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .hero-donation-goal {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .hero-donation-percent {
      font-family: var(--font-serif);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--white-pure);
      background: var(--gold);
      padding: 0.375rem 0.75rem;
      border-radius: 1rem;
    }

    .hero-progress-horizontal {
      width: 100%;
      height: 0.75rem;
      background: var(--rose-light);
      border-radius: 0.5rem;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border-gold);
    }

    .hero-progress-fill {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
        width: 0%;
      background: linear-gradient(90deg, var(--gold-light), var(--gold));
      border-radius: 0.5rem;
      animation: fill-grow-horizontal 2s ease-out;
    }

    @keyframes fill-grow-horizontal {
      from { width: 0; }
    }

    .hero-progress-fill::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      animation: shimmer-horizontal 2.5s infinite;
    }

    @keyframes shimmer-horizontal {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* Responsive adjustments for hero donation bar */
    @media (max-width: 480px) {
      .hero-donation-bar {
        padding: 1rem;
      }
      .hero-donation-current {
        font-size: 1.5rem;
      }
      .hero-donation-goal {
        font-size: 0.75rem;
      }
      .hero-donation-percent {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
      }
    }

    /* ===== ABOUT SECTION ===== */
    .about {
      padding: var(--section-padding);
      background: var(--white-pure);
    }

    .about-container {
      max-width: 950px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .about-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    .about-image-wrapper {
      position: relative;
    }

    .about-image-frame {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }

    .about-image-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 3px solid var(--gold-light);
      border-radius: 1rem;
      z-index: 10;
    }

    .about-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    }

    .about-image-decoration {
      position: absolute;
      top: -1rem;
      right: -1rem;
      width: 100px;
      height: 100px;
      border: 2px solid var(--gold-light);
      border-radius: 50%;
      opacity: 0.5;
    }

    .about-content {
      padding: 0 0 0 1.5rem;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--text-dark);
      margin-bottom: 1.5rem;
    }

    .section-title span {
      color: var(--gold);
      font-style: italic;
    }

    .about-text {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-gold);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--gold);
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.25rem;
    }

    /* ===== GALLERY SECTION ===== */
    .gallery {
      padding: var(--section-padding);
      background: linear-gradient(180deg, var(--rose-light) 0%, var(--white) 100%);
    }

    .gallery-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .gallery-grid {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 180px;
      grid-auto-flow: dense;
      gap: 1rem;
    }

    .gallery-item.video-wide,
    .gallery-item.photo-horizontal {
      grid-column: span 2;
    }

    .gallery-item.item-photo-vertical {
      grid-row: span 2;
    }

    @media (min-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
        gap: 1.25rem;
      }

      .item-video-1 {
        grid-column: 1 / span 2;
        grid-row: 1;
      }

      .item-photo-1 {
        grid-column: 3;
        grid-row: 1;
      }

      .item-photo-2 {
        grid-column: 4;
        grid-row: 1;
      }

      .item-photo-4 {
        grid-column: 2;
        grid-row: 2;
      }

      .item-photo-horizontal {
        grid-column: 3 / span 2;
        grid-row: 2;
      }

      .item-photo-vertical {
        grid-column: 1;
        grid-row: 2 / span 2;
      }

      .item-photo-5 {
        grid-column: 2;
        grid-row: 3;
      }

      .item-video-2 {
        grid-column: 3 / span 2;
        grid-row: 3;
      }
    }

    .gallery-item {
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item.video-wide .gallery-video-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .gallery-item.video-wide .gallery-video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 0.75rem;
    }

    .gallery-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
      transition: transform 0.5s ease;
    }

    .gallery-image.madalena-costa-2 {
      background-image: url('/public/Madalena_Costa_2.jpeg');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }

    .gallery-image.madalena-5-harpas {
      background-image: url('/public/Madalena_5_harpas.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .gallery-image.madalena-costa {
      background-image: url('/public/Madalena_kiko_horizontal.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .gallery-image.madalena-retrato {
      background-image: url('/public/Madalena_audicao_milao.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .gallery-image.madalena-audicao-milao {
      background-image: url('/public/Madalena_class.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .gallery-image.madalena-ao-comprido {
      background-image: url('/public/Madalena_treino.jpeg');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }

    .gallery-item:hover .gallery-image {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(61, 53, 48, 0.8) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-caption {
      color: var(--white-pure);
      font-family: var(--font-serif);
      font-size: 1.125rem;
    }

    /* ===== UPCOMING CONCERTS ===== */
    .upcoming-concerts {
      padding: var(--section-padding);
      background: var(--white-pure);
    }

    .upcoming-concerts-container {
      max-width: 980px;
      margin: 0 auto;
    }

    .upcoming-concerts-header {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 3rem;
    }

    .concert-card {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      background: linear-gradient(135deg, var(--white), var(--rose-light));
      border: 1px solid var(--border-gold);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    @media (min-width: 768px) {
      .concert-card {
        grid-template-columns: 1.2fr 0.8fr;
      }
    }

    .concert-image {
      width: 100%;
      height: 100%;
      min-height: 180px;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    }

    .concert-details {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }

    .concert-title {
      font-family: var(--font-serif);
      font-size: 1.75rem;
      color: var(--text-dark);
    }

    .concert-text {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .concert-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .concert-meta-item {
      min-width: 160px;
      background: var(--white-pure);
      border: 1px solid var(--border-gold);
      border-radius: 0.85rem;
      padding: 1rem 1.25rem;
    }

    .concert-meta-label {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }

    .concert-meta-value {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      color: var(--gold-dark);
    }

    /* ===== EXPERIENCE SECTION ===== */
    .experience {
      padding: var(--section-padding);
      background: var(--white-pure);
    }

    .experience-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .experience-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .timeline {
      display: grid;
      gap: 2.25rem;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 0.9rem;
      row-gap: 0;
      align-items: start;
      padding: 0;
    }

    .timeline-item:last-child {
      padding-bottom: 0;
    }

    .timeline-dot {
      position: relative;
      width: 1rem;
      height: 1rem;
      background: var(--gold);
      border: 3px solid var(--white-pure);
      border-radius: 50%;
      box-shadow: 0 0 0 3px var(--gold-light);
      margin-top: 0.45rem;
      margin-bottom: 0;
      grid-column: 1;
      grid-row: 1;
    }

    .timeline-date {
      display: inline-block;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--rose-dark);
      background: var(--rose-light);
      padding: 0.45rem 0.9rem;
      border-radius: 1rem;
      margin-bottom: 0.6rem;
      grid-column: 2;
      grid-row: 1;
      justify-self: start;
    }

    .timeline-title {
      font-size: 1.5rem;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .timeline-location {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
      grid-column: 2;
    }

    .timeline-description {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.7;
      grid-column: 2;
    }

    /* Awards */
    .awards {
      margin-top: 4rem;
      padding-top: 4rem;
      border-top: 1px solid var(--border-gold);
    }

    .awards-title {
      text-align: center;
      font-size: 1.5rem;
      color: var(--text-dark);
      margin-bottom: 2rem;
    }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .award-card {
      background: var(--rose-light);
      padding: 1.5rem;
      border-radius: 0.75rem;
      text-align: center;
      border: 1px solid var(--border-gold);
    }

    .award-icon {
      width: 3rem;
      height: 3rem;
      margin: 0 auto 1rem;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white-pure);
      font-size: 1.25rem;
    }

    .award-name {
      font-family: var(--font-serif);
      font-size: 1.125rem;
      color: var(--text-dark);
      margin-bottom: 0.25rem;
    }

    .award-year {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* ===== DONATION SECTION ===== */
    .donation {
      padding: var(--section-padding);
      background: linear-gradient(180deg, var(--white) 0%, var(--rose-light) 50%, var(--white) 100%);
      position: relative;
      overflow: hidden;
    }

    .donation-bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .donation-container {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    .donation-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .donation-header .about-text {
      margin-bottom: 0;
    }

    .donation-card {
      background: var(--white-pure);
      border-radius: 1.5rem;
      padding: 3rem;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--border-gold);
    }

    /* Progress Section */
    .progress-section {
      margin-bottom: 3rem;
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 1rem;
    }

    .progress-current {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      color: var(--gold);
    }

    .progress-goal {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .progress-bar-container {
      height: 1rem;
      background: var(--rose-light);
      border-radius: 0.5rem;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 0.5rem;
      position: relative;
      animation: progress-grow 1.5s ease-out;
    }

    @keyframes progress-grow {
      from { width: 0; }
    }

    .progress-bar::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .progress-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .progress-stats strong {
      color: var(--gold);
      font-weight: 700;
    }

    /* Payment Methods */
    .payment-methods {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 640px) {
      .payment-methods {
        grid-template-columns: 1fr 1fr;
      }
    }

    .payment-card {
      background: linear-gradient(135deg, var(--rose-light), var(--white));
      padding: 1.5rem;
      border-radius: 1rem;
      border: 1px solid var(--border-gold);
    }

    .payment-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .payment-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--gold);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white-pure);
      font-weight: 700;
      font-size: 0.75rem;
    }

    .payment-title {
      font-family: var(--font-serif);
      font-size: 1.125rem;
      color: var(--text-dark);
    }

    .payment-value {
      background: var(--white-pure);
      padding: 1rem;
      border-radius: 0.5rem;
      font-family: monospace;
      font-size: 0.9375rem;
      color: var(--text-dark);
      text-align: center;
      border: 1px dashed var(--border-gold);
      user-select: all;
      cursor: pointer;
    }

    .payment-value:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .payment-value.copied {
      border-color: var(--gold);
      background: var(--rose-light);
    }

    .payment-value:hover {
      background: var(--rose-light);
    }

    .payment-hint {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 0.5rem;
    }

    /* Message */
    .donation-message {
      background: linear-gradient(135deg, var(--gold-light), var(--rose-light));
      padding: 1.5rem;
      border-radius: 0.75rem;
      text-align: center;
    }

    .donation-message-title {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .donation-message-text {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .donation-rewards {
      margin-top: 2rem;
    }

    .donation-rewards-title {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 1rem;
    }

    .donation-rewards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .donation-rewards-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .donation-reward-card {
      background: linear-gradient(160deg, var(--white), var(--rose-light));
      border: 1px solid var(--border-gold);
      border-radius: 0.85rem;
      padding: 1rem 0.75rem;
      text-align: center;
    }

    .donation-reward-price {
      display: block;
      font-family: var(--font-serif);
      font-size: 1.4rem;
      color: var(--gold-dark);
      margin-bottom: 0.4rem;
    }

    .donation-reward-text {
      font-size: 0.78rem;
      line-height: 1.5;
      color: var(--text-muted);
    }

    /* ===== CONTACT SECTION ===== */
    .contact {
      padding: var(--section-padding);
      background: var(--white-pure);
    }

    .contact-container {
      max-width: 1000px;
      margin: 0 auto;
      display: block;
    }

    .contact-info h3 {
      font-size: 1.75rem;
      color: var(--text-dark);
      margin-bottom: 1rem;
      text-align: center;
    }

    .contact-info p {
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 2rem;
      text-align: center;
    }

    .contact-inline {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.75rem;
      flex-wrap: nowrap;
      background: var(--rose-light);
      border: 1px solid var(--border-gold);
      border-radius: 0.75rem;
      padding: 1rem;
      font-size: 0.95rem;
      color: var(--text-dark);
      white-space: nowrap;
      overflow-x: auto;
      max-width: 100%;
      -webkit-overflow-scrolling: touch;
    }

    .contact-inline > * {
      flex: 0 0 auto;
    }

    @media (min-width: 768px) {
      .contact-inline {
        justify-content: center;
      }
    }

    .contact-inline .sep {
      color: var(--gold-dark);
      opacity: 0.7;
    }

    .contact-inline a {
      color: var(--gold-dark);
      font-weight: 700;
    }

    .contact-inline a.copied {
      color: var(--gold);
      text-decoration: underline;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--rose-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    .contact-text {
      font-size: 0.9375rem;
      color: var(--text-dark);
    }

    .contact-text span {
      display: block;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.125rem;
    }

    /* Contact Form */
    .contact-form {
      background: var(--rose-light);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid var(--border-gold);
    }

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

    .form-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 1rem;
      background: var(--white-pure);
      border: 1px solid var(--border-gold);
      border-radius: 0.5rem;
      font-family: var(--font-sans);
      font-size: 1rem;
      color: var(--text-dark);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-light);
    }

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

    .form-submit {
      width: 100%;
      padding: 1rem 2rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white-pure);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
    }

    /* Social Links */
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .social-link {
      width: 2.75rem;
      height: 2.75rem;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white-pure);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .social-link:hover {
      transform: scale(1.1);
      background: var(--gold-dark);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--text-dark);
      color: var(--white);
      padding: 3rem 1.5rem;
      text-align: center;
    }

    .footer-logo {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--gold-light);
      margin-bottom: 1rem;
    }

    .footer-text {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0.5rem;
    }

    .footer-heart {
      color: var(--rose);
    }

    /* ===== UTILITY CLASSES ===== */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* SVG Icons inline */
    .icon {
      width: 1.35rem;
      height: 1.35rem;
      fill: currentColor;
    }
