/* =====================
   STEAM TShirt Club CSS
======================== */

/* ===========
   Root Styles
============== */
:root{
  --max: 1280px;
  --pad: clamp(16px, 3vw, 28px);
  --gap: clamp(14px, 2.2vw, 22px);
  --border: rgba(0,0,0,.12);
  --ink: #1F2625;

  --muted: rgba(0,0,0,.65);
  --soft: rgba(0,0,0,.04);
  --radius: 16px;

  /* Brand palette */
  --science: #7C74DA;
  --tech: #597EBF;
  --engr: #1AC2E6;
  --arts: #F2C94C;
  --maths: #FF5A5F;
  --seafoam: #C0D5D5;
  --forest: #1F2625;
  --cream: #F8F7F3;
  
   /* Bullet colors */
  .science-bullet::before { background-color: var(--science); }
  .tech-bullet::before { background-color: var(--tech); }
  .engr-bullet::before { background-color: var(--engr); }
  .arts-bullet::before { background-color: var(--arts); }
  .maths-bullet::before { background-color: var(--maths); }
  
  html, body {
  margin: 0;
  color: var(--ink, --forest);
  font-family: 'Marcellus', serif;
  background: var(--cream);
  }
}

/* =============
   Sticky Header
================ */
.site-header{
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========
   Brand-Logo
============= */
.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
}

.brand-logo{
  width: 200px;
  height: auto;
  display: block;
}

.brand-text{
  display: flex;
  align-items: center;
}
.brand-tag{
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(76,93,91,.9);
  white-space: nowrap;   /* prevents awkward wrapping */
}
/* ==============
   END Brand-Logo
================= */

/* ===============
   Socials Styling
================== */
.social-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
}

