/* ───────────────────────────────────────────────
   CloverHill3D · Landing Page
   Editorial-refined with playful brand moments
   ─────────────────────────────────────────────── */

:root {
  --cream: #fdfaf2;
  --cream-2: #f6efde;
  --cream-3: #ede4cd;
  --ink: #2a241c;
  --ink-soft: #4a4034;
  --ink-mute: #786b58;
  --sage: #7a8c5e;
  --sage-deep: #5a6b42;
  --gold: #c8973a;
  --gold-deep: #a87820;

  /* brand accents */
  --grumpy-blue: #a8c5e0;
  --grumpy-pink: #f0a8c0;
  --grumpy-navy: #2d3e5c;

  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Inter', system-ui, sans-serif;
  --pop: 'Rubik', 'Helvetica Neue', sans-serif;

  --max: 1280px;
  --r: 14px;
  --r-lg: 22px;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

/* ─── Subtle paper grain everywhere ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.14  0 0 0 0 0.10  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ─────────── NAV ─────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 242, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 36, 28, 0.08);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__mark { display: flex; }
.nav__wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__three {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 36px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}

.hero__grain {
  position: absolute;
  top: -60px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 140, 94, 0.18), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(122, 140, 94, 0.08);
  border: 1px solid rgba(122, 140, 94, 0.18);
  border-radius: 999px;
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(122, 140, 94, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(122, 140, 94, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(122, 140, 94, 0.05); }
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 300;
}

.hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 36, 28, 0.18);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(42, 36, 28, 0.2);
}
.btn--ghost:hover {
  background: var(--cream-2);
  border-color: var(--ink);
}
.btn--large {
  padding: 20px 36px;
  font-size: 17px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.hero__meta-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.hero__meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(42, 36, 28, 0.15);
}

/* hero visual */
.hero__visual {
  position: relative;
  height: 540px;
  z-index: 2;
}
.hero__card {
  position: absolute;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px -20px rgba(42, 36, 28, 0.18),
              0 1px 0 rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(42, 36, 28, 0.06);
}
.hero__card--1 {
  top: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 320px;
  height: 380px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero__card-bg {
  position: absolute;
  inset: 24px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(122, 140, 94, 0.12), transparent 60%),
    var(--cream-2);
  border-radius: var(--r);
}
.hero__svg {
  position: relative;
  width: 88%;
  height: 88%;
  z-index: 2;
}
.hero__card--2 {
  top: 60px;
  right: -10px;
  transform: rotate(6deg);
  padding: 14px 22px;
  animation: float 7s ease-in-out infinite reverse;
}
.hero__card--3 {
  bottom: 50px;
  left: -20px;
  transform: rotate(-5deg);
  padding: 14px 22px;
  animation: float 8s ease-in-out infinite;
}
.hero__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.hero__tag--alt {
  font-family: var(--body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) rotate(-3deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-3deg) translateY(-12px); }
}
.hero__card--2 {
  animation-name: float-2;
}
@keyframes float-2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-10px); }
}
.hero__card--3 {
  animation-name: float-3;
}
@keyframes float-3 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-8px); }
}

/* ─────────── MARQUEE ─────────── */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.marquee__sep { color: var(--gold); font-size: 18px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────── COLLECTIONS ─────────── */
.collections {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 36px;
  position: relative;
  z-index: 2;
}

.section-head { margin-bottom: 80px; max-width: 720px; }
.section-head--center { margin: 0 auto 80px; text-align: center; }
.section-head__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.section-head__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head__sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 560px;
}

/* collection blocks */
.collection {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid rgba(42, 36, 28, 0.1);
}
.collection:first-of-type { border-top: none; padding-top: 20px; }
.collection--reverse .collection__visual { order: 2; }

.collection__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GRUMPY BEAR card */
.collection--grumpy .collection__visual {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 100%);
  border: 1px solid rgba(42, 36, 28, 0.06);
}
.collection__paw {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.7;
}
.collection__paw--blue { top: 30px; left: 30px; transform: rotate(-15deg); }
.collection__paw--pink { bottom: 30px; right: 30px; transform: rotate(20deg); }
.collection__logo--grumpy {
  width: 75%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(45, 62, 92, 0.18));
  position: relative;
  z-index: 2;
}

