/* =========================================================
   HOLMI.WEBSITE — "Sunlit Modernism"
   1. Tokens
   2. Reset & base
   3. Utilities (shell, labels, buttons, rules, meta)
   4. Navigation
   5. Hero + Holmi Object
   6. Brand statement
   7. Three ideas
   8. Holmi Object section
   9. Editorial showcase
   10. Human section
   11. Colour break
   12. Final CTA
   13. Footer
   14. Motion
   15. Responsive
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  --sunlight: #F7C95C;
  --chalk: #FFF9ED;
  --ink: #202321;
  --sage: #8BAE8A;
  --terracotta: #C96B4B;
  --stone: #8A877D;

  --hairline: rgba(32, 35, 33, .14);
  --hairline-strong: rgba(32, 35, 33, .28);
  --hairline-light: rgba(255, 249, 237, .18);

  --grad: linear-gradient(135deg, #F7C95C 0%, #C96B4B 100%);

  --display: "Bodoni Moda", "Times New Roman", serif;
  --body: "Outfit", "Helvetica Neue", Arial, sans-serif;

  --shell: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(84px, 12vh, 168px);

  --radius: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --slow: .7s var(--ease);
}

/* ---------- 2. RESET & BASE ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(15px, .55vw + 13.6px, 17px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, figure { margin: 0; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }

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

.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: .92;
}

.line { display: block; }
.accent { color: var(--terracotta); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translate(-50%, -160%);
  z-index: 60;
  background: var(--ink);
  color: var(--chalk);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .3s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.desktop-only { display: inline; }
.mobile-only { display: none; }

/* ---------- 3. UTILITIES ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.label {
  font-size: clamp(10px, .4vw + 9px, 11.5px);
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--stone);
}
.label--chalk { color: rgba(255, 249, 237, .55); }

.meta,
.micro,
.specs {
  font-size: clamp(9.5px, .35vw + 8.6px, 11px);
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--stone);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(14px, 2vw, 28px);
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--hairline);
}
.meta li { position: relative; }
.meta li:first-child { color: var(--ink); }

.rule {
  display: block;
  height: 1px;
  width: 40px;
  background: var(--ink);
}
.rule--terracotta {
  background: var(--terracotta);
  height: 2px;
  width: 56px;
}

.section-head {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  padding-bottom: clamp(40px, 6vw, 74px);
  border-bottom: 1px solid var(--hairline);
}
.section-head .display { font-size: clamp(30px, 4vw, 54px); }

/* buttons */
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
}
.actions--center { justify-content: center; }

.btn {
  --btn-shadow: 0 10px 24px -18px rgba(32, 35, 33, .5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: clamp(11px, .35vw + 10px, 12.5px);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: transform var(--slow), box-shadow var(--slow),
              background-color var(--slow), color var(--slow), border-color var(--slow);
}

.btn--ink {
  background: var(--ink);
  color: var(--chalk);
  box-shadow: var(--btn-shadow);
}
.btn--ink:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -20px rgba(32, 35, 33, .62);
}

.btn--line {
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
}
.btn--line:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-3px);
}

.btn span[aria-hidden="true"] {
  transition: transform var(--slow);
}
.btn:hover span[aria-hidden="true"]:not(.chip) { transform: translateX(5px); }

.chip {
  width: 9px;
  height: 9px;
  background: var(--sunlight);
  flex: none;
}

/* ---------- 4. NAVIGATION ---------- */
.nav-wrap {
  position: sticky;
  top: clamp(12px, 2vw, 22px);
  z-index: 50;
  padding-inline: var(--gutter);
  padding-top: clamp(12px, 2vw, 22px);
}

.nav {
  max-width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px clamp(14px, 1.6vw, 22px);
  background: var(--chalk);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -34px rgba(32, 35, 33, .45);
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.nav__brand-name {
  font-family: var(--display);
  font-size: clamp(17px, 1vw + 14px, 22px);
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__brand-tld,
.nav__center,
.nav__cta {
  font-size: clamp(9.5px, .3vw + 8.8px, 11px);
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.nav__brand-tld { color: var(--stone); }

.nav__center {
  text-align: center;
  color: var(--stone);
}

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  transition: background-color var(--slow), color var(--slow), border-color var(--slow);
}
.nav__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--chalk);
}

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 104px) var(--section-y);
  background: var(--chalk);
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--hairline);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.hero__title {
  font-size: clamp(56px, 11.4vw, 152px);
  margin-block: clamp(26px, 4vw, 44px) clamp(22px, 3vw, 32px);
}
.hero__title .line { text-indent: 0; }
.hero__title .line:nth-child(2) { padding-left: .12em; }
.hero__title .line:nth-child(3) { padding-left: .24em; }
.hero__title .accent { padding-left: .36em; font-style: italic; }

