/* ============================================
   FOR THE GRATEFUL — Design System
   V3 Bold Editorial / Retro Palette
   March 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Bitter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Retro Palette */
  --red: #e9311a;
  --red-dark: #c42a15;
  --orange: #ed6335;
  --peach: #ecae7d;
  --sage: #8db4ad;
  --teal: #026c80;
  --teal-dark: #025a6b;
  --navy: #064c72;

  /* Neutrals */
  --cream: #F2ECE0;
  --cream-light: #F7F3EB;
  --cream-dark: #E5DDD0;
  --black: #1A1A1A;
  --charcoal: #2D2D2D;
  --dark-gray: #4A4A4A;
  --mid-gray: #999;
  --light-gray: #ccc;

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-editorial: 'Bitter', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 100px;

  /* Layout */
  --max-width: 1200px;
  --gutter: 40px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ── UTILITIES ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── TYPOGRAPHY ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.heading-lg {
  font-family: var(--font-editorial);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
}

.heading-md {
  font-family: var(--font-editorial);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  line-height: 1.7;
}

.body-md {
  font-size: 0.95rem;
  line-height: 1.7;
}

.body-sm {
  font-size: 0.85rem;
  line-height: 1.6;
}

.meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover { background: var(--red-dark); }

.btn-black {
  background: var(--black);
  color: var(--cream);
}
.btn-black:hover { background: var(--charcoal); }

.btn-teal {
  background: var(--teal);
  color: white;
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-orange {
  background: var(--orange);
  color: white;
}
.btn-orange:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--cream);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(242,236,224,0.3);
}
.btn-outline-cream:hover {
  background: rgba(242,236,224,0.1);
  border-color: rgba(242,236,224,0.6);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.7rem;
}

/* ── PALETTE BAR ── */
.palette-bar {
  display: flex;
  height: 5px;
}
.palette-bar div { flex: 1; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-right a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-gray);
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--black); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  background: var(--black);
  color: var(--cream);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker-sep {
  color: var(--red);
  margin: 0 30px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}

.hero-ghost {
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 16rem);
  font-weight: 900;
  color: var(--black);
  opacity: 0.04;
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 0.85;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

.hero-meta {
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 28px;
}
.hero-title .line1 {
  display: block;
  color: var(--black);
}
.hero-title .line2 {
  display: block;
  color: var(--red);
  font-style: italic;
  margin-left: clamp(20px, 4vw, 50px);
}

.hero-desc {
  color: var(--dark-gray);
  max-width: 400px;
  margin-bottom: 35px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img {
  width: 88%;
  height: 82%;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* B&W image placeholder styling */
.hero-img .placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.12);
  text-align: center;
  line-height: 2;
}

/* Decorative color shapes */
.hero-shape-1 {
  position: absolute;
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  background: var(--orange);
  border-radius: 50%;
  bottom: 100px;
  left: -40px;
  opacity: 0.85;
  z-index: 3;
}

.hero-shape-2 {
  position: absolute;
  width: clamp(60px, 8vw, 100px);
  height: clamp(100px, 12vw, 160px);
  background: var(--teal);
  border-radius: 999px 999px 0 0;
  top: 60px;
  right: -15px;
  opacity: 0.6;
  z-index: 3;
}

/* ============================================
   SECTIONS — General
   ============================================ */
.section {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  position: relative;
  overflow: hidden;
}

.section-ghost {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  color: var(--black);
  opacity: 0.03;
  position: absolute;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}

.section-meta {
  color: var(--teal);
  margin-bottom: 10px;
}

.section-header {
  margin-bottom: 40px;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--cream-light); }
.section--black { background: var(--black); color: var(--cream); }
.section--navy { background: var(--navy); color: var(--cream); }

/* ============================================
   HOW IT WORKS — Editorial split
   ============================================ */
.how-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.how-visual {
  background: var(--cream);
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.how-vertical {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: var(--black);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  opacity: 0.06;
  position: absolute;
  left: 25px;
}

.how-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-left: 50px;
  width: 100%;
}

.how-img {
  background: var(--charcoal);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.how-img:nth-child(2) {
  margin-top: 30px;
}
.how-img .color-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  bottom: -8px;
  right: -8px;
}

