:root {
  --paper: #fffaf7;
  --cream: #f7f0e9;
  --cream-deep: #eee4da;
  --base-1: #d7cdc3;
  --base-2: #bfb1a6;
  --base-3: #9e8d81;
  --ink: #585556;
  --brown: #6f5140;
  --brown-dark: #4b3930;
  --pink-pale: #fdeef1;
  --pink: #f9d7e1;
  --pink-deep: #f0c5d4;
  --blue-pale: #dde9f4;
  --blue: #bde0fe;
  --blue-deep: #a9c7e8;
  --green-pale: #dcebe7;
  --green: #d0e5e2;
  --green-deep: #9cb9c1;
  --white: #fff;
  --line: rgba(75, 57, 48, 0.14);
  --line-light: rgba(255, 255, 255, 0.28);
  --shadow-sm: 0 18px 52px rgba(75, 57, 48, 0.09);
  --shadow-lg: 0 32px 90px rgba(75, 57, 48, 0.14);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --typewriter: "Courier New", Courier, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--pink);
  color: var(--brown-dark);
}

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

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

figure,
blockquote {
  margin: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 4px;
  border-radius: 8px;
}

section {
  scroll-margin-top: 78px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.side-rail {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 18;
  width: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  padding: 94px 8px 34px;
  pointer-events: none;
  background: rgba(255, 250, 247, 0.76);
  backdrop-filter: blur(8px);
}

.side-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(111, 81, 64, 0.24) 0 5px,
    transparent 5px 12px
  );
}

.side-rail-left {
  left: 0;
  border-right: 1px solid rgba(111, 81, 64, 0.07);
}

.side-rail-left::after {
  right: 5px;
}

.side-rail-right {
  right: 0;
  border-left: 1px solid rgba(111, 81, 64, 0.07);
}

.side-rail-right::after {
  left: 5px;
}

.side-rail img {
  width: 36px;
  height: 42px;
  object-fit: contain;
  opacity: 0.33;
  mix-blend-mode: multiply;
  filter: saturate(0.82);
}

.rail-heart {
  color: var(--pink-deep);
  font-family: var(--display);
  font-size: 24px;
  opacity: 0.62;
  transform: rotate(-8deg);
}

.rail-stitch {
  width: 1px;
  height: 56px;
  background: repeating-linear-gradient(180deg, var(--brown) 0 5px, transparent 5px 12px);
  opacity: 0.2;
}

