@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

/* ===== Tokens ===== */
:root {
  --ink: #17211c;
  --muted: #66716a;
  --green: #195b45;
  --mint: #dcefe6;
  --cream: #f8f7f2;
  --line: #dfe3dd;
  --white: #fff;
  --shadow: 0 24px 70px #17211c1c;
}


/* ===== Base / Reset ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #4b9b7b;
  outline-offset: 4px;
}

/* ===== Typography ===== */
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

p {
  line-height: 1.65;
}

/* ===== Header ===== */

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f8f7f2e8;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #17211c14;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 800 20px Manrope;
  margin-right: auto;
}

.brandMark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 10px;
}

.header nav {
  display: flex;
  gap: 32px;
  color: #49534d;
  font-size: 14px;
  font-weight: 600;
}

.button {
  border: 0;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  padding: 15px 21px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.button:hover {
  background: #104d39;
  transform: translateY(-1px);
}

.button.small {
  padding: 11px 16px;
  font-size: 14px;
}

/* ===== Hero + page sections ===== */

.section,
.hero {
  max-width: 1240px;
  margin: auto;
  padding: 112px 24px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
  padding-top: 70px;
}

.kicker,
.overline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 7px;
}

.kicker {
  width: max-content;
  background: #e6efe9;
  border: 1px solid #cfe0d7;
  border-radius: 99px;
  padding: 8px 12px;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 22px 0;
}

.lead {
  font-size: 19px;
  color: #59645d;
}

/* ===== Hero content ===== */

.heroActions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 30px 0;
}

.textButton {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
}

.reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  color: #6d766f;
  font-size: 12px;
}

.reassure svg {
  width: 14px;
  color: var(--green);
}

/* ===== HomeVault mock preview ===== */

.mockWrap {
  position: relative;
}

.mockPair {
  position: relative;
  padding: 0 48px 42px 0;
}

.appMock {
  background: white;
  border: 1px solid #d9ded9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  position: relative;
  z-index: 1;
}

.appMockPhone {
  width: 190px;
  height: 392px;
  padding: 7px;
  background: #202622;
  border: 1px solid #0f1411;
  border-radius: 32px;
  box-shadow: 0 24px 60px #19382b30;
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  transform: rotate(-2deg);
}

.appMockPhone::before,
.appMockPhone::after {
  content: "";
  position: absolute;
  width: 3px;
  background: #151a17;
}

.appMockPhone::before {
  height: 42px;
  left: -4px;
  top: 82px;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 54px 0 #151a17;
}

.appMockPhone::after {
  height: 64px;
  right: -4px;
  top: 105px;
  border-radius: 0 3px 3px 0;
}

.appMockPhoneInner {
  position: relative;
  color: var(--ink);
  height: 100%;
  background: #fbfcfa;
  border-radius: 25px;
  overflow: hidden;
}

.appMockPhoneInner::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 14px;
  border-radius: 10px;
  background: #202622;
  transform: translateX(-50%);
}

.appMockPhoneInner::after {
  content: "";
  position: absolute;
  z-index: 5;
  bottom: 5px;
  left: 50%;
  width: 58px;
  height: 3px;
  border-radius: 99px;
  background: #202622;
  transform: translateX(-50%);
}

.phoneTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 8px 12px 0;
  color: var(--ink);
  border-bottom: 1px solid #e8ebe7;
  background: white;
}

.phoneTop .appLogo {
  font-size: 9px;
}

.phoneTop .avatar {
  margin-left: 0;
  width: 24px;
  height: 24px;
}

.phoneBody {
  padding: 15px 12px 0;
}

.phoneGreeting {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
}

.phoneGreeting strong {
  font: 700 13px Manrope;
}

.phoneSearch {
  height: 31px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid #d9ded9;
  border-radius: 8px;
  background: white;
  color: #8a928d;
  font-size: 8px;
  margin-bottom: 10px;
}

.phoneCard {
  padding: 11px;
  border: 1px solid #e3e7e2;
  border-radius: 11px;
  background: white;
}

.phoneCardIcon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 9px;
  color: var(--green);
  background: #dfece5;
}

.phoneCard h3 {
  margin: 4px 0 2px;
  font-size: 12px;
}