/* SIMPLE JOY card */
.collection--joy .collection__visual {
  background: var(--cream-2);
  border: 1px solid rgba(122, 140, 94, 0.18);
}
.collection__joy-frame {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(122, 140, 94, 0.3);
  border-radius: 12px;
}
.collection__joy-frame::before,
.collection__joy-frame::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--cream-2);
  border: 1px solid rgba(122, 140, 94, 0.3);
  border-radius: 50%;
}
.collection__joy-frame::before { top: -6px; left: 50%; transform: translateX(-50%); }
.collection__joy-frame::after { bottom: -6px; left: 50%; transform: translateX(-50%); }
.collection__logo--joy {
  width: 75%;
  max-width: 440px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* AWA card */
.collection--awa .collection__visual {
  background: linear-gradient(160deg, #1a1410 0%, #2a241c 100%);
  border: 1px solid rgba(232, 162, 58, 0.2);
  position: relative;
}
.awa__burst {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.awa__chip {
  position: absolute;
  font-family: var(--pop);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 8px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.awa__chip--1 {
  background: var(--gold);
  color: #1a1410;
  top: 20%;
  left: 12%;
  transform: rotate(-8deg);
}
.awa__chip--2 {
  background: var(--cream);
  color: var(--ink);
  top: 50%;
  right: 14%;
  transform: rotate(6deg);
}
.awa__chip--3 {
  background: #c14a3a;
  color: var(--cream);
  bottom: 18%;
  left: 25%;
  transform: rotate(-4deg);
  font-size: 20px;
}
.awa__center {
  position: absolute;
  z-index: 1;
  font-family: var(--display);
  font-style: italic;
  font-size: 120px;
  color: rgba(232, 162, 58, 0.15);
  font-weight: 300;
}

/* AWARENESS card */
.collection--awareness .collection__visual {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  border: 1px solid rgba(42, 36, 28, 0.08);
}
.awareness__svg { width: 60%; max-width: 320px; height: auto; filter: drop-shadow(0 12px 28px rgba(42, 36, 28, 0.18)); }

.collection__copy { padding: 8px 0; }
.collection__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 14px;
}
.collection__title {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.collection__lede {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}
.collection__list {
  list-style: none;
  margin-bottom: 32px;
}
.collection__list li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 36, 28, 0.08);
  display: flex;
  align-items: center;
}
.collection__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}
.collection__list li:last-child { border-bottom: none; }

.collection__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--ink);
  transition: gap 0.25s, color 0.25s;
}
.collection__link:hover {
  gap: 14px;
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}

/* ─────────── STORY ─────────── */
.story {
  background: var(--cream-2);
  padding: 120px 36px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(42, 36, 28, 0.06);
  border-bottom: 1px solid rgba(42, 36, 28, 0.06);
}
.story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story__col--text { padding-top: 8px; }
.story__title {
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 28px;
}
.story__col--text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 520px;
}
.story__col--specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.spec {
  background: var(--cream);
  padding: 24px 22px;
  border-radius: var(--r);
  border: 1px solid rgba(42, 36, 28, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.spec:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -12px rgba(42, 36, 28, 0.12);
}
.spec__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.spec__value {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.spec__sub {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ─────────── PROCESS ─────────── */
.process {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 36px;
  position: relative;
  z-index: 2;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process__step {
  position: relative;
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid rgba(42, 36, 28, 0.08);
  border-radius: var(--r);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.process__step:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 140, 94, 0.4);
  box-shadow: 0 16px 36px -16px rgba(42, 36, 28, 0.16);
}
.process__num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 50px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 22px;
}
.process__step h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process__step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ─────────── FINALE ─────────── */
.finale {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 36px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.finale::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 162, 58, 0.12), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.finale__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.finale__title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-style: italic;
}
.finale__sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(253, 250, 242, 0.78);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.finale .btn--primary {
  background: var(--cream);
  color: var(--ink);
}
.finale .btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 162, 58, 0.28);
}
.finale__rating {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(253, 250, 242, 0.7);
}
.finale__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 18px;
}

/* ─────────── FOOTER ─────────── */
.foot {
  background: var(--cream-3);
  padding: 70px 36px 30px;
  position: relative;
  z-index: 2;
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.foot__brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 16px;
}
.foot__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.foot__three {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.foot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.foot__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.foot__col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 0.2s;
}
.foot__col a:hover { color: var(--ink); }
.foot__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 36, 28, 0.12);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 960px) {
  .nav__inner { padding: 14px 22px; }
  .nav__links { gap: 20px; }
  .nav__links a:not(.nav__cta) { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 22px 60px;
    gap: 30px;
    min-height: auto;
  }
  .hero__visual { height: 380px; order: -1; }
  .hero__card--1 { width: 240px; height: 280px; padding: 18px; }
  .hero__meta { gap: 22px; }
  .hero__meta-num { font-size: 26px; }

  .marquee__track { font-size: 22px; gap: 28px; }

  .collections, .process, .story { padding: 70px 22px; }
  .collection {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
  }
  .collection--reverse .collection__visual { order: 0; }

  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__col--specs { grid-template-columns: 1fr 1fr; }

  .process__grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  .finale { padding: 90px 22px; }

  .foot__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 540px) {
  .hero__title { font-size: 44px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .process__grid { grid-template-columns: 1fr; }
  .story__col--specs { grid-template-columns: 1fr; }
  .awa__chip--1 { font-size: 18px; padding: 10px 16px; }
  .awa__chip--2 { font-size: 18px; padding: 10px 16px; }
  .awa__chip--3 { font-size: 16px; padding: 8px 14px; }
  .awa__center { font-size: 80px; }
}
