/* ===================================
   GWELLIO — CSS
   =================================== */

/* ===================================
   LOCAL FONTS
   =================================== */

/* Parkshore Script — primary display / heading font */
@font-face {
  font-family: 'Parkshore Script';
  src: url('fonts/Parkshore-ScriptRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Parkshore Script';
  src: url('fonts/Parkshore-ScriptCursive.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Parkshore — upright display weights */
@font-face {
  font-family: 'Parkshore';
  src: url('fonts/Parkshore-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Parkshore';
  src: url('fonts/Parkshore-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Epilogue — various decorative variants */
@font-face {
  font-family: 'Epilogue';
  src: url('fonts/Epilogue-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue';
  src: url('fonts/Epilogue-Oblique.otf') format('opentype');
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue Round';
  src: url('fonts/Epilogue-Round.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue Round';
  src: url('fonts/Epilogue-RoundOblique.otf') format('opentype');
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue Rough';
  src: url('fonts/Epilogue-Rough.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue Rough';
  src: url('fonts/Epilogue-RoughOblique.otf') format('opentype');
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue Stamp';
  src: url('fonts/Epilogue-Stamp.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue Stamp';
  src: url('fonts/Epilogue-StampOblique.otf') format('opentype');
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===================================
   TYPE SCALE
   =================================== */

/* Headings — Parkshore Script */
.heading-hero,
.hero-headline {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}

.section-headline {
  font-family: var(--font-script);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}

/* Headline colour inversion for dark-background sections */
.challenges-hero .section-headline { color: var(--parchment); }

.heading-sub {
  font-family: var(--font-script);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

/* Body — IBM Plex Mono */
p {
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1.7;
  color: var(--dark);
}

.text-sm {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
}

.text-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

.text-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--teal);
}

:root {
  /* Colors */
  --dark:        #081722;
  --cream:      #EDE8DC;
  --parchment:  #EDE8DC;
  --slate:      #9DB5C8;
  --brown:      #6B4422;
  --brown-dark: #2D1703;
  --sage:       #8B9D89;
  --teal:       #4D6A7E;
  --offwhite:   #FEF8F0;
  --white:      #FFFFFF;
  --coral:      #FC6060;

  /* Fonts */
  --font-script: 'Parkshore Script', cursive;
  --font-mono:   'IBM Plex Mono', monospace;
  --font-avenir: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-mono);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* --- Pages --- */
.page { display: none; }
.page.active { display: block; }

/* ===================================
   HEADER / NAV
   =================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--dark);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90rem;
  margin-inline: auto;
  padding: 8px 40px;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: 95px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--slate);
}

/* Temporarily hidden pre-launch — remove this class to restore (see _nav.php) */
.nav-link--prelaunch-hidden { display: none; }

/* Nav right: icons + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-right.nav-link--prelaunch-hidden { display: none; }

.nav-icon {
  display: flex;
  align-items: center;
  color: var(--white);
  transition: color 0.2s;
}

.nav-icon:hover {
  color: var(--slate);
}

/* Desktop: hide hamburger and mobile logo */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-hamburger .icon-close { display: none; }

.nav-logo--mobile  { display: none !important; }
.nav-logo--desktop { display: flex !important; }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 24px 32px 32px;
  gap: 8px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer-link {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-drawer-link:last-child {
  border-bottom: none;
}

.nav-drawer-link:hover {
  color: var(--slate);
}

.nav-drawer-icons {
  display: flex;
  gap: 24px;
  padding-top: 8px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  min-width: 260px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--dark);
  color: var(--cream);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover  { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--auto  { align-self: flex-start; }
.btn:disabled,
.btn:disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn .btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Sizes */
.btn--sm { padding: 10px 20px; font-size: 14px; min-width: 0; }
.btn--lg { padding: 20px 32px; font-size: 17px; min-width: 280px; }

/* Color variants — reserved for future use */
.btn--dark  { background: var(--dark);  color: var(--cream); }
.btn--slate { background: var(--slate); color: var(--dark);  }
.btn--sage  { background: var(--sage);  color: var(--white); }
.btn--brown { background: var(--brown); color: var(--white); }

/* ===================================
   FORM ELEMENTS
   =================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  max-width: 420px;
}

.signup-box {
  background: #FFFAEE;
  border-radius: 8px;
  padding: 24px;
  margin-top: 28px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.signup-box__title {
  font-family: var(--font-script);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 16px;
}

.signup-box .form-group {
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}

.signup-box .btn--dark {
  background: var(--dark);
  width: 100%;
  max-width: 100%;
}

.signup-box .input-field input {
  background: #ffffff;
  border: 1px solid #4D6A7E;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.input-field input,
.input-field textarea {
  background: #FEF8F0;
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--teal);
  outline: none;
  width: 100%;
  font-family: var(--font-mono);
  transition: box-shadow 0.2s;
}
.input-field input:focus,
.input-field textarea:focus {
  box-shadow: 0 0 0 2px var(--slate);
}

/* ===================================
   ASTERISK / DECORATIVE
   =================================== */

.asterisk {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.asterisk--lg   { font-size: 64px; color: var(--cream); }
.asterisk--cream { color: var(--cream); font-size: 32px; }

/* ===================================
   HOME — HERO
   =================================== */

.hero {
  position: relative;
  min-height: 80vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Pages that start with a hero need top padding for fixed nav */
.offletes-hero,
.challenges-hero--full,
.contact-hero { padding-top: 0; }

.hero-image-wrap {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 55%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  background: transparent;
}

.hero-text-box {
  background: var(--cream);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 2px 24px rgba(8, 23, 34, 0.07);
}

.hero-text-box p:first-of-type {
  white-space: nowrap;
}

.hero-text-box p + p {
  margin-top: 16px;
}

.hero-headline {
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-bottom: -10px;
}

.hero-btn {
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--white);
  margin-top: 16px;
  max-width: 560px;
}

/* ===================================
   BANNERS
   =================================== */

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  width: 100%;
}

.banner--dark  { background: var(--dark); }
.banner--sage  { background: var(--sage); }
.banner--brown { background: var(--brown); }

.banner-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* ===================================
   PRODUCT GRID
   =================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: var(--cream);
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.03); }

.product-card--blue  { background: var(--slate); }
.product-card--navy  { background: var(--teal); }

.product-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 11px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 1px;
}

.run-club-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  width: 100%;
}

.run-club-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

/* ===================================
   SPLIT SECTION (Offletes Unite)
   =================================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--cream);
}

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  gap: 20px;
}

/* .section-headline inherits from type scale (.heading-section) */

.section-body {
  max-width: 600px;
}

.link-cta {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  display: inline-block;
  transition: color 0.2s;
}
.link-cta:hover { color: var(--dark); }
.link-cta--cream { color: #ffffff; }
.link-cta--cream:hover { color: var(--cream); }

/* ===================================
   BRAND STORY / ESSENTIALS
   =================================== */

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  background: var(--sage);
  overflow: hidden;
}

.brand-story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 64px 32px max(64px, calc(50vw - 600px));
  gap: 20px;
}

.essentials-logo {
  margin-bottom: 8px;
}

.brand-story-image {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.brand-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-label {
  font-size: 14px;
  color: var(--slate);
  font-weight: 400;
}

/* ===================================
   CHALLENGES SECTION
   =================================== */

.challenges-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenges-hero--full {
  min-height: calc(65vh - 200px);
  padding-top: 100px;
}

.challenges-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 34, 0.45);
}

.challenges-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
}


.challenges-sub {
  font-family: var(--font-mono);
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--cream);
  max-width: 700px;
}

.challenges-btn {
  margin-top: 8px;
}

/* ===================================
   OFFLETES PAGE
   =================================== */

.offletes-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.offletes-hero-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.offletes-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 64px;
  background: var(--cream);
  gap: 20px;
}

.offlete-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.offlete-title {
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
}

.offlete-sponsor {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
}

/* ===================================
   SCIENCE SECTION
   =================================== */

.science-section {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 80px;
  background: var(--cream);
}

.science-body { max-width: 760px; }

/* ===================================
   WATCH / CHALLENGES PAGE
   =================================== */

.watch-section {
  background: var(--parchment);
  padding: 60px 24px;
  flex: 1;
  display: flex;
  justify-content: center;
}

.watch-section img {
  max-width: 800px;
  width: 100%;
}

.watch-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.watch-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 60px 64px;
  color: var(--brown-dark);
  text-align: left;
}


.watch-text p {
  color: var(--brown-dark);
}

/* Challenge Image */
.challenge-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.challenge-image img {
  width: 95%;
  height: auto;
  object-fit: contain;
}

/* Sign-up form feedback */
.signup-msg {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  border-radius: 8px;
  border-left: 4px solid transparent;
}
.signup-msg--success {
  display: block;
  color: #1b5e20;
  background-color: #e8f5e9;
  border-left-color: #4caf50;
}
.signup-msg--error {
  display: block;
  color: #7f0000;
  background-color: #ffebee;
  border-left-color: #e53935;
}

/* Challenge Card */
.challenge-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.challenge-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.challenge-step {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.challenge-step--gray { color: #333; }

.challenge-step--large {
  font-family: var(--font-mono);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--dark);
}

.challenge-phrase {
  font-family: var(--font-epilogue);
  font-style: oblique;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--dark);
}

.challenge-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  flex-wrap: wrap;
}

.dot { font-size: 10px; color: var(--dark); }

.challenge-divider {
  display: flex;
  gap: 20px;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  border-top: 1px solid rgba(8,23,34,0.15);
  border-bottom: 1px solid rgba(8,23,34,0.15);
  padding: 12px 0;
}

.challenge-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.grc-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.challenge-label {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

.challenge-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-hero {
  background: var(--cream);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 24px;
  flex: 1;
  width: 100%;
}

.contact-hero-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  filter: brightness(0.9);
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 560px;
  background: var(--cream);
  gap: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
  text-align: left;
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
}

.form-privacy {
  font-size: 11px;
  color: var(--teal);
  opacity: 0.8;
  margin-top: -4px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* ===================================
   OFFLETE SURVEY
   =================================== */

.survey-intro { max-width: 440px; }

.survey-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 480px;
  text-align: left;
  width: 100%;
}

.survey-form[hidden] { display: none; }

.survey-question {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.survey-question-label {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
}

.survey-optional {
  font-weight: 400;
  color: var(--teal);
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.survey-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
}

.survey-option input[type="checkbox"],
.survey-option input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--dark);
  cursor: pointer;
}