.phoneCard p {
  margin: 0 0 10px;
  color: #888;
  font-size: 8px;
}

.phoneRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #888;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.phoneRow strong {
  color: var(--ink);
}

.phoneWarranty {
  margin-top: 10px;
  padding: 8px;
  border-radius: 7px;
  background: #e4f1e9;
  color: var(--green);
  font-size: 8px;
  line-height: 1.5;
}

.phoneNav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13px;
  padding-top: 8px;
  border-top: 1px solid #e8ebe7;
}

.phoneNav span {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #8a928d;
  font-size: 12px;
}

.phoneNav span.active {
  color: var(--green);
}

.phoneNav small {
  font-size: 6px;
}

.appTop {
  height: 51px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8ebe7;
}

.appLogo {
  font: bold 12px Manrope;
  display: flex;
  align-items: center;
  gap: 6px;
}

.avatar {
  margin-left: auto;
  width: 26px;
  height: 26px;
  background: #efcfad;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 7px;
}

.appBody {
  display: grid;
  grid-template-columns: 115px 1fr;
  min-height: 430px;
}

.appBody aside {
  background: #f7f8f6;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.appBody aside > span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 7px;
  font-size: 8px;
  color: #7b837e;
}

.appBody aside .active {
  background: #dfece5;
  color: var(--green);
  font-weight: bold;
}

.appBody aside small {
  font-size: 6px;
  margin: 25px 7px 4px;
}

.people,
.miniAvatars {
  display: flex;
}

.people i,
.miniAvatars i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 7px;
  font-weight: 700;
  background: #a8c9b5;
  border: 2px solid white;
  margin-left: -4px;
}

.appBody main {
  padding: 25px;
  background: #fbfcfa;
}

.searchbar {
  height: 40px;
  border: 1px solid #d9ded9;
  background: white;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  font-size: 9px;
}

.searchbar kbd {
  margin-left: auto;
}

.resultLabel {
  font-size: 7px;
  color: #888;
  margin: 16px 0 8px;
}

.purchase {
  display: grid;
  grid-template-columns: 39% 1fr;
  background: white;
  border: 1px solid #e3e7e2;
  border-radius: 12px;
  padding: 12px;
  gap: 17px;
}

.receipt {
  background: #f1eee5;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: 7px monospace;
  box-shadow: 0 5px 16px #ddd;
}

.receipt hr {
  width: 100%;
  border: 0;
  border-top: 1px dashed #bbb;
}

.receipt p {
  width: 100%;
  margin: 3px;
}

.purchaseInfo {
  padding: 8px 3px;
}

.typeIcon {
  width: 42px;
  height: 42px;
  background: #dfece5;
  color: var(--green);
  border-radius: 9px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.eyebrow {
  font-size: 7px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #8a928d;
}

.purchaseInfo h3 {
  font-size: 17px;
  margin: 5px 0;
}

.purchaseInfo > p {
  font-size: 9px;
  color: #888;
}

.infoGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid #eee;
  padding: 10px 0;
}

.infoGrid span {
  font-size: 7px;
  color: #888;
}

.infoGrid strong {
  display: block;
  color: #333;
}

.warranty {
  background: #e4f1e9;
  border-radius: 7px;
  color: var(--green);
  padding: 9px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  font-size: 7px;
}

.warranty span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
}

.floatTag {
  position: absolute;
  z-index: 4;
  background: white;
  border: 1px solid #e1e5e1;
  box-shadow: 0 12px 28px #0001;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tagOne {
  right: -22px;
  top: 20%;
}

.tagTwo {
  left: -34px;
  bottom: 13%;
}

/* ===== Problem section ===== */

.problem {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.problem h2,
.sectionIntro h2 {
  margin-top: 15px;
}

.problem > div:nth-child(2),
.sectionIntro p {
  font-size: 17px;
  color: var(--muted);
}

.painGrid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.painGrid span {
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 18px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.painGrid svg,
.useGrid svg {
  color: var(--green);
  width: 20px;
}


/* ===== Shared section intro ===== */
.sectionIntro {
  max-width: 650px;
  margin-bottom: 50px;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.center .overline {
  justify-content: center;
}


/* ===== Steps / Use cases ===== */
.how,

/* ===== Pricing section ===== */
.pricing {
  background: white;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1192px) / 2));
}

