:root {
  --brown-deep: #26160D;
  --brown-rich: #3D2414;
  --brown-mid: #5C3A24;
  --amber: #C97D3D;
  --amber-light: #E8A960;
  --cream: #F5EFE3;
  --cream-dark: #EDE4D6;
  --charcoal: #1A0F08;
  --muted: #8B6F5A;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--brown-deep);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(38, 22, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 125, 61, 0.15);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav__tagline {
  font-size: 0.8125rem;
  color: var(--amber);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--brown-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201, 125, 61, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(92, 58, 36, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(245, 239, 227, 0.65);
  line-height: 1.7;
  max-width: 480px;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge {
  background: rgba(245, 239, 227, 0.04);
  border: 1px solid rgba(201, 125, 61, 0.3);
  border-radius: 2px;
  padding: 2rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 200px;
}

.badge__line {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
}

.badge__sub {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}

.badge__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(245, 239, 227, 0.5);
  letter-spacing: 0.08em;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* PHILOSOPHY */
.philosophy {
  padding: var(--space-xl) 2rem;
  background: var(--cream);
}

.philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 0.5rem;
  font-weight: 500;
}

.philosophy__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.philosophy__body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

/* LINEUP */
.lineup {
  padding: var(--space-xl) 2rem;
  background: var(--cream-dark);
}

.lineup__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lineup__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  font-weight: 500;
}

.lineup__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.lineup__item {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-bottom: 1px solid rgba(61, 36, 20, 0.1);
  border-right: 1px solid rgba(61, 36, 20, 0.1);
}

.lineup__item:nth-child(even) {
  border-right: none;
  padding-left: 2.5rem;
}

.lineup__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.lineup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  margin-bottom: 1rem;
}

.lineup__item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.lineup__item p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.lineup__note {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* PROCESS */
.process {
  padding: var(--space-xl) 2rem;
  background: var(--brown-deep);
}

.process__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3rem;
  font-weight: 500;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(245, 239, 227, 0.08);
}

.step:last-child {
  border-right: none;
}

.step:not(:first-child) {
  padding-left: 2rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201, 125, 61, 0.4);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.step__content p {
  font-size: 0.9375rem;
  color: rgba(245, 239, 227, 0.5);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: var(--space-xl) 2rem;
  background: var(--cream);
  text-align: center;
}

.closing__inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing__quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.closing__body {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  background: var(--charcoal);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cream);
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer__meta {
  font-size: 0.8125rem;
  color: rgba(245, 239, 227, 0.3);
}

/* ===========================
   NAV CTA BUTTON
   =========================== */
.nav__cta {
  display: inline-block;
  background: var(--amber);
  color: var(--brown-deep);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.125rem;
  border-radius: 2px;
  transition: background 0.15s, transform 0.1s;
}

.nav__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ===========================
   HERO CTA BUTTON (landing)
   =========================== */
.hero__cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--amber);
  color: var(--brown-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}

.hero__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ===========================
   SUBSCRIBE HERO
   =========================== */
.sub-hero {
  position: relative;
  background: var(--brown-deep);
  padding: 10rem 2rem 5rem;
  overflow: hidden;
}

.sub-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.sub-hero__eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.sub-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.sub-hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.sub-hero__sub {
  font-size: 1rem;
  color: rgba(245, 239, 227, 0.6);
  line-height: 1.7;
}

.sub-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===========================
   PLAN CARDS (compare page)
   =========================== */
.plans {
  padding: var(--space-xl) 2rem;
  background: var(--cream);
}

.plans__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: var(--white);
  border: 1px solid rgba(61, 36, 20, 0.1);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
  position: relative;
}

.plan-card:hover {
  box-shadow: 0 8px 32px rgba(61, 36, 20, 0.1);
  transform: translateY(-2px);
}

.plan-card--featured {
  border-color: var(--amber);
  border-width: 2px;
}

.plan-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--brown-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 0 0 3px 3px;
}

.plan-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.plan-card__emoji {
  font-size: 2rem;
  line-height: 1;
}

.plan-card__price {
  text-align: right;
}

.plan-card__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
}

.plan-card__interval {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.plan-card__tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.plan-card__list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-card__list li {
  font-size: 0.875rem;
  color: var(--brown-mid);
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(61, 36, 20, 0.07);
  padding-left: 1.25rem;
  position: relative;
}

.plan-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-card__cadence {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.plan-card__cta {
  display: block;
  text-align: center;
  background: var(--brown-deep);
  color: var(--cream);
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: 2px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}

.plan-card__cta:hover {
  background: var(--brown-rich);
}

.plans__note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===========================
   TIER HERO (individual page)
   =========================== */
.tier-hero {
  position: relative;
  background: var(--tier-bg, var(--brown-deep));
  padding: 9rem 2rem 5rem;
  overflow: hidden;
}

.tier-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.tier-hero__back {
  display: inline-block;
  font-size: 0.8125rem;
  color: rgba(245, 239, 227, 0.5);
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.tier-hero__back:hover {
  color: var(--cream);
}

.tier-hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tier-accent, var(--amber));
  margin-bottom: 1rem;
  font-weight: 500;
}

.tier-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.tier-hero__tagline {
  font-size: 1.0625rem;
  color: rgba(245, 239, 227, 0.6);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 440px;
}

.tier-hero__price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.tier-price__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.tier-price__note {
  font-size: 0.875rem;
  color: rgba(245, 239, 227, 0.45);
}

.tier-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===========================
   TIER CHECKOUT CARD
   =========================== */
.tier-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tier-card__image-placeholder {
  background: var(--cream-dark);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(61, 36, 20, 0.1);
  overflow: hidden;
}

.tier-card__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tier-card__image-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.tier-card__image-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}