.rail-stitch.short {
  height: 30px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 0 clamp(76px, 7vw, 126px);
  transition:
    min-height 0.45s var(--ease),
    background-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.site-header.scrolled {
  position: fixed;
  min-height: 70px;
  background: rgba(255, 250, 247, 0.93);
  box-shadow: 0 1px var(--line), 0 16px 46px rgba(75, 57, 48, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-logo img {
  width: 174px;
  height: auto;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 81, 64, 0.22);
  border-radius: 50% 48% 44% 52%;
  background: var(--pink-pale);
  color: var(--brown);
  font-size: 22px;
  font-style: italic;
  transform: rotate(-5deg);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.site-header nav a,
.header-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header nav a {
  position: relative;
  color: rgba(88, 85, 86, 0.8);
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--brown);
  transition: right 0.35s var(--ease);
}

.site-header nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(111, 81, 64, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.64);
  color: var(--brown-dark);
  transition:
    color 0.35s var(--ease),
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.header-cta:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.section {
  padding: clamp(100px, 10vw, 158px) clamp(76px, 7vw, 126px);
}

.section-narrow {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(100px, 10vw, 150px) clamp(76px, 7vw, 126px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brown);
  font-family: var(--typewriter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--brown-dark);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
  overflow: hidden;
  padding: 124px clamp(76px, 7vw, 126px) 72px;
  background:
    radial-gradient(circle at 18% 12%, rgba(249, 215, 225, 0.72), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(220, 235, 231, 0.72), transparent 24rem),
    linear-gradient(135deg, var(--paper), var(--cream) 68%, #f7e9e8);
}

.hero::before {
  content: "";
  position: absolute;
  left: 47%;
  bottom: 8%;
  width: 320px;
  height: 90px;
  border-bottom: 2px dashed rgba(111, 81, 64, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero::after {
  content: "♡";
  position: absolute;
  left: 51%;
  bottom: 8%;
  color: var(--pink-deep);
  font-family: var(--display);
  font-size: 34px;
  transform: rotate(-10deg);
}

.hero-copy,
.hero-gallery {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--brown);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 34px;
  color: rgba(88, 85, 86, 0.82);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.button,
.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
}

.button-primary {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: var(--white);
  box-shadow: 0 18px 46px rgba(75, 57, 48, 0.2);
}

.button-outline {
  border: 1px solid rgba(111, 81, 64, 0.28);
  color: var(--brown-dark);
}

.button-light {
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: 0 18px 48px rgba(75, 57, 48, 0.16);
}

.button:hover,
.text-link:hover,
.arrow-link:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  box-shadow: 0 24px 58px rgba(75, 57, 48, 0.26);
}

.text-link,
.arrow-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(111, 81, 64, 0.32);
  color: var(--brown-dark);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(88, 85, 86, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.hero-notes li {
  position: relative;
}

.hero-notes li:not(:last-child)::after {
  content: "♡";
  position: absolute;
  right: -16px;
  color: var(--pink-deep);
}

.hero-gallery {
  min-height: min(75svh, 760px);
}

.hero-main-photo,
.hero-detail-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(111, 81, 64, 0.13);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.hero-main-photo {
  top: 0;
  right: 0;
  width: 78%;
  height: 88%;
  border-radius: 48% 48% 34px 34px / 25% 25% 34px 34px;
}

.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.hero-main-photo img,
.hero-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo img {
  object-position: center 26%;
}

.hero-main-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.86);
  color: var(--brown-dark);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-main-photo figcaption span {
  color: var(--brown);
  font-family: var(--typewriter);
}

.hero-detail-photo {
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 42%;
  height: 40%;
  border: 9px solid var(--paper);
  border-radius: 30px;
  transform: rotate(-4deg);
}

.hero-detail-photo img {
  object-position: center 28%;
}

.hero-seal {
  position: absolute;
  right: 1%;
  bottom: 1%;
  z-index: 3;
  width: 205px;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(111, 81, 64, 0.14);
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.93);
  box-shadow: var(--shadow-sm);
  transform: rotate(2deg);
}

.hero-seal img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-seal p {
  margin: 0;
  color: var(--brown);
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.trust-bar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 44px);
  min-height: 70px;
  padding: 16px clamp(76px, 7vw, 126px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.94);
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-bar span:nth-child(even) {
  color: var(--pink-deep);
  font-family: var(--display);
  font-size: 20px;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.manifesto-icon {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 46% 46% 32px 32px / 28% 28% 32px 32px;
  background:
    radial-gradient(circle at 70% 20%, rgba(249, 215, 225, 0.8), transparent 11rem),
    var(--cream);
}

.manifesto-icon::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(111, 81, 64, 0.18);
  border-radius: inherit;
}

.manifesto-icon img {
  width: 72%;
  max-height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.manifesto-copy h2,
.section-heading h2,
.memory-intro h2,
.limited-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 1.04;
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0;
  color: rgba(88, 85, 86, 0.8);
  font-size: 18px;
}

.manifesto-copy blockquote {
  max-width: 760px;
  padding: 22px 0 0 32px;
  border-left: 1px solid var(--pink-deep);
  color: var(--brown);
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 32px);
  font-style: italic;
  line-height: 1.38;
}

.lines {
  background:
    radial-gradient(circle at 8% 8%, rgba(249, 215, 225, 0.44), transparent 24rem),
    radial-gradient(circle at 92% 16%, rgba(220, 235, 231, 0.54), transparent 24rem),
    var(--cream);
}

.section-heading {
  max-width: 1000px;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(88, 85, 86, 0.78);
  font-size: 17px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.line-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 247, 0.84);
  box-shadow: 0 18px 58px rgba(75, 57, 48, 0.06);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.line-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.line-card-image {
  position: relative;
  aspect-ratio: 4 / 4.6;
  display: block;
  overflow: hidden;
  background: var(--cream-deep);
}

.line-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.line-card:hover .line-card-image > img {
  transform: scale(1.035);
}

.line-memory .line-card-image {
  background: var(--pink-pale);
}

.line-limited .line-card-image {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.78), transparent 12rem),
    var(--blue-pale);
}

.line-limited .line-card-image > img {
  padding: 12%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.line-universe .line-card-image {
  background: var(--green-pale);
}

.line-number,
.coming-soon {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.9);
  color: var(--brown-dark);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.line-number {
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
}

.coming-soon {
  right: 16px;
  bottom: 16px;
  min-height: 34px;
  padding: 0 14px;
}

.line-card-copy {
  min-height: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 30px;
}

.line-kicker {
  margin: 0 0 12px;
  color: var(--brown);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.line-card h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.04;
}

.line-card-copy > p:not(.line-kicker) {
  margin: 0 0 26px;
  color: rgba(88, 85, 86, 0.77);
}

.line-card-copy .arrow-link {
  margin-top: auto;
}

.memory {
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 255, 255, 0.8), transparent 28rem),
    var(--pink-pale);
}

