:root {
  --cream: #f2efe4;
  --ivory: #fbf8ee;
  --paper: #e7dfcd;
  --sage: #a9b294;
  --sage-deep: #6f795c;
  --leaf: #24351f;
  --leaf-soft: #34452b;
  --stem: #526143;
  --rose: #b87873;
  --rose-ink: #94504c;
  --dust: #8f6f62;
  --ink: #1d2618;
  --muted: #5a5f54;
  --line: rgba(29, 38, 24, 0.16);
  --line-strong: rgba(29, 38, 24, 0.28);
  --white-line: rgba(255, 252, 242, 0.4);
  --shadow: 0 26px 80px rgba(46, 59, 36, 0.2);
  --motion: cubic-bezier(0.32, 0.72, 0, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(29, 38, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 38, 24, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

body.announcement-hidden .announcement {
  transform: translateY(-100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ivory);
  background: var(--leaf);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

#buchete,
#poveste,
#sezoane,
#scrisori,
#jurnal,
#contact {
  scroll-margin-top: 142px;
}

body.announcement-hidden #buchete,
body.announcement-hidden #poveste,
body.announcement-hidden #sezoane,
body.announcement-hidden #scrisori,
body.announcement-hidden #jurnal,
body.announcement-hidden #contact {
  scroll-margin-top: 96px;
}

.announcement {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px 8px 6vw;
  color: var(--leaf);
  background: var(--sage);
  border-bottom: 1px solid rgba(29, 38, 24, 0.16);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  transition: transform 700ms var(--motion);
}

.announcement button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  color: var(--leaf);
  background: transparent;
  cursor: pointer;
}

.announcement svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.site-header {
  position: fixed;
  top: 62px;
  right: 42px;
  left: 42px;
  z-index: 45;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  min-height: 70px;
  padding: 0 18px;
  color: var(--ivory);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition:
    color 700ms var(--motion),
    background-color 700ms var(--motion),
    border-color 700ms var(--motion),
    transform 700ms var(--motion),
    top 700ms var(--motion);
}

body.announcement-hidden .site-header {
  top: 18px;
}

.site-header.is-scrolled {
  color: var(--leaf);
  background: rgba(251, 248, 238, 0.88);
  border-color: rgba(29, 38, 24, 0.13);
  backdrop-filter: blur(18px);
  transform: translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: currentColor;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 700ms var(--motion);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: rgba(251, 248, 238, 0.08);
  cursor: pointer;
  transition:
    background-color 700ms var(--motion),
    transform 700ms var(--motion);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 700ms var(--motion),
    opacity 700ms var(--motion);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(251, 248, 238, 0.16);
  transform: translateY(-1px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: grid;
  place-items: end stretch;
  padding: 118px 16px 18px;
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 178, 148, 0.42), transparent 34%),
    rgba(29, 38, 24, 0.62);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms var(--motion);
}

.mobile-menu-panel {
  display: grid;
  gap: 22px;
  min-height: min(620px, 76dvh);
  padding: 30px;
  color: var(--leaf);
  border: 1px solid rgba(29, 38, 24, 0.13);
  background: rgba(251, 248, 238, 0.94);
  box-shadow: 0 28px 92px rgba(17, 29, 14, 0.28);
  transform: translateY(22px) scale(0.985);
  transition: transform 760ms var(--motion);
}

.mobile-menu nav {
  display: grid;
  gap: 12px;
}

.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(42px, 13vw, 68px);
  line-height: 0.95;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms var(--motion),
    transform 760ms var(--motion);
}

.mobile-menu-contact {
  align-self: end;
  width: max-content;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--stem);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--leaf);
  background: rgba(251, 248, 238, 0.92);
  border-color: rgba(29, 38, 24, 0.13);
  backdrop-filter: blur(18px);
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu-panel {
  transform: translateY(0) scale(1);
}

body.menu-open .mobile-menu nav a {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open .mobile-menu nav a:nth-child(2) {
  transition-delay: 60ms;
}

body.menu-open .mobile-menu nav a:nth-child(3) {
  transition-delay: 120ms;
}

body.menu-open .mobile-menu nav a:nth-child(4) {
  transition-delay: 180ms;
}

body.menu-open .mobile-menu nav a:nth-child(5) {
  transition-delay: 240ms;
}

.mobile-garden-gate {
  --gate-x: 50%;
  --gate-y: 86%;
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--leaf);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.012);
  will-change: clip-path, opacity, transform;
  transition:
    opacity 900ms var(--motion),
    transform 1200ms var(--motion);
}