.social-icon {
  max-width: 50px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

.newsletter-btn {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
/* ===================
   END Socials Styling
====================== */


/* =====================
   Gradient Text Styling
======================== */
.gradient-text {
  background: linear-gradient(90deg, var(--science), var(--tech), var(--engr), var(--arts), var(--maths));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 14px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  background: linear-gradient(90deg, var(--science), var(--tech), var(--engr), var(--arts), var(--maths));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==============
   Section Styles
================= */
.section{
  padding: clamp(42px, 7vw, 84px) 0;
}
.section-alt{ 
  background: #fff; 
}

.section-tint{ 
  background: linear-gradient(180deg, rgba(255,255,255,.2), var(--club-soft)); 
}

.section-tint .container{
  padding-inline: clamp(10px, 2vw, 16px); /* less side padding */
}

.section-intro{
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 30px;
}

.section :where(p, ul, ol):last-child,
.card :where(p, ul, ol):last-child{
  margin-bottom: 0;
}

.centered-block{        /* Simple Centered Block */
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.product--centered{      /* Simple Centered Block */
    max-width: 60ch;
    margin-inline: auto;
    text-align: center;
}

.container{
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}
/* ==================
   END Section Styles
===================== */


/* ===========
   Hero Styles
============== */
/* ===========
   Hero Images
============== */
.hero-img-cottoncandy{
  --hero-bg: url("https://assets.steamtshirtclub.com/images/background-cotton-candy.png");
}

/* =================
   Hero Image Styles
==================== */
.hero{
  /* defaults */
  --hero-bg-position: center;
  --hero-bg-size: cover;
  --hero-bg-repeat: no-repeat;
  
  /* optional overlay layer (set per hero type) */
  --hero-overlay: none;

  background-image: var(--hero-overlay), var(--hero-bg);
  background-position: 0 0, var(--hero-bg-position);
  background-size: auto, var(--hero-bg-size);
  background-repeat: no-repeat, var(--hero-bg-repeat);
}

 .hero-img-studio {
  --hero-bg-position: center bottom;
  --hero-bg-size: cover;
  --hero-bg-repeat: no-repeat;
  
  background-attachment: scroll;
}

/* ==================
   Hero layering
================== */
.hero-grid{ position: relative; } /* ensure this exists somewhere */

.hero-wash{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  border-radius: 15px;   /* ← add this */

  background: radial-gradient(      /* 1st # represents starting point */
    circle at 30% 70%,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0) 60%
  );
}

/* =========
   Hero Text
============ */
.hero-copy,
.hero-card{
  position: relative;
  z-index: 2;
}
.hero-copy .lead{
  margin-left: 0;
  margin-right: 0;
}
.hero-copy .lead,
.hero-copy .subnav{
  max-width: 60ch;
}

/* =================================
   3 Hero Translucent Layout Options
==================================== */
/* ==========================
   Hero Type 1: Left Gradient
============================= */
.hero--left{
  min-height: clamp(200px, 58vh, 400px);
  border-bottom: 1px solid var(--border);

  --hero-overlay: linear-gradient(
    90deg,
    rgba(255,255,255,.94) 0%,
    rgba(255,255,255,.75) 34%,
    rgba(255,255,255,0) 70%
  );
}

.hero--left .container{
  padding: clamp(28px, 6vw, 64px) var(--site-margin, 20px);
  display: flex;
  justify-content: flex-start;
}

.hero--left .hero-inner{
  margin-left: 0;
  margin-right: auto;
  max-width: 720px;
}
/* =====================================
   Hero Type 2: Centered Translucent Card
======================================== */
.hero--centered{
  padding: clamp(48px, 8vw, 96px) 0;
  display: grid;
  place-items: center;
}
 /* Add Left Padding to Hero Title */
.hero--centered .hero-copy{
  padding-left: 2.5rem;
}
.hero--centered .hero-inner{
  width: 90%;
  text-align: center;
}

@media (max-width: 640px){
  .hero--centered .hero-inner{ width: 94%; }
}
/* ===============================
   Hero Type 3: Full-width Band
================================== */
.hero--band{
  padding: clamp(48px, 8vw, 96px) 0;
}

.hero--band .hero-inner{
  width: 100%;
}
/* ==================================
   END Hero Translucent Layout Options
===================================== */  
/* ===============
   END Hero Styles
================== */  





/* ==================
   Global Card Styles
===================== */

/* Base card "surface" for all card-ish components */
:where(.card, .hero-card, .newsletter-card, .small-card, .tile, .styled-tile, .newsletter-card-inner){
  --card-bg: var(--card);
  --card-radius: var(--radius-lg);
  --card-shadow: var(--shadow-soft);

  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

/* If you want default padding on these */
:where(.card, .hero-card, .newsletter-card, .small-card, .tile, .styled-tile){
  padding: var(--card-padding, 1.5rem);
}

/* Padding size modifiers */
.card--xs{ --card-padding: 0.75rem; }
.card--sm{ --card-padding: 1rem; }
.card--md{ --card-padding: 1.5rem; }
.card--lg{ --card-padding: 2rem; }

/* Common overrides */
.tile{ --card-bg: #fff; }                 /* tiles are opaque by default */
.styled-tile{ --card-bg: #fff; }          /* keep your styled tiles white */
.newsletter-card-inner{ --card-bg: var(--panel, #fff); }
.card--xs{ --card-padding: 0.75rem; }
.card--sm{ --card-padding: 1rem; }
.card--md{ --card-padding: 1.5rem; }
.card--lg{ --card-padding: 2rem; }

/* Card width utilities */
.card--narrow{
  max-width: 40ch;
}

.card--medium{
  max-width: 60ch;
}

.card--wide{
  max-width: 72ch;
}

/* Center constrained cards by default */
.card--narrow,
.card--medium,
.card--wide{
  margin-left: auto;
  margin-right: auto;
}
/* ======================
   END Global Card Styles
========================= */  


/* ================
   Hero Card Styles
=================== */ 
.hero-card{
  border-radius: 15px;
  background-color: rgba(251,250,247,0.65);
}

/* Make the card content a full-height flex column */
.hero-card-inner{
  padding: var(--hero-card-padding, 20px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-card-inner::before{
  content:"";
  display:block;
  height: 2px;
  margin-bottom: 10px;
  opacity:.95;
}

/* Buttons: keep your flex layout, but push to bottom */
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: auto;     /* <-- this pins the actions to the bottom */
}
/* ====================
   END Hero Card Styles
======================= */



/* ==========================
   Media + Two Cards Layout
   (reusable section pattern)
============================= */

/* Outer layout: 1/3 media, 2/3 content */
.media-two-cards{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: stretch; /* makes media column match height of content column */
}

/* Left column: center media vertically + horizontally */
.media-two-cards__media{
  display: grid;
  place-items: center;
}

/* Optional: constrain media size so it doesn’t bully the cards */
.media-two-cards__media .panel{
  width: min(320px, 100%);
}

/* If you want the media area itself to be square, use this modifier */
.media-two-cards__media--square .panel{
  aspect-ratio: 1 / 1;
}

/* Make media image fill the panel cleanly */
.media-two-cards__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column */
.media-two-cards__content{
  width: 100%;
}

/* The “two cards” row inside the right column */
.media-two-cards__cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
  margin-top: 15px; /* feel free to remove if you prefer utilities */
}
/* ============================
   END Media + Two Cards Layout
=============================== */


/* ============
   Panel Styles
=============== */
.panel{
  border:6px solid var(--border);
  border-radius:var(--radius);
  background-color:#fff;
  overflow:hidden;
}
.panel .media{
  aspect-ratio:16/10;
  background:var(--soft);
  overflow:hidden;
}
.panel .media{
  aspect-ratio:16/10;
  background:var(--soft);
  background-color:#fff;
  overflow:hidden;
}
.panel .media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;   /* fills the frame without distortion */
}
@media (max-width: 700px){
  .panel .media{
    aspect-ratio: 4 / 3; /* or 1 / 1 if you want squares */
  }
}
.panel .media--w325{
  width: 325px;
  max-width: 100%;
  margin-inline: auto; /* centers the frame */
}
.media--contain img{
  object-fit: contain;
  background: #fff;
}

/* Square media variant */
.panel .media-square{
  aspect-ratio: 1 / 1;
  max-width: 360px;          /* keeps it visually subordinate */
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.panel .media-square img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================
   END Panel Styles
=================== */



/* ===========
   GRID Styles 
============== */
.hero-grid{
  position: relative; /* needed for hero-wash */
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
}
/* Mobile centering for grid-2 + centered-block */
@media (max-width: 640px){
  .grid-2{
    grid-template-columns: 1fr; /* make sure it actually stacks */
  }

  .grid-2.centered-block{
    justify-items: center;      /* centers each card */
  }

  .grid-2.centered-block > *{
    width: 100%;
    max-width: 60ch;            /* constrain card width */
  }
 }
 
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.6vw, 28px);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-5{
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 1200px){
  .grid-5{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px){
  .grid-5{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .grid-5{
    grid-template-columns: 1fr;
  }
}

/* ===============
   END GRID Styles 
================== */



/* ===========
   Tile Styles
============== */
   
/* Tile surface */
.tile{
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
}
.tile:nth-child(2) {
  transform: translateY(-4px);
}

/* Top content spacing */
.tile-top {
  margin-bottom: 1.5rem;
}

/* Eyebrow */
.tile-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.4rem;
}

/* Heading — quieter */
.tile h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 500;     /* avoids headline dominance */
  letter-spacing: 0.01em;
}

.science-tile{
  background-color:var(--science);
  color: var(--ink);
}
.tech-tile{
  background-color:var(--tech);
  color: var(--ink)
}
.engr-tile{
  background-color:var(--engr);
  color: var(--ink);
}
.arts-tile{
    background-color:var(--arts);
  color: var(--ink);
}
.maths-tile{
    background-color:var(--maths);
  color: var(--ink);
}

/* ===============
   END Tile Styles
================== */


/* ======================
   Stacking and Centering
========================= */
/* Centered Block Stacking Alignment */
.stack{
  display: grid;
  gap: 16px;
}

.cta-stack{
  display: grid;        /* 👈 this is the missing ingredient */
  gap: 12px;            /* adjust spacing between buttons */
  justify-items: center; /* centers buttons/fineprint as a group */
  text-align: center;
}

.btn.block{
  display: block;
  width: min(420px, 100%); /* nice max width, still responsive */
  text-align: center;
}

.btn-centered{
  display: block;
  margin: 20px auto 0; /* auto left/right centers it */
  text-align: center; /* optional, keeps text centered inside */    
}
/* ==========================
   END Stacking and Centering
============================= */


/* =============
   Button Styles
================ */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  --btn-bg: #fff;
  --btn-color: var(--ink);
  --btn-border: var(--border, rgba(0,0,0,.12));

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 18px;

  border-radius: 999px;
  border: 1px solid var(--btn-border);

  background: var(--btn-bg);
  color: var(--btn-color);

  font-size: 14px;
  cursor: pointer;
  text-decoration: none;

  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover {
  background: color-mix(in srgb, var(--btn-bg) 85%, black);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--btn-bg) 45%, white);
  outline-offset: 3px;
}

.btn.science {
  --btn-bg: var(--science); /* Purple */
  --btn-color: #fff;
  --btn-border: var(--science);
}

.btn.tech {
  --btn-bg: var(--tech); /* Blue */
  --btn-color: #fff;
  --btn-border: var(--tech);
}

.btn.engr {
  --btn-bg: var(--engr); /* Aqua */
  --btn-color: #fff;
  --btn-border: var(--engr);
}

.btn.arts {
  --btn-bg: var(--arts); /* Yellow */
  --btn-color: #fff;
  --btn-border: var(--arts);
}

.btn.math {
  --btn-bg: var(--maths); /* Poppy */
  --btn-color: #fff;
  --btn-border: var(--maths);
}
/* =================
   END Button Styles
==================== */


/* ===========
   List Styles
============== */
ul.custom-list {
  list-style-type: none; /* Hide default bullets */
  padding-left: 20px;    /* Add space where bullets used to be */
}

ul.custom-list li {
  position: relative;
  margin-bottom: 10px;   /* Spacing between items */
  line-height: 1.5;
}

/* The custom bullet */
ul.custom-list li::before {
  content: "";           /* Makes the box appear */
  display: inline-block;
  position: absolute;
  left: -25px;           /* Moves bullet to the left of text */
  top: 6px;              /* Centers bullet vertically with text */
  
  width: 12px;           /* Adjust size here */
  height: 12px;          /* Keep width/height equal for a square */
  border-radius: 3px;    /* The slight radius you requested */
}
/* =================
   END List Styles
==================== */


/* ==============
   Drift Carousel
================= */
.drift-carousel{
  overflow:hidden;
  width: 80%;
  max-width: 1100px;
  margin: clamp(24px, 4vw, 40px) auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(76,93,91,0.12);
  background: rgba(251,250,247,.62);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}

.drift-carousel--full{
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.drift-carousel--full .carousel-track{
  padding-left: 20px;
  padding-right: 20px;
}

.drift-carousel--full .carousel-item{
  min-width: clamp(220px, 24vw, 340px);
}

.carousel-track{
  display:flex;
  gap: 12px;
  padding: 14px;
  width: max-content;
  animation: drift 110s linear infinite;
}

.carousel-item{ 
  flex: 0 0 clamp(150px, 17vw, 200px); 
  width: clamp(150px, 17vw, 200px); 
  border-radius: var(--radius-md); 
  background: rgba(251,250,247,.72); 
  border: 1px solid rgba(76,93,91,0.12);
  padding: 6px;
  overflow: hidden;
}

.carousel-item img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transform: scale(0.9); /* zoom out slightly */
  display: block;
}

.club-carousel-wrap{
  padding-top: 18px;
}

.club-carousel-wrap .carousel-item img{
  width: 100%;
  aspect-ratio: 16 / 9;   /* 👈 landscape */
  object-fit: cover;      /* fills frame nicely */
}

@keyframes drift{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* =========================
   END Drift Carousel Styles
============================ */





/* ==================
   Flip Cards Styling
===================== */
* {
  box-sizing: border-box;
  font-weight: normal;
}

.flip p {
  font-size: 0.9125rem;
  line-height: 160%;
  color: #000;
}

.flip h1 {
    font-size: 28px;
    margin: 0;
    color: var(--ink);
}

.flip h2 {
    font-size: 22px;
    margin: 0;
    color: var(--ink);
}


.text-shadow {
  text-shadow:
    1px 1px rgba(0, 0, 0, 0.07),
    2px 2px rgba(0, 0, 0, 0.07),
    3px 3px rgba(0, 0, 0, 0.07),
    4px 4px rgba(0, 0, 0, 0.07);
}

.flip-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: min(1170px, 90vw);
  margin: 0 auto 2rem;
}

.flip {
  position: relative;
  width: 200px;
  height: 450px;
  perspective: 1000px;
}

.flip .front,
.flip .back {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  border-radius: 10px;
  color: white;
  background: #313131;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.5s cubic-bezier(.175, .885, .32, 1.275),
              opacity 0.5s cubic-bezier(.175, .885, .32, 1.275);
  backface-visibility: hidden;
}

.flip .front {
  transform: rotateY(0deg);
}

.flip .back {
  background: linear-gradient(
    rgba(255,255,255,0) 35%
  );
  opacity: 0;
  transform: rotateY(-180deg);
}

.flip:hover .front {
  transform: rotateY(180deg);
}

.flip:hover .back {
  opacity: 1;
  transform: rotateY(0deg);
}

.flip.flip-vertical .back {
  transform: rotateX(-180deg);
}

.flip.flip-vertical:hover .front {
  transform: rotateX(180deg);
}

.flip.flip-vertical:hover .back {
  transform: rotateX(0deg);
}
/* ======================
   END Flip Cards Styling
========================= */




/* ================
   Club Page Styles
=================== */
.club-page{
  --club-color: var(--science);
  --club-soft: rgba(124,116,218,.12);
  --club-ink: #1F2625;
  overflow: hidden;
}
.science-page{ --club-color: var(--science); --club-soft: rgba(124,116,218,.26); }
.tech-page{ --club-color: var(--tech); --club-soft: rgba(89,126,191,.26); }
.engr-page{ --club-color: var(--engr); --club-soft: rgba(26,194,230,.14); }
.music-page{ --club-color: var(--arts); --club-soft: rgba(242,201,76,.18); }
.math-page{ --club-color: var(--maths); --club-soft: rgba(255,90,95,.20); }

.club-hero{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.65), transparent 40%),
    linear-gradient(135deg, var(--club-soft), rgba(255,255,255,.86));
  padding: clamp(48px, 7vw, 88px) 0 32px;
}
.club-hero-grid{
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}
.club-kicker{
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.club-hero h1{
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: .97;
  margin: 0 0 16px;
}
.club-hero .lead{
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 58ch;
  margin-bottom: 18px;
}
.hero-proof{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.hero-proof li{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .95rem;
}
.club-hero-card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
}
.price-pill{
  display: inline-block;
  background: var(--club-color);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: .95rem;
}
.mini-list{
  padding-left: 18px;
  line-height: 1.8;
}
.cta-cluster{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.cta-banner{
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.75) 100%
    ),
    var(--club-color);
  color: var(--ink);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.cta-banner p{ max-width: 54ch; margin-inline: auto; }

.cta-banner .btn.primary{
  background: #4C5D5B;
  color: #fff;
  border-color: #111;
}

.cta-banner .btn.secondary{
  background: rgba(255,255,255,.55);
  color: var(--ink);
  border-color: rgba(0,0,0,.12);
}

.value-grid,
.problem-grid,
.gift-grid,
.faq-grid,
.benefit-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: var(—gap);
}
.card-lite{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.card-lite h3{ margin-top: 0; }
.icon-chip{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--club-soft);
  color: var(--club-ink);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.split-band{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 22px;
}
.highlight-box{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
}
.highlight-box ul{ padding-left: 10px; line-height: 1.85; }
.about-me{
  padding: clamp(42px, 7vw, 84px) 0;
}


/* =======================
   About Me Section Styles
========================== */
.about-me-inner{
  max-width: var(--max);      
  margin-inline: auto;
  padding-inline: var(--pad);     /* 👈 this is the real padding */
  
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(260px,.7fr);
  gap: 28px;
  align-items: center;
}

.about-me-text{
  background: #fff;
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0,0,0,.08);
}

.about-me-image{
  min-height: 350px;
  border-radius: 20px;
  aspect-ratio: 3 / 4; /* classic portrait */
  background:
    url('https://assets.steamtshirtclub.com/images/about-me-vt.jpg') center/cover no-repeat;
}



/* ===========================
   Steps Section (Card) Styles
============================== */
.steps{
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.step-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 24px;
}
.step-card::before{
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 12px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--club-color);
  color: #fff;
  font-size: .95rem;
}


/* ==================
   FAQ Section Styles
===================== */

.faq{
  max-width: 750px;
  margin: 0 auto;              /* centers the whole block */
  padding: clamp(32px, 6vw, 64px) var(--pad);
}

.faq h2{
  text-align: center;
  margin-bottom: 28px;
}

/* =====================
   FAQ Items (Cards)
===================== */

.faq-item{
  background: #fff;
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .25s ease;
}

/* subtle hover lift */
.faq-item:hover{
  border-color: var(--club-color);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

/* =====================
   Question (Button)
===================== */

.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  position: relative;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,.7);
}

/* remove default arrow */
.faq-item summary::-webkit-details-marker{
  display: none;
}

/* custom + / - icon */
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--club-color);
  transition: transform .2s ease;
}

