/* ==========================================================
   Für Nati & Dirk – „Herbario“
   Kalkputz, Oliv, Ocker & Terrakotta mit heimischer Flora
   ========================================================== */

:root {
  --lime: #f3eee4;
  --paper: #fbf8f2;
  --stone: #e3d8c5;
  --sand: #d6c3a3;
  --ochre: #c38e4a;
  --terracotta: #a5573b;
  --olive: #5c6441;
  --olive-deep: #3f4630;
  --sage: #a6ab8a;
  --ink: #2d2a22;
  --ink-soft: #5d574a;

  /* RGB-Kanäle für halbtransparente Varianten: rgb(var(--ink-rgb) / .15) */
  --ink-rgb: 45 42 34;
  --sand-rgb: 214 195 163;
  --ochre-rgb: 195 142 74;
  --lime-rgb: 243 238 228;

  --line: rgb(var(--ink-rgb) / .15);
  --tape: rgb(var(--sand-rgb) / .72);

  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section: clamp(5rem, 11vw, 9rem);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Grundlagen ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  letter-spacing: -.01em;
}

h2 { font-size: clamp(2.8rem, 7vw, 5rem); }

em { font-style: italic; color: var(--terracotta); }

a { color: inherit; }

section { padding: var(--section) var(--gutter); position: relative; }

.kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.4rem;
}

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 7vw, 5.5rem);
}
.section-head__lead { color: var(--ink-soft); margin: 1.5rem auto 0; max-width: 34rem; }

.sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--terracotta);
  margin: 1.5rem 0 0;
}

/* ---------- Pflanzen ---------- */

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.plant { display: block; overflow: visible; aspect-ratio: 1 / 2; width: 120px; height: auto; }

