/* ==========================================================================
   Promo Website — Theme tokens
   App-name and copy are rendered via PHP ($cfg->APP_NAME) in *.php files.
   ========================================================================== */

:root {
  /* Brand — fruit palette */
  --strawberry: #E63946;
  --sunny:      #FFD23F;
  --tangerine:  #FF8C42;
  --tropical:   #22C7D5;
  --lime:       #84E061;
  --plum:       #6B4CA8;

  /* Surfaces */
  --bg-base:           #FFF6E5;
  --bg-surface:        #FFFFFF;
  --bg-surface-accent: #FFEFC9;
  --bg-inverted:       #1F1A2E;

  /* Lines & ink */
  --outline:      #1A1A1A;
  --outline-soft: #E0D6BF;

  /* Text */
  --text-primary:   #1A1A1A;
  --text-secondary: #5C5048;
  --text-tertiary:  #7A6E65;  /* darkened from #A0958A to clear WCAG AA at 11-13px */
  --text-on-color:  #FFFFFF;

  /* Semantic */
  --danger:  #D62828;
  --success: #5BBA6F;
  --warning: #F2A030;
  --info:    #2E96B5;

  /* Gradients */
  --grad-sunset: linear-gradient(135deg, #FF8C42 0%, #E63946 50%, #6B4CA8 100%);
  --grad-tropic: linear-gradient(180deg, #22C7D5 0%, #FFD23F 100%);
  --grad-wheel:  radial-gradient(circle, #FFD23F 0%, #FF8C42 55%, #E63946 100%);

  /* Type */
  --font-display: 'Lilita One', 'Arial Black', sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-accent:  'Caveat Brush', 'Comic Sans MS', cursive;

  /* Radius */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* Signature shadows */
  --shadow-sticker:    0 3px 0 0 #1A1A1A;
  --shadow-sticker-lg: 0 5px 0 0 #1A1A1A;
  --shadow-soft:       0 8px 24px rgba(26,26,26,0.18);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Tropical pattern overlay — sits behind everything at low opacity */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('images/tropical_pattern.webp');
  background-repeat: repeat;
  background-size: 480px 480px;
  opacity: 0.06;
  pointer-events: none;
}

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

a { color: var(--strawberry); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.05; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
  color: var(--text-primary);
}
.section-title .accent { color: var(--strawberry); }
.section-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 60ch;
}

/* Hero headline mixed-weight treatment */
.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-line-1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 0.95;
  color: var(--text-primary);
}
.hero-line-1 .dot { color: var(--strawberry); }
.hero-line-2 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-strawberry, .btn-secondary, .btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.25px;
  border: 2px solid var(--outline);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sticker);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-strawberry { background: var(--strawberry); color: var(--text-on-color); }
.btn-secondary  { background: var(--bg-surface); color: var(--text-primary); }
.btn-danger     { background: var(--danger);    color: var(--text-on-color); }

.btn-strawberry:hover, .btn-secondary:hover, .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sticker-lg);
  text-decoration: none;
}
.btn-strawberry:active, .btn-secondary:active, .btn-danger:active {
  transform: translateY(3px);
  box-shadow: none;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card-sticker {
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sticker);
  padding: 24px;
}
.card-sticker--accent { background: var(--bg-surface-accent); }

.card-pressable { transition: transform .15s ease, box-shadow .15s ease; }
.card-pressable:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sticker-lg);
}

/* ==========================================================================
   Chips
   ========================================================================== */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.chip--sunny    { background: var(--sunny); }
.chip--lime     { background: var(--lime); }
.chip--tropical { background: var(--tropical); color: var(--text-on-color); }
.chip--plum     { background: var(--plum);     color: var(--text-on-color); }
.chip--cream    { background: var(--bg-surface-accent); }

/* ==========================================================================
   Berry pull-quote
   ========================================================================== */