/* open state */
.faq-item[open] summary{
  background: var(--club-soft);
  color: var(--ink);
}

/* change + to − */
.faq-item[open] summary::after{
  content: "−";
}

/* =====================
   Answer Styling
===================== */

.faq-answer{
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================
   Add a subtle left accent line (chef’s kiss)
===================== */

.faq-item{
  border-left: 4px solid transparent;
}

.faq-item:hover,
.faq-item[open]{
  border-left-color: var(--club-color);
}
/* ======================
   END FAQ Section Styles
========================= */


/* ==================
   Testimonial Styles
===================== */ 
.testimonial-strip {
  overflow: hidden;
  padding-bottom: 10px;
}

.testimonial-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: testimonialScroll 35s linear infinite;
}

.quote-card {
  flex: 0 0 400px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  position: relative;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.quote-copy{ font-size: 1.4rem; 
   line-height: 1; 
   color: var(--club-color); 
}
.center-actions{ 
   text-align: center; 
   margin-top: 28px; 
}
.microcopy{ 
   font-size: .92rem; 
   color: rgba(0,0,0,.7); 
}

@media (max-width: 960px){
  .club-hero-grid,
  .about-me-inner,
  .split-band,
  .value-grid,
  .problem-grid,
  .gift-grid,
  .faq-grid,
  .benefit-grid,
  .steps{
    grid-template-columns: 1fr;
  }
}
/* ======================
   END Testimonial Styles
========================= */
/* ====================
   END Club Page Styles
======================= */



/* =========================
   Newsletter Section Styles
============================ */
.newsletter-section{
  background-color:#E5E3DC;
  padding: clamp(24px, 6vw, 48px) 0;
}

.newsletter{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:28px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:var(--gap);
}
@media(max-width:800px){ .newsletter{ grid-template-columns:1fr; } }
.newsletter input{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  width:100%;
}
.newsletter button{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid #111;
  background:#111;
  color:#fff;
}
/* =============================
   END Newsletter Section Styles
================================ */


/* =====================
   Footer Section Styles
======================== */
.footer {
  background-color: var(--cream);
  padding: 20px 60px;
  font-family: 'Marcellus', serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 280px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #703847;
}

.footer-column p {
  font-size: 1rem;
  line-height: 1.6;
}

.newsletter-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #D4967D;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color: #4c5d5b;
}

