/* Splash Landing — Premium Brand System */

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

:root {
  --navy: #1B2A4A;
  --navy-light: #243656;
  --ocean: #2E6B8A;
  --seafoam: #A8DADC;
  --seafoam-deep: #7EB8BC;
  --sand: #EDE4D4;
  --sand-deep: #E0D4C0;
  --sage: #87A98F;
  --sage-deep: #6B8A72;
  --coral: #C97B6E;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --ink: #1B2A4A;
  --ink-muted: #5A6478;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --max-width: 1160px;
  --header-height: 76px;
  --radius: 1.25rem;
  --radius-sm: 0.875rem;
  --radius-lg: 1.75rem;
  --shadow-sm: 0 2px 12px rgba(27, 42, 74, 0.06);
  --shadow: 0 12px 40px rgba(27, 42, 74, 0.1), 0 4px 12px rgba(27, 42, 74, 0.05);
  --shadow-lg: 0 24px 64px rgba(27, 42, 74, 0.14), 0 8px 24px rgba(27, 42, 74, 0.08);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }

.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;
}

/* ─── Scroll reveal ─── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Logo ─── */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  display: block;
  height: 52px;
  width: auto;
}

.logo__img--badge {
  height: 64px;
  border-radius: 50%;
}

/* ─── Typography ─── */

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1.125rem;
}

.eyebrow--light { color: var(--seafoam); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.125rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.125rem;
  color: var(--navy);
}

.section__title--light { color: var(--white); }

.section__lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 38rem;
}

.section__header--center {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.section__header--center .section__lead {
  margin: 0 auto;
}

/* ─── Layout ─── */

.section {
  padding: clamp(5rem, 10vw, 7.5rem) clamp(1.5rem, 5vw, 3rem);
  position: relative;
}

.section--sand { background: var(--sand); }

.section--warm {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(237, 228, 212, 0.45) 100%);
}

.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, #1a3352 55%, var(--ocean) 100%);
  color: var(--white);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.28);
}

.btn--primary:hover {
  background: var(--navy-light);
  box-shadow: 0 8px 28px rgba(27, 42, 74, 0.32);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--navy);
  border: 1.5px solid rgba(27, 42, 74, 0.12);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: var(--white);
  border-color: rgba(27, 42, 74, 0.22);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn--light:hover { background: var(--seafoam); }

.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── Header ─── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(27, 42, 74, 0.06);
  box-shadow: var(--shadow-sm);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--navy); }

.nav-cta {
  color: var(--ocean) !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ─── Spec bar ─── */

.spec-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
}

.spec-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-bar img {
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

/* ─── Hero ─── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(168, 218, 220, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hero__subhead {
  max-width: 32rem;
  margin-bottom: 1rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.7;
  color: var(--ink-muted);
}

.hero__subhead em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.hero__promise {
  max-width: 30rem;
  margin-bottom: 2.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

/* ─── Product photos ─── */

.product-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sand);
}

.product-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-photo--hero {
  max-width: 540px;
  width: 100%;
}

.product-photo--hero img {
  aspect-ratio: 4 / 3;
  object-position: 58% center;
}

.product-photo--gallery figcaption,
.product-photo--patterns figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  background: var(--white);
  text-align: center;
}

/* ─── Story / Problems ─── */

.story__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: 3rem;
}

.story-reel {
  list-style: none;
}

.story-reel__beat {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 1.5rem;
  align-items: baseline;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    padding 0.3s ease;
}

.story-reel.is-visible .story-reel__beat {
  opacity: 1;
  transform: translateX(0);
}

.story-reel.is-visible .story-reel__beat:nth-child(1) { transition-delay: 0.08s; }
.story-reel.is-visible .story-reel__beat:nth-child(2) { transition-delay: 0.2s; }
.story-reel.is-visible .story-reel__beat:nth-child(3) { transition-delay: 0.32s; }
.story-reel.is-visible .story-reel__beat:nth-child(4) { transition-delay: 0.44s; }

.story-reel__beat.is-active {
  padding-left: 1rem;
  margin-left: -1rem;
  border-left: 3px solid var(--ocean);
  border-bottom-color: transparent;
}

.story-reel__beat--last.is-active {
  border-left-color: var(--coral);
}

.story-reel__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--seafoam-deep);
  transition: color 0.3s ease;
}

.story-reel__beat.is-active .story-reel__num { color: var(--ocean); }
.story-reel__beat--last.is-active .story-reel__num { color: var(--coral); }

.story-reel__text {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-muted);
  transition: color 0.3s ease;
}

.story-reel__beat.is-active .story-reel__text {
  color: var(--navy);
  font-weight: 600;
}

.story-reel__beat--last.is-active .story-reel__text {
  color: var(--navy);
}

.story__pivot {
  padding: 1.75rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--ocean);
  box-shadow: var(--shadow-sm);
}

