/* ============================================================
   $POTATO — Landing Page (Potato the toy poodle)
   Warm, cozy, premium light theme
   ============================================================ */

:root {
  --cream:     #fbf3e4;   /* page base */
  --cream-2:   #f5e8d1;
  --card:      #fffaf0;
  --ink:       #3a2314;   /* espresso text */
  --ink-soft:  #86644a;
  --caramel:   #d98a37;   /* accent */
  --honey:     #f0a94e;
  --honey-hot: #ffbf63;
  --toffee:    #b56a1c;
  --cocoa:     #5c3a1e;
  --berry:     #e46b7d;   /* tiny pop (collar/heart) */

  --bg: var(--cream);
  --fg: var(--ink);

  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;

  --shadow-soft: 0 24px 60px -24px rgba(90,50,20,0.35);
  --shadow-lift: 0 34px 70px -28px rgba(90,50,20,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: var(--honey); color: var(--ink); }

/* Warm ambient background */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(240,169,78,0.28), transparent 58%),
    radial-gradient(900px 620px at -5% 100%, rgba(217,138,55,0.20), transparent 55%),
    var(--bg);
}
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px;
  border: 1.6px solid rgba(217,138,55,0.8); border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px;
  background: var(--caramel); border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
}
.cursor.is-hover { width: 60px; height: 60px; background: rgba(240,169,78,0.18); border-color: transparent; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--cream); display: grid; place-items: center; }
.preloader__inner { display: grid; place-items: center; gap: 20px; width: min(260px, 70vw); }
.preloader__pup { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-soft); animation: pupBob 1.3s var(--ease) infinite; border: 3px solid #fff; }
.preloader__pup img { width: 100%; height: 100%; object-fit: cover; }
@keyframes pupBob { 0%,100%{ transform: translateY(0) rotate(-4deg);} 50%{ transform: translateY(-10px) rotate(4deg);} }
.preloader__bar { width: 100%; height: 6px; border-radius: 99px; background: rgba(58,35,20,0.1); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--caramel), var(--honey-hot)); border-radius: 99px; }
.preloader__label { font-family: var(--font-display); font-size: 12px; letter-spacing: .24em; color: var(--ink-soft); }
.preloader { transition: transform .85s var(--ease), opacity .85s var(--ease); }
.preloader.is-done { pointer-events: none; transform: translateY(-100%); opacity: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: var(--pad-y) var(--pad-x);
  background: var(--caramel); color: #fff;
  border: none; border-radius: 99px; cursor: none; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 10px 26px -10px rgba(217,138,55,0.8);
}
.btn::before { content:""; position:absolute; inset:0; z-index:-1; background: var(--honey); transform: translateY(101%); border-radius: 99px; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -12px rgba(217,138,55,0.9); }
.btn:hover::before { transform: translateY(0); }
.btn--lg { --pad-y: 17px; --pad-x: 30px; font-size: 17px; }
.btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: 14px; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.6px solid rgba(58,35,20,0.22); box-shadow: none; }
.btn--ghost::before { background: rgba(58,35,20,0.06); }
.btn--ghost:hover { box-shadow: none; border-color: rgba(58,35,20,0.4); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px clamp(18px, 4vw, 46px);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-stuck { background: rgba(251,243,228,0.8); backdrop-filter: blur(14px); padding-top: 11px; padding-bottom: 11px; box-shadow: 0 1px 0 rgba(58,35,20,0.07); }
.nav__brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.nav__logo { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; border: 2.5px solid #fff; box-shadow: 0 6px 16px -6px rgba(90,50,20,0.5); transition: transform .5s var(--ease); }
.nav__logo img { width: 100%; height: 100%; object-fit: cover; }
.nav__brand:hover .nav__logo { transform: rotate(-10deg) scale(1.08); }
.nav__links { display: flex; gap: 28px; }
.nav__links a { position: relative; font-weight: 500; font-size: 15px; color: var(--ink-soft); transition: color .3s; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-5px; height:2px; width:0; background: var(--caramel); transition: width .35s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 120px clamp(18px,4vw,40px) 80px; overflow: hidden; }
.hero__glow { position: absolute; top: 40%; right: 8%; width: 44vw; height: 44vw; max-width: 620px; max-height: 620px; transform: translateY(-50%); background: radial-gradient(circle, rgba(240,169,78,0.4), transparent 62%); filter: blur(10px); z-index: 0; }
.hero__inner { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,70px); align-items: center; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; text-align: center; } }