.hero__lede {
  max-width: 44ch;
  font-size: clamp(16px, .8vw + 14px, 21px);
  color: rgba(32, 35, 33, .78);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(44px, 7vw, 82px);
  font-size: clamp(9.5px, .3vw + 8.8px, 11px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--stone);
}
.scroll-cue__line {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  transform-origin: left;
  animation: holmiLine 5.5s var(--ease) infinite;
}

/* --- HOLMI OBJECT (hero) --- */
.hero__object {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.object {
  position: relative;
  aspect-ratio: 1 / 1.06;
  width: 100%;
}

/* large cream rectangle */
.object__paper {
  position: absolute;
  inset: 6% 4% 10% 8%;
  background: #FFFDF7;
  border: 1px solid var(--hairline);
  border-radius: 4px 4px 90px 4px;
  box-shadow: 0 40px 70px -50px rgba(32, 35, 33, .55),
              0 4px 0 0 rgba(32, 35, 33, .04);
}
.object__paper::after {
  content: "";
  position: absolute;
  inset: 8% 10% auto 10%;
  height: 1px;
  background: var(--hairline);
}

/* sunlight circle */
.object__sun {
  position: absolute;
  top: 8%;
  right: 2%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sunlight);
  box-shadow: 0 26px 44px -30px rgba(199, 150, 40, .8);
  animation: holmiFloat 9s ease-in-out infinite;
}

/* sage curved shape */
.object__curve {
  position: absolute;
  left: 2%;
  bottom: 8%;
  width: 44%;
  aspect-ratio: 1 / .8;
  background: var(--sage);
  border-radius: 999px 999px 12px 12px;
  transform: rotate(-6deg);
  animation: holmiSway 13s ease-in-out infinite;
}

/* terracotta vertical bar */
.object__bar {
  position: absolute;
  right: 20%;
  bottom: 0;
  width: clamp(16px, 3.4%, 30px);
  height: 52%;
  background: var(--terracotta);
  border-radius: 2px;
  box-shadow: 0 22px 34px -26px rgba(122, 55, 34, .8);
}

/* thin ink lines */
.object__rules {
  position: absolute;
  left: 12%;
  top: 34%;
  width: 30%;
  height: 44px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
}
.object__rules::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 62%;
  height: 1px;
  background: var(--hairline);
}

/* signature seal */
.object__seal {
  position: absolute;
  left: 44%;
  bottom: 16%;
  width: clamp(104px, 40%, 150px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sunlight);
  color: var(--ink);
  font-size: clamp(10px, .4vw + 9px, 12px);
  font-weight: 500;
  letter-spacing: .24em;
  box-shadow: 0 24px 44px -28px rgba(32, 35, 33, .55);
  animation: holmiFloat 9s ease-in-out infinite reverse;
}
.object__dot {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 10px 20px -12px rgba(201, 107, 75, .9);
}

.micro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px clamp(12px, 2vw, 24px);
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--hairline);
}
.micro li { display: flex; align-items: center; gap: 8px; }
.micro li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sunlight);
  flex: none;
}
.micro li:nth-child(3)::before { background: var(--sage); }
.micro li:nth-child(4)::before { background: var(--terracotta); }

/* ---------- 6. BRAND STATEMENT ---------- */
.statement {
  background: var(--sage);
  color: var(--ink);
  padding-block: var(--section-y);
}
.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(28px, 4vw, 64px);
}
.statement .label { color: rgba(32, 35, 33, .62); }

.statement__title {
  font-size: clamp(44px, 8.4vw, 116px);
}
.statement__title .line:nth-child(2) { padding-left: .1em; }
.statement__title .line:nth-child(3) { font-style: italic; }

.statement__body .rule { margin-block: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 28px); }

.statement__copy {
  max-width: 46ch;
  font-size: clamp(16px, .7vw + 14px, 20px);
  color: rgba(32, 35, 33, .8);
}

/* ---------- 7. THREE IDEAS ---------- */
.ideas { padding-block: var(--section-y); }

.idea-list li + li { border-top: 1px solid var(--hairline); }