.story__pivot p {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 52rem;
}

.story__pivot strong {
  color: var(--navy);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .story-reel__beat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Solution bridge ─── */

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.solution__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.solution__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 58% center;
}

.solution__body {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 30rem;
}

/* ─── Benefits ─── */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(27, 42, 74, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  background: rgba(168, 218, 220, 0.35);
  border-radius: 0.75rem;
  color: var(--ocean);
}

.benefit-card__icon img {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.benefit-card p {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ─── Play cards ─── */

.play__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
}

.play-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.play-card__photo {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--sand-deep);
}

.play-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.88) 0%, transparent 100%);
  color: var(--white);
}

.play-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.5rem;
}

.play-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.play-card__hint {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.375rem;
}

/* ─── Design board ─── */

.design__intro {
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.design-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.design-board__group {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 42, 74, 0.06);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.design-board__group--edge {
  grid-column: 1 / -1;
}

.design-board__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1.25rem;
}

.pattern-swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.pattern-swatch {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(27, 42, 74, 0.08);
}

.pattern-swatch__name {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.5rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
}

.pattern-swatch--botanical {
  background-color: var(--sage);
  background-image:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,0.35) 0 12%, transparent 13%),
    radial-gradient(circle at 65% 55%, rgba(255,255,255,0.25) 0 10%, transparent 11%),
    radial-gradient(circle at 45% 70%, rgba(27,42,74,0.08) 0 8%, transparent 9%),
    radial-gradient(circle at 75% 30%, rgba(255,255,255,0.2) 0 14%, transparent 15%);
}

.pattern-swatch--waves {
  background-color: var(--ocean);
  background-image: repeating-linear-gradient(
    170deg,
    transparent,
    transparent 8px,
    rgba(168, 218, 220, 0.45) 8px,
    rgba(168, 218, 220, 0.45) 14px
  );
}

.pattern-swatch--terrazzo {
  background-color: var(--sand);
  background-image:
    radial-gradient(circle at 20% 30%, var(--coral) 0 3px, transparent 4px),
    radial-gradient(circle at 55% 20%, var(--sage) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 60%, var(--ocean) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 75%, var(--coral) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 85%, var(--sage-deep) 0 5px, transparent 6px);
}

.pattern-swatch--geometric {
  background-color: var(--cream);
  background-image:
    linear-gradient(45deg, rgba(46, 107, 138, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(46, 107, 138, 0.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(46, 107, 138, 0.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(46, 107, 138, 0.12) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

.shape-options {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.shape-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.shape-option__icon {
  width: 56px;
  height: 56px;
  color: var(--ocean);
}

.shape-option__name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.shape-option__hint {
  font-size: 0.6875rem;
  color: var(--ink-muted);
  margin-top: -0.25rem;
}

.edge-diagram {
  max-width: 420px;
  margin: 0 auto 1rem;
}

.edge-diagram svg {
  width: 100%;
  height: auto;
}

.design-board__edge-copy {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 28rem;
  margin: 0 auto;
}

.design__specs {
  padding-top: 0;
}

.mat__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.mat__specs div {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.mat__specs dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.375rem;
}

.mat__specs dd {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.mat__honest {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding-left: 1.125rem;
  border-left: 3px solid var(--seafoam);
  line-height: 1.6;
}

/* ─── Waitlist ─── */

.waitlist__inner {
  max-width: 36rem;
  text-align: center;
}

.waitlist__icon {
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.waitlist__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.waitlist__sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.waitlist__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.waitlist__form input[type="email"] {
  flex: 1 1 260px;
  min-width: 0;
  padding: 1rem 1.375rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  outline: none;
}

.waitlist__form input:focus {
  box-shadow: 0 0 0 3px rgba(168, 218, 220, 0.5);
}

.form-status {
  width: 100%;
  font-size: 0.9375rem;
  min-height: 1.25rem;
}

.form-status.is-success { color: var(--seafoam); }
.form-status.is-error { color: #ffb4a8; }

.waitlist__fine {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168, 218, 220, 0.7);
}

/* ─── Footer ─── */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem clamp(1.5rem, 5vw, 3rem) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
  margin-top: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 218, 220, 0.6);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer__contact a {
  color: var(--seafoam);
  text-decoration: none;
}

.footer__domain {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.footer__bottom {
  padding-top: 1.75rem;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Responsive ─── */

@media (max-width: 1100px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .hero,
  .story__layout,
  .solution__grid,
  .design-board,
  .play__grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .shape-options {
    flex-direction: row;
  }

  .pattern-swatches {
    grid-template-columns: repeat(4, 1fr);
  }

  .pattern-swatch {
    aspect-ratio: 4 / 3;
  }

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

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero__visual { order: -1; }

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

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

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

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-height);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 1.125rem; }
}
