/* ============================================================
   Motori & Co. — Italian-American Design House
   Type system v1: Jost (display) + Inter (text)
   per Website/Typography/TYPOGRAPHY.md
   ============================================================ */

:root {
  --eggshell: #F4F2EC;
  --eggshell-deep: #EBE9E1;
  --ink: #131312;
  --graphite: #1E1E1C;
  --graphite-deep: #151514;
  --bronze: #A8824F;
  --silver: #ACABA3;
  --line-dark: rgba(19, 19, 18, 0.12);
  --line-light: rgba(244, 242, 236, 0.18);

  --display: "Jost", "Futura", "Century Gothic", sans-serif;
  --text: "Inter", -apple-system, "Helvetica Neue", sans-serif;

  /* Type scale (spec) */
  --h1: clamp(2.75rem, 8vw, 5.25rem);          /* 44–84px, lh 1.04 */
  --h2: clamp(1.875rem, 3.6vw, 3rem);          /* 30–48px, lh 1.12 */
  --h3: 1.5rem;                                 /* 24px */
  --pull: clamp(1.625rem, 2.6vw, 2.25rem);     /* 26–36px, lh 1.3 */
  --small: 0.8125rem;                           /* 13px — eyebrows, captions, buttons */

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.9s;

  --pad: clamp(1.5rem, 5vw, 4rem);
  --section: clamp(6rem, 14vh, 11rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--text);
  font-weight: 400;
  font-size: 1.0625rem;            /* 17px */
  color: var(--ink);
  background: var(--eggshell);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container {
  width: min(1240px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { width: min(880px, 100%); }

section { padding-block: var(--section); }
.section--dark { background: var(--graphite); color: var(--eggshell); }

/* ---------- Type helpers ---------- */
/* Eyebrow / kicker — Jost 500 · caps · .28em (echoes the wordmark) */
.label {
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}
.label--light { color: var(--bronze); }

/* H1 signature: Medium statement, Light counterpoint */
.type-medium { font-weight: 500; }
.type-light { font-weight: 300; }

/* ---------- Buttons — Jost 500 · 13px · caps · .24em ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.05em 2.4em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease),
              border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--eggshell); border-color: var(--ink); }
.btn--solid:hover { background: #2E2E2B; border-color: #2E2E2B; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-light); color: var(--eggshell); }
.btn--ghost:hover { border-color: var(--eggshell); transform: translateY(-2px); }
.btn--light { border-color: var(--line-light); color: var(--eggshell); margin-top: 3rem; }
.btn--light:hover { background: var(--eggshell); color: var(--graphite); border-color: var(--eggshell); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

/* ============================================================
   NAV — Jost 500 · 13px · caps · .24em
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  color: var(--eggshell);
  transition: background-color 0.6s var(--ease), color 0.6s var(--ease),
              padding 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.nav--solid {
  background: rgba(244, 242, 236, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding-block: 1rem;
  box-shadow: 0 1px 0 var(--line-dark);
}
.nav__brand {
  position: relative;
  display: block;
  height: 2.4rem;
}
.nav__logo {
  height: 100%;
  width: auto;
  transition: opacity 0.6s var(--ease);
}
.nav__logo--ink {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.nav--solid .nav__logo--ink { opacity: 1; }
.nav--solid .nav__logo--eggshell { opacity: 0; }
.nav--open .nav__logo--ink { opacity: 0; }
.nav--open .nav__logo--eggshell { opacity: 1; }
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  padding-block: 0.3em;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 2.2rem; height: 2rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.nav__toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

/* ============================================================
   1 · HERO — H1: Jost, Medium + Light mix, lh 1.04, −0.01em
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--eggshell);
  background: var(--graphite-deep);
  overflow: hidden;
  padding-block: 0;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroSettle 2.4s var(--ease) 0.2s forwards;
}
@keyframes heroSettle {
  to { opacity: 1; transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14, 14, 13, 0.35) 0%,
    rgba(14, 14, 13, 0.12) 45%,
    rgba(14, 14, 13, 0.72) 100%);
}
/* Tonal fallback when no hero photo is present */
.hero--tonal .hero__media {
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(195, 161, 92, 0.10) 0%, transparent 55%),
    linear-gradient(165deg, #262624 0%, var(--graphite-deep) 60%, #101010 100%);
}
.hero--tonal .hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/texture-vimini.jpg") center/560px repeat;
  opacity: 0.06;
  mix-blend-mode: luminosity;
}
.hero--tonal .hero__scrim { background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 13, 0.5) 100%); }

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(5rem, 12vh, 8rem);
}
.hero__label {
  /* over photography the bronze got lost — eggshell text, bronze dash keeps the accent */
  color: rgba(244, 242, 236, 0.92);
  display: flex;
  align-items: center;
  gap: 0.9em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.9s forwards;
}
.hero__label::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--bronze);
  flex: none;
}
.hero__title {
  font-family: var(--display);
  font-size: var(--h1);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(0.6em);
  animation: fadeUp 1.4s var(--ease) forwards;
}
.hero__line--medium { font-weight: 500; }
.hero__line--light { font-weight: 300; }
.hero__line:nth-child(1) { animation-delay: 1.1s; }
.hero__line:nth-child(2) { animation-delay: 1.3s; }
.hero__sub {
  max-width: 62ch;
  width: min(34em, 100%);
  margin-top: 2rem;
  color: rgba(244, 242, 236, 0.85);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 1.7s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.8rem;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 2s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(0.6em); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__hint {
  position: absolute;
  bottom: 2.2rem; right: var(--pad);
  z-index: 2;
  width: 1px; height: 56px;
  overflow: hidden;
}
.hero__hint span {
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--eggshell));
  animation: hintDrop 2.6s var(--ease) infinite;
}
@keyframes hintDrop {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ============================================================
   2 · MANIFESTO — display statement, Medium/Light mix
   ============================================================ */
.manifesto { position: relative; overflow: hidden; }
.manifesto::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/texture-vimini.jpg") center/620px repeat;
  opacity: 0.05;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.manifesto .container { position: relative; }
.manifesto__text {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
  max-width: 18em;
}
.manifesto__text span { display: block; }
.manifesto__accent { color: var(--bronze); }
.manifesto__close {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  max-width: 46ch;
  color: rgba(244, 242, 236, 0.72);
}

/* ============================================================
   3 · WHAT WE ARE — Light negation, Medium statement
   ============================================================ */
.whatweare { text-align: center; }
.whatweare__negation {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--h2);
  line-height: 1.3;
  color: var(--silver);
}
.whatweare__statement {
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  max-width: 24em;
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.25;
}