.berry-quote {
  position: relative;
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.25;
  color: var(--text-primary);
  background: var(--sunny);
  border: 2px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-sticker);
  display: inline-block;
  max-width: 540px;
}
.berry-quote::after {
  content: '';
  position: absolute;
  left: 36px;
  bottom: -12px;
  width: 18px;
  height: 18px;
  background: var(--sunny);
  border-right: 2px solid var(--outline);
  border-bottom: 2px solid var(--outline);
  transform: rotate(45deg);
}

/* ==========================================================================
   Layout containers
   ========================================================================== */

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; position: relative; }
.section--accent { background: var(--bg-surface-accent); }
.section--dark { background: var(--bg-inverted); color: var(--text-on-color); }

@media (max-width: 700px) {
  .section { padding: 64px 0; }
}

/* Inline SVG wavy divider — used as a top/bottom band on bands of color */
.wave-divider { display: block; width: 100%; height: 28px; }

/* ==========================================================================
   Nav (variant #2 — Centered logo)
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.site-nav__inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-base);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker);
  padding: 12px 22px;
  backdrop-filter: blur(4px);
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
}
.site-nav__brand img { width: 36px; height: 36px; border-radius: var(--radius-md); border: 2px solid var(--outline); }
.site-nav__brand:hover { text-decoration: none; }
.site-nav__links {
  display: flex;
  gap: 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav__links a {
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav__links a:hover { color: var(--strawberry); }

@media (max-width: 560px) {
  .site-nav { top: 8px; padding: 0 8px; }
  .site-nav__inner { padding: 10px 16px; gap: 6px; border-radius: var(--radius-lg); }
  .site-nav__links { gap: 14px; font-size: 11px; }
  .site-nav__brand { font-size: 18px; }
}

/* ==========================================================================
   Hero (variant #6 — Layered)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 720px;
  padding: 120px 0 100px;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,246,229,0.0) 0%, rgba(255,246,229,0.85) 92%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 14px;
  height: 56px;
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sticker);
  text-decoration: none;
  color: var(--text-primary);
  transition: transform .12s ease, box-shadow .12s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-sticker-lg); text-decoration: none; }
.store-badge:active { transform: translateY(2px); box-shadow: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.store-badge strong {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.25px;
  color: var(--text-primary);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}
.hero__meta strong { color: var(--text-primary); }

@media (max-width: 700px) {
  .hero { min-height: 640px; padding: 96px 0 64px; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(255,246,229,0) 0%, rgba(255,246,229,0.92) 78%);
  }
}

/* ==========================================================================
   Pour right now strip (intro chips below hero)
   ========================================================================== */

.intro-strip {
  background: var(--bg-surface-accent);
  padding: 28px 0;
  border-top: 2px solid var(--outline);
  border-bottom: 2px solid var(--outline);
}
.intro-strip__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.intro-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--text-primary);
}
.intro-strip__chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* ==========================================================================
   Tabbed Features (variant #5)
   ========================================================================== */

.feature-tabs__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 32px 0 28px;
}
.feature-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.25px;
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 2px solid var(--outline);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .15s ease, transform .12s ease;
}
.feature-tabs__btn[aria-pressed="true"] {
  background: var(--sunny);
  box-shadow: var(--shadow-sticker);
}
.feature-tabs__btn:hover { transform: translateY(-1px); }

.feature-panel {
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 360px;
}
.feature-panel__media {
  position: relative;
  background: var(--bg-surface-accent);
  border-right: 2px solid var(--outline);
}
.feature-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-panel__copy {
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.feature-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
  color: var(--text-primary);
}
.feature-panel__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-secondary);
}
.feature-panel__points li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.feature-panel__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: var(--strawberry);
  border: 2px solid var(--outline);
  border-radius: 999px;
}

@media (max-width: 800px) {
  .feature-panel { grid-template-columns: 1fr; min-height: 0; }
  .feature-panel__media { border-right: none; border-bottom: 2px solid var(--outline); aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Today's Pour explainer
   ========================================================================== */

.pour-explainer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pour-explainer__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pour-explainer__step {
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sticker);
}
.pour-explainer__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--strawberry);
  color: var(--text-on-color);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  border: 2px solid var(--outline);
}
.pour-explainer__step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 4px;
}
.pour-explainer__step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.pour-explainer__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 2px solid var(--outline);
  box-shadow: var(--shadow-sticker-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 800px) {
  .pour-explainer { grid-template-columns: 1fr; gap: 32px; }
  .pour-explainer__media { order: -1; max-width: 380px; margin: 0 auto; }
}

