/* ============================================================
   CHAND CHAI — stylesheet
   Aesthetic: warm editorial, hand-touched, small-batch artisan
   Type: Fraunces (display) + DM Sans (body) + DM Mono (labels)
   ============================================================ */

:root {
  /* Brand palette — sampled directly from logo */
  --cream:        #FFDE7D;
  --cream-soft:   #FFE9A3;
  --cream-paper:  #FFF5D6;
  --cream-deep:   #F4C95D;

  --ink:          #1A0F0A;        /* warm near-black (spice/coffee) */
  --ink-soft:     #2a1810;
  --ink-mute:     rgba(26, 15, 10, 0.62);
  --ink-faint:    rgba(26, 15, 10, 0.20);

  --purple:       #8500FE;
  --purple-mid:   #A93AEF;
  --magenta:      #C70FED;

  --cardamom:     #4A5D3C;        /* green spice accent */

  /* Type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "DM Mono", ui-monospace, "Courier New", monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 16px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle grain for warmth */
  background-image:
    radial-gradient(rgba(26,15,10,0.045) 1px, transparent 1px),
    radial-gradient(rgba(26,15,10,0.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ----- Typography defaults ----- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
h1 { font-size: clamp(3rem, 9vw, 7rem); }
h2 { font-size: clamp(2.25rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; letter-spacing: -0.01em; line-height: 1.2; }
p  { margin: 0 0 1em; }

.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
  display: inline-block;
}
.kicker-dark { color: rgba(255, 222, 125, 0.65); }

/* ----- Top ticker ----- */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,222,125,0.1);
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-track span { flex-shrink: 0; }
.ticker .dot { color: var(--magenta); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- Nav ----- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  position: sticky;
  top: 0;
  background: rgba(255, 222, 125, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid var(--ink-faint);
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a.is-current::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%;
  height: 2px;
  background: var(--magenta);
}
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  transition: transform 0.15s, background 0.2s;
}
.nav-cta:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 -2px var(--ink); }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--purple); border-color: var(--purple); box-shadow: 0 6px 0 -2px var(--magenta); }
.btn-ghost { background: transparent; }
.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-light:hover { background: white; border-color: white; }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--ink); box-shadow: 0 6px 0 -2px var(--magenta); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}
.hero-text h1 {
  margin: 0.5rem 0 1.5rem;
}
.hero-text h1 .line {
  display: block;
}
.hero-text h1 .italic {
  color: var(--purple);
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 1.5rem;
  position: relative;
}
.hero-text h1 .italic::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0.7em;
  height: 2px;
  background: var(--purple);
  transform: translateY(-50%);
}
.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 50ch;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.lede em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--purple);
  font-size: 1.05em;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cup-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(26,15,10,0.15));
}
.steam {
  stroke-dasharray: 8 6;
  animation: steam-rise 4s ease-in-out infinite;
}
.steam.s1 { animation-delay: 0s; }
.steam.s2 { animation-delay: 0.7s; }
.steam.s3 { animation-delay: 1.4s; }
@keyframes steam-rise {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-6px); }
}
.sparkle {
  position: absolute;
  color: var(--purple);
  font-size: 1.5rem;
  animation: twinkle 2.5s ease-in-out infinite;
}
.sp1 { top: 15%; right: 10%; animation-delay: 0s; }
.sp2 { bottom: 25%; left: 5%; animation-delay: 0.8s; color: var(--magenta); }
.sp3 { top: 50%; right: 0%; animation-delay: 1.6s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.2); }
}

/* Spice marquee under hero */
.hero-marquee {
  margin-top: 3rem;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  color: var(--ink-soft);
}
.marquee-track span:not(:nth-child(even)) { color: var(--purple); }
.marquee-track span:nth-child(even) { color: var(--ink-faint); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1rem; min-height: auto; padding-bottom: 2rem; }
  .hero-art { order: -1; max-width: 240px; margin: 0 auto; }
  .hero-text h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-text h1 .italic { padding-left: 0.8rem; }
  .hero-text h1 .italic::before { width: 0.4em; height: 1.5px; }
  .lede { font-size: 1.05rem; margin-bottom: 2rem; }
  .hero-marquee { margin-top: 2rem; }
  .marquee-track { font-size: 1.2rem; }
}

