/* Sattva Dairy — Premium Coming Soon */

:root {
  --navy: #0a1a32;
  --navy-mid: #122a4a;
  --navy-deep: #050e1c;
  --green: #2a6340;
  --green-light: #3d8a55;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --gold-soft: #f0dfa0;
  --gold-muted: rgba(201, 162, 39, 0.35);
  --cream: #f8f4eb;
  --cream-warm: #f3ece0;
  --cream-dark: #e8dece;
  --marble: linear-gradient(145deg, #faf7f2 0%, #f0e9dc 45%, #faf7f2 100%);
  --white: #ffffff;
  --text: #0f2238;
  --text-muted: #5c6d7e;
  --shadow-sm: 0 8px 32px rgba(10, 26, 50, 0.06);
  --shadow-md: 0 20px 60px rgba(10, 26, 50, 0.1);
  --shadow-lg: 0 40px 100px rgba(10, 26, 50, 0.14);
  --shadow-gold: 0 24px 64px rgba(201, 162, 39, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(42, 99, 64, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #fcf9f4 0%, var(--cream) 40%, var(--cream-warm) 100%);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Premium image treatment */
.img-premium {
  image-rendering: -webkit-optimize-contrast;
  filter:
    contrast(1.04)
    saturate(1.06)
    drop-shadow(0 28px 40px rgba(10, 26, 50, 0.22));
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

/* Background layers */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 26, 50, 0.04) 100%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 68%);
  top: -160px;
  right: -120px;
  animation: drift 20s ease-in-out infinite;
}

.orb-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(42, 99, 64, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: -120px;
  animation: drift 24s ease-in-out infinite reverse;
}

.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.1) 0%, transparent 70%);
  top: 45%;
  right: 10%;
  animation: drift 16s ease-in-out infinite 2s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, 16px); }
}

/* Header — glass premium bar */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(248, 244, 235, 0.82);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

.header-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%, transparent);
  opacity: 0.5;
}

.logo-wrap {
  background: var(--white);
  padding: 0.55rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coming-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-soft);
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 20px rgba(10, 26, 50, 0.15);
}

.veg-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  border: 1px solid rgba(42, 99, 64, 0.4);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
  min-height: calc(100vh - 100px);
}