.p-stem   { fill: none; stroke: var(--p-stem, var(--olive)); stroke-width: 1.4; stroke-linecap: round; }
.p-thick  { stroke-width: 2.4; }
.p-leaf   { fill: var(--p-leaf, var(--sage)); stroke: var(--p-stem, var(--olive)); stroke-width: .7; }
.p-fruit  { fill: var(--p-fruit, var(--olive-deep)); }
.p-flower { fill: var(--p-flower, #8a7fa0); }
.p-bract  { fill: var(--p-bract, #b9afcc); }
.p-rose   { fill: var(--p-rose, #d9978a); stroke: var(--p-rose-line, #b8705f); stroke-width: .5; }
.p-center { fill: var(--p-center, var(--ochre)); }
.p-bloom  { fill: var(--p-bloom, #9aa3c4); }
.p-trunk  { fill: var(--p-trunk, #9c7a54); }
.p-cone   { fill: var(--p-cone, #b98a5a); }
.p-needle { fill: none; stroke: var(--p-stem, var(--olive)); stroke-width: .9; stroke-linecap: round; }
.p-line   { fill: none; stroke: var(--p-line, rgb(var(--ink-rgb) / .35)); stroke-width: .7; }

/* einfarbige Strichzeichnung */
.plant--mono {
  --p-stem: var(--sand);
  --p-leaf: transparent;
  --p-fruit: var(--sand);
  --p-flower: transparent;
  --p-bract: transparent;
  --p-rose: transparent;
  --p-rose-line: var(--sand);
  --p-center: var(--sand);
  --p-bloom: var(--sand);
  --p-trunk: transparent;
  --p-cone: transparent;
  --p-line: var(--sand);
}

/* sanftes Wiegen im Wind */
.sway { transform-origin: 50% 100%; animation: sway 7s ease-in-out infinite; }
.sway:nth-of-type(2n) { animation-duration: 8.5s; animation-delay: -2s; }
.sway:nth-of-type(3n) { animation-duration: 6.2s; animation-delay: -4s; }

/* ---------- Bildrahmen ---------- */

.frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--stone), var(--sand));
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }

/* Platzhalter, solange ein Bild fehlt */
.frame.is-empty img { display: none; }
.frame.is-empty::after {
  content: "";
  position: absolute;
  left: 50%; top: 42%;
  width: 34%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ochre);
  opacity: .55;
  box-shadow: 0 0 0 14px rgb(var(--ochre-rgb) / .15), 0 0 0 30px rgb(var(--ochre-rgb) / .08);
}

/* ---------- Navigation ---------- */

.nav {
  --nav-pad: 1.2rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--nav-pad) + var(--safe-top)) var(--gutter) var(--nav-pad);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s;
}
.nav.is-scrolled {
  --nav-pad: .7rem;
  background: rgb(var(--lime-rgb) / .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgb(var(--ink-rgb) / .08);
}
/* backdrop-filter würde das mobile Vollbild-Menü auf die Leiste begrenzen */
.nav.is-scrolled.is-open { backdrop-filter: none; -webkit-backdrop-filter: none; }

.nav__mono,
.nav__toggle { position: relative; z-index: 2; }

.nav__mono {
  font-family: var(--serif);
  font-size: 1.7rem;
  text-decoration: none;
  line-height: 1;
}
.nav__mono em { font-size: .8em; margin: 0 .08em; }

.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  text-decoration: none;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--terracotta);
  transform: scale(0);
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scale(1); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
}
.nav__toggle span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.nav__toggle span:first-child { top: 13px; }
.nav__toggle span:last-child { top: 22px; }
.nav.is-open .nav__toggle span:first-child { top: 17px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 17px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: calc(7rem + var(--safe-top));
  overflow: hidden;
}

.hero__title {
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: .92;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.hero__for {
  font-size: .32em;
  font-style: italic;
  color: var(--olive);
  margin-bottom: .3em;
}
.hero__indent { padding-left: 1.1em; }

.hero__lead { max-width: 27rem; color: var(--ink-soft); margin: 0 0 2.2rem; }

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--terracotta);
}
.hero__cta span { transition: transform .4s var(--ease); }
.hero__cta:hover span { transform: translateY(4px); }

.hero__visual {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
}

.hero__frame {
  width: 100%;
  aspect-ratio: 4 / 5.4;
  border-radius: 50%;
  box-shadow: 0 50px 90px -50px rgb(var(--ink-rgb) / .55);
}

.hero__visual .plant { position: absolute; z-index: 2; }
.hero__olivo    { width: 34%; left: -20%; bottom: -4%; }
.hero__cantueso { width: 26%; right: -12%; bottom: -6%; }

.badge {
  position: absolute;
  width: 34%;
  top: 2%;
  right: -8%;
  z-index: 3;
}
.badge__bg { fill: var(--paper); filter: drop-shadow(0 10px 18px rgb(var(--ink-rgb) / .18)); }
.badge__ring {
  transform-origin: 100px 100px;
  animation: spin 30s linear infinite;
}
.badge text {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  fill: var(--ink);
}
.badge .badge__center {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  fill: var(--terracotta);
}

/* ---------- Laufband ---------- */

.marquee {
  background: var(--olive);
  color: var(--lime);
  overflow: hidden;
  padding: 1.1rem 0;
  transform: rotate(-1.2deg);
  margin: 0 -2vw;
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  padding: 0 1.6rem;
  line-height: 1.2;
}
.marquee i { font-style: normal; color: var(--ochre); font-size: 1.1rem; }

/* ---------- Auftakt ---------- */

.intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  max-width: 1180px;
  margin: 0 auto;
  padding-top: calc(var(--section) + 2rem);
}

.intro__plant {
  position: absolute;
  width: 90px;
  top: 3rem;
  left: var(--gutter);
  opacity: .9;
}

.intro__quote { margin: 0; }
.intro__quote p {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  margin: 0;
}

.polaroid {
  margin: 0;
  justify-self: center;
  width: min(100%, 330px);
  background: var(--paper);
  padding: 14px 14px 0;
  box-shadow: 0 30px 60px -30px rgb(var(--ink-rgb) / .45), 0 2px 6px rgb(var(--ink-rgb) / .06);
  transform: rotate(3deg);
  position: relative;
}
/* Klebestreifen */
.polaroid::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  width: 96px; height: 28px;
  margin-left: -48px;
  background: var(--tape);
  transform: rotate(-4deg);
}
.polaroid .frame { aspect-ratio: 1; }
.polaroid figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
  padding: .9rem 0 1rem;
}

/* ---------- Momente ---------- */

.moments { background: var(--paper); }

.story {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 10vw, 8rem);
}