/* ============================================================
   EVENT SPOTLIGHT — dark band
   ============================================================ */
.event {
  background: var(--ink);
  color: var(--cream);
  margin-top: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.event::before, .event::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
}
.event::before {
  background: var(--purple);
  top: -200px; left: -200px;
}
.event::after {
  background: var(--magenta);
  bottom: -200px; right: -200px;
}
.event-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  position: relative;
  z-index: 1;
}
.event-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.event-title { color: var(--cream); }
.underline-wave {
  background-image: linear-gradient(90deg, var(--magenta), var(--purple));
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: 0 100%;
  padding-bottom: 0.2rem;
}
.event-meta {
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  color: var(--cream);
  opacity: 0.9;
}
.event-meta strong {
  color: var(--magenta);
  font-weight: 500;
}
.event-body {
  max-width: 50ch;
  margin: 1.5rem 0 1.2rem;
  color: rgba(255, 222, 125, 0.85);
  line-height: 1.65;
}
.event-body em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
}
.event-fineprint {
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(255, 222, 125, 0.55);
  margin: 1.5rem 0 2.2rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(255, 222, 125, 0.25);
}
.event-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stacked event card */
.event-card-stack {
  position: relative;
  display: flex;
  justify-content: center;
}
.event-card {
  width: 280px;
  background: var(--cream);
  color: var(--ink);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.card-back, .card-mid {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) rotate(-7deg);
  background: var(--purple);
  height: 100%;
  z-index: 0;
}
.card-mid {
  transform: translateX(-50%) rotate(4deg);
  background: var(--magenta);
}
.card-front {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.card-front:hover {
  transform: rotate(0deg) translateY(-4px);
}
.card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.card-day {
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.1em 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.card-month {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin: 0;
  color: var(--ink);
}
.event-card hr {
  border: none;
  border-top: 1px dashed var(--ink-faint);
  margin: 1.2rem 0;
}
.card-line {
  font-size: 0.78rem;
  margin: 0.4em 0;
  text-transform: uppercase;
}
.card-line-accent {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.1rem;
  color: var(--purple);
  margin-top: 0.8em;
}

@media (max-width: 800px) {
  .event-grid { grid-template-columns: 1fr; gap: 3rem; }
  .event-card-stack { margin-top: 1rem; }
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: var(--cream-paper);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  border-bottom: 1px solid var(--ink-faint);
}
.mission-inner { max-width: var(--maxw); margin: 0 auto; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}
.mission-quote {
  position: relative;
  padding: 2rem 0 0;
}
.mission-quote .qmark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.8;
  color: var(--purple);
  position: absolute;
  top: -1rem; left: -0.3rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  opacity: 0.7;
}
.mission-quote p {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  position: relative;
  z-index: 1;
  margin-bottom: 1em;
}
.mission-quote em {
  font-style: italic;
  color: var(--purple);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mission-attribution {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.mission-cards {
  display: grid;
  gap: 0;
}
.m-card {
  padding: 2rem 0;
  border-top: 1px solid var(--ink-faint);
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: padding-left 0.3s ease;
}
.m-card:last-child { border-bottom: 1px solid var(--ink-faint); }
.m-card:hover { padding-left: 0.8rem; }
.m-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--purple);
  grid-row: 1 / span 2;
}
.m-card h3 { margin-bottom: 0.4rem; grid-column: 2; }
.m-card p { color: var(--ink-mute); margin: 0; grid-column: 2; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--purple);
  border-bottom: 1.5px solid var(--purple);
  padding-bottom: 4px;
  transition: gap 0.2s, color 0.2s;
}
.read-more:hover { gap: 0.9rem; color: var(--magenta); border-color: var(--magenta); }

@media (max-width: 800px) {
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-quote p { font-size: 1.25rem; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--cream);
}
.how-inner { max-width: var(--maxw); margin: 0 auto; }
.how-inner h2 { margin-bottom: 3rem; max-width: 16ch; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.steps li {
  padding: 2rem 1.5rem 2rem 0;
  border-top: 1px solid var(--ink);
  position: relative;
}
.steps li:not(:last-child) {
  border-right: 1px dashed var(--ink-faint);
  margin-right: 1.5rem;
}
.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-style: italic;
  line-height: 1;
  color: var(--purple);
  margin-bottom: 1.5rem;
}
.steps h3 { margin-bottom: 0.6rem; }
.steps p { color: var(--ink-mute); margin: 0; }

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
  .steps li:not(:last-child) { border-right: none; margin-right: 0; }
}