/* ============================================================
   4 · TOPOLINO — H2 + pull-quote lead + captions
   ============================================================ */
.topolino { background: var(--eggshell-deep); }
.topolino__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.topolino__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.12;
}
.topolino__lead {
  margin-top: 1.8rem;
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--pull);
  line-height: 1.3;
  color: var(--bronze);
}
.topolino__body {
  margin-top: 1.4rem;
  max-width: 62ch;
  color: rgba(19, 19, 18, 0.75);
}
.topolino__lifestyles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
}
.topolino__lifestyles li {
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Image slots — filled automatically when photos land in /assets */
.imgslot { position: relative; overflow: hidden; background: var(--eggshell); }
.imgslot--portrait { aspect-ratio: 4 / 5; }
.imgslot--square { aspect-ratio: 1; }
.imgslot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.imgslot__placeholder {
  display: none;
  position: absolute; inset: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(90% 90% at 50% 30%, rgba(195, 161, 92, 0.06) 0%, transparent 60%),
    var(--eggshell);
}
.imgslot--empty .imgslot__placeholder { display: flex; }
.imgslot__placeholder--texture {
  background: url("../assets/texture-vimini.jpg") center/300px repeat;
  opacity: 0.5;
}
.imgslot img.imgslot__mark { width: 62%; height: auto; position: static; inset: auto; object-fit: contain; opacity: 0.85; }
.topolino__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

/* ============================================================
   5 · DESIGN PHILOSOPHY — H2 statement, H3 principles
   ============================================================ */
.philosophy__statement {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.18;
  max-width: 24em;
}
.philosophy__principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3.5rem, 8vh, 5.5rem);
  border-top: 1px solid var(--line-dark);
}
.philosophy__principles li {
  padding: 1.8rem 0.5rem 1.8rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--h3);
  line-height: 1.2;
  color: rgba(19, 19, 18, 0.85);
}

/* ============================================================
   6 · WHAT WE CREATE — display list + caption numerals
   ============================================================ */
.create { background: var(--eggshell-deep); }
.create__list { border-top: 1px solid var(--line-dark); }
.create__item {
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.4rem, 3vh, 2rem) 0;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.create__item:hover { padding-left: 0.8rem; }
.create__item::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--bronze);
  transition: width 0.6s var(--ease);
}
.create__item:hover::after { width: 100%; }
.create__num {
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--bronze);
}
.create__item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.15;
}

/* ============================================================
   7 · FOR PARTNERS — H2 + pull quote
   ============================================================ */