.survey-option--none {
  padding-top: 6px;
  border-top: 1px solid rgba(8, 23, 34, 0.1);
}

.survey-other-input {
  margin-left: 28px;
  background: #FEF8F0;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--teal);
  outline: none;
  width: calc(100% - 28px);
  box-sizing: border-box;
}

.survey-textarea {
  height: 100px;
  resize: vertical;
  background: #FEF8F0;
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--teal);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.survey-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 440px;
}

.survey-thanks[hidden] { display: none; }

/* --- Product feedback survey: wide layout --- */
.pf-wide.contact-hero-content { max-width: 960px; }
.pf-wide .survey-form { max-width: 960px; gap: 64px; }

/* --- Product feedback: tag placement grid --- */
/* Big cards: a header bar (radio + label) sits above a large photo,
   grouped in one bordered card so the pairing is unmistakable. */
.pf-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pf-tag-option {
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pf-tag-option:hover { border-color: var(--dark); }

.pf-tag-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.pf-tag-option input[type="radio"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  accent-color: var(--dark);
  cursor: pointer;
}

.pf-tag-option-label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.pf-tag-option .pf-tag-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream);
  border-top: 1.5px dashed var(--slate);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
  text-align: center;
}

.pf-tag-option img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 25%;
}

.pf-tag-option.selected {
  border-color: var(--dark);
  box-shadow: 0 0 0 2px var(--dark);
}