.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.eyebrow-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow-wrap .eyebrow-line:last-child {
  background: linear-gradient(270deg, var(--gold), transparent);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

.title {
  font-family: var(--font-serif);
  font-size: clamp(2.85rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line.accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 40%, #a67c0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.25rem;
  font-weight: 300;
  line-height: 1.75;
}

.subtitle strong {
  color: var(--navy);
  font-weight: 500;
}

/* Premium notify form */
.notify-form {
  display: flex;
  max-width: 460px;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
  margin-bottom: 0.85rem;
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.notify-form:focus-within {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), 0 0 0 3px var(--gold-muted);
}

.notify-form input {
  flex: 1;
  border: none;
  padding: 1.05rem 1.35rem;
  font-family: inherit;
  font-size: 0.92rem;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

.notify-form input::placeholder {
  color: #8e9bab;
  font-weight: 300;
}

.notify-form input:focus {
  outline: none;
}

.notify-form button {
  position: relative;
  border: none;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-soft);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.05rem 1.65rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: filter 0.3s;
}

.notify-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.notify-form button:hover::before {
  opacity: 1;
}

.notify-form button:hover {
  filter: brightness(1.12);
}

.form-message {
  font-size: 0.875rem;
  min-height: 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--green);
}

.form-message.error {
  color: #b33a2e;
}

.tags span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  backdrop-filter: blur(8px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Hero stage — premium product pedestal */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
  pointer-events: none;
}

.stage-ring-outer {
  inset: 0;
  border-color: rgba(201, 162, 39, 0.2);
  animation: ringRotate 40s linear infinite;
}

.stage-ring-inner {
  inset: 12%;
  border-color: rgba(201, 162, 39, 0.35);
  border-style: dashed;
  animation: ringRotate 30s linear infinite reverse;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.stage-platform {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 18%;
  background: radial-gradient(ellipse, rgba(10, 26, 50, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(12px);
}

.product-glow {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.4) 0%, rgba(201, 162, 39, 0.1) 40%, transparent 68%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.9) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-jars {
  width: 100%;
  max-width: 480px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.hero-jars.img-premium {
  filter:
    contrast(1.06)
    saturate(1.08)
    drop-shadow(0 40px 56px rgba(10, 26, 50, 0.25));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Showcase strip */
.showcase {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 4rem;
  max-width: 1320px;
  margin: 0 auto;
}

.showcase-track {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.showcase-item {
  text-align: center;
}

.showcase-item figcaption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.showcase-item--hero figcaption {
  color: var(--gold);
  font-size: 1.05rem;
}

.showcase-frame {
  position: relative;
  padding: 1.75rem 1.25rem 2rem;
  background: var(--marble);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.showcase-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.showcase-frame--gold {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow-gold), var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-12px);
}

.showcase-frame--gold::before {
  opacity: 1;
  height: 4px;
}

.showcase-frame img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.showcase-item--hero .showcase-frame img {
  max-height: 260px;
}

.showcase-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.showcase-item--hero .showcase-frame:hover {
  transform: translateY(-18px);
}

.showcase-frame:hover .img-premium {
  transform: scale(1.03);
}

/* Products */
.products {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem 6rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label--light {
  color: var(--gold-bright);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.section-ornament span:not(.ornament-diamond) {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.ornament-diamond {
  width: 8px !important;
  height: 8px !important;
  background: var(--gold) !important;
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--gold-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1160px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0 0 2.25rem;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.12);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold), var(--gold-muted));
  opacity: 0.5;
  transition: opacity 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover .img-premium {
  transform: scale(1.05) translateY(-4px);
}

.product-card--featured {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(180deg, #fffefb 0%, var(--white) 100%);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.product-card--featured::before {
  opacity: 1;
  height: 4px;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  background: var(--navy);
  color: var(--gold-soft);
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.card-badge--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a67c0a 100%);
  color: var(--navy-deep);
  border: none;
}

.card-image-wrap {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.card-image-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
    var(--marble);
}

.card-image-wrap img {
  position: relative;
  z-index: 1;
  max-height: 85%;
  max-width: 88%;
  object-fit: contain;
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding: 0 1.25rem;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  padding: 0 1.5rem;
}

/* Story */
.story {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 7rem;
  max-width: 1160px;
  margin: 0 auto;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3.5rem 3.5rem 4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
  position: relative;
}

.story-inner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.story-text {
  position: relative;
  z-index: 1;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
}

.story-text p {
  font-weight: 300;
  opacity: 0.88;
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 1.02rem;
}

.values {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.values li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.08);
}

.story-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.story-frame {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.story-frame-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.story-frame img {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: block;
  border-radius: 12px;
}

.story-frame .img-premium {
  filter:
    contrast(1.05)
    saturate(1.05)
    drop-shadow(0 20px 36px rgba(0, 0, 0, 0.35));
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 95%);
}

.footer-inner {
  text-align: center;
  padding: 3rem 2rem 3.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo-wrap {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  color: var(--gold);
  opacity: 0.8;
}

.copyright {
  font-size: 0.78rem;
  opacity: 0.45;
  letter-spacing: 0.02em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* Responsive */
@media (max-width: 1024px) {
  .showcase-track {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase-frame--gold {
    transform: none;
  }

  .showcase-item--hero .showcase-frame img {
    max-height: 220px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-content { order: 2; }
  .hero-visual { order: 1; }

  .eyebrow-wrap {
    justify-content: center;
  }

  .subtitle,
  .notify-form {
    margin-left: auto;
    margin-right: auto;
  }

  .tags {
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .values {
    justify-content: center;
  }

  .header-inner {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .hero,
  .showcase,
  .products,
  .story {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .coming-badge {
    display: none;
  }

  .logo {
    height: 52px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .notify-form button {
    padding: 1rem;
  }

  .hero-stage {
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