.partners__text {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.18;
  max-width: 20em;
}
.partners__point {
  margin-top: 2rem;
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--pull);
  line-height: 1.3;
  color: var(--bronze);
}

/* ============================================================
   8 · INTEREST LIST — H1-weight moment + caption labels
   ============================================================ */
.interest__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form__field { margin-bottom: 1.6rem; }
.form__field label {
  display: block;
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: rgba(19, 19, 18, 0.7);
}
.form__field label em { text-transform: none; letter-spacing: 0.05em; font-style: italic; color: var(--silver); }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: var(--text);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(19, 19, 18, 0.3);
  padding: 0.7em 0;
  border-radius: 0;
  transition: border-color 0.4s var(--ease);
}
.form__field select { cursor: pointer; }
.form__field textarea { resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--bronze);
}
.form__field.is-invalid input,
.form__field.is-invalid select { border-bottom-color: #8F3B2E; }
.form__error {
  display: block;
  font-size: 0.75rem;
  color: #8F3B2E;
  margin-top: 0.4rem;
  min-height: 1em;
}
.form__submit { margin-top: 1rem; }
.form__micro {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--silver);
}
.form__status { margin-top: 1rem; font-size: 0.9rem; color: var(--bronze); }
.form.is-sent .form__row,
.form.is-sent .form__field,
.form.is-sent .form__submit,
.form.is-sent .form__micro { display: none; }
.form.is-sent .form__status {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--pull);
  line-height: 1.3;
  color: var(--ink);
}

/* ============================================================
   9 · FOOTER — captions: Jost 400 · caps · .16em
   ============================================================ */
.footer {
  background: var(--graphite-deep);
  color: var(--eggshell);
  padding-block: clamp(3.5rem, 8vh, 5.5rem) 2rem;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
.footer__logo {
  width: 120px;
  height: auto;
}
.footer__tag {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.5);
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.footer__links a {
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.7);
  transition: color 0.4s var(--ease);
}
.footer__links a:hover { color: var(--bronze); }
.footer__legal {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.4);
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal,
.reveal-line {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--stagger, 0s);
}
.reveal.is-visible,
.reveal-line.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .topolino__grid { grid-template-columns: 1fr; }
  .philosophy__principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--graphite-deep);
    color: var(--eggshell);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    font-size: 1rem;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
  }
  .nav--open .nav__links { transform: translateY(0); }
  .nav--open { color: var(--eggshell); }
  .nav--open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav--open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav__toggle { display: flex; position: relative; z-index: 10; }
  .nav__brand { position: relative; z-index: 10; height: 2rem; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__ctas .btn { width: 100%; text-align: center; }
}

/* ============================================================
   Reduced motion — everything settles instantly
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-line, .hero__line, .hero__sub, .hero__ctas, .hero__label, .hero__img {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__hint { display: none; }
}

/* ============================================================
   NAV DROPDOWN — Topolino editions
   ============================================================ */