.moment {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.moment:nth-child(even) .moment__media { order: 2; }

.moment__media {
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: none;
  display: block;
  width: 100%;
}
.moment__media:hover img { transform: scale(1.04); }

.moment .frame {
  aspect-ratio: 4 / 5;
  border-radius: 200px 14px 200px 14px;
}
.moment:nth-child(even) .frame { border-radius: 14px 200px 14px 200px; }
.moment:nth-child(3n) .frame { aspect-ratio: 5 / 4; border-radius: 999px 999px 14px 14px; }

.moment__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ochre);
  display: block;
  margin-bottom: .8rem;
}
.moment h3 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.moment p { color: var(--ink-soft); margin: 0; max-width: 28rem; }

.moments__empty {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink-soft);
}

/* Bilderstreifen „Und noch viel mehr“ */

.more { max-width: 1280px; margin: clamp(5rem, 11vw, 9rem) auto 0; }
.more__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.more__head h3 { font-size: clamp(2rem, 4.5vw, 3rem); }

.strip__controls { display: flex; gap: .6rem; }

.round-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s, border-color .35s;
}
.round-btn:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--paper); }

.strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: .5rem;
  cursor: grab;
}
.strip::-webkit-scrollbar { display: none; }
.strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.strip.is-dragging img { pointer-events: none; }

.strip__item {
  flex: 0 0 auto;
  height: clamp(260px, 48vh, 460px);
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  background: var(--stone);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 10px;
}
.strip__item:nth-child(3n + 2) { border-radius: 999px 999px 10px 10px; }
.strip__item img {
  height: 100%;
  width: auto;
  max-width: none;
  filter: sepia(.1) saturate(.95);
  transition: filter .6s, transform 1.2s var(--ease);
  user-select: none;
  -webkit-user-drag: none;
}
.strip__item:hover img { filter: none; transform: scale(1.03); }

/* ---------- Briefe ---------- */

.letters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 7vw, 5rem);
}
.letters .section-head { margin-bottom: 0; }

.sheet {
  --tilt: -.6deg;
  position: relative;
  width: min(100%, 900px);
  background: var(--paper);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(5.5rem, 9vw, 6rem);
  box-shadow: 0 30px 60px -40px rgb(var(--ink-rgb) / .4), 0 1px 3px rgb(var(--ink-rgb) / .06);
  transform: rotate(var(--tilt));
}
.sheet--flip { --tilt: .6deg; grid-template-columns: 1fr 170px; }
.sheet--flip .sheet__plant { order: 2; }

/* Klebestreifen */
.sheet::before,
.sheet::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 90px; height: 26px;
  background: var(--tape);
}
.sheet::before { left: 8%; transform: rotate(-6deg); }
.sheet::after { right: 8%; transform: rotate(5deg); }

.sheet__plant { width: 100%; max-width: 170px; align-self: center; justify-self: center; }

.sheet__text h3 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 1.5rem; }
.sheet__text p { margin: 0 0 1.1rem; color: var(--ink-soft); }
.sheet__text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: .8;
  padding: .1em .1em 0 0;
  color: var(--terracotta);
}

.sheet__label {
  --label-inset: clamp(1rem, 3vw, 2rem);
  position: absolute;
  right: var(--label-inset);
  bottom: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgb(var(--ink-rgb) / .25);
  padding: .55rem .9rem;
  font-size: .68rem;
  letter-spacing: .08em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  background: var(--lime);
}
.sheet--flip .sheet__label { right: auto; left: var(--label-inset); }
.sheet__label strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--ink);
}

/* ---------- Wünsche ---------- */

.wishes { background: var(--stone); }