.memory-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 90px);
}

.memory-copy p {
  margin: 0 0 18px;
  color: rgba(88, 85, 86, 0.8);
  font-size: 17px;
}

.memory-copy .button {
  margin-top: 12px;
}

.memory-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 18px;
}

.memory-photo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 10px solid rgba(255, 250, 247, 0.72);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.memory-photo-large {
  grid-row: 1 / 3;
  min-height: 720px;
}

.memory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-photo-large img {
  object-position: center 28%;
}

.memory-photo:not(.memory-photo-large) img {
  object-position: center 25%;
}

.memory-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 247, 0.88);
  color: var(--brown-dark);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.process {
  background:
    radial-gradient(circle at 92% 12%, rgba(189, 224, 254, 0.34), transparent 26rem),
    var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 410px;
  padding: 30px;
  background: rgba(255, 250, 247, 0.94);
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 74px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--base-2) 0 6px, transparent 6px 13px);
  opacity: 0.46;
}

.process-number {
  color: var(--brown);
  font-family: var(--typewriter);
  font-size: 11px;
  font-weight: 700;
}

.process-list img {
  width: 88px;
  height: 88px;
  margin: 54px 0 24px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.74;
}

.process-list h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.08;
}

.process-list p {
  margin: 0;
  color: rgba(88, 85, 86, 0.72);
  font-size: 14px;
}

.limited {
  background: var(--blue-pale);
}

.limited-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.limited-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0;
  color: rgba(88, 85, 86, 0.78);
  font-size: 17px;
}

.limited-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
}

.limited-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(75, 57, 48, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
}

.limited-art {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(75, 57, 48, 0.13);
  border-radius: 44px;
  background:
    radial-gradient(circle at 60% 28%, rgba(255, 255, 255, 0.92), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(169, 199, 232, 0.36));
  box-shadow: var(--shadow-sm);
}

.limited-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(75, 57, 48, 0.18);
  border-radius: 34px;
}

.limited-art img {
  position: relative;
  z-index: 1;
  width: 58%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.limited-word {
  position: absolute;
  top: 18px;
  left: 30px;
  color: rgba(75, 57, 48, 0.1);
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 130px);
  font-style: italic;
  line-height: 1;
}

.limited-art p {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(75, 57, 48, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--brown);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.universe {
  background:
    radial-gradient(circle at 90% 4%, rgba(220, 235, 231, 0.7), transparent 28rem),
    var(--paper);
}

.collection-block {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(70px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.collection-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.collection-letters {
  grid-template-columns: minmax(0, 1.32fr) minmax(290px, 0.68fr);
}

.collection-copy {
  max-width: 520px;
}

.collection-copy > span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--brown);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-copy h3 {
  margin: 20px 0 20px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.04;
}

.collection-copy p {
  margin: 0 0 26px;
  color: rgba(88, 85, 86, 0.78);
  font-size: 17px;
}

.collection-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
}

.collection-gallery figure,
.bag-gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 16px 46px rgba(75, 57, 48, 0.06);
}

.collection-gallery img,
.bag-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}

.collection-gallery figure:hover img,
.bag-gallery figure:hover img {
  transform: scale(1.035);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.details-gallery .gallery-tall img {
  object-position: center top;
}

.details-gallery figure:nth-child(2) img {
  object-position: center 24%;
}

.details-gallery figure:nth-child(3) img {
  object-position: center 38%;
}

.letters-gallery figure:first-child img {
  object-position: center 34%;
}

.letters-gallery figure:nth-child(2) img,
.letters-gallery figure:nth-child(3) img {
  object-position: center 42%;
}

.bag-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, 230px);
  gap: 14px;
}

.bag-feature {
  grid-row: 1 / 4;
}

.bag-gallery img {
  object-position: center 28%;
}

.bag-feature img {
  object-position: center 35%;
}

.maker {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.maker-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 46% 46% 32px 32px / 28% 28% 32px 32px;
  background:
    radial-gradient(circle at 50% 28%, var(--pink), transparent 15rem),
    var(--cream);
}

.maker-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.maker-copy h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
}