/* --- Product feedback: color ranking --- */
.pf-rank-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pf-rank-row {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.pf-rank-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
}

.pf-rank-label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.pf-rank-select {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  outline: none;
  cursor: pointer;
}

.pf-rank-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--white);
}

.pf-rank-swatch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================================
   RUN CLUB SECTION
   =================================== */

.run-club-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 860px;
}

.run-club-left {
  background: var(--slate);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px 60px max(64px, calc(50vw - 600px));
  gap: 24px;
}

.run-club-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.run-club-body {
  max-width: 560px;
}

.run-club-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
}

.run-club-btn {
  max-width: 340px;
}

.run-club-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.run-club-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.run-club-img--active {
  opacity: 1;
}

/* ===================================
   HOME — RUN CLUB LAUNCH
   =================================== */

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  padding: 10px 24px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.announcement-icon {
  flex-shrink: 0;
}

.announcement-bar:hover {
  opacity: 0.85;
}

.announcement-text {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.eyebrow-mono {
  font-family: var(--font-mono);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
}

.eyebrow-sans {
  font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}

/* --- Run Club Hero --- */
.runclub-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.runclub-hero-image {
  position: relative;
  align-self: start;
  width: 100%;
  height: auto;
  aspect-ratio: 2202 / 2619;
  overflow: hidden;
  background: var(--white);
}

.runclub-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.runclub-hero-img--active {
  opacity: 1;
}

.runclub-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 60px clamp(32px, 5vw, 80px);
}

