@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-normal-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/cormorant-italic-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/cormorant-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f3ede3;
  --paper-warm: #eadfce;
  --paper-light: #faf7f1;
  --ink: #17251b;
  --ink-soft: #425146;
  --leaf: #263e2d;
  --leaf-deep: #14271c;
  --sage: #9cab8a;
  --rose: #c95070;
  --rose-ink: #9d3655;
  --plum: #67263f;
  --sun: #f0c952;
  --line: rgba(23, 37, 27, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --header-height: 78px;
  --page-x: clamp(22px, 4vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  background: var(--paper);
}

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

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

::selection {
  color: var(--paper-light);
  background: var(--plum);
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  transform: translateY(-150%);
  color: #fff;
  background: var(--leaf-deep);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.band {
  position: relative;
  padding: clamp(90px, 10vw, 160px) var(--page-x);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button--dark {
  color: #fff;
  background: var(--leaf-deep);
}

.button--dark:hover {
  background: var(--plum);
}

.button--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  color: #fff;
  background: var(--ink);
}

.button--light {
  color: var(--leaf-deep);
  background: var(--paper-light);
}

.button--light:hover {
  color: var(--plum);
  background: #fff;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: transparent;
}

.button--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 250ms ease, gap 250ms ease;
}

.text-link:hover {
  gap: 16px;
  color: var(--rose);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--ink);
  transition: color 300ms ease, background 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(243, 237, 227, 0.92);
  box-shadow: 0 1px 0 rgba(23, 37, 27, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 var(--page-x);
  grid-template-columns: 1fr auto 1fr;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  gap: 9px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.wordmark__flower {
  width: 26px;
  height: 26px;
  fill: var(--rose);
}

.wordmark__flower circle {
  fill: var(--sun);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 0;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-order {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 7px 0 6px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.header-order::after {
  content: "↗";
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-height);
  background: var(--paper);
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
}

.hero-copy {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vh, 110px) clamp(32px, 5.7vw, 104px) 52px var(--page-x);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6.5vw, 112px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.82;
}

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

.hero-lead {
  max-width: 550px;
  margin: clamp(34px, 5vh, 62px) 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-note span {
  color: var(--rose);
  font-size: 15px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  place-items: center;
  background: #e3d2d2;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  top: -9vw;
  right: -6vw;
  width: 31vw;
  height: 31vw;
}

.hero-visual::after {
  bottom: -12vw;
  left: -9vw;
  width: 28vw;
  height: 28vw;
}

.hero-visual__frame {
  position: relative;
  z-index: 1;
  width: min(66%, 565px);
  height: min(78vh, 790px);
  min-height: 540px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(61, 34, 40, 0.18);
}

.hero-visual__frame picture,
.hero-visual__frame img {
  width: 100%;
  height: 100%;
}

.hero-visual__frame img {
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(14px, 3vw, 54px);
  bottom: clamp(34px, 7vh, 78px);
  width: clamp(104px, 10vw, 150px);
  color: var(--leaf-deep);
}

.hero-stamp svg {
  overflow: visible;
  animation: slow-spin 28s linear infinite;
  fill: currentColor;
}

.hero-stamp text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-stamp .stamp-sprig {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(10px, 2vw, 32px);
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  color: rgba(23, 37, 27, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.promise {
  display: grid;
  min-height: 830px;
  align-items: center;
  overflow: hidden;
  background: var(--paper-light);
  grid-template-columns: minmax(150px, 0.52fr) minmax(420px, 1.45fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 5vw, 86px);
}

.promise::before {
  position: absolute;
  top: 8%;
  left: 34%;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(201, 80, 112, 0.13);
  border-radius: 50%;
  content: "";
}

.promise-kicker {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 16%;
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 82px);
  font-style: italic;
  line-height: 0.9;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.promise-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.promise-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 5.1vw, 86px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.promise-copy h2 em {
  color: var(--rose);
  font-weight: 400;
}

.promise-copy > p:last-child {
  max-width: 570px;
  margin: 42px 0 0 12%;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.promise-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 355px;
  margin: 0;
  transform: rotate(1.2deg);
}

.promise-photo::before {
  position: absolute;
  z-index: -1;
  inset: -12px 12px 42px -12px;
  border: 1px solid rgba(23, 37, 27, 0.35);
  content: "";
}

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

.promise-photo figcaption {
  position: relative;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.2;
  text-align: right;
}

.bouquets {
  padding-bottom: clamp(100px, 12vw, 190px);
  background: var(--paper);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 130px);
  grid-template-columns: 1fr minmax(280px, 0.48fr);
  gap: 50px;
}

.section-heading h2,
.how-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.84;
}

.section-heading > p {
  max-width: 510px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.bouquet-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(68px, 7vw, 112px) clamp(18px, 2vw, 34px);
}

.bouquet-card {
  min-width: 0;
  grid-column: span 4;
}

.bouquet-card--tall {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.bouquet-card--wide {
  margin-top: 10%;
  grid-column: 7 / span 6;
  grid-row: 1;
}

.bouquet-card:nth-child(3) {
  grid-column: 1 / span 4;
  grid-row: 2;
}

.bouquet-card:nth-child(4) {
  margin-top: 12%;
  grid-column: 5 / span 4;
  grid-row: 2;
}

.bouquet-card:nth-child(5) {
  margin-top: 4%;
  grid-column: 9 / span 4;
  grid-row: 2;
}

.bouquet-card__image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #d8d0c3;
}

.bouquet-card__image::after {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  right: 16px;
  bottom: 16px;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
  color: var(--ink);
  background: rgba(250, 247, 241, 0.9);
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms var(--ease);
}

.bouquet-card__image picture,
.bouquet-card__image img {
  width: 100%;
  height: 100%;
}

.bouquet-card__image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.bouquet-card--wide .bouquet-card__image img {
  aspect-ratio: 4 / 2.85;
}

.bouquet-card__image:hover::after,
.bouquet-card__image:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.bouquet-card__image:hover img {
  transform: scale(1.035);
}

.bouquet-card__caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  margin-top: 14px;
}

.bouquet-card__caption > div {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}

.bouquet-card__caption span {
  margin-top: 7px;
  color: var(--rose-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.bouquet-card__caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.bouquet-card__caption p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  grid-column: 2;
}

.choose-link {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 0 4px;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms ease, border-color 250ms ease;
}

.choose-link:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.bouquets-footnote {
  display: flex;
  max-width: 880px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin: clamp(90px, 10vw, 150px) auto 0;
}

.bouquets-footnote > span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  font-style: italic;
}

.garden-story {
  display: grid;
  min-height: 900px;
  overflow: hidden;
  color: #f9f3e9;
  background: var(--leaf-deep);
  grid-template-columns: minmax(360px, 0.9fr) minmax(490px, 1.1fr);
  gap: clamp(55px, 8vw, 140px);
}

.garden-story::after {
  position: absolute;
  right: -15vw;
  bottom: -38vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.garden-story__image {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 570px);
}

.garden-story__image::before {
  position: absolute;
  z-index: 0;
  inset: -14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
  pointer-events: none;
}

.garden-story__image picture {
  position: relative;
  z-index: 1;
}

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

.garden-story__scribble {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 8%;
  padding: 10px 13px;
  transform: rotate(-7deg);
  color: var(--leaf-deep);
  background: var(--sun);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 0.95;
  text-align: center;
}

.garden-story__copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-right: clamp(0px, 2vw, 34px);
}

.garden-story__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 7vw, 116px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.82;
}

