/*
Theme Name: Paisan Con
Theme URI: https://paisancon.com/
Author: kmongdev
Author URI: https://openai.com/
Description: A custom WordPress theme for the Paisan Con Italian Food & Arts Festival.
Version: 1.0.53
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: paisan-con
*/

:root {
  --ink: #1e1812;
  --paper: #f8f0df;
  --paper-strong: #fff9ef;
  --green: #13794f;
  --green-deep: #0d5b3c;
  --red: #ce2b37;
  --red-deep: #ce2b37;
  --gold: #d1a552;
  --home-section-gap: 1rem;
  --shadow: 0 24px 70px rgba(24, 16, 8, 0.18);
  --border: rgba(38, 26, 17, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "URW Palladio L", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--sans);
  color: var(--ink);
  background: #147bfe;

  /* Previous faded Italian-flag background, kept here in case we want to layer it back in later.
  background:
    radial-gradient(circle at top, rgba(255, 225, 168, 0.18), transparent 30%),
    linear-gradient(
      90deg,
      rgba(19, 121, 79, 0.18) 0 33.333%,
      rgba(255, 250, 238, 0.9) 33.333% 66.666%,
      rgba(206, 43, 55, 0.16) 66.666% 100%
    ),
    linear-gradient(180deg, rgba(255, 250, 238, 0.9), rgba(245, 235, 214, 0.98));
  */
}

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

a {
  color: inherit;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(14rem, auto) minmax(0, 1fr);
  align-items: center;
  gap: 1rem 1.4rem;
  margin-bottom: 1.5rem;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-nav__brand img {
  width: clamp(16rem, 26vw, 22rem);
  height: auto;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links li {
  margin: 0;
}

.site-nav__link {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 24, 18, 0.1);
  background: rgba(255, 251, 245, 0.66);
  text-decoration: none;
  font-size: 0.94rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 248, 235, 0.92);
}

.site-nav__link[aria-current="page"] {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-color: transparent;
  color: #fff8f1;
}

.site-nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
  width: auto;
  max-width: max-content;
  min-height: 2.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff8f1;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(206, 43, 55, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-nav__cart span[aria-hidden="true"] {
  display: grid;
  place-items: center;
  min-width: 1.45rem;
  min-height: 1.45rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.94);
  color: var(--red-deep);
  font-size: 0.78rem;
}

.site-nav__cart:hover,
.site-nav__cart:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(206, 43, 55, 0.24);
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.hero,
.page-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -8%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  background: var(--green);
}

.page-shell::after {
  inset: 18% -10% auto auto;
  background: var(--red);
}

.hero {
  min-height: auto;
  padding: 0.85rem clamp(1.2rem, 3vw, 2.5rem) var(--home-section-gap);
  display: grid;
  place-items: center;
}

.page-header {
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem) 1.25rem;
}

.page-header__inner {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(18, 11, 8, 0.78), rgba(42, 19, 13, 0.58)),
    url("./assets/italian-celebrities-banner.webp") center center / cover no-repeat;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.page-banner {
  position: relative;
  z-index: 1;
  padding: 1rem 0 0.35rem;
}

.page-banner h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  color: #fff8f1;
}

.page-banner__lede {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: rgba(255, 248, 241, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__content {
  position: relative;
  width: min(1100px, 100%);
  min-height: clamp(250px, 30vh, 360px);
  padding: 1rem clamp(1rem, 2.3vw, 1.6rem) 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(18, 11, 8, 0.8), rgba(42, 19, 13, 0.62)),
    url("./assets/italian-celebrities-banner.webp") center center / cover no-repeat;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  animation: rise-in 900ms ease-out both;
}

.hero__content::before,
.page-header__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 121, 79, 0.18), transparent 30%, transparent 70%, rgba(206, 43, 55, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 35%),
    radial-gradient(circle at top, rgba(255, 230, 190, 0.08), transparent 38%);
  pointer-events: none;
}

.site-nav,
.hero__eyebrow,
.hero__banner-copy,
.hotel-block,
.ticket-block,
.page-banner {
  position: relative;
  z-index: 1;
}

.hero__content .site-nav {
  margin-bottom: 0;
}

.hero__content .site-nav__brand,
.page-header__inner .site-nav__brand {
  color: #fff8f1;
}