.wishes__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1150px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.wishes__grid li {
  background: var(--stone);
  padding: 2.5rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background .5s var(--ease);
}
.wishes__grid li:hover { background: var(--lime); }
.wishes__grid .plant { width: 80px; margin-bottom: 1.6rem; }
.wishes__grid strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: .8rem;
}
.wishes__grid p { margin: 0 0 1.2rem; color: var(--ink-soft); font-size: .96rem; }
.wishes__grid em {
  margin-top: auto;
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ---------- Abschluss ---------- */

.closing {
  background:
    radial-gradient(circle at 80% 30%, rgb(var(--ochre-rgb) / .25), transparent 45%),
    var(--olive);
  color: var(--lime);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 0;
  overflow: hidden;
}
.closing__palm {
  --p-leaf: #7d8660;
  --p-stem: #c9c7a6;
  --p-trunk: var(--ochre);
  width: clamp(160px, 22vw, 260px);
  margin-left: auto;
}
.closing__text { padding-bottom: var(--section); max-width: 32rem; }
.closing .kicker { color: var(--sand); }
.closing h2 { font-size: clamp(3.5rem, 11vw, 8rem); margin-bottom: 1.5rem; }
.closing h2 em { color: var(--ochre); }
/* gleicher Stil wie die kleine Zeile „¡Salud!“ */
.closing__love,
.closing .sign {
  font-family: var(--sans);
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0;
}
.closing .sign { margin-top: .6rem; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  padding: 3.5rem var(--gutter) calc(3rem + var(--safe-bottom));
}
.footer__plants {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.5rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  opacity: .55;
}
.footer__plants .plant { width: clamp(28px, 5vw, 44px); }
.footer__names {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 0 0 .4rem;
  line-height: 1.1;
  color: var(--lime);
}
.footer__names em { color: var(--ochre); }
.footer small { letter-spacing: .3em; font-size: .7rem; opacity: .7; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgb(33 30 24 / .95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
  animation: fade .4s var(--ease);
}
.lightbox__figure { margin: 0; text-align: center; }
.lightbox img { max-height: 80vh; max-width: min(90vw, 1100px); object-fit: contain; margin: 0 auto; }
.lightbox figcaption {
  color: var(--sand);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 1rem;
  min-height: 1.4em;
}
.lightbox button {
  position: absolute;
  background: none;
  border: 0;
  color: var(--sand);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: .8rem 1rem;
  opacity: .75;
  transition: opacity .3s;
}
.lightbox button:hover { opacity: 1; }
.lightbox__close { top: calc(.5rem + var(--safe-top)); right: .5rem; font-size: 2.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: .25rem; }
.lightbox__next { right: .25rem; }

/* ---------- Einblenden ----------
   Bewegt wird über `translate`, damit gedrehte Elemente (Polaroid, Briefe)
   ihr `transform: rotate()` behalten und wiegende Pflanzen (`rotate`)
   gleichzeitig einfliegen können. */

.load {
  opacity: 0;
  translate: 0 24px;
  animation: rise 1.2s var(--ease) var(--d, 0s) forwards;
}
.load.sway {
  animation:
    rise 1.2s var(--ease) var(--d, 0s) forwards,
    sway 7s ease-in-out calc(var(--d, 0s) + 1.2s) infinite;
}

.reveal {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 1.1s var(--ease), translate 1.1s var(--ease);
}
.reveal.is-visible { opacity: 1; translate: none; }

/* ---------- Animationen ---------- */

@keyframes sway { 0%, 100% { rotate: -1.6deg; } 50% { rotate: 1.8deg; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes rise { to { opacity: 1; translate: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes fade { from { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .load { opacity: 1; translate: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 5rem;
  }
  .hero__title { align-items: center; }
  .hero__indent { padding-left: 0; }
  .hero__lead { margin-inline: auto; }
  .hero__visual { width: min(76%, 360px); margin-top: 1rem; }

  .intro { grid-template-columns: 1fr; text-align: center; }
  .intro__plant { width: 64px; top: 1.5rem; }

  .moment { grid-template-columns: 1fr; gap: 1.8rem; }
  .moment:nth-child(even) .moment__media { order: 0; }
  .moment .frame { max-width: 460px; margin: 0 auto; }

  .closing { grid-template-columns: 1fr; text-align: center; }
  .closing__text { padding-bottom: 0; margin: 0 auto; }
  .closing__palm { order: 2; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--lime);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s;
  }
  .nav__links a { font-size: 1rem; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }

  .sheet { grid-template-columns: 1fr; }
  .sheet .sheet__plant { order: 0; width: 70px; }
  .sheet .sheet__label { left: 1rem; right: 1rem; }

  .more__head { flex-direction: column; align-items: flex-start; }
}
