:root {
      --bg: #0a0a0a;
      --bg-2: #111110;
      --bg-3: #1a1916;
      --gold: #f9c02c;
      --gold-light: #fdd96e;
      --gold-dim: rgba(249, 192, 44, 0.15);
      --white: #ffffff;
      --muted: #8a8a7a;
      --border: rgba(249, 192, 44, 0.2);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Cormorant Garamond', serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

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

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(var(--rot));
      }

      50% {
        transform: translateY(-10px) rotate(var(--rot));
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.92);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes borderGlow {

      0%,
      100% {
        box-shadow: 0 0 15px rgba(249, 192, 44, 0.3);
      }

      50% {
        box-shadow: 0 0 35px rgba(249, 192, 44, 0.6);
      }
    }

    @keyframes slideLeft {
      from {
        opacity: 0;
        transform: translateX(60px);
      }

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

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes ribbonPulse {

      0%,
      100% {
        opacity: 0.8;
      }

      50% {
        opacity: 1;
      }
    }

    /* ── TICKER RIBBON ── */
    .ribbon {
      background: var(--gold);
      color: var(--bg);
      overflow: hidden;
      white-space: nowrap;
      padding: 10px 0;
      position: relative;
      z-index: 10;
    }

    .ribbon-inner {
      display: inline-flex;
      gap: 0;
      animation: marquee 20s linear infinite;
    }

    .ribbon-item {
      font-family: 'Anton', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0 3rem;
    }

    .ribbon-item span {
      margin-right: 2rem;
      opacity: 0.5;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      transform: scale(1.05);
      animation: scaleIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      pointer-events: none;
    }

    /* Dark gradient overlay - darker at bottom */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(10, 10, 10, 0.35) 0%,
          rgba(10, 10, 10, 0.45) 30%,
          rgba(10, 10, 10, 0.75) 60%,
          rgba(10, 10, 10, 0.96) 100%);
      z-index: 1;
    }

    /* Subtle vignette sides */
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 50%, rgba(10, 10, 10, 0.6) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3rem 1.5rem 4rem;
      min-height: 100svh;
    }

    .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--gold-light);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.3s forwards;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 10vw, 7rem);
      font-weight: 900;
      line-height: 0.95;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: -1px;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.9s ease 0.5s forwards;
    }

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

    .hero-tagline {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.7);
      font-style: italic;
      margin-bottom: 0.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.7s forwards;
    }

    .hero-events {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1.5rem 0 2rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.9s forwards;
    }

    .hero-event-tag {
      border: 1px solid var(--border);
      color: var(--gold-light);
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      background: rgba(249, 192, 44, 0.05);
      backdrop-filter: blur(4px);
      transition: all 0.3s ease;
    }

    .hero-event-tag:hover {
      background: rgba(249, 192, 44, 0.15);
      border-color: var(--gold);
    }

    .hero-ctas {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.1s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      padding: 16px 36px;
      background: var(--gold);
      color: var(--bg);
      font-family: 'Anton', sans-serif;
      font-size: 1rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
      background-size: 200% auto;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(249, 192, 44, 0.4);
    }

    .btn-primary:hover::after {
      opacity: 1;
      animation: shimmer 0.6s ease forwards;
    }

    .hero-contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 0.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.3s forwards;
    }

    .contact-pill {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
      color: var(--white);
      transition: color 0.3s;
    }

    .contact-pill:hover {
      color: var(--gold);
    }

    .contact-icon {
      width: 38px;
      height: 38px;
      background: var(--gold-dim);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s;
    }

    .contact-pill:hover .contact-icon {
      background: var(--gold);
      border-color: var(--gold);
    }

    .contact-pill:hover .contact-icon svg {
      fill: var(--bg);
    }

    .contact-icon svg {
      fill: var(--gold);
      width: 18px;
      height: 18px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
    }

    .contact-label {
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .contact-value {
      font-size: 1rem;
      font-weight: 600;
    }

    /* ── SCRAPBOOK SECTION ── */
    .scrapbook-section {
      padding: 5rem 1.5rem;
      background: var(--bg);
      overflow: hidden;
    }

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

    .section-label {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: var(--gold);
      font-size: 1rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 0.8rem;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 6vw, 4.5rem);
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
    }

    .section-title .accent {
      color: var(--gold);
    }

    .scrapbook-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }

    .scrap-card {
      position: relative;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .scrap-card.visible {
      opacity: 1;
    }

    /* Scrapbook rotation angles */
    .scrap-card:nth-child(1) {
      --rot: -3deg;
      animation: float 6s ease-in-out 0s infinite;
    }

    .scrap-card:nth-child(2) {
      --rot: 2.5deg;
      animation: float 7s ease-in-out 0.5s infinite;
    }

    .scrap-card:nth-child(3) {
      --rot: -1.5deg;
      animation: float 5.5s ease-in-out 1s infinite;
    }

    .scrap-card:nth-child(4) {
      --rot: 3.5deg;
      animation: float 6.5s ease-in-out 1.5s infinite;
    }

    .scrap-inner {
      position: relative;
      background: #1c1a14;
      border: 3px solid rgba(255, 255, 255, 0.9);
      border-bottom: 18px solid rgba(255, 255, 255, 0.9);
      transform: rotate(var(--rot));
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
      box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.6);
      overflow: visible;
    }

    .scrap-card:hover .scrap-inner {
      transform: rotate(0deg) scale(1.07) translateY(-10px);
      box-shadow: 8px 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(249, 192, 44, 0.3);
      border-color: var(--gold);
      border-bottom-color: var(--gold);
      animation: borderGlow 2s ease-in-out infinite;
      z-index: 10;
    }

    .scrap-img-wrap {
      overflow: hidden;
      aspect-ratio: 4/5;
    }

    .scrap-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .scrap-card:hover .scrap-img-wrap img {
      transform: scale(1.08);
    }

    .scrap-caption {
      position: absolute;
      bottom: -14px;
      left: 0;
      right: 0;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.85rem;
      color: var(--bg);
      letter-spacing: 0.5px;
      padding: 0 4px;
      line-height: 1;
    }

    /* Tape stickers */
    .scrap-inner::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 20px;
      background: rgba(249, 192, 44, 0.4);
      border-radius: 2px;
      z-index: 5;
      backdrop-filter: blur(2px);
    }

    /* Star sticker on some cards */
    .scrap-card:nth-child(2) .scrap-inner::after,
    .scrap-card:nth-child(4) .scrap-inner::after {
      content: '★';
      position: absolute;
      top: -18px;
      right: 8px;
      font-size: 1.2rem;
      color: var(--gold);
      z-index: 6;
    }

    /* ── ABOUT ── */
    .about-section {
      background: var(--bg-3);
      padding: 5rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .about-section::before {
      content: '"';
      position: absolute;
      top: -2rem;
      left: -1rem;
      font-family: 'Playfair Display', serif;
      font-size: 20rem;
      color: rgba(249, 192, 44, 0.04);
      line-height: 1;
      pointer-events: none;
    }

    .about-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }

    .about-inner p {
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
    }

    .about-inner p+p {
      margin-top: 1.5rem;
      color: var(--muted);
    }

    .gold-divider {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 2rem auto;
    }

    /* ── OFFERINGS ── */
    .offerings-section {
      background: var(--bg);
      padding: 5rem 1.5rem;
    }

    .offerings-grid {
      display: grid;
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .offering-card {
      background: var(--bg-3);
      border: 1px solid var(--border);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
    }

    .offering-card.visible {
      opacity: 1;
      animation: fadeUp 0.6s ease forwards;
    }

    .offering-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .offering-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .offering-card:hover::before {
      transform: scaleX(1);
    }

    .offering-number {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 900;
      color: rgba(249, 192, 44, 0.08);
      line-height: 1;
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      transition: color 0.4s;
    }

    .offering-card:hover .offering-number {
      color: rgba(249, 192, 44, 0.15);
    }

    .offering-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .offering-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.8rem;
    }

    .offering-card p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--muted);
    }

    .offering-card p.offering-price {
      font-family: 'Anton', sans-serif;
      font-size: 1.25rem;
      color: var(--gold);
      letter-spacing: 2px;
      margin-top: 1rem;
      display: inline-block;
      background: var(--gold-dim);
      padding: 5px 15px;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    /* ── GALLERY SECTION ── */
    .gallery-section {
      background: var(--bg-2);
      padding: 5rem 1.5rem;
      position: relative;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      border-radius: 4px;
      border: 1px solid var(--border);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    
    .gallery-item:hover img {
      transform: scale(1.08);
    }

    /* ── CTA SECTION ── */
    .cta-section {
      background: var(--gold);
      padding: 5rem 1.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg,
          transparent,
          transparent 20px,
          rgba(0, 0, 0, 0.03) 20px,
          rgba(0, 0, 0, 0.03) 40px);
    }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 8vw, 6rem);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--bg);
      line-height: 0.95;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .cta-section p {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: rgba(10, 10, 10, 0.7);
      max-width: 500px;
      margin: 0 auto 2.5rem;
      font-style: italic;
      position: relative;
    }

    .cta-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      position: relative;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 16px 36px;
      background: var(--bg);
      color: var(--gold);
      font-family: 'Anton', sans-serif;
      font-size: 1rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    }

    .btn-dark:hover {
      background: #222;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-dark svg {
      fill: var(--gold);
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .cta-form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      position: relative;
      z-index: 2;
    }

    .form-group {
      width: 100%;
    }

    .cta-form input,
    .cta-form select {
      width: 100%;
      padding: 16px 20px;
      background: var(--bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .cta-form input::placeholder {
      color: rgba(249, 192, 44, 0.5);
    }

    .cta-form input:focus,
    .cta-form select:focus {
      border-color: var(--white);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }

    .cta-form select {
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f9c02c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 20px;
    }

    .cta-form button[type="submit"] {
      border: none;
      cursor: pointer;
      width: 100%;
      justify-content: center;
      margin-top: 0.5rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-2);
      padding: 4rem 1.5rem 2rem;
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--gold);
      letter-spacing: 2px;
    }

    .footer-tagline {
      font-style: italic;
      color: var(--muted);
      font-size: 1.1rem;
      margin: 0.5rem 0 2rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .footer-link {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--white);
      text-decoration: none;
      font-size: 1.05rem;
      transition: color 0.3s;
    }

    .footer-link:hover {
      color: var(--gold);
    }

    .footer-link svg {
      fill: var(--gold);
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .footer-copy {
      color: var(--muted);
      font-size: 0.85rem;
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      letter-spacing: 1px;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (min-width: 640px) {
      .hero-ctas {
        flex-direction: row;
        align-items: center;
      }

      .hero-contact {
        flex-direction: row;
      }

      .cta-buttons {
        flex-direction: row;
        justify-content: center;
      }

      .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
      }
    }

    @media (min-width: 768px) {
      .hero-content {
        padding: 3rem 4rem 5rem;
      }

      .scrapbook-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }

      .scrap-card:nth-child(odd) {
        margin-top: 2rem;
      }

      .offerings-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .hero-content {
        padding: 3rem 6rem 6rem;
        max-width: 800px;
      }
    }
/* ── ACCESSIBILITY (A11Y) ── */
/* Ensure all focusable elements have a clear visual indicator when navigating via keyboard */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Remove default focus outline for mouse users but keep it for keyboard users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