.hero__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 500; font-size: 14px; padding: 8px 18px; border-radius: 99px; background: #fff; border: 1px solid rgba(58,35,20,0.08); color: var(--ink-soft); margin-bottom: 24px; box-shadow: 0 8px 20px -14px rgba(90,50,20,0.5); }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(58px, 12vw, 150px); line-height: 0.9; letter-spacing: -0.03em; text-transform: uppercase; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; transform: translateY(112%); opacity: 0; transition: transform 1s var(--ease), opacity 1s var(--ease); }
body.loaded .hero__title .word { transform: none; opacity: 1; }
.hero__title .line:nth-child(1) .word { transition-delay: .05s; }
.hero__title .line:nth-child(2) .word { transition-delay: .18s; }
.hero__title .word--accent { background: linear-gradient(180deg, var(--honey-hot), var(--toffee)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin: 26px 0 0; max-width: 520px; font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-soft); }
@media (max-width: 900px) { .hero__sub { margin-left: auto; margin-right: auto; } }
.hero__sub strong { color: var(--caramel); font-weight: 600; }
.hero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero__cta { justify-content: center; } }

.ca-chip { margin-top: 26px; display: inline-flex; align-items: center; gap: 12px; padding: 8px 8px 8px 16px; border-radius: 99px; cursor: none; background: #fff; border: 1px dashed rgba(58,35,20,0.22); color: var(--ink-soft); max-width: 100%; box-shadow: 0 8px 20px -16px rgba(90,50,20,0.6); transition: border-color .3s, background .3s; }
.ca-chip:hover { border-color: var(--caramel); }
.ca-chip__label { font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--caramel); letter-spacing: .1em; }
.ca-chip__addr { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: min(46vw, 300px); }
.ca-chip__copy { font-family: var(--font-display); font-weight: 600; font-size: 12px; color: #fff; background: var(--caramel); padding: 7px 14px; border-radius: 99px; transition: background .3s; }
.ca-chip.copied .ca-chip__copy { background: #4caf50; }

/* Hero stage / photo */
.hero__stage { position: relative; justify-self: center; width: min(460px, 84vw); aspect-ratio: 1; display: grid; place-items: center; transform-style: preserve-3d; opacity: 0; transform: scale(0.85); transition: opacity 1s var(--ease) .15s, transform 1.1s var(--ease) .15s; }
body.loaded .hero__stage { opacity: 1; transform: scale(1); }
.hero__photo { position: relative; z-index: 2; width: 74%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-lift); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.orbit { position: absolute; border-radius: 50%; }
.orbit--1 { inset: 2%; border: 2px dashed rgba(217,138,55,0.5); animation: spin 20s linear infinite; }
.orbit--2 { inset: 12%; border: 2px dashed rgba(228,107,125,0.35); animation: spin 15s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.badge { position: absolute; z-index: 3; display: grid; place-items: center; border-radius: 50%; background: #fff; box-shadow: var(--shadow-soft); font-size: 22px; }
.badge svg { width: 26px; height: 26px; }
.badge--paw { width: 58px; height: 58px; top: 4%; left: 2%; color: var(--caramel); animation: floaty 4s ease-in-out infinite; }
.badge--heart { width: 50px; height: 50px; bottom: 8%; left: -2%; color: var(--berry); animation: floaty 3.4s ease-in-out infinite .4s; }
.badge--heart { color: var(--berry); }
.badge--star { width: 46px; height: 46px; top: 12%; right: 0%; color: var(--honey); animation: floaty 3.8s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.float-pup { position: absolute; z-index: 3; width: 84px; height: 84px; border-radius: 50%; overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-soft); bottom: 4%; right: 2%; }
.float-pup img { width: 100%; height: 100%; object-fit: cover; }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: grid; place-items: center; gap: 8px; z-index: 3; font-family: var(--font-display); font-size: 11px; letter-spacing: .3em; color: var(--ink-soft); }
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--caramel), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--caramel); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%{ transform: translateY(0);} 100%{ transform: translateY(300%);} }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; background: linear-gradient(90deg, var(--toffee), var(--caramel), var(--toffee)); padding: 16px 0; }
.marquee__track { display: inline-flex; will-change: transform; animation: marqueeScroll 24s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 3vw, 28px); text-transform: uppercase; color: #fff4e2; letter-spacing: .02em; padding-right: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Shared ---------- */
.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .1em; color: var(--caramel); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.02em; }
.section-title em { font-style: normal; color: var(--caramel); }
.section-title--center { text-align: center; }