.maker-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(88, 85, 86, 0.8);
  font-size: 18px;
}

.maker-copy .maker-signature {
  color: var(--brown);
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-style: italic;
}

.story-quote {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  border-top: 1px solid var(--line);
}

.quote-icon {
  width: 180px;
  max-height: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.story-quote p {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--brown);
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 62px);
  font-style: italic;
  line-height: 1.18;
}

.story-quote span {
  color: rgba(88, 85, 86, 0.64);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(253, 238, 241, 0.4), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(189, 224, 254, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--base-2), var(--base-3) 52%, var(--brown));
}

.contact::before,
.contact::after {
  content: "♡";
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 240px;
}

.contact::before {
  top: -80px;
  left: 4%;
  transform: rotate(-15deg);
}

.contact::after {
  right: 4%;
  bottom: -110px;
  transform: rotate(12deg);
}

.contact-card {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px);
  border: 1px solid var(--line-light);
  border-radius: 42px;
  background: rgba(255, 250, 247, 0.12);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(5px);
}

.contact-card h2 {
  color: var(--white);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(249, 215, 225, 0.16);
}

.contact-card > p:not(.status) {
  max-width: 720px;
  margin: 28px auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.contact-actions {
  justify-content: center;
}

.instagram-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.contact-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card li {
  position: relative;
}

.contact-card li:not(:last-child)::after {
  content: "♡";
  position: absolute;
  right: -18px;
  color: var(--pink);
}

footer {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: clamp(38px, 7vw, 100px);
  padding: 76px clamp(76px, 7vw, 126px) 34px;
  background: var(--brown-dark);
  color: var(--white);
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(249, 215, 225, 0.14);
  color: var(--pink);
}

.footer-brand-block p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
}

.footer-nav > span {
  margin-bottom: 7px;
  color: var(--pink);
  font-family: var(--typewriter);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-nav a b {
  color: var(--pink);
}

.footer-nav small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: var(--white);
  box-shadow: 0 18px 50px rgba(75, 57, 48, 0.28);
  font-size: 11px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.floating-contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(75, 57, 48, 0.34);
}