.tc-v2-widget-embeddable_button .builder-v2-block-embeddable_button .button {
  color: #fff;
  background-color:#D4967D;
}

.tc-v2-widget-embeddable-trigger .tc-v2-embeddable-trigger-el {
  color: #fff;
  background-color:#4c5d5b;
}

.social-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.social-links li {
  margin-bottom: 10px;
}

.social-links a {
  text-decoration: none;
  color: #4c5d5b;
  font-weight: 600;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--cream)
  font-family: 'Marcellus', serif;
  font-size: 0.9rem;
  color: #4C5D5B;
  flex-wrap: wrap;
}

.footer-base a {
  color: #4C5D5B;
  text-decoration: underline;
}

.footer-base a:hover {
  color: #703847;
}
/* =========================
   END Footer Section Styles
============================ */


/* =======================
   Reduced Motion Controls
========================== */
@media (prefers-reduced-motion: reduce){
  html{ 
    scroll-behavior:auto; 
  }
  .carousel-track{ 
    animation: none; 
  }
 
  .btn{ transition: none; 
  }
}


/* ====================
   Responsive Behaviors
======================= */

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .about-me-inner{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-5{ grid-template-columns: 1fr; }

  .media-two-cards{
    grid-template-columns: 1fr;
  }

  .media-two-cards__cards{
    grid-template-columns: 1fr;
  }

  .mobile-panel{ display:block; }
}

@media (max-width: 560px){
  .btn{ width:100%; }
  .hero-actions{ gap: 10px; }
  input, textarea, select{ border-radius: 14px; }
}