/* ============================================================
   SIGNUP
   ============================================================ */
.signup {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--purple), transparent 60%);
  top: -300px; right: -300px;
  opacity: 0.4;
  filter: blur(60px);
}
.signup-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.signup h2 { color: var(--cream); margin-bottom: 1.5rem; }
.signup-text p { color: rgba(255, 222, 125, 0.75); max-width: 38ch; }
.signup .italic { color: var(--magenta); }

.signup-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(255, 222, 125, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 222, 125, 0.15);
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field span {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 222, 125, 0.7);
}
.field span em { color: var(--magenta); font-style: italic; text-transform: none; letter-spacing: 0; font-family: var(--serif); }
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 222, 125, 0.3);
  padding: 0.6rem 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 222, 125, 0.4);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--magenta);
}
.field textarea { resize: vertical; }

.signup-form .btn,
.contact-form .btn {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  margin-top: 0.6rem;
}
.signup-form .btn:hover,
.contact-form .btn:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: white;
  box-shadow: 0 6px 0 -2px var(--purple);
}
.form-note {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 222, 125, 0.6);
  min-height: 1em;
}
.form-note.success { color: var(--cream); }
.form-note.error { color: #ffb3a3; text-transform: none; letter-spacing: 0; font-family: var(--sans); }

@media (max-width: 800px) {
  .signup-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT page
   ============================================================ */
.about-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  text-align: left;
}
.about-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  margin-bottom: 2rem;
}
.about-hero h1 .italic {
  color: var(--purple);
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-lede {
  font-size: 1.25rem;
  max-width: 55ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.story {
  background: var(--cream-paper);
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}
.story-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.story-block {
  border-top: 1px solid var(--ink-faint);
  padding-top: 2.5rem;
  position: relative;
}
.story-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin: 0 0 1rem;
}
.story-block h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.story-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.story-block em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--purple);
}
.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  font-size: 1.3em;
  font-weight: 500;
}

/* Values */
.values {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.values-inner { max-width: var(--maxw); margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
}
.v-card {
  padding: 2.5rem 2rem 2.5rem 0;
  border-top: 1px solid rgba(255, 222, 125, 0.2);
  position: relative;
}
.v-card:not(:last-child) { border-right: 1px solid rgba(255, 222, 125, 0.12); padding-right: 2rem; }
.v-card:not(:first-child) { padding-left: 2rem; }
.v-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--magenta);
  margin-bottom: 1rem;
}
.v-card h3 { color: var(--cream); margin-bottom: 0.6rem; }
.v-card p { color: rgba(255, 222, 125, 0.75); margin: 0; }

@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
  .v-card { border-right: none !important; padding: 2rem 0 !important; }
}

/* Contact */
.contact {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1.5rem; }
.contact-text > p { color: var(--ink-soft); max-width: 42ch; font-size: 1.05rem; }
.contact-text .italic {
  color: var(--purple);
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--ink-faint);
}
.contact-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}

/* On about page the contact form is on light bg — invert it */
.contact .contact-form {
  background: var(--ink);
  border-color: rgba(255, 222, 125, 0.1);
}
@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 1.5rem;
  border-top: 1px solid rgba(255, 222, 125, 0.1);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 222, 125, 0.12);
}
.footer-brand { }
.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 222, 125, 0.6);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-h {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--magenta);
  margin: 0 0 1rem;
}
.footer-cols p, .footer-cols li {
  font-size: 0.92rem;
  color: rgba(255, 222, 125, 0.8);
  line-height: 1.5;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-cols a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.footer-cols a:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}
.footer-fine span {
  display: block;
  margin-top: 0.6rem;
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: rgba(255, 222, 125, 0.6);
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 222, 125, 0.5);
}
.footer-stars { color: var(--magenta); letter-spacing: 0.4em; }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