.mobile-garden-gate::before,
.mobile-garden-gate::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.mobile-garden-gate::before {
  top: var(--gate-y);
  left: var(--gate-x);
  z-index: 3;
  width: 36vmax;
  height: 36vmax;
  border: 1px solid rgba(251, 248, 238, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(251, 248, 238, 0.42), rgba(251, 248, 238, 0.16) 28%, transparent 61%),
    radial-gradient(circle, rgba(184, 120, 115, 0.28), transparent 62%);
  box-shadow:
    0 0 60px rgba(251, 248, 238, 0.24),
    inset 0 0 70px rgba(251, 248, 238, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.18);
  will-change: opacity, transform;
}

.mobile-garden-gate::after {
  inset: -18%;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 82%, rgba(251, 248, 238, 0.72), transparent 26%),
    linear-gradient(180deg, transparent 18%, rgba(251, 248, 238, 0.18) 58%, rgba(251, 248, 238, 0.34));
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 900ms var(--motion),
    transform 1250ms var(--motion);
}

.mobile-garden-gate picture,
.mobile-garden-gate-image,
.mobile-garden-gate-shade {
  position: absolute;
  inset: 0;
}

.mobile-garden-gate picture {
  display: block;
}

.mobile-garden-gate-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.18) contrast(1.04) brightness(1.14);
  transform: scale(1.025);
  will-change: filter, transform;
  transition:
    filter 1200ms var(--motion),
    transform 1350ms var(--motion);
}

.mobile-garden-gate-shade {
  background:
    linear-gradient(180deg, rgba(20, 31, 17, 0.08), rgba(20, 31, 17, 0.02) 36%, rgba(20, 31, 17, 0.36)),
    linear-gradient(90deg, rgba(20, 31, 17, 0.14), rgba(20, 31, 17, 0) 58%);
  transition: opacity 1000ms var(--motion);
}

.mobile-garden-gate-content {
  position: relative;
  z-index: 4;
  display: grid;
  height: 100dvh;
  min-height: 100svh;
  align-content: space-between;
  gap: 28px;
  padding: max(24px, env(safe-area-inset-top)) 20px calc(max(28px, env(safe-area-inset-bottom)) + 20px);
}

.mobile-garden-gate-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
  transition:
    opacity 800ms var(--motion),
    transform 1000ms var(--motion);
}

.mobile-garden-gate .mobile-garden-gate-enter {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 62px;
  justify-content: space-between;
  padding-inline: 28px 18px;
  box-shadow: 0 26px 70px rgba(17, 29, 14, 0.26);
  transition:
    opacity 700ms var(--motion),
    transform 920ms var(--motion),
    color 700ms var(--motion),
    background-color 700ms var(--motion),
    border-color 700ms var(--motion);
}

.mobile-garden-gate .mobile-garden-gate-enter:focus-visible {
  outline-color: rgba(251, 248, 238, 0.72);
  outline-offset: 5px;
}

.mobile-garden-gate .mobile-garden-gate-enter::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(251, 248, 238, 0.54);
  border-radius: inherit;
  content: "";
  opacity: 0.36;
  pointer-events: none;
}

body.motion-ready.mobile-gate-active .mobile-garden-gate-enter::after {
  animation: gateButtonPulse 3200ms var(--motion) infinite;
}

