:root {
  --ink: #1c1c19;
  --ink-soft: #3a3932;
  --paper: #f8f7f2;
  --cream: #efede5;
  --sand: #ddd6c6;
  --line: rgba(28, 28, 25, 0.14);
  --gold: #bd9652;
  --gold-light: #d5b97d;
  --green: #809277;
  --white: #fffefa;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", "DM Sans", Arial, sans-serif;
  --container: 1500px;
  --radius: 1.5rem;
  --shadow: 0 18px 42px rgba(34, 32, 24, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 8.5rem 0; }
.sr-only, .skip-link:not(:focus) {
  clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px;
}
.skip-link:focus { background: var(--gold); color: var(--ink); left: 1rem; padding: .65rem 1rem; position: fixed; top: 1rem; z-index: 1000; }

.site-header { background: rgba(248, 247, 242, .94); border-bottom: 1px solid var(--line); left: 0; position: sticky; right: 0; top: 0; transition: background .2s ease, box-shadow .2s ease; z-index: 50; }
.site-header.is-scrolled { background: rgba(248, 247, 242, .98); box-shadow: 0 5px 18px rgba(35, 33, 25, .035); }
.nav-wrap { align-items: center; display: flex; height: 86px; justify-content: space-between; padding-block: 10px; }
.brand { display: inline-flex; line-height: 1; }
.brand-logo { background: var(--white); border-radius: 50%; height: 62px; object-fit: contain; width: 62px; }
.site-nav { align-items: center; display: flex; gap: 2.35rem; }
.site-nav > a:not(.button) { color: var(--ink-soft); font-size: .9rem; font-weight: 600; line-height: 1; transition: color .2s ease; }
.site-nav > a:not(.button):hover { color: var(--ink); }
.language-switcher { align-items: center; display: flex; gap: .35rem; }
.language-switcher button { background: transparent; border: 0; color: rgba(58,57,50,.52); cursor: pointer; font-size: .72rem; font-weight: 700; letter-spacing: .06em; line-height: 1; padding: .25rem 0; transition: color .2s ease; }
.language-switcher button + button { border-left: 1px solid var(--line); padding-left: .35rem; }
.language-switcher button:hover, .language-switcher button:focus-visible, .language-switcher button[aria-pressed="true"] { color: var(--ink); }
.language-switcher button:focus-visible { outline: 1px solid var(--gold); outline-offset: .2rem; }
.site-nav .button--small { min-height: 48px; padding: .7rem 1.35rem; }
.site-nav .button--small:hover { background: var(--paper); border-color: var(--ink); color: var(--ink); transform: none; }
.menu-toggle { background: none; border: 0; cursor: pointer; display: none; height: 42px; padding: 10px 3px; width: 42px; }
.menu-toggle span:not(.sr-only) { background: var(--ink); display: block; height: 1.5px; margin: 6px 0; transition: transform .2s ease; width: 25px; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

.button { align-items: center; background: var(--ink); border: 1px solid var(--ink); border-radius: 100px; color: var(--white); display: inline-flex; font-size: .88rem; font-weight: 700; gap: .7rem; justify-content: center; letter-spacing: .01em; min-height: 52px; padding: .8rem 1.25rem; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: .55rem 1rem; }
.button--light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.button--gold:hover { background: var(--white); border-color: var(--white); }
.text-link, .story-link { align-items: center; display: inline-flex; font-size: .9rem; font-weight: 700; gap: .5rem; text-decoration: underline; text-decoration-color: rgba(28,28,25,.35); text-underline-offset: .28em; transition: color .2s ease; }
.text-link:hover, .story-link:hover { color: var(--gold); }

.eyebrow { align-items: center; color: var(--gold); display: flex; font-size: .69rem; font-weight: 700; gap: .55rem; letter-spacing: .16em; margin: 0 0 1.1rem; text-transform: uppercase; }
.eyebrow-dot { background: var(--gold); border-radius: 50%; display: inline-block; height: .48rem; width: .48rem; }
.eyebrow--light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -.055em; line-height: 1.07; }
h1 { font-size: clamp(3.65rem, 6.1vw, 6.9rem); margin-bottom: 1.6rem; max-width: 11ch; }
h2 { font-size: clamp(2.4rem, 4.3vw, 4.55rem); margin-bottom: 1.6rem; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); margin-bottom: .8rem; }
h1 em, h2 em { color: var(--gold); font-family: var(--serif); font-weight: 400; }