.flowFigure {
  margin: 0;
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 18px 45px #19382b12;
  scrollbar-width: thin;
}

.flowFigure img {
  display: block;
  width: 100%;
  height: auto;
}

.steps,
.useGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.steps article,
.useGrid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-right: 0;
  position: relative;
}

.steps article:last-child,
.useGrid article:nth-child(4n) {
  border-right: 1px solid var(--line);
}

.stepNo {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 11px;
  color: #999;
}

.stepIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 25px;
}

.steps p,
.useGrid p {
  color: var(--muted);
  font-size: 14px;
}

/* ===== Search / Family / Waitlist / FAQ shared grid ===== */
.searchSection,
.family,
.waitlist,
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}


/* ===== Search section demo ===== */
.searchDemo {
  background: #e3eee8;
  border-radius: 22px;
  padding: 34px;
}

.queryBox {
  height: 58px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 18px;
  gap: 12px;
  font-size: 14px;
}

.queryBox button {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: white;
}

.suggestions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 12px 0 25px;
}

.suggestions span {
  font-size: 8px;
  background: #fffb;
  border-radius: 99px;
  padding: 6px 9px;
}

.resultCard {
  background: white;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 17px;
  align-items: center;
}

.shoeArt {
  height: 78px;
  border-radius: 9px;
  background: #e9e7e2;
  padding: 9px;
  font-size: 8px;
}

.shoe {
  font-size: 45px;
  display: block;
  text-align: center;
}

.resultCard h3 {
  font-size: 15px;
  margin: 5px 0;
}

.resultCard p,
.resultStatus {
  font-size: 9px;
}

/* ===== Family section ===== */
.family {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1192px) / 2));
  background: #193f32;
  color: white;
  grid-template-columns: 1fr 1fr;
}

.family .overline {
  color: #83c7a9;
}

.family p {
  color: #c1d3cb;
}

.familyVisual {
  min-height: 390px;
  display: grid;
  place-items: center;
}

.familyRing {
  width: 180px;
  height: 180px;
  border: 1px solid #5f7e72;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 0 55px #ffffff08, 0 0 0 110px #ffffff05;
}

.member {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #173a2f;
  background: #efcba8;
  border: 5px solid #315548;
  font-weight: bold;
}

.m1 {
  top: -30px;
  left: -10px;
}

.m2 {
  right: -30px;
  bottom: 0;
  background: #a8cfba;
}

.m3 {
  bottom: -38px;
  left: 45px;
  background: #d1b4d4;
}

.checkList {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 13px;
}

.checkList li {
  display: flex;
  gap: 9px;
}

.useGrid article {
  min-height: 190px;
}

.useGrid h3 {
  margin-top: 24px;
}


/* ===== Comparison table ===== */
.compare {
  padding-top: 60px;
}

.tableWrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

th,
td {
  padding: 16px 22px;
  text-align: center;
  border-bottom: 1px solid #edf0ec;
  font-size: 13px;
}

th:first-child,
td:first-child {
  text-align: left;
  font-weight: 600;
}

th {
  font-size: 11px;
  text-transform: uppercase;
}

.hv {
  background: #edf5f1;
  color: var(--green);
  font-weight: bold;
}

td svg {
  width: 17px;
  margin: auto;
}

.pricing {
  padding-inline: max(24px, calc((100vw - 1000px) / 2));
}

.priceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 780px;
  margin: auto;
}

.priceCard,
.formCard {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 35px;
  position: relative;
  background: white;
}

.priceCard.featured {
  background: #f0f6f2;
}

.priceCard.selected {
  box-shadow: 0 0 0 2px var(--green);
}

.priceCard h3 {
  font-size: 34px;
  margin: 15px 0;
}

.priceCard h3 small {
  font: 500 13px DM Sans;
}

.priceCard ul {
  list-style: none;
  padding: 10px 0;
  line-height: 2.2;
  font-size: 13px;
}

.priceCard li {
  display: flex;
  gap: 9px;
}