body.mobile-gate-active,
body.mobile-gate-leaving {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

body.mobile-gate-leaving {
  overflow: hidden;
}

body.mobile-gate-active .mobile-garden-gate,
body.mobile-gate-leaving .mobile-garden-gate {
  display: grid;
}

body.mobile-gate-active .mobile-garden-gate {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

body.mobile-gate-leaving .mobile-garden-gate {
  animation: mobileGateExit 1720ms var(--motion) forwards;
  pointer-events: none;
  transform: scale(1);
}

body.mobile-gate-leaving .mobile-garden-gate::before {
  animation: gateIrisPulse 1720ms var(--motion) forwards;
}

body.mobile-gate-leaving .mobile-garden-gate::after {
  opacity: 0.84;
  transform: scale(1.2);
}

body.mobile-gate-leaving .mobile-garden-gate-image {
  filter: saturate(1.34) contrast(1.1) brightness(1.32);
  transform: scale(1.3) translate3d(-1.8%, -1.4%, 0);
}

body.mobile-gate-leaving .mobile-garden-gate-shade {
  opacity: 0.24;
}

body.mobile-gate-leaving .mobile-garden-gate-brand {
  opacity: 0;
  transform: translateY(-18px);
}

body.mobile-gate-leaving .mobile-garden-gate-enter {
  opacity: 0;
  transform: translateY(34px) scale(0.96);
}

body.mobile-gate-leaving .mobile-garden-gate-enter::after {
  animation: gateButtonRelease 860ms var(--motion) forwards;
}

body.mobile-gate-leaving main {
  animation: gateWorldReveal 1720ms var(--motion) both;
  transform-origin: 50% 18%;
  will-change: filter, opacity, transform;
}

body.mobile-gate-leaving .announcement,
body.mobile-gate-leaving .site-header {
  animation: gateChromeReveal 1720ms var(--motion) both;
  will-change: filter, opacity, transform;
}

body.announcement-hidden.mobile-gate-leaving .announcement {
  animation: none;
  transform: translateY(-100%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: var(--leaf);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02) brightness(0.92);
  transform: scale(1.015);
}

body.motion-ready .hero-media img {
  animation: heroBreath 30s var(--motion) infinite alternate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 34, 18, 0.26), rgba(19, 34, 18, 0.14) 44%, rgba(19, 34, 18, 0.28)),
    linear-gradient(90deg, rgba(19, 34, 18, 0.7), rgba(19, 34, 18, 0.24) 46%, rgba(19, 34, 18, 0.2));
}

.hero::after {
  top: auto;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(36, 53, 31, 0.72));
}

.hero-content {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 154px 6vw 70px;
  color: var(--ivory);
  text-align: center;
}

body.mobile-gate-leaving .hero-content {
  animation: gateHeroFocus 1720ms var(--motion) both;
  will-change: opacity, transform;
}

body.motion-ready .hero-kicker,
body.motion-ready .hero h1,
body.motion-ready .hero-lede,
body.motion-ready .hero-actions {
  animation: heroCopyReveal 1100ms var(--motion) both;
}

body.motion-ready .hero h1 {
  animation-delay: 120ms;
}

body.motion-ready .hero-lede {
  animation-delay: 240ms;
}

body.motion-ready .hero-actions {
  animation-delay: 360ms;
}

.hero-kicker,
.section-label {
  margin: 0;
  color: var(--rose-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(251, 248, 238, 0.86);
}

.hero h1,
.section-heading h2,
.story h2,
.atelier h2,
.seasons h2,
.letters h2,
.contact h2,
.lightbox-caption strong {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 960px;
  margin-top: 18px;
  font-size: clamp(86px, 10.6vw, 142px);
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
}

.hero-lede {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(251, 248, 238, 0.94);
  font-size: 24px;
  line-height: 1.35;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 248, 238, 0.44);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    color 700ms var(--motion),
    background-color 700ms var(--motion),
    border-color 700ms var(--motion),
    transform 700ms var(--motion);
}

.button svg {
  display: grid;
  width: 20px;
  height: 20px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 700ms var(--motion);
}

.button:focus-visible {
  transform: translateY(-2px);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button:focus-visible,
.announcement button:focus-visible,
.menu-toggle:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.filter-button:focus-visible,
.gallery-toggle:focus-visible,
.lightbox-share:focus-visible,
.lightbox-copy:focus-visible {
  outline: 2px solid rgba(251, 248, 238, 0.72);
  outline-offset: 4px;
}

.button-primary:focus-visible,
.filter-button:focus-visible,
.gallery-toggle:focus-visible {
  outline-color: rgba(36, 53, 31, 0.48);
}

.button:focus-visible svg {
  transform: translateX(3px);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover svg {
    transform: translateX(3px);
  }
}

.button-primary {
  color: var(--leaf);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
}

.button-quiet,
.button-outline {
  color: var(--ivory);
  border-color: rgba(251, 248, 238, 0.72);
}

.button-outline {
  color: var(--leaf);
  border-color: rgba(29, 38, 24, 0.3);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--ivory);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(260px, 0.74fr);
  gap: 6vw;
  align-items: center;
  padding: 42px 6vw;
  color: var(--ivory);
  background: var(--leaf);
  border-top: 1px solid rgba(251, 248, 238, 0.22);
}