/* ---------- Story ---------- */
.story { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px,12vw,150px) clamp(18px,4vw,40px); }
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px,6vw,90px); align-items: center; }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; } }
.story__art { display: grid; place-items: center; }
.story__frame { position: relative; width: min(380px, 80vw); aspect-ratio: 4/5; border-radius: 30px; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-lift); transform-style: preserve-3d; }
.story__frame img { width: 100%; height: 100%; object-fit: cover; }
.story__sticker { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .04em; color: var(--ink); background: var(--honey-hot); padding: 8px 14px; border-radius: 99px; box-shadow: 0 8px 18px -8px rgba(90,50,20,0.6); transform: rotate(-4deg); }
.story__lead { margin-top: 24px; font-size: clamp(16px,1.6vw,19px); color: var(--ink-soft); max-width: 560px; }
.story__stats { display: flex; gap: clamp(24px,4vw,54px); margin-top: 42px; flex-wrap: wrap; }
.stat__num, .stat__suffix { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px,5vw,56px); color: var(--caramel); line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-soft); }

/* ---------- Traits ---------- */
.tok { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px,7vw,90px) clamp(18px,4vw,40px); }
.tok__head { text-align: center; margin-bottom: 52px; }
.tok__head .eyebrow { text-align: center; }
.tok__cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .tok__cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .tok__cards { grid-template-columns: 1fr; } }
.tcard { position: relative; padding: 30px 26px; border-radius: 24px; background: var(--card); border: 1px solid rgba(58,35,20,0.07); box-shadow: 0 18px 40px -28px rgba(90,50,20,0.4); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tcard::after { content:""; position:absolute; top:-40%; right:-40%; width:120px; height:120px; background: radial-gradient(circle, rgba(240,169,78,0.45), transparent 70%); opacity:0; transition: opacity .4s var(--ease); }
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.tcard:hover::after { opacity: 1; }
.tcard__icon { font-size: 40px; margin-bottom: 14px; }
.tcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.tcard p { font-size: 15px; color: var(--ink-soft); }

/* ---------- How to buy ---------- */
.buy { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px,7vw,90px) clamp(18px,4vw,40px); }
.buy__head { text-align: center; margin-bottom: 52px; }
.buy__head .eyebrow { text-align: center; }
.buy__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 900px) { .buy__steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .buy__steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 32px 24px 26px; border-radius: 24px; background: var(--card); border: 1px solid rgba(58,35,20,0.07); box-shadow: 0 18px 40px -30px rgba(90,50,20,0.4); transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: transparent; -webkit-text-stroke: 1.6px rgba(217,138,55,0.65); line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 14px 0 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }
.buy__cta { text-align: center; margin-top: 46px; }