.idea {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 9fr) auto;
  align-items: start;
  gap: clamp(18px, 3vw, 48px);
  padding-block: clamp(34px, 5vw, 62px);
  transition: background-color var(--slow), padding-inline var(--slow);
}
.idea::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--sunlight);
  transition: width var(--slow);
}
.idea::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--terracotta);
  transform: translateY(-50%);
  transition: height var(--slow);
}
.idea-list li:first-child .idea::before { top: -1px; }

.idea__num {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400;
  line-height: .86;
  color: var(--hairline-strong);
  transition: transform var(--slow), color var(--slow);
}

.idea__main { display: grid; gap: clamp(10px, 1.2vw, 16px); }

.idea__kicker {
  font-size: clamp(9.5px, .3vw + 8.8px, 11px);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--stone);
}

.idea__title {
  font-size: clamp(26px, 3.4vw, 46px);
  max-width: 26ch;
}

.idea__copy {
  max-width: 52ch;
  color: rgba(32, 35, 33, .72);
}

.idea__arrow {
  align-self: center;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--stone);
  transition: transform var(--slow), color var(--slow);
}

.idea:hover,
.idea:focus-visible { background: rgba(247, 201, 92, .12); }
.idea:hover::before,
.idea:focus-visible::before { width: 100%; }
.idea:hover::after,
.idea:focus-visible::after { height: 46%; }
.idea:hover .idea__num,
.idea:focus-visible .idea__num { transform: translateX(10px); color: var(--ink); }
.idea:hover .idea__arrow,
.idea:focus-visible .idea__arrow { transform: translateX(12px); color: var(--terracotta); }

/* ---------- 8. HOLMI OBJECT SECTION ---------- */
.object-section {
  padding-block: var(--section-y);
  background: var(--chalk);
  border-top: 1px solid var(--hairline);
}

.object-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.object-section__title {
  font-size: clamp(46px, 7.6vw, 104px);
  margin-block: clamp(20px, 3vw, 30px) clamp(22px, 3vw, 30px);
}
.object-section__title .line:nth-child(3) { font-style: italic; }

.object-section__copy {
  max-width: 40ch;
  color: rgba(32, 35, 33, .74);
}

.specs {
  display: grid;
  gap: 0;
  margin-top: clamp(30px, 4vw, 46px);
  border-top: 1px solid var(--hairline);
}
.specs li {
  display: flex;
  justify-content: space-between;
  padding-block: 12px;
  border-bottom: 1px solid var(--hairline);
}
.specs li span:first-child { color: var(--ink); }

/* --- large arrangement --- */
.arrangement {
  position: relative;
  aspect-ratio: 1 / .84;
  width: 100%;
}

.arrangement__plinth {
  position: absolute;
  inset: auto 0 6% 0;
  height: 1px;
  background: var(--hairline-strong);
}
.arrangement__plinth::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -18px;
  width: 24%;
  height: 18px;
  background: rgba(32, 35, 33, .05);
  filter: blur(1px);
}

.arrangement__ink {
  position: absolute;
  left: 6%;
  bottom: 6%;
  width: 30%;
  height: 62%;
  background: var(--ink);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 40px 60px -46px rgba(32, 35, 33, .75);
}
.arrangement__ink::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 249, 237, .3);
  border-radius: 50%;
}

.arrangement__sun {
  position: absolute;
  left: 26%;
  top: 4%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sunlight);
  box-shadow: 0 34px 54px -38px rgba(199, 150, 40, .85);
  animation: holmiFloat 9s ease-in-out infinite;
}

.arrangement__curve {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 38%;
  height: 46%;
  background: var(--sage);
  border-radius: 240px 12px 4px 4px;
  animation: holmiSway 15s ease-in-out infinite;
}
.arrangement__curve::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 22%;
  width: 34%;
  height: 1px;
  background: rgba(32, 35, 33, .3);
}

.arrangement__block {
  position: absolute;
  right: 30%;
  bottom: 6%;
  width: 14%;
  height: 30%;
  background: var(--terracotta);
  border-radius: 2px;
  box-shadow: 0 26px 40px -32px rgba(122, 55, 34, .85);
}

.arrangement__gradient {
  position: absolute;
  right: 12%;
  top: 12%;
  width: clamp(48px, 8%, 84px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 18px 30px -20px rgba(201, 107, 75, .8);
}

.arrangement__thread {
  position: absolute;
  left: 10%;
  top: 16%;
  width: 1px;
  height: 26%;
  background: var(--hairline-strong);
}
.arrangement__thread::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 1px;
  background: var(--hairline-strong);
}