.hero__content .site-nav__link,
.page-header__inner .site-nav__link {
  border-color: rgba(255, 248, 241, 0.18);
  background: rgba(41, 24, 16, 0.42);
  color: rgba(255, 248, 241, 0.94);
}

.hero__content .site-nav__link:hover,
.hero__content .site-nav__link:focus-visible,
.page-header__inner .site-nav__link:hover,
.page-header__inner .site-nav__link:focus-visible {
  background: rgba(76, 43, 29, 0.6);
}

.hero__eyebrow {
  margin: 0 0 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 242, 226, 0.82);
}

.hero__banner-copy {
  margin: auto 0;
  width: 100%;
  text-align: center;
  padding: 1.35rem 0 0.4rem;
}

.hero h1,
.section h2,
.feature-card strong,
.info-card h3,
.updates__item h3 {
  font-family: var(--serif);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: #fff8f1;
  text-shadow:
    -8px 10px 0 rgba(206, 43, 55, 0.72),
    0 6px 24px rgba(16, 10, 7, 0.5);
}

.hero__name {
  display: inline-block;
  color: #fff;
  text-shadow: 0 4px 18px rgba(8, 39, 92, 0.32);
}

.hero__date {
  margin: 1rem auto 0;
  max-width: 44rem;
  color: rgba(255, 242, 226, 0.9);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 3px 16px rgba(16, 10, 7, 0.48);
}

.hero__festival-tagline {
  margin: 0.65rem auto 0;
  max-width: 48rem;
  color: rgba(255, 246, 236, 0.96);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(16, 10, 7, 0.48);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(19, 121, 79, 0.22);
}

.button--secondary {
  border: 1px solid rgba(30, 24, 18, 0.16);
  background: rgba(255, 250, 244, 0.72);
}

.button--hotel {
  width: fit-content;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(206, 43, 55, 0.22);
}

.hotel-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(206, 43, 55, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.88), rgba(255, 240, 226, 0.78)),
    rgba(255, 252, 245, 0.78);
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.08);
}

.hotel-block__copy {
  max-width: 40rem;
}

.hotel-block__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--red-deep);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hotel-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.05;
}

.hotel-block p {
  margin: 0.65rem 0 0;
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.65;
}

.hotel-block--page {
  margin-top: 0;
}

.hotel-map-panel {
  margin-top: 1rem;
}

.map-embed {
  margin-top: 1rem;
  border: 1px solid rgba(38, 26, 17, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(30, 24, 18, 0.08);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.reservation-accordion {
  grid-column: 1 / -1;
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid rgba(30, 24, 18, 0.08);
  overflow: hidden;
}

.reservation-accordion summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.1rem;
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 800;
  list-style: none;
}

.reservation-accordion summary::-webkit-details-marker {
  display: none;
}

.reservation-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(19, 121, 79, 0.11);
  transform: translateY(-50%);
}

.reservation-accordion[open] summary::after {
  content: "-";
}

.reservation-accordion ol {
  margin: 0;
  padding: 0 1.25rem 1.1rem 2.45rem;
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.75;
}

.reservation-accordion li + li {
  margin-top: 0.2rem;
}

.ticket-block {
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(19, 121, 79, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.86), rgba(239, 248, 241, 0.78)),
    rgba(255, 252, 245, 0.78);
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.08);
}

.ticket-block__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--green-deep);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.ticket-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
}

.section.home-primary {
  display: grid;
  gap: var(--home-section-gap);
  padding-top: 0;
  padding-bottom: var(--home-section-gap);
}

.home-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--home-section-gap);
}

.home-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(5.75rem, 14vw, 10.5rem);
  padding: 1rem 1.5rem;
  border: 1px solid rgba(127, 20, 27, 0.16);
  border-radius: 30px;
  background: var(--red-deep);
  color: #fff8f1;
  cursor: pointer;
  font-family: "Didot", "Bodoni 72", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(82, 42, 14, 0.24),
    0 8px 22px rgba(16, 10, 7, 0.28);
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.1);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.home-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(33, 23, 13, 0.16);
}