/* ---------- Gallery ---------- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px,7vw,90px) clamp(18px,4vw,40px); }
.gallery__head { text-align: center; margin-bottom: 48px; }
.gallery__head .eyebrow { text-align: center; }
.gallery__grid { column-count: 4; column-gap: 16px; }
@media (max-width: 900px) { .gallery__grid { column-count: 3; } }
@media (max-width: 620px) { .gallery__grid { column-count: 2; column-gap: 12px; } }
.gitem {
  position: relative; break-inside: avoid; margin: 0 0 16px; display: block;
  border-radius: 22px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-soft);
}
.gitem img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.gitem:hover img { transform: scale(1.06); }
.gitem figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px;
  font-family: var(--font-display); font-weight: 500; font-size: 13px; color: #fff;
  background: linear-gradient(transparent, rgba(40,22,10,0.78));
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gitem:hover figcaption { opacity: 1; transform: none; }
@media (hover: none) { .gitem figcaption { opacity: 1; transform: none; } }

/* ---------- Roadmap ---------- */
.road { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px,7vw,90px) clamp(18px,4vw,40px); }
.road__head { text-align: center; margin-bottom: 60px; }
.road__head .eyebrow { text-align: center; }
.road__line { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.road__line::before { content:""; position:absolute; top:7px; left:0; right:0; height:2px; background: linear-gradient(90deg, var(--berry), var(--honey), var(--toffee)); opacity:.5; }
@media (max-width: 820px) {
  .road__line { grid-template-columns: 1fr; gap: 0; }
  .road__line::before { top:0; bottom:0; left:7px; right:auto; width:2px; height:auto; }
  .phase { padding-left: 34px; padding-bottom: 34px; }
}
.phase { position: relative; padding-top: 30px; }
.phase__dot { position:absolute; top:0; left:0; width:16px; height:16px; border-radius:50%; background: var(--caramel); box-shadow: 0 0 0 5px rgba(217,138,55,0.2); }
@media (max-width: 820px) { .phase__dot { top: 4px; } }
.phase__tag { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .12em; color: var(--caramel); text-transform: uppercase; }
.phase h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 6px 0 8px; }
.phase p { font-size: 14px; color: var(--ink-soft); max-width: 240px; }

/* ---------- CTA ---------- */
.cta { padding: clamp(60px,9vw,130px) clamp(18px,4vw,40px); }
.cta__inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; padding: clamp(50px,8vw,84px) clamp(24px,5vw,70px); border-radius: 40px; overflow: hidden; background: linear-gradient(160deg, #fff6e7, #f7e3c4); border: 1px solid rgba(217,138,55,0.25); box-shadow: var(--shadow-lift); }
.cta__inner::before { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(600px 300px at 50% 0%, rgba(240,169,78,0.35), transparent 70%); }
.cta__pup { width: 104px; height: 104px; border-radius: 50%; overflow: hidden; margin: 0 auto 22px; border: 5px solid #fff; box-shadow: var(--shadow-soft); position: relative; z-index: 1; animation: pupBob 3.4s ease-in-out infinite; }
.cta__pup img { width: 100%; height: 100%; object-fit: cover; }
.cta__title { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,6vw,60px); line-height: 1.02; letter-spacing: -0.02em; }
.cta__sub { position: relative; z-index: 1; margin: 16px auto 0; max-width: 500px; color: var(--ink-soft); font-size: clamp(15px,1.8vw,18px); }
.cta__btns { position: relative; z-index: 1; margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(58,35,20,0.1); padding: 46px clamp(18px,4vw,46px) 32px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.footer__logo { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; border: 2px solid #fff; box-shadow: 0 4px 12px -4px rgba(90,50,20,0.5); }
.footer__logo img { width: 100%; height: 100%; object-fit: cover; }
.footer__socials { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__socials a { font-size: 15px; color: var(--ink-soft); transition: color .3s; }
.footer__socials a:hover { color: var(--caramel); }
.footer__bottom { max-width: var(--maxw); margin: 28px auto 0; padding-top: 22px; border-top: 1px solid rgba(58,35,20,0.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: 12.5px; color: rgba(58,35,20,0.5); max-width: 640px; }
.footer__copy { white-space: nowrap; }

/* ---------- Reveal ---------- */
[data-reveal], [data-reveal-lines] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in, [data-reveal-lines].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001s !important; }
  [data-reveal], [data-reveal-lines], .hero__title .word, .hero__stage { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