.runclub-hero-headline {
  position: relative;
  isolation: isolate;
  font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 8px 0;
  width: fit-content;
}

.runclub-hero-headline .shadow-copy {
  position: absolute;
  inset: 0;
  color: #FC6060;
  opacity: 0.35;
  transform: translate(6px, 15px);
  z-index: -1;
}

.runclub-hero-sub {
  font-family: var(--font-mono);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  max-width: 480px;
}

.runclub-hero-btn {
  margin-top: 12px;
  width: 100%;
  max-width: 420px;
}

.runclub-hero-subtext {
  margin-top: -12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  max-width: 420px;
  line-height: 1.5;
}

/* --- Tooltip (hover bubble for disabled controls) --- */
.tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.tooltip-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 10;
}

.tooltip-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
}

.tooltip-wrap:hover .tooltip-bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Launch Day Gear --- */
.launch-gear-section {
  background: var(--white);
  padding: 64px clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.launch-gear-note {
  margin-top: -20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
}

.launch-gear-header {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.launch-gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.shirt-card {
  position: relative;
  display: block;
}

.shirt-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.shirt-card-img--back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.shirt-card:hover .shirt-card-img--back,
.shirt-card:focus-visible .shirt-card-img--back {
  opacity: 1;
}

.shirt-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 2px 0;
  font-family: var(--font-mono);
}

.shirt-card-name {
  font-size: 14px;
  color: var(--dark);
}

.shirt-card-price {
  font-size: 13px;
  color: var(--teal);
}

/* --- Camp Hat Preorder --- */
.camp-hat-section {
  position: relative;
  background: var(--sage);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 64px clamp(24px, 5vw, 64px);
  overflow: hidden;
}

.camp-hat-swirls {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.5;
  pointer-events: none;
}

.camp-hat-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.camp-hat-image {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  display: block;
}

.camp-hat-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Shared by "Launch day gear", "Preorder the Gwellio Camp Hat", and "Follow us" */
.section-title-mono {
  font-family: var(--font-mono);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--dark);
}

.camp-hat-btn {
  align-self: flex-start;
}