.floating-contact span {
  color: var(--pink);
  font-family: var(--display);
  font-size: 21px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.js .delay-1 {
  transition-delay: 0.1s;
}

.js .delay-2 {
  transition-delay: 0.2s;
}

.js .delay-3 {
  transition-delay: 0.3s;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1260px) {
  .side-rail {
    display: none;
  }

  .site-header,
  .hero,
  .section,
  footer {
    padding-right: 36px;
    padding-left: 36px;
  }

  .section-narrow {
    padding-right: 36px;
    padding-left: 36px;
  }

  .site-header {
    grid-template-columns: minmax(160px, 1fr) auto minmax(140px, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .site-header nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(54px, 8.5vw, 86px);
  }

  .line-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .line-card:last-child .line-card-image {
    aspect-ratio: auto;
    min-height: 510px;
  }

  .line-card:last-child .line-card-copy {
    min-height: auto;
    justify-content: center;
  }

  .manifesto,
  .memory-intro,
  .limited-layout,
  .maker {
    gap: 54px;
  }

  .collection-block,
  .collection-letters {
    grid-template-columns: 1fr;
  }

  .collection-copy {
    max-width: 720px;
  }

  .collection-letters .collection-gallery {
    order: 2;
  }

  .collection-letters .collection-copy {
    order: 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 74px;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 247, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s var(--ease),
      visibility 0.3s var(--ease),
      transform 0.3s var(--ease);
  }

  .site-header nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 13px;
  }

  .site-header nav a::after {
    display: none;
  }

  .site-header nav a:hover {
    background: var(--pink-pale);
  }

  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(111, 81, 64, 0.22);
    border-radius: 50%;
    background: rgba(255, 250, 247, 0.76);
    color: var(--brown-dark);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.3s var(--ease);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 118px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-gallery {
    min-height: 700px;
  }

  .hero-main-photo {
    width: 72%;
  }

  .manifesto,
  .memory-intro,
  .limited-layout,
  .maker {
    grid-template-columns: 1fr;
  }

  .manifesto-icon {
    max-width: 480px;
    min-height: 390px;
  }

  .memory-intro {
    align-items: start;
  }

  .memory-copy {
    max-width: 720px;
  }

  .memory-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 600px 360px;
  }

  .memory-photo-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .limited-art {
    min-height: 520px;
  }

  .maker-visual {
    max-width: 540px;
  }

  .story-quote {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .quote-icon {
    width: 130px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width:600px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .hero,
  .section,
  footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-narrow {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    min-height: 68px;
    gap: 6px;
  }

  .site-header nav {
    left: 12px;
    right: 12px;
  }

  .site-header.scrolled {
    min-height: 64px;
  }

  .brand {
    gap: 7px;
    font-size: 24px;
  }

  .brand-logo img {
    width: 142px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 19px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    gap: 46px;
    padding-top: 102px;
    padding-bottom: 50px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
    letter-spacing: -0.04em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .text-link {
    align-self: flex-start;
  }

  .hero-notes {
    display: grid;
    gap: 6px;
  }

  .hero-notes li::after {
    display: none;
  }

  .hero-gallery {
    min-height: 500px;
  }

  .hero-main-photo {
    width: 88%;
    height: 82%;
    border-radius: 44% 44% 26px 26px / 23% 23% 26px 26px;
  }

  .hero-main-photo::after {
    border-width: 7px;
  }

  .hero-main-photo figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: 9px;
  }

  .hero-detail-photo {
    width: 44%;
    height: 39%;
    border-width: 6px;
    border-radius: 20px;
  }

  .hero-seal {
    right: 0;
    width: 150px;
    min-height: 88px;
    padding: 11px;
    border-radius: 18px;
  }

  .hero-seal img {
    width: 40px;
    height: 40px;
  }

  .hero-seal p {
    font-size: 12px;
  }

  .trust-bar {
    justify-content: flex-start;
    gap: 15px;
    padding: 14px 18px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .trust-bar::-webkit-scrollbar {
    display: none;
  }

  .section,
  .section-narrow {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .manifesto-icon {
    min-height: 330px;
    border-radius: 44% 44% 24px 24px / 24% 24% 24px 24px;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .memory-intro h2,
  .limited-copy h2,
  .contact-card h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .manifesto-copy > p:not(.eyebrow),
  .memory-copy p,
  .limited-copy > p:not(.eyebrow),
  .collection-copy p,
  .maker-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .manifesto-copy blockquote {
    padding-left: 20px;
    font-size: 22px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .line-cards {
    grid-template-columns: 1fr;
  }

  .line-card:last-child {
    grid-column: auto;
    display: block;
  }

  .line-card:last-child .line-card-image {
    min-height: 0;
    aspect-ratio: 4 / 4.6;
  }

  .line-card-copy {
    min-height: 270px;
    padding: 24px;
  }

  .memory-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: 520px 360px 360px;
  }

  .memory-photo-large {
    grid-column: auto;
  }

  .memory-photo {
    border-width: 7px;
    border-radius: 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .process-list li {
    min-height: 330px;
    padding: 26px;
  }

  .process-list img {
    width: 72px;
    height: 72px;
    margin-top: 44px;
  }

  .limited-art {
    min-height: 410px;
    border-radius: 28px;
  }

  .limited-word {
    font-size: 68px;
  }

  .collection-block {
    gap: 38px;
    padding: 76px 0;
  }

  .collection-gallery {
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .collection-gallery figure,
  .bag-gallery figure {
    border-radius: 18px;
  }

  .details-gallery .gallery-tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bag-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 250px 250px;
    gap: 10px;
  }

  .bag-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bag-gallery figure:last-child {
    grid-column: 1 / -1;
  }

  .maker-visual,
  .maker-visual img {
    min-height: 390px;
  }

  .maker-visual {
    border-radius: 44% 44% 24px 24px / 24% 24% 24px 24px;
  }

  .story-quote {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quote-icon {
    width: 100px;
  }

  .story-quote p {
    font-size: clamp(30px, 9vw, 42px);
  }

  .contact-card {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .contact-card > p:not(.status) {
    font-size: 15px;
  }

  .contact-card ul {
    display: grid;
    gap: 5px;
  }

  .contact-card li::after {
    display: none;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 60px;
    padding-bottom: 26px;
  }

  .footer-brand-block {
    grid-column: auto;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: auto;
    height: 50px;
    min-height: 50px;
    padding: 0 16px;
  }

  .floating-contact b {
    display: inline;
  }
}

@media (max-width: 390px) {
  .header-cta {
    padding: 0 11px;
  }

  .hero-gallery {
    min-height: 450px;
  }

  .hero-seal {
    width: 136px;
  }

  .hero-seal img {
    display: none;
  }

  .collection-gallery {
    grid-auto-rows: 170px;
  }

  .bag-gallery {
    grid-template-rows: 380px 220px 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