.home-button:hover::before,
.home-button:focus-visible::before {
  opacity: 1;
  border-color: rgba(255, 248, 241, 0.48);
  box-shadow:
    0 0 0 2px rgba(255, 248, 241, 0.2) inset,
    0 0 22px rgba(206, 43, 55, 0.34),
    0 0 34px rgba(206, 43, 55, 0.18);
}

.home-cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: var(--home-section-gap);
  align-items: stretch;
}

.ticket-art-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 232px;
  padding: 1rem;
  border-radius: 30px;
  background: var(--red-deep);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.1);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.ticket-art-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid transparent;
  pointer-events: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
  opacity: 0;
}

.ticket-art-panel:hover,
.ticket-art-panel:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(33, 23, 13, 0.16);
}

.ticket-art-panel:hover::before,
.ticket-art-panel:focus-within::before {
  opacity: 1;
  border-color: rgba(255, 248, 241, 0.48);
  box-shadow:
    0 0 0 2px rgba(255, 248, 241, 0.2) inset,
    0 0 22px rgba(206, 43, 55, 0.34),
    0 0 34px rgba(206, 43, 55, 0.18);
}

.ticket-art-panel__text {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  color: #fff8f1;
  font-family: "Didot", "Bodoni 72", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(82, 42, 14, 0.24),
    0 8px 22px rgba(16, 10, 7, 0.28);
}

.hotel-art-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 232px;
  padding: 0.9rem 1rem 1rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 11, 8, 0.18), rgba(18, 11, 8, 0.18)),
    url("./assets/courtyard.webp") center center / cover no-repeat;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hotel-art-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hotel-art-link:hover,
.hotel-art-link:focus-visible {
  transform: translateY(-2px);
}

.hotel-art-link:hover::before,
.hotel-art-link:focus-visible::before {
  opacity: 1;
  border-color: rgba(255, 216, 120, 0.82);
  box-shadow:
    0 0 0 3px rgba(255, 238, 184, 0.38) inset,
    0 0 24px rgba(255, 214, 102, 0.72),
    0 0 48px rgba(232, 186, 74, 0.52),
    0 0 72px rgba(176, 124, 30, 0.34);
}

.hotel-art-link__text {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Didot", "Bodoni 72", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.4rem, 5.1vw, 4.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.06;
  text-transform: uppercase;
  color: rgba(255, 251, 245, 0.98);
  text-shadow:
    0 2px 0 rgba(82, 42, 14, 0.22),
    0 6px 18px rgba(16, 10, 7, 0.24);
  filter:
    drop-shadow(0 10px 18px rgba(34, 24, 12, 0.12));
}

.site-map__lede {
  margin: 1rem 0 0;
  max-width: 44rem;
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.75;
}

.site-map .section-heading {
  max-width: none;
  text-align: center;
}