.how-content {
  background: var(--cream-light);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.accordion-item:first-child { border-top: 1px solid var(--cream-dark); }
.accordion-item:hover { opacity: 0.7; }

.accordion-num {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 14px;
}

.accordion-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--black);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--mid-gray);
  font-weight: 300;
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body-inner {
  padding: 0 0 18px;
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-item.active + .accordion-body {
  max-height: 200px;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-section {
  position: relative;
}

.products-section .section-ghost {
  bottom: -20px;
  right: -20px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(26,26,26,0.08);
}

.product-card__img {
  aspect-ratio: 1;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  z-index: 2;
}

.product-card__type {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.product-card__service-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  z-index: 2;
  opacity: 0.8;
}

.product-card__info {
  padding: 16px;
}

.product-card__vendor {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 3px;
}

.product-card__name {
  font-family: var(--font-editorial);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card__price {
  font-weight: 700;
  color: var(--red);
  font-size: 0.92rem;
}

.product-card__actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.product-card__actions .btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 0.65rem;
}

/* ============================================
   QUOTE BANNER
   ============================================ */
.quote-section {
  padding: clamp(70px, 10vw, 120px) var(--gutter);
  text-align: center;
  position: relative;
}

.quote-ghost {
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 900;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.quote-section cite {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--peach);
  position: relative;
  z-index: 1;
}

/* ============================================
   GRATITUDE BOARD
   ============================================ */
.gratitude-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.gratitude-header__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5px;
}

.grat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grat-card {
  background: var(--cream);
  padding: 24px;
  border-left: 3px solid var(--red);
  transition: transform 0.2s;
}
.grat-card:hover { transform: translateY(-2px); }

.grat-card:nth-child(2) { border-color: var(--orange); margin-top: 25px; }
.grat-card:nth-child(3) { border-color: var(--teal); }
.grat-card:nth-child(4) { border-color: var(--sage); margin-top: -10px; }
.grat-card:nth-child(5) { border-color: var(--navy); }
.grat-card:nth-child(6) { border-color: var(--peach); margin-top: -10px; }

.grat-card__quote {
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 12px;
}

.grat-card__author {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
}

.grat-card__date {
  font-size: 0.62rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

/* Gratitude card actions (like + comment) */
.grat-card__actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}

.grat-action {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--mid-gray);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.grat-action:hover {
  background: var(--cream-dark);
  color: var(--charcoal);
}
.grat-action__icon {
  font-size: 1rem;
  line-height: 1;
}
.grat-action__count {
  font-weight: 600;
}
.grat-action--like.liked {
  color: var(--red);
}
.grat-action--like.liked .grat-action__icon {
  transform: scale(1.15);
}

@keyframes likePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Comments section */
.grat-card__comments {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}

.grat-comments-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.grat-comment {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.78rem;
  line-height: 1.4;
}
.grat-comment:last-child {
  border-bottom: none;
}
.grat-comment__author {
  font-weight: 700;
  color: var(--teal);
  margin-right: 6px;
}
.grat-comment__text {
  color: var(--charcoal);
}
.grat-comment__time {
  display: block;
  font-size: 0.62rem;
  color: var(--mid-gray);
  margin-top: 2px;
}
.grat-comment--empty {
  font-size: 0.75rem;
  color: var(--mid-gray);
  font-style: italic;
  padding: 8px 0;
}

/* Comment input form */
.grat-comment-form {
  display: flex;
  gap: 6px;
  align-items: center;
}
.grat-comment-input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--charcoal);
  border-radius: 0;
}
.grat-comment-input:focus {
  outline: none;
  border-color: var(--teal);
}
.grat-comment-input::placeholder {
  color: var(--mid-gray);
}
.grat-comment-submit {
  background: var(--teal);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.grat-comment-submit:hover {
  background: var(--navy);
}

/* Loading state */
.grat-loading {
  grid-column: 1 / -1;
}

/* Gratitude form */
.grat-form {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  padding: 30px;
  margin-top: 20px;
}

.grat-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px;
  border: 2px solid var(--cream-dark);
  background: var(--cream-light);
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  color: var(--charcoal);
  resize: vertical;
  margin-bottom: 12px;
}
.grat-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.grat-form input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--cream-dark);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.grat-form input:focus {
  outline: none;
  border-color: var(--teal);
}

/* ============================================
   MISSION / GIVE BACK
   ============================================ */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.mission-content {
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-visual {
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mission-arch {
  position: absolute;
  border-radius: 999px 999px 0 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.stat-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--peach);
}

.stat__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-top: 3px;
}

/* ============================================
   ARTISTS
   ============================================ */
.artist-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
}

.artist-card {
  overflow: hidden;
  transition: transform 0.25s;
}
.artist-card:hover { transform: translateY(-3px); }
.artist-card:nth-child(2) { margin-top: 40px; }