/* --- Offletes Unite (redesign) --- */
.offletes-unite-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--cream);
}

.offletes-unite-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  max-width: 600px;
  margin-left: auto;
  padding: 48px clamp(32px, 5vw, 64px);
  text-align: right;
}

.offletes-unite-content .btn--auto {
  align-self: flex-end;
}

.offletes-unite-headline {
  font-family: 'Epilogue Stamp', sans-serif;
  font-style: oblique;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dark);
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.75);
}

.offletes-unite-image {
  overflow: hidden;
}

.offletes-unite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Follow Us --- */
.follow-us-section {
  background: var(--sage);
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.follow-us-body {
  max-width: 700px;
}

.instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
}

.instagram-pill img {
  width: 32px;
  height: 32px;
}

.instagram-pill span {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 22px;
  color: var(--dark);
}

.instagram-pill:hover { opacity: 0.85; }

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 900px) {
  .btn {
    width: 100%;
    min-width: 0;
    align-self: center;
    white-space: normal;
  }

  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .section-headline {
    font-size: clamp(28px, 9vw, 40px);
  }

  .btn--auto {
    align-self: center;
  }

  p {
    font-size: 16px;
  }

  .site-nav {
    padding: 12px 20px;
    position: relative;
  }

  .nav-links { display: none; }

  .nav-hamburger { display: flex; }

  /* Hide desktop logo, show centered mobile logo */
  .nav-logo--desktop { display: none !important; }
  .nav-logo--mobile {
    display: flex !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-img {
    width: 64px;
    height: 31px;
  }

  .banner { padding: 20px 24px; }

  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card { aspect-ratio: 4/3; }

  .split-section,
  .brand-story,
  .offletes-hero,
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .split-image,
  .contact-hero-image {
    min-height: 300px;
    aspect-ratio: 16/9;
  }

  .offletes-hero-image {
    min-height: 0;
    aspect-ratio: auto;
    width: 100vw;
    height: 520px;
    background-size: cover;
    background-position: top center;
  }

  .offletes-hero {
    min-height: auto;
  }

  .split-content,
  .offletes-hero-content,
  .brand-story-text,
  .contact-hero-content {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    align-items: center;
    box-sizing: border-box;
  }

  .contact-form .input-field {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form .input-field input,
  .contact-form .input-field textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  .survey-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .survey-other-input {
    margin-left: 0;
    width: 100%;
  }

  .science-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .watch-content { grid-template-columns: 1fr; }
  .watch-text {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }

  .banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .hero {
    min-height: 70vh;
    align-items: flex-end;
  }

  .hero-image-wrap {
    background-image: url('/images/banner-mobile.png') !important;
    background-position: center top;
  }

  .hero-content {
    width: 100%;
    min-height: auto;
    padding: 0 20px 36px;
    margin-left: 0;
  }

  .hero-text-box {
    padding: 32px 24px;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .hero-text-box p:first-of-type {
    white-space: normal;
  }

  .hero-btn {
    width: 100%;
  }

  .challenges-hero--full {
    padding-top: 60px;
  }

  .science-section {
    text-align: center;
  }

  .science-logo {
    display: flex;
    justify-content: center;
  }

  .offletes-hero-content,
  .contact-hero-content {
    padding-top: 40px;
  }

  .run-club-section {
    grid-template-columns: 1fr;
  }

  .run-club-left {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }

  .run-club-right {
    min-height: 360px;
  }

  .run-club-btn {
    width: 100%;
    max-width: 100%;
  }

  .announcement-text {
    font-size: 13px;
  }

  .runclub-hero {
    grid-template-columns: 1fr;
  }

  .runclub-hero-content {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }

  .runclub-hero-headline { width: auto; }

  .runclub-hero-sub { max-width: 100%; }

  .runclub-hero-btn { max-width: 100%; }

  /* Below 900px, stack to single columns so cards stay large and legible. */
  .pf-wide.contact-hero-content { max-width: 100%; }
  .pf-wide .survey-form { max-width: 100%; }

  .pf-tag-grid { grid-template-columns: 1fr; }

  .pf-rank-list { grid-template-columns: 1fr; }

  .launch-gear-section { padding: 40px 24px; }

  .launch-gear-header { align-self: center; text-align: center; }

  .launch-gear-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .camp-hat-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .camp-hat-content { align-items: center; }

  .camp-hat-btn { align-self: center; }

  .offletes-unite-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .offletes-unite-content {
    max-width: none;
    margin-left: 0;
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }

  .offletes-unite-content .btn--auto {
    align-self: center;
  }

  .offletes-unite-image { min-height: 340px; }

  .follow-us-section { padding: 48px 24px; }
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(237, 232, 220, 0.5);
  margin: 0;
}

/* ── Shared modal ────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 23, 30, .65);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--teal);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--dark); }

.modal-card h2 {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 6px;
}

.modal-card .modal-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--teal);
  letter-spacing: .04em;
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.modal-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}
.modal-field input {
  background: transparent;
  border: 1.5px solid var(--slate);
  border-radius: 8px;
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.modal-field input:focus { border-color: var(--teal); }
.modal-field input::placeholder { color: var(--slate); }

.modal-submit {
  width: 100%;
  padding: 14px;
  background: var(--dark);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity .15s;
}
.modal-submit:hover    { opacity: .85; }
.modal-submit:disabled { opacity: .5; cursor: not-allowed; }

.modal-error {
  font-size: 11px;
  color: #c0392b;
  letter-spacing: .04em;
  margin-top: 10px;
  text-align: center;
  display: none;
}
.modal-error.visible { display: block; }

.modal-fine-print {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: center;
  margin-top: 12px;
}

/* ── Shared toast ────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  z-index: 300;
  transition: top .35s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { top: 24px; }

/* ===================================
   HIDDEN REWARD PROMO PAGE
   =================================== */

.promo-main {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 64px;
  text-align: center;
}

.promo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 18px;
  column-gap: clamp(10px, 2.5vw, 32px);
  margin: 0;
  font-family: var(--font-avenir);
  font-weight: 500;
  font-size: clamp(30px, 6.4vw, 80px);
  letter-spacing: clamp(4px, 2vw, 48px);
  text-transform: uppercase;
  color: var(--dark);
  text-shadow: 5px 5px 0 var(--coral);
}

.promo-pin {
  width: clamp(24px, 4vw, 76px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.promo-subtitle {
  margin: 12px 0 0;
  font-family: var(--font-avenir);
  font-weight: 300;
  font-size: clamp(18px, 3.2vw, 48px);
  letter-spacing: clamp(3px, 1.2vw, 28.8px);
  text-transform: uppercase;
  color: var(--dark);
}

.promo-badge {
  display: block;
  width: clamp(260px, 52vw, 619px);
  height: auto;
  margin: 48px auto 0;
}

.promo-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 620px;
  margin: 48px auto 0;
}

.promo-form .input-field { width: 100%; text-align: left; }

.promo-form .input-field input {
  background: #FFFAF0;
  border: 1px solid var(--teal);
}

.promo-form .form-privacy { text-align: center; }

.promo-btn {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(16px, 2.4vw, 24px);
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
}

.promo-blurb {
  margin: 48px auto 0;
  max-width: 1000px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(13px, 1.9vw, 24px);
  letter-spacing: clamp(1px, 0.3vw, 4.8px);
  line-height: 1.6;
  color: var(--dark);
}

.promo-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 32px auto 0;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  text-decoration: underline;
}

.promo-link:hover { color: var(--teal); }

.promo-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .promo-title { text-shadow: 3px 3px 0 var(--coral); }

  .promo-badge {
    width: clamp(300px, 84vw, 619px);
  }
}
.toast svg  { flex-shrink: 0; }