.site-map .section-heading__kicker {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.home-video-section + .site-map {
  padding-top: 0;
}

.home-primary + .home-video-section {
  margin-top: 0;
}

.site-map .page-grid {
  gap: var(--home-section-gap);
  margin-top: var(--home-section-gap);
}

.page-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.page-grid--buttons {
  max-width: 680px;
  grid-template-columns: minmax(0, 1fr);
}

.page-card,
.content-panel,
.status-panel {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
}

.page-card {
  display: block;
  padding: 1.35rem;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.page-card:hover,
.page-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(19, 121, 79, 0.22);
  box-shadow: 0 20px 44px rgba(32, 23, 14, 0.1);
}

.page-card__kicker {
  margin: 0 0 0.8rem;
  color: var(--red-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.page-card h3,
.content-panel h2,
.status-panel h2 {
  margin: 0;
  font-family: var(--serif);
}

.page-card h3 {
  font-size: 1.7rem;
  line-height: 1.08;
}

.page-card p:last-child,
.content-panel p,
.status-panel p {
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.72;
}

.page-card p:last-child {
  margin: 0.8rem 0 0;
}

.page-card--button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  padding: 1rem 1.5rem;
  border-color: rgba(127, 20, 27, 0.16);
  border-radius: 30px;
  background: var(--red-deep);
  color: #fff8f1;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(82, 42, 14, 0.24),
    0 8px 22px rgba(16, 10, 7, 0.28);
}

.inner-page {
  width: min(1080px, calc(100% - 2.4rem));
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 3rem;
}

.inner-page > .section {
  width: 100%;
}

.single-panel {
  max-width: 900px;
}

.vendor-info-stack {
  max-width: 940px;
  display: grid;
  gap: 1rem;
}

.faq-stack {
  max-width: 940px;
  display: grid;
  gap: 1rem;
}

.content-panel,
.status-panel {
  padding: 1.4rem 1.5rem;
}

.content-panel h2,
.status-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.content-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.8;
}

.content-list li + li {
  margin-top: 0.25rem;
}

.previous-years-section {
  display: grid;
  gap: 1rem;
}

.previous-years-intro {
  max-width: 940px;
}

.previous-years-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.previous-years-card {
  position: relative;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(38, 26, 17, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
  overflow: hidden;
}

.previous-years-card--wide {
  grid-column: auto;
}

.previous-years-card img {
  width: 100%;
  height: auto;
}

.section.home-video-section {
  padding-top: 0;
  padding-bottom: var(--home-section-gap);
  display: grid;
  gap: var(--home-section-gap);
}

.as-seen-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(11rem, 0.45fr);
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(38, 26, 17, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
  text-align: left;
}

.as-seen-feature img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0;
  border-radius: 16px;
}

.as-seen-feature figcaption {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
}

.video-feature {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(38, 26, 17, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
}

.video-feature figcaption {
  margin: 0 0 0.85rem;
  color: var(--red-deep);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
}

.video-feature video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: rgba(30, 24, 18, 0.12);
}

.youtube-feature {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(38, 26, 17, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 14px 28px rgba(127, 20, 27, 0.18);
}

.youtube-feature iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 16px;
  background: rgba(30, 24, 18, 0.12);
}

.sponsor-graphic-section {
  max-width: 1100px;
}

.sponsor-products-section {
  max-width: 1100px;
  padding-top: 0;
}

.sponsor-graphic-panel {
  padding: clamp(0.85rem, 2vw, 1.25rem);
}

.sponsor-products-panel {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.sponsor-products-panel .woocommerce {
  margin-top: 1rem;
}

.sponsor-graphic {
  margin: 1rem 0 0;
}

.sponsor-graphic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.faq-panel p + .faq-item,
.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 30, 20, 0.1);
}

.faq-item p {
  margin: 0;
}

.faq-item p + p {
  margin-top: 0.45rem;
}

.faq-item strong {
  color: var(--ink);
}

.sponsor-rate-list li {
  line-height: 1.85;
}

.sponsor-rate-list strong {
  color: var(--ink);
}

.status-panel {
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.88), rgba(239, 248, 241, 0.78)),
    rgba(255, 252, 245, 0.78);
}

.shop-section {
  padding-top: 0;
}

.shop-panel,
.woocommerce-notices-wrapper {
  width: 100%;
}

.shop-panel {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(38, 26, 17, 0.14);
  border-radius: 26px;
  background: #fffaf1;
  box-shadow: 0 18px 44px rgba(32, 23, 14, 0.16);
}

.wp-block-woocommerce-cart {
  margin-right: auto;
  margin-left: auto;
}

.wp-block-woocommerce-cart .wc-block-cart {
  gap: 1.2rem;
}

.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  align-self: start;
  padding: 1.15rem;
  border: 1px solid rgba(38, 26, 17, 0.14);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 14px 32px rgba(32, 23, 14, 0.1);
}

.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-sidebar-layout {
  margin: 0;
}

.wp-block-woocommerce-cart .wc-block-components-totals-wrapper,
.wp-block-woocommerce-cart .wc-block-components-panel,
.wp-block-woocommerce-cart .wc-block-components-radio-control,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wp-block-woocommerce-cart .wc-block-components-totals-wrapper {
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(38, 26, 17, 0.1);
}

.wp-block-woocommerce-cart .wc-block-components-totals-wrapper:first-child {
  padding-top: 0;
  border-top: 0;
}

.wp-block-woocommerce-cart .wc-block-cart__totals-title {
  margin: 0 0 0.85rem;
  padding: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: left;
}

.wp-block-woocommerce-cart .wc-block-components-totals-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  min-height: auto;
  padding: 0.25rem 0;
  color: rgba(30, 24, 18, 0.82);
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.45;
}

.wp-block-woocommerce-cart .wc-block-components-totals-item__label {
  font-weight: 700;
}