.tier-card__body {
  padding: 1.75rem;
}

.tier-card__whats-inside {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 1rem;
}

.tier-card__list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.tier-card__list li {
  font-size: 0.875rem;
  color: var(--brown-mid);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tier-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
}

.tier-card__cadence {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(61, 36, 20, 0.04);
  border-radius: 2px;
}

.tier-card__cta {
  display: block;
  text-align: center;
  background: var(--brown-deep);
  color: var(--cream);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
  margin-bottom: 0.75rem;
}

.tier-card__cta:hover {
  background: var(--brown-rich);
  transform: translateY(-1px);
}

.tier-card__reassurance {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===========================
   TIER DETAILS SECTION
   =========================== */
.tier-details {
  padding: var(--space-xl) 2rem;
  background: var(--cream);
}

.tier-details__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tier-details__block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.tier-details__list {
  list-style: none;
}

.tier-details__list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(61, 36, 20, 0.08);
  font-size: 0.9375rem;
  color: var(--brown-mid);
}

.tier-details__list li:last-child {
  border-bottom: none;
}

.check {
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.tier-details__steps {
  padding-left: 1.5rem;
}

.tier-details__steps li {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--brown-mid);
  line-height: 1.6;
  border-bottom: 1px solid rgba(61, 36, 20, 0.08);
}

.tier-details__steps li:last-child {
  border-bottom: none;
}

.tier-details__steps strong {
  color: var(--brown-deep);
}

/* ===========================
   TIER CTA BAND
   =========================== */
.tier-cta-band {
  background: var(--brown-deep);
  padding: 4rem 2rem;
}

.tier-cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tier-cta-band__inner p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  font-style: italic;
}

.tier-cta-band__btn {
  display: inline-block;
  background: var(--amber);
  color: var(--brown-deep);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.tier-cta-band__btn:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ===========================
   WELCOME PAGE
   =========================== */
.welcome {
  min-height: 100vh;
  background: var(--cream);
  padding: 10rem 2rem 6rem;
  display: flex;
  align-items: center;
}

.welcome__inner {
  max-width: 640px;
  margin: 0 auto;
}

.welcome__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.welcome__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.welcome__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.welcome__steps {
  list-style: none;
  margin-bottom: 3rem;
}

.welcome__steps li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(61, 36, 20, 0.08);
  align-items: flex-start;
}

.welcome__steps li:last-child {
  border-bottom: none;
}

.welcome__step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--amber);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 2rem;
}

.welcome__step-body strong {
  display: block;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.welcome__step-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.welcome__footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.welcome__home,
.welcome__browse {
  font-size: 0.9375rem;
  color: var(--amber);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.welcome__home:hover,
.welcome__browse:hover {
  color: var(--brown-deep);
}

/* ===========================
   NAV LINK (text-only)
   =========================== */
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--cream);
}

/* ===========================
   SHOP GRID
   =========================== */
.shop-grid-section {
  padding: var(--space-xl) 2rem;
  background: var(--cream);
}

.shop-grid__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.shop-card {
  background: var(--white);
  border: 1px solid rgba(61, 36, 20, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}

.shop-card:hover {
  box-shadow: 0 8px 32px rgba(61, 36, 20, 0.1);
  transform: translateY(-2px);
}

.shop-card__image {
  background: var(--cream-dark);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(61, 36, 20, 0.08);
}

.shop-card__emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.shop-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.shop-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.shop-card__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.shop-card__tagline {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.shop-card__cta {
  display: block;
  text-align: center;
  background: var(--amber);
  color: var(--brown-deep);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
}

.shop-card__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.shop-grid__note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===========================
   SHOP → SUBSCRIBE BAND
   =========================== */
.shop-subscribe-band {
  background: var(--brown-deep);
  padding: 4rem 2rem;
}

.shop-subscribe-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.shop-subscribe-band__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.shop-subscribe-band__sub {
  font-size: 0.9375rem;
  color: rgba(245, 239, 227, 0.55);
  line-height: 1.6;
  max-width: 480px;
}

.shop-subscribe-band__cta {
  display: inline-block;
  background: transparent;
  color: var(--amber);
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 2px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid rgba(201, 125, 61, 0.4);
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.shop-subscribe-band__cta:hover {
  background: rgba(201, 125, 61, 0.1);
  border-color: var(--amber);
  color: var(--amber-light);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lineup__grid {
    grid-template-columns: 1fr;
  }

  .lineup__item {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .lineup__item:nth-child(even) {
    padding-left: 0;
  }

  .lineup__item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(61, 36, 20, 0.1);
  }

  .lineup__item:last-child {
    border-bottom: none;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(245, 239, 227, 0.08);
    padding-left: 0;
    padding-right: 0;
  }

  .step:last-child {
    border-bottom: none;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .plans__grid {
    grid-template-columns: 1fr;
  }

  .tier-hero__inner {
    grid-template-columns: 1fr;
  }

  .tier-hero__card {
    order: -1;
  }

  .tier-details__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tier-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .welcome__steps li {
    flex-direction: column;
    gap: 0.75rem;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-subscribe-band__inner {
    flex-direction: column;
    text-align: center;
  }
}

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