:root {
    --sage:        #7A9B8E;
    --sage-deep:   #5E7E72;
    --sage-soft:   #A4BDB1;
    --lime:        #C5D639;
    --lime-bright: #D4E142;
    --peach:       #F0AE7E;
    --peach-warm:  #E8946A;
    --cream:       #F7F1E0;
    --cream-warm:  #FAF4E4;
    --paper:       #FFFCF2;
    --ink:         #243530;
    --ink-soft:    #4A5C56;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.5;
    position: relative;
  }

  /* Subtle paper grain */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.45 0 0 0 0 0.3 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
  }

  /* ============ FLOWING CREEK (fixed, full viewport) ============ */
  .creek {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .creek svg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 130%;
    height: 130%;
    display: block;
  }
  .creek-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: blur(0.5px);
  }
  .stream-1 { stroke: var(--sage);  stroke-width: 32; animation: flow 22s linear infinite, drift1 16s ease-in-out infinite alternate; opacity: 0.18; }
  .stream-3 { stroke: var(--lime);  stroke-width: 20; animation: flow 26s linear infinite, drift1 19s ease-in-out infinite alternate; opacity: 0.16; }
  .stream-4 { stroke: var(--peach); stroke-width: 16; animation: flow 20s linear infinite reverse, drift2 15s ease-in-out infinite alternate; opacity: 0.18; }

  @keyframes flow {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -2400; }
  }
  @keyframes drift1 {
    from { transform: translate(0, 0)    scale(1); }
    to   { transform: translate(2%, -1%) scale(1.02); }
  }
  @keyframes drift2 {
    from { transform: translate(0, 0)     scale(1); }
    to   { transform: translate(-1.5%, 2%) scale(1.01); }
  }

  /* Content sits above creek */
  .page { position: relative; z-index: 2; }

  /* ============ NAV ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 14px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(247, 241, 224, 0.65);
    border-bottom: 1px solid rgba(36, 53, 48, 0.06);
  }
  nav .brand {
    display: flex;
    align-items: center;
    line-height: 0;
  }
  nav .brand img {
    height: 56px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  nav .brand:hover img { transform: rotate(-2deg) scale(1.04); }
  nav ul {
    display: flex;
    gap: 34px;
    list-style: none;
  }
  nav ul a {
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  nav ul a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--peach-warm);
    transition: width 0.3s ease;
  }
  nav ul a:hover { color: var(--sage-deep); }
  nav ul a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .nav-cta:hover { background: var(--peach-warm); color: var(--ink); }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    padding: 160px 48px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .hero-content { min-width: 0; }
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    animation: hero-logo-in 1.4s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .hero-visual img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 40px rgba(36, 53, 48, 0.18));
    animation: gentle-float 7s ease-in-out infinite;
  }
  @keyframes hero-logo-in {
    from { opacity: 0; transform: translateY(20px) rotate(-3deg) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
  }
  @keyframes gentle-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-10px) rotate(0.8deg); }
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 28px;
    opacity: 0;
    animation: rise 1s 0.2s ease-out forwards;
  }
  .hero-eyebrow::before {
    content: "";
    width: 40px; height: 2px;
    background: var(--peach-warm);
  }
  .hero-title {
    font-family: 'Caprasimo', serif;
    font-weight: 400;
    font-size: clamp(44px, 6vw, 104px);
    line-height: 0.96;
    color: var(--ink);
    letter-spacing: -1.5px;
  }
  .hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(-2deg);
    animation: word-rise 0.9s ease-out forwards;
  }
  .hero-title .word:nth-child(1) { animation-delay: 0.3s; }
  .hero-title .word:nth-child(2) { animation-delay: 0.45s; color: var(--sage-deep); }
  .hero-title .word:nth-child(3) { animation-delay: 0.6s; }
  .hero-title .art-festival {
    color: var(--peach-warm);
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    white-space: nowrap;
  }

  @keyframes word-rise {
    to { opacity: 1; transform: translateY(0) rotate(0); }
  }
  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-meta {
    margin-top: 52px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 44px;
    align-items: flex-end;
    opacity: 0;
    animation: rise 1s 1.1s ease-out forwards;
  }
  .meta-block .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 10px;
  }
  .meta-block .value {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 28px;
    color: var(--ink);
    letter-spacing: -0.3px;
  }
  .meta-block .value strong {
    color: var(--sage-deep);
    font-weight: 600;
  }
  .hero-lead {
    margin-top: 56px;
    max-width: 540px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--ink-soft);
    opacity: 0;
    animation: rise 1s 1.3s ease-out forwards;
  }
  .hero-lead em {
    color: var(--peach-warm);
    font-style: italic;
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: rise 1s 1.6s ease-out forwards;
  }
  .scroll-indicator::after {
    content: "";
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--peach-warm), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  @keyframes scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5) translateY(20px); opacity: 0.3; }
  }
  /* Hide the scroll cue when the viewport is too short to clear the hero content */
  @media (max-height: 840px) {
    .scroll-indicator { display: none; }
  }

  /* ============ SECTION: ABOUT ============ */
  section { padding: 140px 48px; position: relative; }
  .section-inner { max-width: 1280px; margin: 0 auto; }

  .about {
    background: var(--paper);
    border-top: 1px solid rgba(36, 53, 48, 0.08);
    border-bottom: 1px solid rgba(36, 53, 48, 0.08);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 880px;
    margin: 0 auto;
    gap: 32px;
    align-items: start;
  }
  .section-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--peach-warm);
    font-weight: 600;
    margin-bottom: 28px;
  }
  .section-tag::before {
    content: "";
    width: 28px; height: 2px;
    background: var(--peach-warm);
  }
  .about h2 {
    font-family: 'Caprasimo', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -1.2px;
    font-weight: 400;
  }
  .about h2 em {
    color: var(--sage-deep);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
  }
  .about-body p {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .about-body p:first-child {
    font-size: 24px;
    color: var(--ink);
    font-weight: 400;
  }
  .about-body p:first-child::first-letter {
    font-family: 'Caprasimo', serif;
    font-size: 64px;
    float: left;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: var(--peach-warm);
  }

  /* ============ MARQUEE ============ */
  .marquee {
    background: var(--sage-deep);
    color: var(--cream);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee span {
    font-family: 'Caprasimo', serif;
    font-size: 38px;
    letter-spacing: -0.5px;
  }
  .marquee .dot {
    color: var(--peach);
    font-size: 32px;
    align-self: center;
  }
  @keyframes marquee {
    to { transform: translateX(-50%); }
  }

  /* ============ EXPERIENCE ============ */
  .experience h2 {
    font-family: 'Caprasimo', serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 900px;
    letter-spacing: -1.5px;
    font-weight: 400;
  }
  .experience h2 em {
    color: var(--peach-warm);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .experience-intro {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 80px;
  }
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .exp-card {
    background: var(--paper);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
    border: 1px solid rgba(36, 53, 48, 0.08);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(36, 53, 48, 0.12);
  }
  .exp-card .num {
    font-family: 'Caprasimo', serif;
    font-size: 14px;
    color: var(--peach-warm);
    letter-spacing: 1px;
  }
  .exp-card h3 {
    font-family: 'Caprasimo', serif;
    font-size: 32px;
    line-height: 1;
    color: var(--ink);
    margin: 12px 0 14px;
    font-weight: 400;
    letter-spacing: -0.5px;
  }
  .exp-card p {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .exp-card .icon {
    width: 56px; height: 56px;
    margin-bottom: 18px;
  }

  .exp-card.size-lg { grid-column: span 6; }
  .exp-card.size-md { grid-column: span 4; }
  .exp-card.size-sm { grid-column: span 3; }

  .exp-card.tint-sage  { background: var(--sage); color: var(--cream); border-color: transparent; }
  .exp-card.tint-sage  h3 { color: var(--cream); }
  .exp-card.tint-sage  p  { color: rgba(247, 241, 224, 0.85); }
  .exp-card.tint-sage  .num { color: var(--lime-bright); }

  .exp-card.tint-peach { background: var(--peach); border-color: transparent; }
  .exp-card.tint-peach .num { color: var(--sage-deep); }

  .exp-card.tint-lime  { background: var(--lime); border-color: transparent; }
  .exp-card.tint-lime  .num { color: var(--sage-deep); }
  .exp-card.tint-lime  p { color: var(--ink); }

  /* ============ PRIZE BANNER ============ */
  .prize {
    background: var(--ink);
    color: var(--cream);
    padding: 160px 48px;
    position: relative;
    overflow: hidden;
  }
  .prize::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(240, 174, 126, 0.18), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(197, 214, 57, 0.12), transparent 40%);
    pointer-events: none;
  }
  .prize-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  .prize .section-tag { color: var(--peach); justify-content: center; }
  .prize .section-tag::before { background: var(--peach); }
  .prize-amount {
    font-family: 'Caprasimo', serif;
    font-size: clamp(72px, 22vw, 320px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 30px 0;
    background: linear-gradient(180deg, var(--peach) 0%, var(--lime-bright) 50%, var(--sage-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.08em;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .prize-amount sup {
    font-size: 0.28em;
    vertical-align: top;
    margin-top: 0.4em;
    color: var(--peach);
    -webkit-text-fill-color: var(--peach);
    letter-spacing: 0.05em;
    line-height: 1;
    flex-shrink: 0;
  }
  .prize-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    max-width: 780px;
    margin: 0 auto 24px;
    line-height: 1.3;
  }
  .prize-headline em {
    color: var(--peach);
    font-style: italic;
  }
  .prize-sub {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(247, 241, 224, 0.6);
  }

  /* ============ VISIT ============ */
  .visit {
    background: var(--cream-warm);
  }
  .visit-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .visit h2 {
    font-family: 'Caprasimo', serif;
    font-size: clamp(40px, 5.5vw, 78px);
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: -1.5px;
    font-weight: 400;
  }
  .visit h2 em {
    color: var(--sage-deep);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .visit-body {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.35;
    margin-top: 28px;
    letter-spacing: -0.3px;
  }
  .visit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
  }
  .stat {
    padding: 28px;
    background: var(--paper);
    border-radius: 18px;
    border: 1px solid rgba(36, 53, 48, 0.08);
  }
  .stat .num {
    font-family: 'Caprasimo', serif;
    font-size: 56px;
    color: var(--peach-warm);
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 400;
  }
  .stat .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-soft);
    margin-top: 8px;
  }

  /* Decorative SVG for visit section */
  .visit-art {
    position: relative;
    aspect-ratio: 1;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  }
  .visit-art svg {
    width: 100%; height: 100%;
    display: block;
  }

  /* ============ CTA ============ */
  .cta {
    background: var(--sage-deep);
    color: var(--cream);
    padding: 160px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta h2 {
    font-family: 'Caprasimo', serif;
    font-size: clamp(56px, 9vw, 140px);
    line-height: 0.9;
    color: var(--cream);
    letter-spacing: -2px;
    max-width: 1100px;
    margin: 0 auto 40px;
    font-weight: 400;
  }
  .cta h2 em {
    color: var(--peach);
    font-style: italic;
    font-family: 'Fraunces', serif;
  }
  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
	.cta-form {
	  width: 700px;
	  margin: auto;
	}
/* Form Container */
.wpforms-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Labels */
.wpforms-form .wpforms-field-label {
    color: #F7F0E8;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400 !important;
    margin-bottom: 8px;
  	text-align: left;
	font-family: 'DM Sans', sans-serif !important;
}

/* Required Asterisk */
.wpforms-required-label {
    color: #D16B6B !important;
	font-family: 'DM Sans', sans-serif !important;
}

/* Inputs */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea,
.wpforms-form select {
	font-family: 'DM Sans', sans-serif !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 3px;
    height: 50px;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    box-shadow: none !important;
}

/* Focus State */
.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
    outline: none !important;
    border: none !important;
    box-shadow: 0 0 0 2px rgba(239,171,122,.4) !important;
}

/* Submit Button */
.wpforms-form button[type="submit"] {
	font-family: 'DM Sans', sans-serif !important;
    background: #E8A777 !important;
    color: #23333A !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 18px 38px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .3s ease;
	height: 60px !important;
	margin-top: 40px;
}

/* Hover */
.wpforms-form button[type="submit"]:hover {
    background: #EFB587 !important;
    transform: translateY(-2px);
}

/* Center Button */
.wpforms-submit-container {
    text-align: center;
    margin-top: 30px;
}

/* Placeholder */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
    color: #999;
    font-style: italic;
}
  .btn {
    padding: 18px 36px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--peach);
    color: var(--ink);
  }
  .btn-primary:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
  }
  .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid var(--cream);
  }
  .btn-secondary:hover {
    background: var(--cream);
    color: var(--ink);
  }

  footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(247, 241, 224, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: rgba(247, 241, 224, 0.55);
    letter-spacing: 0.5px;
  }
  footer a {
    color: rgba(247, 241, 224, 0.55);
    text-decoration: none;
    margin: 0 14px;
  }
  footer a:hover { color: var(--peach); }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============ MOBILE MENU ============ */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    position: relative;
    z-index: 60;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 6px auto;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: var(--cream-warm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 24px 60px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
  }
  .mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(240, 174, 126, 0.22), transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(197, 214, 57, 0.18), transparent 50%);
    pointer-events: none;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 0 0 48px;
    position: relative;
    z-index: 1;
  }
  .mobile-menu ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .mobile-menu.open ul li {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu.open ul li:nth-child(1) { transition-delay: 0.12s; }
  .mobile-menu.open ul li:nth-child(2) { transition-delay: 0.18s; }
  .mobile-menu.open ul li:nth-child(3) { transition-delay: 0.24s; }
  .mobile-menu.open ul li:nth-child(4) { transition-delay: 0.30s; }
  .mobile-menu ul a {
    font-family: 'Caprasimo', serif;
    font-size: clamp(40px, 11vw, 64px);
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
  }
  .mobile-menu ul a:hover,
  .mobile-menu ul a:active {
    color: var(--peach-warm);
    transform: rotate(-1.5deg);
  }
  .mobile-menu-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.4s ease, transform 0.5s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
  }
  .mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
  }
  body.menu-open {
    overflow: hidden;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { justify-content: center; }
    .hero-visual img { max-width: 320px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .visit-grid { grid-template-columns: 1fr; gap: 60px; }
    .exp-card.size-lg,
    .exp-card.size-md,
    .exp-card.size-sm { grid-column: span 6; }
  }
  @media (max-width: 720px) {
    nav { padding: 10px 20px; }
    nav .brand img { height: 44px; }
    .nav-links { display: none; }
    .nav-cta-desktop { display: none; }
    .nav-toggle { display: block; }
    section, .hero { padding-left: 24px; padding-right: 24px; }
    .hero { padding-top: 110px; }
    .hero-visual img { max-width: 240px; }
    .hero-meta { gap: 32px; }
    .meta-block .value { font-size: 22px; }
    .experience-grid { grid-template-columns: 1fr; }
    .exp-card.size-lg,
    .exp-card.size-md,
    .exp-card.size-sm { grid-column: span 1; }
    .visit-stats { grid-template-columns: 1fr; }
    .marquee span { font-size: 28px; }
    .cta { padding: 100px 24px 60px; }
    .prize { padding: 100px 24px; }
  }