.artist-card__photo {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.artist-card:nth-child(1) .artist-card__photo { aspect-ratio: 3/4; }
.artist-card:nth-child(2) .artist-card__photo { aspect-ratio: 1; }
.artist-card:nth-child(3) .artist-card__photo { aspect-ratio: 4/5; }

.artist-card__bar { height: 4px; }
.artist-card:nth-child(1) .artist-card__bar { background: var(--red); }
.artist-card:nth-child(2) .artist-card__bar { background: var(--teal); }
.artist-card:nth-child(3) .artist-card__bar { background: var(--orange); }

.artist-card__info { padding: 18px 0; }

.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.artist-card__medium {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.artist-card__bio {
  font-size: 0.82rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* ============================================
   VENDOR CTA
   ============================================ */
.vendor-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
  overflow: hidden;
}

.vendor-visual {
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vendor-visual__ghost {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: white;
  opacity: 0.04;
  writing-mode: vertical-lr;
  position: absolute;
  right: 30px;
}

.vendor-circle {
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.vendor-content {
  background: var(--black);
  color: var(--cream);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vendor-list {
  margin-bottom: 25px;
}
.vendor-list li {
  font-size: 0.85rem;
  padding: 7px 0;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vendor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Vendor Interest Form */
.vendor-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.vendor-form__field {
  margin-bottom: 14px;
}
.vendor-form__field label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 5px;
  font-weight: 600;
}
.vendor-form__field input,
.vendor-form__field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.vendor-form__field input::placeholder,
.vendor-form__field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.vendor-form__field input:focus,
.vendor-form__field textarea:focus {
  outline: none;
  border-color: var(--peach);
}
.vendor-form__field textarea {
  resize: vertical;
  min-height: 70px;
}

/* ============================================
   SIGNUP / INTEREST FORMS
   ============================================ */
.signup-form {
  max-width: 500px;
}

.signup-form .form-group {
  margin-bottom: 16px;
}

.signup-form label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.signup-form input,
.signup-form textarea,
.signup-form select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--cream-dark);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.signup-form input:focus,
.signup-form textarea:focus,
.signup-form select:focus {
  outline: none;
  border-color: var(--teal);
}

.signup-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--black);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--black);
}
.newsletter-form input::placeholder { opacity: 0.35; }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--teal);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 55px var(--gutter) 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.78rem;
  opacity: 0.4;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--red);
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col h4 {
  font-family: var(--font-editorial);
  font-size: 0.82rem;
  margin-bottom: 14px;
  color: var(--peach);
}

.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 0.72rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 0.8; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(242,236,224,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  opacity: 0.25;
}

/* ============================================
   PAGE-SPECIFIC COMPONENTS
   ============================================ */

/* Vision / About grid */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Roadmap */
.roadmap {
  max-width: 650px;
  margin: 0 auto;
}
.roadmap-item {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--cream-dark);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.roadmap-item--active {
  opacity: 1;
}
.roadmap-item:hover {
  opacity: 1;
}
.roadmap-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.roadmap-content {
  flex: 1;
}

/* Creator type grid (For Artists) */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.creator-type {
  text-align: center;
  padding: 30px 20px;
  background: var(--cream-light);
  border-bottom: 3px solid var(--cream-dark);
  transition: border-color 0.3s, transform 0.2s;
}
.creator-type:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}
.creator-type__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 24px;
  border-left: 3px solid var(--cream-dark);
}
.benefit-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 30px;
  background: var(--cream-light);
  position: relative;
}
.value-card__accent {
  width: 40px;
  height: 3px;
  margin-bottom: 16px;
}

/* Shop filters */
.shop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-filter {
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--cream-dark);
  background: none;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.2s;
}
.shop-filter:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.shop-filter.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

/* Artist application form */
.artist-application .vendor-form__field label {
  color: var(--cream);
}
.artist-application .vendor-form__field input,
.artist-application .vendor-form__field textarea,
.artist-application .vendor-form__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.artist-application .vendor-form__field select {
  appearance: none;
  cursor: pointer;
}
.artist-application .vendor-form__field input::placeholder,
.artist-application .vendor-form__field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.artist-application .vendor-form__field input:focus,
.artist-application .vendor-form__field textarea:focus,
.artist-application .vendor-form__field select:focus {
  outline: none;
  border-color: var(--peach);
}

/* Section black bg */
.section--black {
  background: var(--black);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ─── TABLET (768px and below) ─── */
@media (max-width: 768px) {
  :root { --gutter: 24px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 20px var(--gutter);
    gap: 14px;
  }

  .hero-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 300px; }
  .hero-shape-1, .hero-shape-2 { display: none; }
  .hero-content { padding: 40px 0 20px; }

  .how-section { grid-template-columns: 1fr; }
  .how-visual { display: none; }

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

  .gratitude-header { grid-template-columns: 1fr; }
  .grat-grid { grid-template-columns: 1fr; }
  .grat-card:nth-child(n) { margin-top: 0; }

  .mission-layout { grid-template-columns: 1fr; }
  .mission-visual { min-height: 200px; }

  .artist-grid { grid-template-columns: 1fr; }
  .artist-card:nth-child(2) { margin-top: 0; }

  .vendor-split { grid-template-columns: 1fr; }
  .vendor-visual { min-height: 200px; }
  .vendor-content { padding: 40px var(--gutter); }

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

  .newsletter-form { flex-direction: column; }

  .vision-grid { grid-template-columns: 1fr; gap: 30px; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .display-xl { font-size: clamp(2.5rem, 8vw, 4rem); }
  .display-lg { font-size: clamp(2rem, 7vw, 3rem); }
  .display-md { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .section-ghost { font-size: clamp(4rem, 10vw, 8rem); }
  .hero-ghost { font-size: clamp(5rem, 12vw, 10rem); }
  .quote-ghost { font-size: clamp(8rem, 16vw, 14rem); }
}

/* ─── PHONE (480px and below) ─── */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .product-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .hero-visual { min-height: 220px; }
  .stat-row { flex-direction: column; gap: 15px; }
  .creator-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .shop-filters { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .vendor-content { padding: 30px var(--gutter); }

  .display-xl { font-size: 2.2rem; }
  .display-lg { font-size: 1.8rem; }
  .display-md { font-size: 1.5rem; }
}