/* ---------- 9. EDITORIAL SHOWCASE ---------- */
.editorial {
  background: var(--ink);
  color: var(--chalk);
  padding-block: var(--section-y);
}

.editorial__head {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  padding-bottom: clamp(44px, 6vw, 78px);
}
.editorial__title {
  font-size: clamp(48px, 8.6vw, 122px);
}
.editorial__title .line:nth-child(3) { padding-left: .12em; }
.editorial__title .line:nth-child(4) { font-style: italic; color: var(--sunlight); }

.plates {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}

.plate {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--hairline-light);
}
.plate--light { grid-column: span 7; }
.plate--form { grid-column: span 5; }
.plate--material { grid-column: span 5; }
.plate--space { grid-column: span 7; }

.plate__art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 249, 237, .035);
}
.plate--light .plate__art { aspect-ratio: 16 / 9; }
.plate--form .plate__art { aspect-ratio: 4 / 5; }
.plate--material .plate__art { aspect-ratio: 4 / 5; }
.plate--space .plate__art { aspect-ratio: 16 / 9; background: rgba(255, 249, 237, .015); }

.plate__foot { display: grid; gap: 8px; }
.plate__foot h3 {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
}
.plate__foot p {
  font-size: clamp(13px, .4vw + 12px, 15px);
  color: rgba(255, 249, 237, .62);
  max-width: 34ch;
}

.plate__sun {
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sunlight);
  transition: transform 1.1s var(--ease);
}
.plate__sun::after {
  content: "";
  position: absolute;
  inset-inline: 12%;
  top: 50%;
  height: 1px;
  background: rgba(255, 249, 237, .22);
}

.plate__arch {
  width: 56%;
  height: 66%;
  background: var(--sage);
  border-radius: 999px 999px 0 0;
  transition: transform 1.1s var(--ease);
}

.plate__slab {
  width: 46%;
  height: 72%;
  background: var(--terracotta);
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  transition: transform 1.1s var(--ease);
}

.plate__speck {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--chalk);
  transform: translate(-180%, 120%);
  transition: transform 1.4s var(--ease);
}

.plate:hover .plate__sun { transform: translateY(-8px) scale(1.03); }
.plate:hover .plate__arch { transform: translateY(-8px); }
.plate:hover .plate__slab { transform: translateY(-8px) rotate(-1.5deg); }
.plate:hover .plate__speck { transform: translate(180%, -120%); }

/* ---------- 10. HUMAN SECTION ---------- */
.human {
  background: var(--chalk);
  padding-block: clamp(110px, 16vh, 220px);
}
.human__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 8fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}

.human__quote {
  font-size: clamp(120px, 20vw, 280px);
  line-height: .6;
  color: var(--sunlight);
  transform: translateY(.12em);
}

.human__body { display: grid; gap: clamp(18px, 2.4vw, 28px); }

.human__title {
  font-size: clamp(44px, 7.6vw, 106px);
}
.human__title .line:nth-child(3) { font-style: italic; }

.human__copy {
  max-width: 40ch;
  font-size: clamp(16px, .7vw + 14px, 20px);
  color: rgba(32, 35, 33, .76);
}

/* ---------- 11. COLOUR BREAK ---------- */
.break {
  background: var(--sunlight);
  color: var(--ink);
  padding-block: var(--section-y);
}
.break__grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: end;
}
.break__title { font-size: clamp(52px, 9.6vw, 138px); }
.break__title .line:nth-child(2) { font-style: italic; padding-left: .08em; }
.break__title .line:nth-child(4) { padding-left: .16em; }

.break__side {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
  justify-items: start;
  padding-bottom: clamp(8px, 1.4vw, 18px);
}
.break__orb {
  width: clamp(56px, 8vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 20px 34px -22px rgba(122, 55, 34, .7);
  animation: holmiSway 11s ease-in-out infinite;
}
.break__note {
  max-width: 24ch;
  font-size: clamp(13px, .4vw + 12px, 15.5px);
  color: rgba(32, 35, 33, .74);
}

/* ---------- 12. FINAL CTA ---------- */
.cta {
  background: var(--chalk);
  padding-block: var(--section-y);
  border-bottom: 1px solid var(--hairline);
}
.cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(18px, 2.4vw, 28px);
}
.cta__title { font-size: clamp(48px, 9vw, 132px); }
.cta__title .line:nth-child(3) { font-style: italic; }
.cta__copy {
  max-width: 38ch;
  font-size: clamp(16px, .7vw + 14px, 20px);
  color: rgba(32, 35, 33, .76);
}
.cta .actions { margin-top: clamp(12px, 2vw, 20px); }