/* Shared foundation for the main content areas. Header, hero, FAQ, and footer
   retain their dedicated rules and are intentionally not affected here. */
main .container { width: min(calc(100% - 96px), var(--container)); }
main > .section:not(.hero):not(.faq-section) { padding-block: 9rem; }
main > .section:not(.hero):not(.faq-section) .section-heading h2 { letter-spacing: -.06em; }
main > .section:not(.hero):not(.faq-section) p { line-height: 1.6; }
main > .section:not(.hero):not(.faq-section) .button { border-radius: 100px; min-height: 54px; padding-inline: 1.45rem; }
main > .section:not(.hero):not(.faq-section) .story-card { box-shadow: 0 1px 0 rgba(28, 28, 25, .04); }

.hero { padding: 2rem 0 5rem; }
.hero-grid { align-items: center; background: #1c1c19; border-radius: var(--radius); display: grid; min-height: clamp(620px, 48vw, 700px); overflow: hidden; position: relative; }
.hero-grid::after { background: linear-gradient(90deg, rgba(16, 16, 14, .82) 0%, rgba(16, 16, 14, .59) 45%, rgba(16, 16, 14, .28) 100%); content: ""; inset: 0; position: absolute; z-index: 1; }
.hero-copy { align-self: center; color: var(--white); max-width: 660px; padding: clamp(3rem, 6vw, 6.5rem); position: relative; z-index: 2; }
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy .eyebrow-dot { display: none; }
.hero-copy h1 { color: var(--white); margin-bottom: 1.35rem; max-width: 10ch; }
.hero-intro { color: rgba(255, 254, 250, .82); font-size: clamp(1rem, 1.3vw, 1.2rem); max-width: 45ch; }
.hero-actions { display: flex; margin-top: 2rem; }
.hero-actions .button { background: var(--white); border-color: var(--white); color: var(--ink); }
.hero-actions .button:hover { background: var(--paper); border-color: var(--paper); transform: none; }
.hero-actions .text-link, .hero-note, .hero-orbit, .floating-tag { display: none; }
.hero-art { inset: 0; min-height: 0; position: absolute; z-index: 0; }
.hero-image { background: #d9d1bf; border-radius: 0; height: 100%; inset: 0; margin: 0; overflow: hidden; position: absolute; width: 100%; z-index: 0; }
.hero-image img, .story-image img, .closeup-image img, .product-image img { height: 100%; object-fit: cover; width: 100%; }
.hero-image img { object-position: 72% center; }
.hero-image .media-fallback { z-index: -1; }
.tag-icon, .tag-check { align-items: center; background: var(--gold); border-radius: 50%; display: inline-flex; height: 1.25rem; justify-content: center; width: 1.25rem; }
.tag-check { background: var(--green); color: var(--white); font-size: .72rem; }

.media-shell { overflow: hidden; position: relative; }
.media-fallback { align-items: center; background: var(--cream); display: flex; inset: 0; justify-content: center; position: absolute; z-index: -1; }
.media-shell.has-missing-image .media-fallback { z-index: 1; }
.media-shell.has-missing-image img { opacity: 0; }
.media-fallback--hero { background: linear-gradient(135deg, #cbb98f, #728475); }
.fallback-sun { background: #eee2bd; border-radius: 50%; height: 53%; left: 24%; position: absolute; top: 15%; width: 53%; }
.fallback-card { align-items: center; background: var(--ink); border-radius: .7rem; color: var(--gold-light); display: flex; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 700; height: 37%; justify-content: center; letter-spacing: -.08em; position: absolute; right: 13%; transform: rotate(-13deg); width: 56%; }
.media-fallback--travel { background: linear-gradient(135deg, #e1d1ad, #9cab91); font-size: 4rem; }
.media-fallback--pet { background: linear-gradient(135deg, #adbaa0, #d9c798); font-size: 5rem; }
.media-fallback--family { background: linear-gradient(135deg, #d7b69d, #e8d8c2); font-size: 4rem; }
.media-fallback--product { background: radial-gradient(circle, #e9d6a7 0 7%, transparent 7.3%), linear-gradient(140deg, #d5d7ce, #a8baaa); }
.product-token { align-items: center; background: var(--ink); border: 8px solid var(--gold); border-radius: 50%; color: var(--gold); display: flex; font-family: var(--display); font-size: 6rem; font-weight: 700; height: 16rem; justify-content: center; width: 16rem; }
.media-fallback--hands { background: linear-gradient(125deg, #a77b60, #e2b48f 44%, #bd966f 45% 63%, #68543d 64%); color: rgba(255,254,250,.85); font-family: var(--display); font-size: 2rem; font-weight: 700; letter-spacing: -.08em; }

.trust-strip { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid p { align-items: center; border-right: 1px solid var(--line); display: flex; font-size: .8rem; font-weight: 700; gap: .65rem; justify-content: center; margin: 0; min-height: 84px; text-align: center; }
.trust-grid p:last-child { border-right: 0; }
.trust-grid span { color: var(--gold); }

.intro-section { padding-bottom: 7rem; }
.intro-grid, .faq-grid { display: grid; gap: 6rem; grid-template-columns: 1.15fr .85fr; }
.section-heading h2 { max-width: 14ch; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center h2 { margin-inline: auto; }
.intro-body { align-self: end; color: var(--ink-soft); font-size: 1.1rem; }
.intro-body .text-link { color: var(--ink); margin-top: 1.1rem; }
.process-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); margin-top: 6rem; }
.process-card { background: var(--cream); min-height: 290px; padding: 1.7rem; position: relative; }
.process-card:nth-child(2) { background: #e4dbc8; }
.process-card:nth-child(3) { background: #d3dccd; }
.step-number { color: rgba(28,28,25,.45); font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.process-icon { height: 70px; margin: 1.3rem 0 1.6rem; position: relative; width: 70px; }
.line-icon { border: 2px solid var(--ink); display: block; position: absolute; }
.line-icon--tag { border-radius: 1rem .5rem .9rem .55rem; height: 44px; left: 12px; top: 8px; transform: rotate(-35deg); width: 34px; }
.line-icon--tag::after { border: 2px solid var(--ink); border-radius: 50%; content: ""; height: 6px; position: absolute; right: 5px; top: 5px; width: 6px; }
.line-icon--attach { border: 0; border-left: 2px solid var(--ink); border-radius: 0 0 0 1rem; height: 42px; left: 27px; top: 10px; transform: rotate(40deg); width: 32px; }
.line-icon--attach::after { border: 2px solid var(--ink); border-radius: 1rem; content: ""; height: 30px; left: -13px; position: absolute; top: 14px; width: 19px; }
.line-icon--phone { border-radius: .45rem; height: 50px; left: 19px; top: 7px; width: 31px; }
.line-icon--phone::after { background: var(--ink); border-radius: 50%; bottom: 4px; content: ""; height: 3px; left: 12px; position: absolute; width: 3px; }
.process-card h3 { font-size: 1.45rem; }
.process-card p { color: var(--ink-soft); font-size: .9rem; max-width: 29ch; }

.stories-section { background: #eeece4; }
.story-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 4.4rem; }
.story-card { background: var(--white); border-radius: var(--radius); overflow: hidden; }
.story-image, .story-card--wide .story-image { aspect-ratio: 1; height: auto; }
.story-copy { padding: 1.45rem 1.45rem 1.7rem; }
.story-kicker { color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .14em; margin-bottom: .7rem; }
.story-copy h3 { font-size: 1.55rem; }
.story-copy p:not(.story-kicker) { color: var(--ink-soft); font-size: .9rem; }
.story-link { font-size: .8rem; margin-top: .35rem; }

.product-section { background: var(--ink); color: var(--white); overflow: hidden; padding: 10rem 0; }
.product-grid { align-items: center; display: grid; gap: 8rem; grid-template-columns: 1fr 1fr; }
.product-copy .eyebrow { color: var(--gold-light); }
.product-copy h2 { max-width: 10ch; }
.product-copy > p:not(.eyebrow) { color: rgba(255,254,250,.73); font-size: 1.08rem; max-width: 49ch; }
.product-visual { align-items: center; display: flex; justify-content: center; min-height: 620px; position: relative; }
.product-image { border-radius: 50%; box-shadow: 0 25px 70px rgba(0,0,0,.3); height: min(34vw, 520px); width: min(34vw, 520px); z-index: 2; }
.product-glow { background: radial-gradient(circle, rgba(213,185,125,.38), transparent 67%); inset: 0; position: absolute; }
.product-rings { border: 1px solid rgba(213,185,125,.45); border-radius: 50%; height: 92%; position: absolute; transform: rotate(-24deg); width: 92%; }
.product-rings::after { border: 1px solid rgba(213,185,125,.2); border-radius: 50%; content: ""; inset: 9%; position: absolute; }
.product-caption { bottom: 0; color: rgba(255,254,250,.52); font-size: .74rem; margin: 0; position: absolute; }
.feature-list { display: flex; flex-direction: column; gap: .7rem; list-style: none; margin: 2.1rem 0 2.4rem; padding: 0; }
.feature-list li { align-items: flex-start; color: rgba(255,254,250,.84); display: flex; font-size: .9rem; gap: .75rem; line-height: 1.55; margin: 0; }
.feature-icon { align-items: center; background: var(--gold); border-radius: 50%; color: var(--ink); display: inline-flex; flex: 0 0 1.25rem; font-size: .68rem; font-weight: 700; height: 1.25rem; justify-content: center; margin-top: .1rem; width: 1.25rem; }

.closeup-grid { align-items: center; display: grid; gap: 7rem; grid-template-columns: .8fr 1.2fr; }
.closeup-copy p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; max-width: 45ch; }
.closeup-image { border-radius: 9rem 1.2rem 1.2rem 1.2rem; height: 630px; }

.faq-section { background: #e6dfd0; }
.faq-grid { grid-template-columns: .85fr 1.15fr; }
.faq-grid .section-heading p:not(.eyebrow) { color: var(--ink-soft); max-width: 33ch; }
.faq-grid .section-heading p a { text-decoration: underline; text-underline-offset: .18em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; display: flex; font-family: var(--display); font-size: 1.1rem; font-weight: 600; gap: 1rem; justify-content: space-between; list-style: none; padding: 1.3rem 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span[aria-hidden] { color: var(--gold); font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary > span[aria-hidden] { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); font-size: .93rem; margin: -.3rem 2rem 1.4rem 0; max-width: 65ch; }

.cta-section { background: var(--paper); padding: 2rem 0 8.5rem; }
.cta-panel { background: var(--ink); color: var(--white); min-height: 620px; overflow: hidden; padding: 6.8rem clamp(2rem, 7vw, 7.7rem); position: relative; }
.cta-content { max-width: 670px; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2.8rem, 5vw, 5.5rem); max-width: 10ch; }
.cta-content > p:not(.eyebrow):not(.shopify-placeholder) { color: rgba(255,254,250,.72); font-size: 1.05rem; margin-bottom: 1.9rem; }
.cta-pattern { border: 1px solid rgba(213,185,125,.32); border-radius: 50%; height: 670px; position: absolute; right: -120px; top: -125px; width: 670px; }
.cta-pattern::before, .cta-pattern::after { border: 1px solid rgba(213,185,125,.25); border-radius: 50%; content: ""; position: absolute; }
.cta-pattern::before { inset: 70px; }
.cta-pattern::after { inset: 145px; }
.shopify-placeholder { color: var(--gold-light); font-size: .78rem; margin: 1rem 0 0; }

.site-footer { background: #11110f; color: var(--white); }
.footer-top { align-items: center; display: grid; gap: 1rem; grid-template-columns: 1fr 1fr 1fr; min-height: 140px; }
.brand--footer .brand-logo { height: 66px; width: 66px; }
.footer-top > p { color: rgba(255,254,250,.5); font-family: var(--serif); font-size: 1.1rem; margin: 0; text-align: center; }
.footer-links { display: flex; font-size: .78rem; gap: 1.4rem; justify-content: flex-end; }
.footer-links a { color: rgba(255,254,250,.7); }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { align-items: center; display: flex; gap: .7rem; }
.social-placeholder { align-items: center; color: rgba(255,254,250,.35); cursor: default; display: inline-flex; height: 1.35rem; justify-content: center; transition: color .2s ease, opacity .2s ease, transform .2s ease; width: 1.35rem; }
.social-placeholder svg { fill: none; height: 100%; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 100%; }
.social-placeholder:hover, .social-placeholder:focus-visible { color: rgba(255,254,250,.8); opacity: 1; transform: translateY(-2px) scale(1.05); }
.social-placeholder:focus-visible { outline: 1px solid var(--gold-light); outline-offset: .25rem; }
.social-placeholder:not([aria-disabled="true"]) { cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,254,250,.13); color: rgba(255,254,250,.46); display: flex; font-size: .7rem; justify-content: space-between; padding: 1.2rem 0; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .site-nav { gap: 1.3rem; }
  .product-grid, .closeup-grid { gap: 4rem; grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; }
  .hero-image { height: 100%; width: 100%; }
  .hero-orbit--large { height: 430px; width: 430px; }
  .hero-orbit--small { height: 280px; width: 280px; }
  .intro-grid, .faq-grid { gap: 4rem; }
  .product-grid { gap: 4rem; }
  .product-image { height: min(38vw, 370px); width: min(38vw, 370px); }
  .closeup-grid { gap: 4rem; }
  .closeup-image { height: 420px; }
}

@media (max-width: 740px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 5.6rem 0; }
  main .container { width: min(calc(100% - 36px), var(--container)); }
  main > .section:not(.hero):not(.faq-section) { padding-block: 5.6rem; }
  .nav-wrap { height: 72px; padding-block: 8px; }
  .brand-logo { height: 52px; width: 52px; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav { align-items: flex-start; background: var(--paper); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 1.3rem; left: 0; opacity: 0; padding: 1.4rem 1.5rem 2rem; pointer-events: none; position: absolute; right: 0; top: 72px; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.button) { font-size: 1rem; }
  .language-switcher { margin-top: .2rem; }
  .language-switcher button { font-size: .8rem; }
  .site-nav .button { margin-top: .4rem; width: 100%; }
  .hero { padding: 1rem 0 3rem; }
  .hero-grid, .intro-grid, .product-grid, .closeup-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 0; min-height: 620px; }
  h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 3.65rem); }
  .hero-copy { padding: 2.5rem 1.75rem; }
  .hero-art { min-height: 0; }
  .hero-image { height: 100%; margin: 0; width: 100%; }
  .hero-orbit--large { height: min(89vw, 500px); right: -1%; width: min(89vw, 500px); }
  .hero-orbit--small { height: 52vw; left: -4%; top: 27%; width: 52vw; }
  .floating-tag--top { right: 0; top: 12%; }
  .floating-tag--bottom { bottom: 8%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { border-bottom: 1px solid var(--line); border-right: 0; min-height: 58px; }
  .trust-grid p:last-child { border-bottom: 0; }
  .intro-grid, .faq-grid { gap: 2rem; }
  .process-grid, .story-grid { grid-template-columns: 1fr; }
  .process-grid { margin-top: 3.5rem; }
  .process-card { min-height: 240px; }
  .stories-section .section-heading { text-align: left; }
  .stories-section .section-heading .eyebrow { justify-content: flex-start; }
  .stories-section .section-heading h2 { margin-inline: 0; }
  .story-grid { margin-top: 3rem; }
  .story-image, .story-card--wide .story-image { aspect-ratio: 1; height: auto; }
  .product-section { padding: 5.8rem 0; }
  .product-grid { gap: 3.4rem; }
  .product-visual { min-height: min(88vw, 410px); order: 2; }
  .product-copy { order: 1; }
  .product-image { height: min(70vw, 340px); width: min(70vw, 340px); }
  .closeup-grid { gap: 3rem; }
  .closeup-image { border-radius: 5rem 1rem 1rem; height: min(110vw, 470px); }
  .cta-section { padding-bottom: 5.5rem; }
  .cta-panel { min-height: 420px; padding: 4rem 1.7rem; }
  .cta-pattern { height: 440px; right: -230px; top: -30px; width: 440px; }
  .footer-top { align-items: flex-start; grid-template-columns: 1fr; padding: 2rem 0; }
  .footer-top > p { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
}