/* ==========================================================================
   Mixology 101
   ========================================================================== */

.mixology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.mixology-card {
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mixology-card__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-surface-accent);
  border-bottom: 2px solid var(--outline);
  overflow: hidden;
}
.mixology-card__media img { width: 100%; height: 100%; object-fit: cover; }
.mixology-card__body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mixology-card__title { font-family: var(--font-display); font-size: 20px; line-height: 1.05; }
.mixology-card__intro { font-family: var(--font-body); font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.mixology-card__tag { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--plum); margin-bottom: 4px; }

@media (max-width: 900px) { .mixology-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mixology-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Pocket-bar preview — CSS device frames + Swiper
   ========================================================================== */

.preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preview .swiper {
  width: 100%;
  max-width: 100%;
  padding: 32px 16px 56px;
}
.preview .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 280px;
  aspect-ratio: 420 / 912;
  border: 6px solid var(--outline);
  border-radius: 36px;
  box-shadow: var(--shadow-sticker-lg);
  background: var(--bg-inverted);
  padding: 6px;
  position: relative;
  overflow: hidden;
}
.phone-frame__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--outline);
  border-radius: 999px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.preview .swiper-pagination-bullet {
  background: var(--outline-soft);
  opacity: 1;
  width: 10px;
  height: 10px;
}
.preview .swiper-pagination-bullet-active { background: var(--strawberry); }
.preview .swiper-button-next,
.preview .swiper-button-prev {
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: 999px;
  box-shadow: var(--shadow-sticker);
  margin-top: -22px;
}
.preview .swiper-button-next::after,
.preview .swiper-button-prev::after { font-size: 16px; font-weight: 900; }

@media (max-width: 480px) {
  .phone-frame { width: 200px; border-width: 5px; padding: 5px; border-radius: 32px; }
  .phone-frame__notch { width: 70px; height: 18px; }
  .phone-frame img { border-radius: 24px; }
}

/* ==========================================================================
   "What you can pour" decorative strip
   ========================================================================== */

.cocktail-strip {
  position: relative;
  padding: 60px 0 80px;
  background: var(--bg-surface-accent);
  border-top: 2px solid var(--outline);
  border-bottom: 2px solid var(--outline);
  overflow: hidden;
}
.cocktail-strip__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cocktail-strip__copy { flex: 1 1 280px; min-width: 240px; }
.cocktail-strip__glasses {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 2 1 480px;
  flex-wrap: wrap;
}
.cocktail-strip__glasses img {
  width: 110px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 0 rgba(26,26,26,0.4));
}
.cocktail-strip__glasses img:nth-child(1) { transform: rotate(-4deg); }
.cocktail-strip__glasses img:nth-child(2) { transform: translateY(-12px) rotate(2deg); }
.cocktail-strip__glasses img:nth-child(3) { transform: translateY(-4px) rotate(-2deg); }
.cocktail-strip__glasses img:nth-child(4) { transform: rotate(3deg); }

@media (max-width: 700px) {
  .cocktail-strip__glasses img { width: 84px; height: 122px; }
}

/* ==========================================================================
   CTA (variant #6 — Split CTA)
   ========================================================================== */