.intro-strip p {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.98;
  text-wrap: balance;
}

.intro-strip div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.intro-strip span {
  padding: 18px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  color: rgba(251, 248, 238, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bouquets,
.story,
.atelier,
.seasons,
.letters,
.journal,
.contact {
  position: relative;
  padding: 118px 6vw;
}

.bouquets {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.56fr);
  gap: 6vw;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.story h2,
.atelier h2,
.seasons h2,
.letters h2,
.journal h2,
.contact h2 {
  margin-top: 14px;
  font-size: clamp(46px, 6.7vw, 88px);
  line-height: 1.02;
}

.section-heading p,
.story-copy p,
.atelier-copy > p,
.letters-copy > p,
.journal .section-heading > p,
.contact-copy > p,
.response-note,
.form-hint {
  color: var(--muted);
}

.section-heading > p {
  margin: 0;
  max-width: 560px;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 39px;
  padding: 8px 15px;
  border: 1px solid rgba(29, 38, 24, 0.22);
  border-radius: 999px;
  color: var(--stem);
  background: rgba(251, 248, 238, 0.54);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 700ms var(--motion),
    background-color 700ms var(--motion),
    border-color 700ms var(--motion),
    transform 700ms var(--motion);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--ivory);
  background: var(--leaf);
  border-color: var(--leaf);
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  transition: opacity 780ms var(--motion), transform 780ms var(--motion);
}

.gallery-grid.is-filtering {
  opacity: 0;
  transform: translateY(18px);
}

.work-card {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 38, 24, 0.1);
  border-radius: 2px;
  background: var(--ivory);
  box-shadow: 0 20px 64px rgba(54, 68, 44, 0.13);
  cursor: zoom-in;
  animation: workReveal 840ms var(--motion) both;
}

.work-card::after {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(251, 248, 238, 0.18);
  opacity: 0.72;
  transition:
    opacity 760ms var(--motion),
    transform 760ms var(--motion);
}

.work-card:nth-child(9n + 1) {
  grid-column: span 5;
}

.work-card:nth-child(9n + 5) {
  grid-column: span 3;
}

.work-card:nth-child(9n + 7) {
  grid-column: span 5;
}

.work-card.is-portrait {
  aspect-ratio: 0.82;
}

.work-card.is-square {
  aspect-ratio: 1;
}

.work-card.is-landscape {
  aspect-ratio: 1.32;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.01) brightness(0.98);
  transform: scale(1.002);
  transition: filter 1100ms var(--motion), transform 1100ms var(--motion);
}

.work-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 92px 18px 17px;
  color: var(--ivory);
  background:
    linear-gradient(180deg, transparent, rgba(25, 39, 20, 0.42) 28%, rgba(18, 30, 15, 0.86)),
    linear-gradient(90deg, rgba(18, 30, 15, 0.28), transparent 62%);
  opacity: 0.92;
  transform: translateY(0);
  transition: opacity 760ms var(--motion), transform 760ms var(--motion);
}

.work-card-title-row {
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
}