.garden-story__copy h2 em {
  color: #e5b9c5;
  font-weight: 400;
}

.garden-story__lead {
  max-width: 650px;
  margin: 50px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 29px);
  line-height: 1.4;
}

.garden-values {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
}

.garden-values > div {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.garden-values > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.garden-values span {
  color: var(--sun);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.garden-values h3 {
  margin: 10px 0 5px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.garden-values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  line-height: 1.65;
}

.how {
  display: grid;
  align-items: start;
  background: var(--paper-light);
  grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(70px, 10vw, 180px);
}

.how-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.how-heading h2 em {
  color: var(--rose);
  font-weight: 400;
}

.how-heading > p:last-child {
  max-width: 480px;
  margin: 46px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.step {
  display: grid;
  min-height: 190px;
  align-items: start;
  padding: 32px 0 44px;
  border-top: 1px solid var(--ink);
  grid-template-columns: 88px 1fr;
}

.step:last-child {
  border-bottom: 1px solid var(--ink);
}

.step__number {
  margin-top: 7px;
  color: var(--rose-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.step p {
  max-width: 490px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.atelier {
  display: grid;
  min-height: 920px;
  overflow: hidden;
  align-items: center;
  background: #d8c7cf;
  grid-template-columns: minmax(250px, 0.42fr) minmax(520px, 1fr) minmax(190px, 0.32fr);
  gap: clamp(24px, 4vw, 70px);
}

.atelier::before {
  position: absolute;
  top: -40%;
  left: 12%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.atelier-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 15%;
}

.atelier-copy > span {
  display: block;
  color: rgba(103, 38, 63, 0.86);
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 128px);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.58;
}

.atelier-copy p {
  max-width: 290px;
  margin: 60px 0 0;
  color: rgba(23, 37, 27, 0.7);
  font-size: 12px;
  line-height: 1.8;
}

.atelier-main {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.atelier-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 32px 85px rgba(77, 44, 57, 0.18);
}

.atelier-main figcaption {
  position: absolute;
  right: 20px;
  bottom: -44px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.atelier-detail {
  position: relative;
  z-index: 2;
  width: min(100%, 280px);
  margin: 45% 0 0 -18%;
}

.atelier-detail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 10px solid rgba(250, 247, 241, 0.82);
  transform: rotate(4deg);
  box-shadow: 0 20px 60px rgba(77, 44, 57, 0.15);
}

.order {
  display: grid;
  color: #fff;
  background: var(--plum);
  grid-template-columns: minmax(360px, 0.76fr) minmax(560px, 1.24fr);
  gap: clamp(70px, 10vw, 170px);
}

.order::before {
  position: absolute;
  top: 38%;
  left: -12vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.order-intro,
.order-form {
  position: relative;
  z-index: 1;
}

.order-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.84;
}

.order-intro h2 em {
  color: #f1c7d2;
  font-weight: 400;
}

.order-intro > p:not(.eyebrow) {
  max-width: 490px;
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.85;
}

.order-contact {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.order-contact > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-contact > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.order-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 24px;
}

.order-form {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.field {
  min-width: 0;
}

.field--trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.order-result > label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.order-result textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  transition: border-color 200ms ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 2px;
}

.field textarea {
  min-height: 100px;
  padding: 12px 2px;
  resize: vertical;
}

.field select {
  padding-right: 30px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.8) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  color: var(--ink);
  background: var(--paper-light);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.order-result textarea:focus {
  border-color: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
}

.order-form__footer {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
}

.order-form__footer p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.6;
}

.order-result {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.order-result textarea {
  min-height: 195px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  resize: vertical;
}

.order-result__status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #f3d5dd;
  font-size: 11px;
}

.order-result__status[data-state="success"] {
  color: #f6df91;
}

.order-result__status[data-state="error"] {
  color: #ffd4df;
}

.order-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.site-footer {
  padding: 70px var(--page-x) 26px;
  color: var(--paper-light);
  background: #0e1912;
}

.footer-main {
  display: grid;
  min-height: 210px;
  align-items: start;
  grid-template-columns: 1fr 1fr auto;
}

.wordmark--footer {
  color: #fff;
  font-size: 31px;
}

.footer-about > p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
}

.footer-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 24px;
}

.footer-up {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  width: min(92vw, 860px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(8, 14, 10, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox__body {
  display: grid;
  max-height: 88vh;
  place-items: center;
}

.lightbox__body img {
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.36);
}

.lightbox__body p {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  z-index: 1;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.order :focus-visible,
.site-footer :focus-visible {
  outline-color: #fff;
}

@media (max-width: 1180px) {
  :root {
    --page-x: clamp(22px, 3.2vw, 48px);
  }

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

  .hero-visual__frame {
    width: 72%;
  }

  .promise {
    grid-template-columns: 120px minmax(410px, 1fr) minmax(230px, 0.55fr);
    gap: 34px;
  }

  .bouquet-card__caption {
    display: block;
  }

  .choose-link {
    margin-top: 17px;
  }

  .garden-story,
  .order {
    gap: 70px;
  }

  .garden-values {
    grid-template-columns: 1fr;
  }

  .garden-values > div,
  .garden-values > div:first-child {
    display: grid;
    padding: 15px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    grid-template-columns: 38px 150px 1fr;
  }

  .garden-values h3,
  .garden-values p {
    margin: 0;
  }

  .atelier {
    grid-template-columns: minmax(190px, 0.36fr) minmax(480px, 1fr) minmax(140px, 0.23fr);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-order {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    justify-self: end;
    padding: 0;
    background: transparent;
  }

  .menu-toggle span {
    position: absolute;
    right: 5px;
    left: 5px;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease, top 250ms ease;
  }

  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100svh - var(--header-height));
    flex-direction: column;
    padding: 45px var(--page-x);
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(34px, 7vw, 55px);
    line-height: 1;
  }

  .mobile-menu a:last-child {
    margin-top: auto;
    border: 0;
    color: var(--rose);
    font-style: italic;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding-top: clamp(82px, 14vh, 140px);
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(72px, 12vw, 110px);
  }

  .hero-note {
    margin-top: 70px;
  }

  .hero-visual {
    min-height: 800px;
  }

  .hero-visual__frame {
    width: min(68%, 560px);
    height: 690px;
    min-height: 0;
  }

  .promise {
    min-height: auto;
    grid-template-columns: 90px 1fr;
  }

  .promise-photo {
    width: 45%;
    margin-top: 20px;
    margin-left: auto;
    grid-column: 2;
  }

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

  .section-heading > p {
    margin-left: 20%;
  }

  .bouquet-card--tall { grid-column: 1 / span 6; }
  .bouquet-card--wide { grid-column: 7 / span 6; }
  .bouquet-card:nth-child(3) { grid-column: 1 / span 4; }
  .bouquet-card:nth-child(4) { grid-column: 5 / span 4; }
  .bouquet-card:nth-child(5) { grid-column: 9 / span 4; margin-top: 30%; }

  .garden-story {
    grid-template-columns: minmax(300px, 0.82fr) minmax(400px, 1.18fr);
  }

  .garden-story__copy h2 {
    font-size: clamp(64px, 8vw, 84px);
  }

  .garden-story__lead {
    margin-top: 36px;
  }

  .garden-values {
    margin-top: 45px;
  }

  .garden-values > div,
  .garden-values > div:first-child {
    grid-template-columns: 32px 120px 1fr;
  }

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

  .how-heading {
    position: static;
  }

  .steps {
    max-width: 700px;
    margin-left: auto;
  }

  .atelier {
    min-height: auto;
    grid-template-columns: 0.38fr 1fr;
  }

  .atelier-detail {
    display: none;
  }

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

  .order-intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    column-gap: 50px;
  }

  .order-intro .eyebrow,
  .order-intro h2 {
    grid-column: 1;
  }

  .order-intro > p:not(.eyebrow),
  .order-contact {
    align-self: end;
    grid-column: 2;
  }

  .order-intro > p:not(.eyebrow) {
    margin-top: 0;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 840px) {
  .garden-story {
    display: block;
    min-height: auto;
  }

  .garden-story__image {
    width: min(72%, 520px);
    margin: 0 auto 105px 0;
  }

  .garden-story__copy {
    max-width: 690px;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --page-x: 20px;
  }

  .band {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .wordmark {
    font-size: 22px;
  }

  .hero-copy {
    min-height: calc(78svh - var(--header-height));
    padding-top: 70px;
    padding-bottom: 45px;
  }

  .hero h1 {
    font-size: clamp(56px, 17.5vw, 86px);
    line-height: 0.86;
  }

  .hero-lead {
    margin-top: 30px;
    font-size: 21px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 29px;
  }

  .hero-note {
    margin-top: 42px;
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero-visual__frame {
    width: calc(100% - 70px);
    height: 570px;
  }

  .hero-stamp {
    right: 8px;
    bottom: 12px;
  }

  .hero-caption {
    left: 8px;
  }

  .promise {
    display: block;
    padding-bottom: 100px;
  }

  .promise-kicker {
    margin: 0 0 32px;
    font-size: 47px;
    writing-mode: initial;
    transform: none;
  }

  .promise-copy h2 {
    font-size: clamp(48px, 14vw, 67px);
  }

  .promise-copy > p:last-child {
    margin: 30px 0 0;
  }

  .promise-photo {
    width: 67%;
    margin-top: 55px;
    transform: none;
  }

  .promise-photo::before {
    inset: -10px 10px 40px -10px;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 65px;
  }

  .section-heading h2,
  .how-heading h2 {
    font-size: clamp(58px, 16.5vw, 82px);
  }

  .section-heading > p {
    margin-left: 0;
  }

  .bouquet-grid {
    display: block;
  }

  .bouquet-card,
  .bouquet-card--tall,
  .bouquet-card--wide,
  .bouquet-card:nth-child(3),
  .bouquet-card:nth-child(4),
  .bouquet-card:nth-child(5) {
    width: 100%;
    margin: 0 0 70px;
  }

  .bouquet-card:nth-child(even) {
    width: 82%;
    margin-left: auto;
  }

  .bouquet-card:nth-child(3) {
    width: 86%;
  }

  .bouquet-card--wide .bouquet-card__image img {
    aspect-ratio: 4 / 3;
  }

  .bouquet-card__caption h3 {
    font-size: 32px;
  }

  .bouquets-footnote {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .garden-story {
    display: block;
  }

  .garden-story__image {
    width: min(82%, 500px);
    margin: 0 auto 95px 0;
  }

  .garden-story__scribble {
    right: -8px;
  }

  .garden-story__copy h2 {
    font-size: clamp(60px, 17vw, 82px);
  }

  .garden-story__lead {
    font-size: 21px;
  }

  .garden-values > div,
  .garden-values > div:first-child {
    display: grid;
    padding: 18px 0;
    grid-template-columns: 34px 1fr;
  }

  .garden-values p {
    margin-top: 8px;
    grid-column: 2;
  }

  .step {
    min-height: 0;
    padding: 27px 0 34px;
    grid-template-columns: 48px 1fr;
  }

  .step h3 {
    font-size: 33px;
  }

  .atelier {
    display: flex;
    min-height: 760px;
    flex-direction: column;
    align-items: stretch;
  }

  .atelier-copy {
    margin: 0;
  }

  .atelier-copy > span {
    font-size: 86px;
  }

  .atelier-copy p {
    margin-top: 44px;
  }

  .atelier-main {
    margin-top: 40px;
  }

  .atelier-main img {
    aspect-ratio: 1 / 1;
  }

  .atelier-main figcaption {
    right: 0;
    bottom: -38px;
    font-size: 17px;
  }

  .order-intro {
    display: block;
  }

  .order-intro h2 {
    font-size: clamp(57px, 16vw, 77px);
  }

  .order-intro > p:not(.eyebrow) {
    margin-top: 36px;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

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

  .order-result {
    padding: 18px;
  }

  .footer-main {
    min-height: 300px;
    grid-template-columns: 1fr auto;
  }

  .footer-about {
    margin-top: 35px;
    grid-column: 1 / -1;
  }

  .footer-up {
    grid-column: 2;
    grid-row: 1;
  }

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

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

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

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