.cta {
  position: relative;
  padding: 96px 0;
  isolation: isolate;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/cta_bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,46,0.05) 0%, rgba(31,26,46,0.55) 100%);
  z-index: -1;
}
.cta__panel {
  background: var(--bg-surface-accent);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker-lg);
  padding: 40px clamp(20px, 4vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  line-height: 1.05;
}
.cta__title .accent { color: var(--strawberry); }
.cta__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 540px;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ==========================================================================
   Footer (variant #2 — Multi-column, dark)
   ========================================================================== */

.site-footer {
  background: var(--bg-inverted);
  color: var(--text-on-color);
  padding: 64px 0 48px;
  font-family: var(--font-body);
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--sunny); text-decoration: underline; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.site-footer__brand-row { display: flex; align-items: center; gap: 12px; }
.site-footer__brand-row img { width: 44px; height: 44px; border-radius: var(--radius-md); border: 2px solid var(--outline); }
.site-footer__brand-row span { font-family: var(--font-display); font-size: 22px; }
.site-footer__tagline { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.5; max-width: 260px; }
.site-footer__col h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 12px; color: var(--sunny); }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 800px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Sub-page (privacy / terms / contact) standard layout
   ========================================================================== */

.subpage {
  padding: 48px 0 80px;
}
.subpage__hero {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.subpage__hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.subpage__hero-mascot {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(26,26,26,0.35));
  margin-bottom: 4px;
}
.subpage__card {
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker);
  padding: clamp(24px, 4vw, 48px);
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.65;
}
.subpage__card h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 8px;
}
.subpage__card h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.subpage__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 20px 0 8px;
  color: var(--text-primary);
}
.subpage__card p, .subpage__card li {
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
}
.subpage__card ul { padding-left: 22px; margin: 8px 0 16px; }
.subpage__card li { margin-bottom: 6px; }
.subpage__card a { color: var(--strawberry); font-weight: 700; word-break: break-word; }
.subpage__card strong { font-weight: 800; color: var(--text-primary); }
.subpage__card hr { border: none; border-top: 1px solid var(--outline-soft); margin: 24px 0; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-page {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-form-wrap, .contact-info {
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sticker);
  padding: 32px;
}
.contact-info { background: var(--bg-surface-accent); }
.contact-form-wrap h1 { font-size: 2rem; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-group label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.field-group label .optional {
  font-weight: 500;
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.field-group label span[aria-hidden="true"] { color: var(--strawberry); margin-left: 4px; }
.field-group input[type="text"],
.field-group input[type="email"],
.field-group textarea,
.field-group input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-md);
  transition: border-color .15s ease;
}
.field-group input:focus, .field-group textarea:focus { outline: none; border-color: var(--strawberry); }
.field-group .char-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-tertiary);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: var(--strawberry);
  color: var(--text-on-color);
  border: 2px solid var(--outline);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sticker);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-sticker-lg); }
.btn-submit:active { transform: translateY(3px); box-shadow: none; }
.reply-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 18px;
  line-height: 1.5;
}
.contact-info h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 16px; }
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 14px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 4px 0 0; font-size: 15px; color: var(--text-primary); word-break: break-word; }

@media (max-width: 800px) {
  .contact-page { grid-template-columns: 1fr; }
}

/* Contact form success state */
.contact-success {
  display: none;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(132,224,97,0.18), rgba(255,210,63,0.18));
  border: 2px solid var(--success);
  border-radius: var(--radius-lg);
  margin-top: 12px;
}
.contact-success.is-active { display: block; }
.contact-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-success__body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.5;
}
.field-error {
  color: var(--danger);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  display: none;
}
.field-error.is-active { display: block; }
.field-group input.is-invalid,
.field-group textarea.is-invalid {
  border-color: var(--danger);
}

/* ==========================================================================
   Privacy accept button (Flutter integration)
   ========================================================================== */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 16px 24px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,246,229,0) 0%, rgba(255,246,229,0.95) 32%, var(--bg-base) 60%);
  pointer-events: none;
}
.privacy-accept-btn.hidden { display: none; }
.privacy-accept-btn .accept-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  background: var(--strawberry);
  color: var(--text-on-color);
  border: 2px solid var(--outline);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sticker-lg);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.privacy-accept-btn .accept-btn:hover {
  transform: translateY(-2px);
}
.privacy-accept-btn .accept-btn:active {
  transform: translateY(3px);
  box-shadow: none;
}

/* ==========================================================================
   Animation reset for prefers-reduced-motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  body::before { animation: none !important; }
}