.work-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.work-card-mood {
  color: rgba(251, 248, 238, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-card-title-row em {
  flex: 0 0 auto;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(251, 248, 238, 0.62);
  color: rgba(251, 248, 238, 0.78);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-card-story {
  display: -webkit-box;
  max-width: 94%;
  margin: 2px 0 0;
  overflow: hidden;
  color: rgba(251, 248, 238, 0.84);
  font-size: 13px;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.work-card.is-landscape figcaption {
  padding-top: 54px;
}

.work-card.is-landscape .work-card-story {
  display: none;
}

.work-card.is-landscape h3 {
  font-size: 27px;
}

.work-card-note {
  width: max-content;
  max-width: 100%;
  margin-top: 3px;
  padding: 4px 8px;
  border: 1px solid rgba(251, 248, 238, 0.26);
  color: rgba(251, 248, 238, 0.82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-card button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.work-card button:focus-visible {
  outline: 2px solid rgba(251, 248, 238, 0.92);
  outline-offset: -12px;
}

.work-card:nth-child(9n + 5) .work-card-story {
  display: none;
}

.work-card:nth-child(9n + 5) h3 {
  font-size: 25px;
}

.work-card:focus-within img {
  filter: saturate(1.05) contrast(1.04) brightness(0.86);
  transform: scale(1.055);
}

.work-card:focus-within::after {
  opacity: 1;
  transform: scale(0.982);
}

.work-card:focus-within figcaption {
  opacity: 1;
  transform: translateY(-2px);
}

@media (hover: hover) and (pointer: fine) {
  .work-card:hover img {
    filter: saturate(1.05) contrast(1.04) brightness(0.86);
    transform: scale(1.055);
  }

  .work-card:hover::after {
    opacity: 1;
    transform: scale(0.982);
  }

  .work-card:hover figcaption {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.gallery-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
}

.gallery-count {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  text-align: center;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 0.84fr);
  gap: 7vw;
  align-items: start;
  background: var(--ivory);
}

.story-image,
.atelier-image,
.letters-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 38, 24, 0.12);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.story-image {
  aspect-ratio: 0.82;
}

.atelier-image,
.letters-image {
  aspect-ratio: 0.82;
}

.story-image img,
.atelier-image img,
.letters-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.01) brightness(0.96);
}

.story-copy,
.atelier-copy,
.letters-copy,
.contact-copy {
  max-width: 720px;
}

.story-copy p,
.atelier-copy > p,
.letters-copy > p,
.contact-copy > p {
  max-width: 620px;
}

.story-copy .story-deck {
  max-width: 560px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--leaf);
  text-wrap: balance;
}

.atelier {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(280px, 0.76fr);
  gap: 7vw;
  align-items: start;
  color: var(--ivory);
  background: var(--leaf);
}

.atelier .section-label,
.atelier-copy > p {
  color: rgba(251, 248, 238, 0.72);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.principles article {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.principles span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
}

.principles h3 {
  margin: 10px 0 7px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.principles p {
  margin: 0;
  color: rgba(251, 248, 238, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

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

.season-ledger {
  display: grid;
  margin-top: 56px;
  border-top: 1px solid var(--line-strong);
}

.season-ledger article {
  display: grid;
  grid-template-columns: 0.34fr 0.78fr 0.5fr;
  gap: 28px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.season-ledger span {
  color: var(--leaf);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.season-ledger strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.season-ledger em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.letters {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 0.66fr);
  gap: 7vw;
  align-items: start;
  background: var(--ivory);
}

.letter-form,
.letter-links {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.letter-links {
  align-items: start;
}

.letter-form .form-hint,
.letter-links .form-hint {
  grid-column: 1 / -1;
  margin: 0;
}

.journal {
  background: var(--ivory);
}

.journal .section-heading {
  grid-template-columns: minmax(0, 780px);
  gap: 14px;
  align-items: start;
  justify-items: start;
  max-width: 820px;
  text-align: left;
}

.journal .section-heading > * {
  grid-column: 1;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(29, 38, 24, 0.12);
  background: rgba(251, 248, 238, 0.72);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journal-content {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.journal-content time {
  color: var(--stem);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-content h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
}

.journal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.journal-link {
  width: max-content;
  margin-top: 6px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.journal-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(320px, 0.64fr);
  gap: 7vw;
  align-items: start;
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.contact-copy {
  position: sticky;
  top: 138px;
}

.response-note {
  margin-top: 22px;
}

.contact-notes {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-notes span {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--leaf);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.08;
}

.contact-notes a,
.contact-form .form-hint a {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-form .form-hint a {
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(29, 38, 24, 0.13);
  border-radius: 2px;
  background: rgba(251, 248, 238, 0.72);
  box-shadow: 0 24px 80px rgba(54, 68, 44, 0.14);
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-direct a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(29, 38, 24, 0.2);
  border-radius: 999px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 700ms var(--motion),
    background-color 700ms var(--motion),
    border-color 700ms var(--motion);
}

.contact-direct a:hover {
  color: var(--ivory);
  background: var(--leaf);
  border-color: var(--leaf);
}

.contact-form label,
.letter-form label {
  display: grid;
  gap: 8px;
  color: var(--stem);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.letter-form input {
  width: 100%;
  border: 1px solid rgba(29, 38, 24, 0.2);
  border-radius: 2px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition:
    border-color 700ms var(--motion),
    background-color 700ms var(--motion),
    box-shadow 700ms var(--motion);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.letter-form input::placeholder {
  color: rgba(82, 97, 67, 0.52);
}

.contact-form input:focus,
.contact-form textarea:focus,
.letter-form input:focus {
  border-color: rgba(36, 53, 31, 0.62);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(111, 121, 92, 0.12);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 6vw;
  color: rgba(251, 248, 238, 0.76);
  background: var(--leaf);
  border-top: 1px solid rgba(251, 248, 238, 0.2);
}

.site-footer span {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 42px;
  background: rgba(17, 29, 14, 0.94);
  backdrop-filter: blur(22px) saturate(0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms var(--motion);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  display: grid;
  grid-template-columns: minmax(280px, 72vh) minmax(240px, 360px);
  gap: 36px;
  align-items: end;
  width: min(100%, 1050px);
  margin: 0;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 520ms var(--motion),
    transform 520ms var(--motion);
}

.lightbox.is-changing figure {
  opacity: 0;
  transform: translateY(12px) scale(0.992);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(251, 248, 238, 0.28);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.lightbox-caption {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  color: var(--ivory);
}

.lightbox-caption span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-caption strong {
  font-size: 42px;
}

.lightbox-caption p {
  margin: 0;
  color: rgba(251, 248, 238, 0.84);
}

.lightbox-caption small {
  color: rgba(251, 248, 238, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.lightbox-caption em {
  color: rgba(251, 248, 238, 0.58);
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
}

.lightbox-caption small[hidden] {
  display: none;
}

.lightbox-caption [data-lightbox-price] {
  color: var(--sage);
  font-weight: 700;
}

.lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}

.lightbox-share,
.lightbox-copy {
  display: inline-flex;
  width: max-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 248, 238, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ivory);
  background: rgba(251, 248, 238, 0.07);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    background-color 500ms var(--motion),
    border-color 500ms var(--motion),
    color 500ms var(--motion);
}

.lightbox-share {
  color: rgba(251, 248, 238, 0.78);
}

.lightbox-share:hover,
.lightbox-share:focus-visible,
.lightbox-copy:hover,
.lightbox-copy:focus-visible {
  border-color: rgba(251, 248, 238, 0.5);
  background: rgba(251, 248, 238, 0.16);
  color: var(--ivory);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(251, 248, 238, 0.36);
  border-radius: 999px;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 700ms var(--motion),
    transform 700ms var(--motion);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(251, 248, 238, 0.3);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(251, 248, 238, 0.06);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 700ms var(--motion),
    transform 700ms var(--motion);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(251, 248, 238, 0.15);
}

.lightbox-prev:hover,
.lightbox-prev:focus-visible {
  transform: translate(-3px, -50%);
}

.lightbox-next:hover,
.lightbox-next:focus-visible {
  transform: translate(3px, -50%);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.lightbox-swipe-hint {
  position: absolute;
  right: 50%;
  bottom: 62px;
  z-index: 3;
  display: none;
  width: 92px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(251, 248, 238, 0.26);
  border-radius: 999px;
  background: rgba(17, 29, 14, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(50%) translateY(10px);
  transition:
    opacity 600ms var(--motion),
    transform 600ms var(--motion);
}

.lightbox-swipe-hint span {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(251, 248, 238, 0.86);
  border-right: 1px solid rgba(251, 248, 238, 0.86);
  transform: rotate(45deg);
  animation: swipePulse 1650ms var(--motion) infinite;
}

.lightbox-swipe-hint span:first-child {
  transform: rotate(225deg);
  animation-name: swipePulseReverse;
}

.lightbox-swipe-hint span:nth-child(2) {
  width: 24px;
  height: 1px;
  border: 0;
  background: rgba(251, 248, 238, 0.54);
  transform: none;
  animation: swipeLine 1650ms var(--motion) infinite;
}

.lightbox.show-swipe-hint .lightbox-swipe-hint {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(251, 248, 238, 0.14);
  transform: rotate(6deg);
}

.lightbox-close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.section-observe {
  opacity: 1;
  transform: none;
  transition: opacity 1000ms var(--motion), transform 1000ms var(--motion);
}

body.motion-ready .section-observe:not(.hero) {
  opacity: 0.6;
  transform: translateY(34px);
}

body.motion-ready .section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes workReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.065) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes swipePulse {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(-5px) rotate(45deg);
  }

  45% {
    opacity: 1;
    transform: translateX(4px) rotate(45deg);
  }
}

@keyframes swipePulseReverse {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(5px) rotate(225deg);
  }

  45% {
    opacity: 1;
    transform: translateX(-4px) rotate(225deg);
  }
}

@keyframes swipeLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.7);
  }

  45% {
    opacity: 0.78;
    transform: scaleX(1);
  }
}

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

@keyframes gateButtonPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.98);
  }

  46% {
    opacity: 0.62;
    transform: scale(1.035);
  }
}

@keyframes gateButtonRelease {
  0% {
    opacity: 0.58;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.58);
  }
}

@keyframes gateIrisPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
  }

  24% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(0.92);
  }

  68% {
    opacity: 0.44;
    transform: translate(-50%, -50%) scale(2.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.6);
  }
}

@keyframes gateWorldReveal {
  0%,
  52% {
    opacity: 0.62;
    filter: blur(16px) brightness(0.72) saturate(0.86);
    transform: translateY(28px) scale(1.07);
  }

  78% {
    opacity: 0.86;
    filter: blur(7px) brightness(0.88) saturate(0.94);
    transform: translateY(12px) scale(1.032);
  }

  100% {
    opacity: 1;
    filter: blur(0) brightness(1) saturate(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes gateChromeReveal {
  0%,
  68% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-16px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes gateHeroFocus {
  0%,
  58% {
    opacity: 0.48;
    transform: translateY(24px) scale(0.982);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileGateExit {
  0% {
    opacity: 1;
    clip-path: circle(150% at var(--gate-x) var(--gate-y));
  }

  56% {
    opacity: 1;
    clip-path: circle(150% at var(--gate-x) var(--gate-y));
  }

  82% {
    opacity: 0.96;
    clip-path: circle(72% at var(--gate-x) var(--gate-y));
  }

  96% {
    opacity: 0.86;
    clip-path: circle(18% at var(--gate-x) var(--gate-y));
  }

  100% {
    opacity: 0;
    clip-path: circle(0% at var(--gate-x) var(--gate-y));
  }
}

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

  body.motion-ready .section-observe:not(.hero),
  .section-observe {
    opacity: 1;
    transform: none;
  }

  body.motion-ready .hero-media img {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    right: 24px;
    left: 24px;
  }

  .hero h1 {
    font-size: 124px;
  }

  .hero-lede {
    font-size: 22px;
  }

  .intro-strip p {
    font-size: 46px;
  }

  .gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .work-card,
  .work-card:nth-child(9n + 1),
  .work-card:nth-child(9n + 5),
  .work-card:nth-child(9n + 7) {
    grid-column: span 4;
  }

  .section-heading,
  .intro-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .announcement {
    padding-left: 18px;
    font-size: 15px;
    text-align: left;
  }

  .site-header {
    top: 58px;
    right: 16px;
    left: 16px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 68px;
    padding: 12px 14px;
  }

  body.announcement-hidden .site-header {
    top: 12px;
  }

  .brand {
    font-size: 26px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-content {
    padding: 144px 20px 66px;
  }

  .hero h1 {
    font-size: 86px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .intro-strip p {
    font-size: 40px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: space-between;
  }

  .bouquets,
  .story,
  .atelier,
  .seasons,
  .letters,
  .journal,
  .contact {
    padding: 86px 20px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .story,
  .atelier,
  .letters,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-image {
    aspect-ratio: 1;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .season-ledger article {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 22px 0;
  }

  .letter-form,
  .letter-links {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .lightbox figure {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lightbox-caption strong {
    font-size: 34px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  #buchete,
  #poveste,
  #sezoane,
  #scrisori,
  #jurnal,
  #contact {
    scroll-margin-top: 144px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media {
    display: block;
  }

  .hero-media picture,
  .hero-media img {
    display: block;
  }

  .hero-media img {
    object-position: 58% center;
    filter: saturate(1.08) contrast(1.05) brightness(0.72);
    transform: scale(1.055);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 31, 17, 0.18), rgba(20, 31, 17, 0.34) 34%, rgba(20, 31, 17, 0.78)),
      linear-gradient(90deg, rgba(20, 31, 17, 0.52), rgba(20, 31, 17, 0.14) 52%, rgba(20, 31, 17, 0.42));
  }

  .hero::after {
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(20, 35, 19, 0.82));
  }

  .hero-content {
    min-height: 86svh;
    align-content: end;
    justify-items: start;
    padding: 150px 20px 38px;
    text-align: left;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero h1 {
    max-width: 11.2ch;
    margin-top: 10px;
    font-size: clamp(50px, 15vw, 62px);
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 350px;
    margin-top: 16px;
    font-size: 16.5px;
    line-height: 1.42;
  }

  .hero-actions {
    width: 100%;
    margin-top: 18px;
    padding-top: 16px;
    border-top-color: rgba(251, 248, 238, 0.32);
  }

  .hero-actions .button-quiet {
    width: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 6px 0 0;
    border: 0;
    color: rgba(251, 248, 238, 0.82);
    text-transform: none;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .hero-actions .button-quiet svg {
    display: none;
  }

  .intro-strip,
  .bouquets,
  .story,
  .atelier,
  .seasons,
  .letters,
  .journal,
  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-strip p {
    font-size: 34px;
  }

  .journal-content {
    padding: 18px;
  }

  .journal-content h3 {
    font-size: 29px;
  }

  .gallery-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-button {
    width: 100%;
    min-height: 44px;
    background: transparent;
    border-color: rgba(29, 38, 24, 0.18);
  }

  .filter-button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .contact-direct a {
    min-height: 44px;
  }

  .lightbox-share,
  .lightbox-copy {
    min-height: 44px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-card,
  .work-card:nth-child(9n + 1),
  .work-card:nth-child(9n + 5),
  .work-card:nth-child(9n + 7) {
    grid-column: span 1;
    aspect-ratio: auto;
  }

  .work-card.is-portrait,
  .work-card.is-square,
  .work-card.is-landscape {
    aspect-ratio: auto;
  }

  .work-card img {
    height: auto;
    aspect-ratio: 0.96;
  }

  .work-card figcaption {
    position: static;
    gap: 9px;
    min-height: 154px;
    padding: 16px;
    color: var(--leaf);
    background: var(--ivory);
    opacity: 1;
    transform: none;
  }

  .work-card-mood {
    color: var(--stem);
  }

  .work-card-title-row {
    align-items: start;
  }

  .work-card-title-row em {
    margin-top: 4px;
    border-bottom-color: rgba(29, 38, 24, 0.36);
    color: var(--stem);
  }

  .work-card h3 {
    font-size: 29px;
  }

  .work-card:nth-child(9n + 5) h3 {
    font-size: 29px;
  }

  .work-card-story,
  .work-card:nth-child(9n + 5) .work-card-story {
    display: -webkit-box;
    max-width: none;
    color: var(--muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .work-card-note {
    border-color: rgba(29, 38, 24, 0.18);
    color: var(--stem);
  }

  .season-ledger span {
    font-size: 28px;
  }

  .season-ledger strong,
  .contact-notes span {
    font-size: 22px;
  }

  .contact-form {
    padding: 18px;
  }

  .lightbox {
    padding: 16px;
    background: rgba(7, 16, 9, 0.985);
    backdrop-filter: blur(20px) saturate(0.82);
    touch-action: none;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    top: 50%;
    bottom: auto;
    width: 50px;
    height: 50px;
    background: rgba(17, 29, 14, 0.24);
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-swipe-hint {
    bottom: 78px;
    display: flex;
  }

  .lightbox figure {
    touch-action: pan-y;
  }

  .lightbox img {
    max-height: 62svh;
  }

  .lightbox-prev:hover,
  .lightbox-prev:focus-visible {
    transform: translate(-3px, -50%);
  }

  .lightbox-next:hover,
  .lightbox-next:focus-visible {
    transform: translate(3px, -50%);
  }
}