.wp-block-woocommerce-cart .wc-block-components-totals-item__value {
  margin-left: auto;
  color: var(--ink);
  font-weight: 800;
}

.wp-block-woocommerce-cart .wc-block-components-totals-footer-item {
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(38, 26, 17, 0.14);
  color: var(--ink);
}

.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.2rem;
}

.wp-block-woocommerce-cart .wc-block-components-panel__button {
  padding: 0.45rem 0;
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.wp-block-woocommerce-cart .wc-block-components-panel__content {
  padding: 0.35rem 0 0;
}

.wp-block-woocommerce-cart .wc-block-components-shipping-rates-control__package {
  margin: 0.55rem 0 0;
  padding: 0.75rem;
  border: 1px solid rgba(38, 26, 17, 0.1);
  border-radius: 14px;
  background: #fffaf1;
}

.wp-block-woocommerce-cart .wc-block-components-radio-control__option {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(38, 26, 17, 0.08);
}

.wp-block-woocommerce-cart .wc-block-components-radio-control__option:last-child {
  border-bottom: 0;
}

.wp-block-woocommerce-cart .wc-block-components-totals-coupon__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: end;
  margin-top: 0.6rem;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-container {
  padding-top: 0.95rem;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button {
  width: 100%;
  min-height: 3.2rem;
  border-radius: 999px;
  font-size: 1rem;
}

.wp-block-woocommerce-checkout {
  margin-right: auto;
  margin-left: auto;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  gap: 1.2rem;
}

.wp-block-woocommerce-checkout .wc-block-components-main,
.wp-block-woocommerce-checkout .wc-block-components-sidebar {
  border: 1px solid rgba(38, 26, 17, 0.14);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 14px 32px rgba(32, 23, 14, 0.1);
}

.wp-block-woocommerce-checkout .wc-block-components-main {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar {
  align-self: start;
  padding: 1.15rem;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-components-order-summary,
.wp-block-woocommerce-checkout .wc-block-components-address-card,
.wp-block-woocommerce-checkout .wc-block-components-payment-methods,
.wp-block-woocommerce-checkout .wc-block-components-radio-control,
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout .wc-block-components-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step {
  margin: 0;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(38, 26, 17, 0.1);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading {
  align-items: baseline;
  margin: 0 0 0.85rem;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__title,
.wp-block-woocommerce-checkout .wc-block-components-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.08;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__description,
.wp-block-woocommerce-checkout .wc-block-components-formatted-money-amount,
.wp-block-woocommerce-checkout .wc-block-components-product-metadata,
.wp-block-woocommerce-checkout .wc-block-components-totals-item {
  color: rgba(30, 24, 18, 0.82);
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.5;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input,
.wp-block-woocommerce-checkout .wc-block-components-combobox,
.wp-block-woocommerce-checkout .wc-block-components-country-input,
.wp-block-woocommerce-checkout .wc-block-components-state-input,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-textarea {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-textarea {
  min-height: 3.15rem;
  border: 1px solid rgba(30, 24, 18, 0.26);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  box-shadow: 0 2px 0 rgba(38, 26, 17, 0.04);
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input:focus,
.wp-block-woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(19, 121, 79, 0.18);
  outline-offset: 1px;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-checkbox label,
.wp-block-woocommerce-checkout .wc-block-components-radio-control__label {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
}

#radio-control-wc-payment-method-options-wc_valorpay__label {
  padding-left: 2rem;
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
.wp-block-woocommerce-checkout .wc-block-components-address-card {
  margin: 0.55rem 0 0;
  padding: 0.8rem;
  border: 1px solid rgba(38, 26, 17, 0.1);
  border-radius: 14px;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary {
  margin-bottom: 0.9rem;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(38, 26, 17, 0.08);
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary-item:last-child {
  border-bottom: 0;
}

.wp-block-woocommerce-checkout .wc-block-components-product-name {
  color: var(--ink);
  font-weight: 800;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper {
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(38, 26, 17, 0.1);
}

.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item {
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(38, 26, 17, 0.14);
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__label {
  font-weight: 700;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__value {
  color: var(--ink);
  font-weight: 800;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods {
  display: grid;
  gap: 0.7rem;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.65rem;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__input {
  flex: 0 0 auto;
  margin: 0;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__option-layout,
.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__label-group,
.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__label {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 0;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__option-layout {
  width: 100%;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__label-group {
  width: 100%;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__label {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100%;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-payment-method-label {
  flex: 0 0 auto;
  white-space: nowrap;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-payment-method-icons,
.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-payment-method-icons--align-right {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: auto !important;
  max-width: 100%;
  margin: 0 0 0 auto !important;
  float: none !important;
  clear: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__secondary-label,
.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__label img,
.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__secondary-label img {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-height: 1.45rem;
  vertical-align: middle;
}

.wp-block-woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__description {
  flex-basis: 100%;
  margin: 0.35rem 0 0 1.75rem;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
  width: 100%;
  min-height: 3.2rem;
  margin-top: 0.8rem;
  border-radius: 999px;
  font-size: 1rem;
}

@media (min-width: 900px) {
  .wp-block-woocommerce-cart .wc-block-cart {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 30%) !important;
    column-gap: 1rem;
    row-gap: 1rem;
    align-items: start;
  }

  .wp-block-woocommerce-cart .wc-block-cart__main,
  .wp-block-woocommerce-cart .wc-block-cart__sidebar,
  .wp-block-woocommerce-checkout .wc-block-components-main,
  .wp-block-woocommerce-checkout .wc-block-components-sidebar {
    width: auto;
    max-width: none;
    min-width: 0;
    flex-basis: auto;
    margin: 0;
  }

  .wp-block-woocommerce-cart .wc-block-cart__main,
  .wp-block-woocommerce-checkout .wc-block-components-main {
    grid-column: 1 !important;
    width: 100% !important;
  }

  .wp-block-woocommerce-cart .wc-block-cart__sidebar {
    grid-column: 2 !important;
    width: 100% !important;
  }

  .wp-block-woocommerce-cart .wc-block-cart__main,
  .wp-block-woocommerce-cart .wc-block-cart-items,
  .wp-block-woocommerce-cart table.wc-block-cart-items {
    width: 100% !important;
  }

  .wp-block-woocommerce-cart table.wc-block-cart-items {
    table-layout: auto;
  }

  .wp-block-woocommerce-cart .wc-block-cart-item__product {
    min-width: 0;
  }

  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 30%) !important;
    column-gap: 1rem;
    row-gap: 1rem;
    align-items: start;
  }

  .wp-block-woocommerce-checkout .wc-block-components-sidebar {
    grid-column: 2 !important;
    width: 100% !important;
  }
}

.woocommerce,
.woocommerce-page,
.woocommerce-page .shop-panel {
  color: var(--ink);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce .woocommerce-cart-form,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields,
.woocommerce .woocommerce-additional-fields,
.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce .woocommerce-MyAccount-navigation,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-components-sidebar,
.wc-block-components-main,
.wc-block-components-totals-wrapper,
.wc-block-components-panel,
.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wc-block-components-address-card,
.wc-block-components-payment-methods,
.wc-block-components-radio-control,
.wc-block-components-notice-banner {
  border: 1px solid rgba(38, 26, 17, 0.12);
  border-radius: 20px;
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(32, 23, 14, 0.07);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce .woocommerce-cart-form,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields,
.woocommerce .woocommerce-additional-fields,
.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce .woocommerce-MyAccount-navigation,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-components-sidebar,
.wc-block-components-main,
.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wc-block-components-address-card,
.wc-block-components-payment-methods,
.wc-block-components-radio-control {
  padding: 1rem;
}

.wc-block-components-main .wc-block-components-checkout-step,
.wp-block-woocommerce-cart .wc-block-cart,
.wp-block-woocommerce-checkout .wc-block-components-main,
.wp-block-woocommerce-checkout .wc-block-components-sidebar {
  box-shadow: none;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce div.product div.images img {
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.08);
}

.woocommerce div.product .product_title,
.woocommerce .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-order h2,
.woocommerce-account h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  line-height: 1.05;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--green-deep);
  font-size: 1.45rem;
  font-weight: 800;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.woocommerce .quantity .qty {
  width: 5rem;
  min-height: 3.1rem;
  border: 1px solid rgba(30, 24, 18, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: center;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff8f1;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(19, 121, 79, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff8f1;
  box-shadow: 0 18px 34px rgba(19, 121, 79, 0.28);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(206, 43, 55, 0.22);
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 1rem;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(30, 24, 18, 0.12);
  border-radius: 999px;
  background: #fffdf8;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: rgba(19, 121, 79, 0.12);
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid rgba(30, 24, 18, 0.14);
  border-radius: 18px;
  background: #fffdf8;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-top-color: rgba(30, 24, 18, 0.1);
}

.woocommerce-cart-form .product-thumbnail img {
  width: 72px;
  border-radius: 12px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce form.checkout,
.woocommerce-order,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 1.2rem;
  border: 1px solid rgba(30, 24, 18, 0.14);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(32, 23, 14, 0.07);
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.65rem;
  align-items: center;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > input[type="radio"] {
  grid-column: 1;
  margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label img {
  display: inline-block;
  width: auto;
  max-height: 1.45rem;
  margin: 0;
  vertical-align: middle;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method .payment_box {
  grid-column: 1 / -1;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="url"],
.wc-block-components-form .wc-block-components-textarea {
  min-height: 3rem;
  border: 1px solid rgba(30, 24, 18, 0.24);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  box-shadow: 0 2px 0 rgba(38, 26, 17, 0.04);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.select2-container--default.select2-container--focus .select2-selection--single,
.wc-block-components-text-input input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-form .wc-block-components-textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(19, 121, 79, 0.18);
  outline-offset: 1px;
}

.woocommerce form .form-row label,
.woocommerce form .form-row .required,
.wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label,
.wc-block-components-address-form__address_2-toggle,
.wc-block-components-checkout-step__title,
.wc-block-components-title {
  color: var(--ink);
}

.woocommerce table.shop_table,
.woocommerce table.shop_table a,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.wc-block-cart-items,
.wc-block-cart-items a,
.wc-block-components-product-name,
.wc-block-components-product-metadata,
.wc-block-components-totals-item,
.wc-block-components-order-summary-item,
.wc-block-components-form,
.wc-block-components-checkout-step__description {
  color: var(--ink);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 3rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  min-height: 3rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: 0;
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 12px 26px rgba(32, 23, 14, 0.08);
}

.woocommerce-message {
  border-left: 5px solid var(--green);
}

.woocommerce-info {
  border-left: 5px solid var(--gold);
}

.woocommerce-error {
  border-left: 5px solid var(--red);
}

.guest-list {
  max-width: 940px;
}

.guest-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.guest-card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem 1.5rem 1.55rem;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem 1.2rem;
  align-items: start;
  border-radius: 28px;
  border: 1px solid rgba(38, 26, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(255, 244, 230, 0.8)),
    rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
}

.guest-coming-soon {
  min-height: 18rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.guest-coming-soon h2 {
  margin: 0;
  color: var(--red-deep);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1;
}

.guest-card__media {
  grid-row: 1 / 4;
  margin: 0;
  align-self: start;
}

.guest-card__media img {
  width: 150px;
  aspect-ratio: 1;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(38, 26, 17, 0.12);
  box-shadow: 0 12px 24px rgba(32, 23, 14, 0.1);
}

.guest-card::before,
.guest-card::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  height: 10px;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(19, 121, 79, 0.95) 0 18px,
      rgba(255, 249, 239, 0.95) 18px 36px,
      rgba(206, 43, 55, 0.95) 36px 54px
    );
  mask-image: radial-gradient(circle at 5px 0, transparent 5px, #000 5.5px);
  -webkit-mask-image: radial-gradient(circle at 5px 0, transparent 5px, #000 5.5px);
}

.guest-card::before {
  top: 0;
}

.guest-card::after {
  bottom: 0;
  transform: scaleY(-1);
}

.guest-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: start;
}

.guest-card__kicker {
  margin: 0 0 0.4rem;
  color: var(--red-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.guest-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.guest-card__tag {
  margin: 0.25rem 0 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(19, 121, 79, 0.1);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.guest-card > p {
  margin: 1rem 0 0;
  color: rgba(30, 24, 18, 0.84);
  line-height: 1.78;
}

.guest-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.guest-card__meta span,
.guest-card__meta li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(206, 43, 55, 0.08);
  color: var(--red-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.24;
  pointer-events: none;
}

.hero__glow--green {
  top: 8%;
  left: 4%;
  background: rgba(19, 121, 79, 0.7);
}

.hero__glow--red {
  right: 2%;
  bottom: 8%;
  background: rgba(206, 43, 55, 0.62);
}

.section {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: clamp(0.8rem, 1.6vw, 1.15rem) 0 4rem;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.section-heading {
  max-width: 42rem;
}

.section-heading__kicker {
  margin: 0 0 0.8rem;
  color: var(--red-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.intro__panel,
.feature-card,
.updates__item,
.info-card {
  border: 1px solid var(--border);
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
}

.intro__panel {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
}

.intro__panel p {
  margin: 0;
  line-height: 1.75;
}

.intro__panel p + p {
  margin-top: 1rem;
}

.snapshot-grid,
.updates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.info-card,
.updates__item {
  padding: 1.35rem;
  border-radius: 24px;
}

.info-card__pill {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 121, 79, 0.1);
  color: var(--green-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.info-card h3,
.updates__item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.info-card p,
.feature-card p,
.updates__item p {
  margin: 0;
  line-height: 1.7;
  color: rgba(30, 24, 18, 0.82);
}

.section--feature {
  padding-top: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 249, 239, 0.9), rgba(255, 243, 221, 0.82)),
    rgba(255, 250, 241, 0.8);
}

.feature-card__copy h2 {
  margin-bottom: 0.85rem;
}

.feature-card__list {
  display: grid;
  gap: 0.9rem;
}

.feature-card__list div {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.74);
  border: 1px solid rgba(30, 24, 18, 0.08);
}

.feature-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 0 0 2.5rem;
  color: rgba(30, 24, 18, 0.7);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.editor-styles-wrapper .page-card,
.editor-styles-wrapper .content-panel,
.editor-styles-wrapper .status-panel,
.editor-styles-wrapper .guest-card,
.editor-styles-wrapper .previous-years-card {
  background: rgba(255, 250, 241, 0.95);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes rise-in {
  from {
    transform: translateY(24px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 1rem;
  }

  .home-button-grid,
  .home-cta-row,
  .page-grid,
  .content-grid,
  .previous-years-gallery,
  .snapshot-grid,
  .updates__grid,
  .section--split,
  .hotel-block,
  .feature-card,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .button--hotel {
    width: 100%;
  }

  .previous-years-card--wide {
    grid-column: auto;
  }

  .guest-card__header {
    flex-direction: column;
  }

  .guest-card {
    grid-template-columns: 1fr;
  }

  .guest-card__media {
    grid-row: auto;
  }

  .guest-card__media img {
    width: min(100%, 260px);
  }
}

@media (max-width: 640px) {
  body {
    background: #147bfe;

    /* Previous mobile faded Italian-flag background, kept here for later reuse.
    background:
      radial-gradient(circle at top, rgba(255, 225, 168, 0.16), transparent 28%),
      linear-gradient(
        180deg,
        rgba(19, 121, 79, 0.18) 0 34%,
        rgba(255, 250, 238, 0.92) 34% 66%,
        rgba(206, 43, 55, 0.16) 66% 100%
      ),
      linear-gradient(180deg, rgba(255, 250, 238, 0.9), rgba(245, 235, 214, 0.98));
    */
  }

  .hero__content {
    border-radius: 26px;
    min-height: 230px;
    padding: 0.9rem;
  }

  .page-header__inner {
    border-radius: 24px;
    padding: 1rem;
  }

  .site-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.85rem;
  }

  .site-nav__cart {
    justify-self: center;
  }

  .site-nav__links {
    justify-content: center;
    gap: 0.45rem;
  }

  .site-nav__link {
    font-size: 0.88rem;
  }

  .site-nav__brand img {
    width: 14rem;
  }

  .hero h1 {
    line-height: 0.94;
  }

  .hero__date {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero__festival-tagline {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .ticket-art-panel {
    padding: 0.6rem;
  }

  .as-seen-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .as-seen-feature img {
    margin: 0 auto;
  }

  .hotel-art-link {
    width: min(100%, 420px);
    min-height: 180px;
    margin: 0 auto;
    padding: 0.6rem 0.75rem 0.7rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
