 /* HERO (page-specific) */
    .page-hero {
      padding: 9rem 2rem 5rem;
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    }
    .page-hero-shape {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: 0.4;
    }
    .page-hero-shape-1 {
      width: 500px; height: 500px;
      background: var(--sunshine-light);
      top: -100px; right: -100px;
      animation: float1 8s ease-in-out infinite;
    }
    .page-hero-shape-2 {
      width: 400px; height: 400px;
      background: var(--coral-light);
      bottom: -150px; left: -100px;
      opacity: 0.25;
      animation: float2 10s ease-in-out infinite;
    }
    @keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 20px); } }
    @keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -30px); } }
    .page-hero-inner {
      max-width: 1400px; margin: 0 auto; position: relative; z-index: 1;
      text-align: center;
    }
    .page-hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: linear-gradient(135deg, var(--sunshine), var(--coral-light));
      color: white;
      padding: 0.5rem 1.2rem; border-radius: 100px;
      font-size: 1rem; font-weight: 600;
      margin-bottom: 1.5rem;
      animation: fadeIn 0.6s ease 0.2s both;
    }
    .page-hero-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
    .page-hero h1 {
      font-family: 'Ribeye', cursive;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 400;
      line-height: 1.05;
      margin-bottom: 1.2rem;
      animation: fadeIn 0.6s ease 0.4s both;
    }
    .page-hero h1 .accent-coral { color: var(--coral); }
    .page-hero h1 .accent-turquoise { color: var(--turquoise); }
    .page-hero p.lead {
      font-size: 1.2rem;
      color: var(--text-mid);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
      animation: fadeIn 0.6s ease 0.6s both;
    }

    /* SECTIONS */
    section { padding: 5rem 2rem; }
    .container { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }

    .section-chip {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--sand); color: var(--coral);
      padding: 0.4rem 1rem; border-radius: 100px;
      font-size: 1rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 1.5px;
      margin-bottom: 1rem;
    }
    .section-chip svg { width: 14px; height: 14px; fill: var(--coral); }
    .section-title {
      font-family: 'Ribeye', cursive;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-desc {
      font-size: 1.1rem;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 600px;
    }

    /* STORY ROW */
    .story {
      background: var(--warm-white);
      position: relative;
      overflow: hidden;
    }
    .story::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/music-tacos-coral.svg');
      background-size: 520px 520px;
      background-repeat: repeat;
      opacity: 0.1;
      pointer-events: none;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .story-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 1.2rem;
    }
    .story-image {
      position: relative;
    }
    .story-image img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }
    .story-stat {
      position: absolute;
      bottom: -25px;
      right: -25px;
      background: var(--coral);
      color: white;
      padding: 1.2rem 1.6rem;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(232, 85, 61, 0.4);
      text-align: center;
    }
    .story-stat .num {
      font-family: 'Ribeye', cursive;
      font-size: 2.4rem;
      line-height: 1;
    }
    .story-stat .label {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.95;
    }

    /* GROUPS / VIBES */
    .vibes {
      background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
    }
    .vibes-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 220px 220px;
      gap: 1.2rem;
      margin-top: 2.5rem;
    }
    .vibes-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      transition: transform 0.4s ease;
      cursor: pointer;
    }
    .vibes-card:hover { transform: translateY(-5px); }
    .vibes-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .vibes-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
    .vibes-2 { grid-column: 5 / 9; }
    .vibes-3 { grid-column: 9 / 13; }
    .vibes-4 { grid-column: 5 / 8; }
    .vibes-5 { grid-column: 8 / 13; }
    .vibes-text {
      grid-column: 1 / 13;
      padding-top: 1rem;
      max-width: 800px;
    }
    .vibes-text p {
      font-size: 1.1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    /* AUTHENTIC */
    .authentic {
      background: var(--turquoise);
      position: relative;
      overflow: hidden;
    }
    .authentic::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/cactus-white.svg');
      background-size: 500px 500px;
      background-repeat: repeat;
      opacity: 0.14;
      pointer-events: none;
    }
    .authentic-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .authentic .section-chip {
      background: rgba(255,255,255,0.2);
      color: white;
    }
    .authentic .section-chip svg { fill: white; }
    .authentic .section-title { color: white; }
    .authentic-text > p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.5rem;
    }
    .signature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 2rem;
    }
    .signature-list li {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      padding: 1rem 1.4rem;
      color: white;
      font-weight: 500;
      font-size: 1.05rem;
      transition: all 0.3s ease;
    }
    .signature-list li:hover {
      background: rgba(255,255,255,0.25);
      transform: translateX(5px);
    }
    .signature-list svg {
      width: 22px; height: 22px;
      stroke: var(--sunshine);
      fill: none; stroke-width: 2.5;
      flex-shrink: 0;
    }
    .authentic-image {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 1rem;
    }
    .authentic-image .a-card {
      border-radius: var(--radius);
      overflow: hidden;
    }
    .authentic-image .a-card:nth-child(1) {
      grid-row: span 2;
    }
    .authentic-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .authentic-image .a-card:hover img { transform: scale(1.05); }

    /* TRIVIA */
    .trivia {
      background: linear-gradient(135deg, var(--sunshine-light) 0%, var(--sunshine) 100%);
      position: relative;
      overflow: hidden;
    }
    .trivia::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/music-tacos-coral.svg');
      background-size: 520px 520px;
      background-repeat: repeat;
      opacity: 0.15;
      pointer-events: none;
    }
    .trivia-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .trivia .section-chip {
      background: rgba(255,255,255,0.55);
      color: var(--coral);
    }
    .trivia-image {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/5;
      box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }
    .trivia-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .trivia-image:hover img { transform: scale(1.04); }
    .trivia-badge {
      position: absolute;
      top: 24px; left: 24px;
      background: var(--coral);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      box-shadow: 0 6px 18px rgba(232, 85, 61, 0.45);
    }
    .trivia-text > p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 1.5rem;
    }
    .trivia-info-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .trivia-info-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 18px;
      padding: 1.2rem 1.4rem;
    }
    .trivia-info-card h4 {
      font-family: 'Ribeye', cursive;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--coral);
      margin-bottom: 0.3rem;
    }
    .trivia-info-card p {
      font-size: 1rem;
      color: var(--text);
      line-height: 1.5;
      margin: 0;
    }
    .trivia-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2rem;
    }
    .trivia-list li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: var(--text);
      font-weight: 500;
      font-size: 1.05rem;
    }
    .trivia-list svg {
      width: 22px; height: 22px;
      stroke: var(--coral);
      fill: none;
      stroke-width: 2.5;
      flex-shrink: 0;
    }
    .trivia-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.6rem;
      background: var(--coral);
      color: white;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(232, 85, 61, 0.35);
    }
    .trivia-cta:hover {
      background: var(--text);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(232, 85, 61, 0.5);
    }
    .trivia-cta svg { width: 18px; height: 18px; }
    @media (max-width: 768px) {
      .trivia-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .trivia-image { aspect-ratio: 4/3; }
      .trivia-info-cards { grid-template-columns: 1fr; }
    }

    /* CTA */
    .cta-section {
      background: var(--cream);
      text-align: center;
    }
    .cta-section .container {
      max-width: 800px;
    }
    .cta-section .section-title {
      margin-bottom: 1rem;
    }
    .cta-section .section-desc {
      margin: 0 auto 2.5rem;
      font-size: 1.15rem;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: none;
      font-family: 'DM Sans', sans-serif;
    }
    .btn svg { width: 20px; height: 20px; }
    .btn-fiesta {
      background: linear-gradient(135deg, var(--coral), var(--hot-pink));
      color: white;
      box-shadow: 0 8px 30px rgba(232, 85, 61, 0.35);
    }
    .btn-fiesta:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 40px rgba(232, 85, 61, 0.5);
    }
    .btn-fun {
      background: var(--sunshine);
      color: var(--text);
      box-shadow: 0 6px 20px rgba(255, 186, 66, 0.3);
    }
    .btn-fun:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 35px rgba(255, 186, 66, 0.45);
      background: var(--sunshine-light);
    }

    /* ANIMATIONS */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(25px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .vibes-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
      .vibes-1, .vibes-2, .vibes-3, .vibes-4, .vibes-5 {
        grid-column: auto;
        grid-row: auto;
        height: 220px;
      }
      .vibes-text { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .story-grid, .authentic-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .story-image img { height: 380px; }
      .vibes-grid { grid-template-columns: 1fr; }
      .vibes-1, .vibes-2, .vibes-3, .vibes-4, .vibes-5 { grid-column: auto; height: 260px; }
      .vibes-text { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      section, .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
      section { padding-top: 4rem; padding-bottom: 4rem; }
    }
    @media (max-width: 480px) {
      .cta-buttons { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
    }