/* ---------- 13. FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--chalk);
  padding-block: clamp(64px, 9vw, 116px) clamp(28px, 4vw, 44px);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 80px);
}

.footer__brand { position: relative; display: grid; gap: 14px; align-content: start; }
.footer__logo {
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__tld {
  font-family: var(--body);
  font-size: clamp(10px, .4vw + 9px, 12px);
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(255, 249, 237, .55);
}
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, .7vw + 14px, 21px);
  color: rgba(255, 249, 237, .74);
}
.footer__orb {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sunlight);
  margin-top: clamp(10px, 2vw, 20px);
  animation: holmiFloat 9s ease-in-out infinite;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  align-content: start;
}
.footer__col ul { display: grid; gap: 10px; margin-top: 18px; }
.footer__col a {
  font-size: clamp(14px, .4vw + 13px, 16px);
  color: rgba(255, 249, 237, .8);
  transition: color var(--slow), transform var(--slow);
  display: inline-block;
}
.footer__col a:hover { color: var(--sunlight); transform: translateX(4px); }

.footer__base {
  grid-column: 1 / -1;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid var(--hairline-light);
  font-size: clamp(9.5px, .3vw + 8.8px, 11px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 249, 237, .5);
}

/* ---------- 14. MOTION ---------- */
@keyframes holmiFloat {
  0% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}

@keyframes holmiSway {
  0% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-6px); }
  100% { transform: rotate(-3deg) translateY(0); }
}

@keyframes holmiLine {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(2.1); opacity: .6; }
}

@keyframes holmiRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal .line {
  animation: holmiRise 1.1s var(--ease) both;
}
.reveal .line:nth-child(1) { animation-delay: .05s; }
.reveal .line:nth-child(2) { animation-delay: .18s; }
.reveal .line:nth-child(3) { animation-delay: .31s; }
.reveal .line:nth-child(4) { animation-delay: .44s; }

/* ---------- 15. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root { --section-y: clamp(72px, 10vh, 120px); }

  .hero__grid,
  .object-section__grid {
    grid-template-columns: 1fr;
    gap: clamp(38px, 6vw, 56px);
  }
  .hero__object { max-width: 560px; }
  .object { aspect-ratio: 1 / .92; }
  .arrangement { max-width: 640px; aspect-ratio: 1 / .78; }

  .statement__grid,
  .footer__grid { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px); }

  .break__grid { grid-template-columns: 1fr; align-items: start; }

  .plate--light,
  .plate--form,
  .plate--material,
  .plate--space { grid-column: span 6; }
  .plate--light .plate__art,
  .plate--space .plate__art { aspect-ratio: 4 / 3; }

  .idea { grid-template-columns: minmax(0, 2fr) minmax(0, 8fr) auto; }
}

@media (max-width: 720px) {
  :root { --gutter: 22px; --section-y: 76px; }

  .desktop-only { display: none; }
  .mobile-only { display: inline; }

  .nav { padding: 11px 14px; }
  .nav__cta { padding: 8px 13px; }

  .hero { padding-top: 40px; }
  .hero__title .line:nth-child(2),
  .hero__title .line:nth-child(3),
  .hero__title .accent { padding-left: 0; }
  .hero__object { max-width: 100%; }
  .object { aspect-ratio: 1 / 1; }
  .object__rules { display: none; }
  .object__seal { left: auto; right: 4%; bottom: 10%; width: 108px; }
  .object__paper { border-radius: 4px 4px 60px 4px; }
  .micro { grid-template-columns: 1fr; }

  .plate--light,
  .plate--form,
  .plate--material,
  .plate--space { grid-column: 1 / -1; }
  .plate__art { aspect-ratio: 3 / 2 !important; }

  .idea {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num arrow"
      "main main";
    align-items: center;
    row-gap: 16px;
  }
  .idea__num { grid-area: num; }
  .idea__arrow { grid-area: arrow; justify-self: end; }
  .idea__main { grid-area: main; }
  .idea:hover::after,
  .idea:focus-visible::after { height: 0; }

  .human { padding-block: 88px; }
  .human__grid { grid-template-columns: 1fr; }
  .human__quote { font-size: 120px; line-height: .5; }

  .arrangement { aspect-ratio: 1 / 1; }
  .arrangement__thread { display: none; }

  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
}

@media (max-width: 420px) {
  .footer__cols { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