.nav__item { position: relative; }
.nav__parent { display: inline-flex; align-items: center; gap: 0.5em; }
.nav__caret {
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.4s var(--ease);
}
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(225deg) translateY(-2px); }
.nav__drop {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  background: rgba(244, 242, 236, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(14, 14, 13, 0.14), 0 1px 0 var(--line-dark) inset;
  padding: 0.9rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav__drop::before {          /* hover bridge */
  content: "";
  position: absolute;
  top: -1rem; left: 0; right: 0; height: 1rem;
}
.nav__drop a {
  display: block;
  padding: 0.65em 1.6em;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav__drop a::after { display: none; }
.nav__drop a:hover { color: var(--bronze); padding-left: 2em; }

/* ============================================================
   HOMEPAGE — edition links in Topolino section
   ============================================================ */
.topolino__editions {
  margin-top: 2.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line-dark);
}
.topolino__editions a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.125rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.topolino__editions a:hover { color: var(--bronze); padding-left: 0.5rem; }
.topolino__editions .arrow {
  font-family: var(--display);
  font-size: var(--small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ============================================================
   EDITION PAGES
   ============================================================ */
.hero--edition { min-height: 88svh; }
.edstory__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.12;
  margin-bottom: clamp(1.8rem, 4vh, 2.6rem);
}
.edstory__para { max-width: 62ch; }
.edstory__para + .edstory__para { margin-top: 1.2rem; }

.board__figure img { width: 100%; height: auto; }
.board__caption {
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.55);
}

/* ---------- Color-of-interest swatches ---------- */
.form__field-label {
  display: block;
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(19, 19, 18, 0.7);
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.6em 1.1em;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.swatch:hover { border-color: var(--silver); }
.swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.swatch__dot {
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  border: 1px solid rgba(19, 19, 18, 0.18);
  flex: none;
}
.swatch__name {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.swatch:has(input:checked) {
  border-color: var(--bronze);
  background: rgba(168, 130, 79, 0.07);
}
.swatch:has(input:focus-visible) { outline: 2px solid var(--bronze); outline-offset: 2px; }

/* Mobile: dropdown flattens into the overlay menu */
@media (max-width: 680px) {
  .nav__item { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
  .nav__caret { display: none; }
  .nav__drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    color: inherit;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .nav__drop a { padding: 0; font-size: 0.72rem; color: rgba(244, 242, 236, 0.65); }
  .nav__drop a:hover { padding-left: 0; }
  .nav__drop::before { display: none; }
}

/* Topolino collage — single editorial frame replaces main+details grid */
.imgslot--collage { aspect-ratio: 2 / 3; }
.imgslot--collage img { object-fit: cover; }
@media (max-width: 900px) {
  .imgslot--collage { aspect-ratio: 3 / 4; }
}


/* ============================================================
   COPY v1 SUPPORT — new slots per Motori_Homepage_Copy_v1.md
   ============================================================ */
/* Atelier body copy */
.philosophy__body { max-width: 62ch; }
.philosophy__body + .philosophy__body { margin-top: 1.2rem; }
.philosophy__statement + .philosophy__body { margin-top: clamp(1.8rem, 4vh, 2.6rem); }
/* Motori Standard — five words, five columns */
.philosophy__principles--five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .philosophy__principles--five { grid-template-columns: repeat(2, 1fr); } }

/* Three paths — numbered entries with body copy */
.paths { margin-top: clamp(3rem, 7vh, 5rem); }
.paths .create__item { align-items: baseline; cursor: default; }
.paths .create__item:hover { padding-left: 0; }
.paths .create__item:hover::after { width: 0; }
.path__copy h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}
.path__copy p { max-width: 62ch; margin-top: 0.7rem; color: rgba(19, 19, 18, 0.75); }
.buildnote {
  margin-top: clamp(2rem, 5vh, 3rem);
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  color: var(--bronze);
  max-width: 40em;
}

/* Editions list — intro line + edition one-liners, items are links */
.create__intro {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--pull);
  line-height: 1.3;
  max-width: 26em;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
li > a.create__item { display: flex; width: 100%; }
.create__line {
  margin-left: auto;
  font-family: var(--display);
  font-size: var(--small);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: right;
}

/* Who it's for — body copy on dark */
.partners__body {
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
  max-width: 62ch;
  color: rgba(244, 242, 236, 0.72);
}

/* Inquiry body line */
.interest__body {
  margin-top: -1.5rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  max-width: 62ch;
  color: rgba(19, 19, 18, 0.75);
}

/* ============================================================
   HOMEPAGE IMAGE BLOCKS — pacing the scroll
   All slots auto-activate when files land in /assets
   ============================================================ */
/* Scene band — wide cinematic frame under the ethos */
.imgslot--band {
  aspect-ratio: 2 / 1;
  max-height: 68vh;
  width: 100%;
  margin-bottom: clamp(3rem, 8vh, 5rem);
}
.imgslot--band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Atelier triptych — three hands-on details */
.atelier__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  margin-top: clamp(2.5rem, 6vh, 4rem);
}

/* Edition list thumbnails — quiet, colour arrives on hover */
.create__thumb {
  width: clamp(5.5rem, 10vw, 8rem);
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  flex: none;
  align-self: center;
  filter: grayscale(1);
  transition: filter 0.6s var(--ease);
}
.create__item:hover .create__thumb { filter: grayscale(0); }
li > a.create__item { align-items: center; }

/* Who it's for — copy beside the owner's world */
.partners__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.partners__media { background: rgba(244, 242, 236, 0.04); }
.partners__media .imgslot__placeholder {
  border-color: var(--line-light);
  background: transparent;
}
.partners__media .imgslot__placeholder--texture { opacity: 0.15; }

@media (max-width: 900px) {
  .partners__grid { grid-template-columns: 1fr; }
  .imgslot--band { aspect-ratio: 16 / 10; }
  .atelier__strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .create__thumb { display: none; }
}

/* Footer disclaimer — quiet legal, readable but recessive */
.footer__disclaimer {
  font-family: var(--text);
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(244, 242, 236, 0.38);
  max-width: 88ch;
  margin-bottom: 1.2rem;
}