.priceCard button {
  width: 100%;
}

.outlineButton {
  background: white;
  border: 1px solid #bdc5bf;
  border-radius: 11px;
  padding: 14px;
}

.popular {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 8px;
  background: var(--green);
  color: white;
  border-radius: 99px;
  padding: 7px;
}

.founder {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

/* ===== Waitlist section ===== */
.waitlist {
  grid-template-columns: 1fr 1fr;
}

.trust {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}

.trust span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.formCard {
  box-shadow: 0 18px 50px #0000000f;
}

form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  font-size: 12px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 48px;
  border: 1px solid #d8ddd8;
  border-radius: 9px;
  background: #fcfdfb;
  padding: 0 13px;
  margin-top: 7px;
}

.consent {
  display: flex;
  gap: 10px;
  font-weight: 400;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0;
  accent-color: var(--green);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.submit {
  width: 100%;
}

.formFine,
.formError {
  font-size: 10px;
  text-align: center;
  margin: 0;
}

.formError {
  color: #a43d31;
}

.success {
  text-align: center;
  padding: 55px 15px;
}

.success > div {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq {
  align-items: start;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  cursor: pointer;
  font: 600 15px Manrope;
  display: flex;
  justify-content: space-between;
}

.faq details p {
  font-size: 14px;
  color: var(--muted);
}


/* ===== Final CTA ===== */
.finalCta {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 100px 24px;
}

.finalCta .overline {
  color: #9bd3bb;
  justify-content: center;
}

.finalCta h2 {
  margin: 17px;
}

.light {
  background: white;
  color: var(--green);
  margin-top: 15px;
}


/* ===== Footer ===== */
footer {
  max-width: 1240px;
  margin: auto;
  padding: 55px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

footer > div {
  display: flex;
  gap: 25px;
}

footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}


/* ===== Legal page utility ===== */
.legal {
  max-width: 760px;
  margin: auto;
  padding: 80px 24px;
}

.legal h1 {
  font-size: 4rem;
  margin-top: 50px;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 40px;
}

.legal p {
  color: var(--muted);
}

/* ===== Tablet breakpoint ===== */
@media (max-width: 900px) {
  .header nav {
    display: none;
  }

  .hero,
  .problem,
  .searchSection,
  .family,
  .waitlist,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 60px;
  }

  .steps,
  .useGrid {
    grid-template-columns: 1fr 1fr;
  }

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

  .family {
    gap: 20px;
  }

  .mockPair {
    padding-right: 54px;
  }

  .appMock {
    transform: rotate(0deg);
  }

  .appMockPhone {
    right: 4px;
  }
}

/* ===== Mobile breakpoint ===== */
@media (max-width: 600px) {
  h1 {
    font-size: 3.2rem;
  }

  .header {
    height: 66px;
    padding: 0 16px;
  }

  .header .button {
    font-size: 0;
    padding: 10px;
  }

  .section,
  .hero {
    padding: 75px 18px;
  }

  .flowFigure img {
    width: 760px;
    max-width: none;
  }

  .heroCopy {
    text-align: center;
  }

  .kicker {
    margin: auto;
  }

  .heroActions {
    flex-direction: column;
  }

  .reassure {
    justify-content: center;
  }

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

  .appBody aside {
    display: none;
  }

  .appBody main {
    padding: 14px;
  }

  .mockPair {
    padding: 0 24px 110px 0;
  }

  .appMockPhone {
    width: 168px;
    height: 350px;
    right: 0;
  }

  .tagOne {
    right: -4px;
  }

  .tagTwo {
    left: -4px;
    bottom: -20px;
  }

  .painGrid,
  .steps,
  .useGrid,
  .priceGrid,
  .fields {
    grid-template-columns: 1fr;
  }

  .steps article,
  .useGrid article {
    border-right: 1px solid var(--line);
  }

  .searchDemo {
    padding: 16px;
  }

  .resultCard {
    grid-template-columns: 75px 1fr;
  }

  .resultStatus {
    grid-column: 2;
  }

  .familyVisual {
    min-height: 300px;
  }

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

  .priceCard,
  .formCard {
    padding: 25px;
  }

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

  footer small {
    grid-column: auto;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
