:root {
  --pink: #ec7d9f;
  --pink-deep: #bd456c;
  --blush: #fff4f7;
  --green: #355f4d;
  --green-soft: #dfece5;
  --yellow: #ffe17a;
  --charcoal: #30272b;
  --muted: #746b6f;
  --line: #e6dfe1;
  --paper: #fffdfc;
  --white: #ffffff;
  --max: 1180px;
  --font-brand: ui-rounded, "SF Pro Rounded", "Avenir Next", Pretendard, "Noto Sans KR", system-ui, sans-serif;
  --font-body: "Avenir Next", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(48, 39, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

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

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 74px;
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 252, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(48, 39, 43, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header__inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.brand__symbol {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  transform: scale(1.16) translateY(-0.5px);
  transform-origin: center;
}

.brand__name {
  color: var(--charcoal);
  font-family: var(--font-brand);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav a.is-current {
  color: var(--pink-deep);
}

.menu-toggle {
  display: none;
  min-width: 52px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 102px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, #fff7f9 0%, var(--blush) 58%, #fff9fb 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-top: 44px;
}

.hero__image-wrap {
  position: absolute;
  z-index: 1;
  top: 74px;
  right: max(calc((100vw - var(--max)) / 2 - 26px), -26px);
  bottom: 0;
  width: min(53vw, 700px);
  transform: translate3d(var(--hero-pointer-x, 0), calc(var(--hero-pointer-y, 0) + var(--hero-scroll-y, 0)), 0);
  transform-origin: 58% 78%;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 32px rgba(48, 39, 43, 0.12));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow--light {
  color: #b9d7c7;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.hero__brand > img {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  transform: scale(1.16);
  transform-origin: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__copy {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.motion-enabled .hero__inner > .eyebrow,
.motion-enabled .hero__brand,
.motion-enabled .hero__copy,
.motion-enabled .hero__actions,
.motion-enabled .hero__index {
  opacity: 0;
  transform: translateY(22px);
}

.motion-enabled .hero__image-wrap {
  opacity: 0;
  transform: translate3d(var(--hero-pointer-x, 0), calc(var(--hero-pointer-y, 0) + var(--hero-scroll-y, 0) + 22px), 0) scale(0.97);
}

.motion-enabled .hero.is-ready .hero__inner > .eyebrow,
.motion-enabled .hero.is-ready .hero__brand,
.motion-enabled .hero.is-ready .hero__copy,
.motion-enabled .hero.is-ready .hero__actions,
.motion-enabled .hero.is-ready .hero__index,
.motion-enabled .hero.is-ready .hero__image-wrap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-enabled .hero.is-ready .hero__brand {
  transition-delay: 70ms;
}

.motion-enabled .hero.is-ready .hero__copy {
  transition-delay: 140ms;
}

.motion-enabled .hero.is-ready .hero__actions {
  transition-delay: 210ms;
}

.motion-enabled .hero.is-ready .hero__image-wrap {
  transform: translate3d(var(--hero-pointer-x, 0), calc(var(--hero-pointer-y, 0) + var(--hero-scroll-y, 0)), 0) scale(1);
  transition-delay: 110ms;
}

.motion-enabled .hero.is-ready .hero__index {
  transition-delay: 290ms;
}

.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--primary {
  color: var(--white);
  background: var(--pink-deep);
  box-shadow: 0 12px 28px rgba(189, 69, 108, 0.22);
}

.button--text {
  border-color: var(--charcoal);
  background: rgba(255, 253, 252, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button--dark {
  width: fit-content;
  color: var(--white);
  background: var(--charcoal);
}

.button--light {
  color: var(--green);
  background: var(--white);
}

.hero__index {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 64px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.hero__index span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
}

.section {
  padding: 88px 0;
}

.section__inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

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

.intro__grid {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: end;
}

.section-number {
  margin: 0;
  color: var(--pink-deep);
  font-family: var(--font-brand);
  font-size: 32px;
}

.intro h2,
.section-heading h2,
.collection h2,
.partner h2,
.closing h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 650;
  line-height: 1.25;
}

.intro__grid > p:last-child,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.recommend {
  background: #f3f6f2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  gap: 42px;
  align-items: end;
}

.recommend-controls {
  margin: 38px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  font-weight: 800;
}

.choice-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.choice {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #ced8d1;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.choice:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.choice:active {
  transform: scale(0.97);
}

.choice.is-active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 8px 18px rgba(53, 95, 77, 0.18);
}

.recommend-result {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recommend-result__media {
  min-height: 500px;
  background: #f5e8e1;
}

.recommend-result__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 240ms ease;
}

.recommend-result__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.recommend-result.is-switching .recommend-result__media img {
  opacity: 0;
  filter: saturate(0.82);
  transform: scale(1.025);
}

.recommend-result.is-switching .recommend-result__body {
  opacity: 0;
  transform: translateY(10px);
}

.result-label {
  margin: 0 0 12px;
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 800;
}

.recommend-result h3 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

.recommend-result__body > p:not(.result-label) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.recommend-result__body > strong {
  margin: 28px 0;
  font-size: 22px;
}

.collection {
  color: var(--white);
  background: var(--green);
}

.collection__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}

.collection__copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 26px 0 34px;
  color: #d9e9e0;
  font-size: 17px;
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.flower-tile {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: background-color 160ms ease, transform 160ms ease;
}

.flower-tile:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.flower-tile--large {
  grid-row: 1 / span 2;
  grid-column: 1 / span 2;
}

.flower-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.16));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flower-tile:hover img {
  transform: scale(1.045) rotate(-1deg);
}

.flower-tile__number,
.flower-tile__name {
  position: absolute;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
}

.flower-tile__number {
  top: 16px;
  left: 16px;
  color: #b9d7c7;
}

.flower-tile__name {
  right: 16px;
  bottom: 14px;
  left: 16px;
}

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

.journey {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}

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

.journey__steps li {
  position: relative;
  min-height: 116px;
  padding: 0 0 28px 64px;
}

.journey__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 8px;
  left: 21px;
  width: 1px;
  background: var(--line);
}

.journey__steps li > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--pink-deep);
  font-family: var(--font-brand);
  font-size: 20px;
}

.journey__steps strong {
  display: block;
  font-size: 21px;
  font-weight: 700;
}

.journey__steps p {
  margin: 6px 0 0;
  color: var(--muted);
}

.journey__visual {
  margin: 0;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.journey__visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey__visual:hover img {
  transform: scale(1.025);
}

.journey__visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(48, 39, 43, 0.9);
  border-radius: 6px;
  font-weight: 700;
}

.community {
  background: var(--blush);
}

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

.community-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid #f0dfe5;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.community-card:hover {
  border-color: #e8c6d2;
  box-shadow: 0 22px 48px rgba(48, 39, 43, 0.1);
  transform: translateY(-6px);
}

.community-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.community-card:hover img {
  transform: scale(1.035);
}

.community-card div {
  padding: 24px;
}

.community-card span {
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 800;
}

.community-card h3 {
  margin: 8px 0 0;
  font-size: 21px;
  font-weight: 700;
}

.community-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.partner {
  color: var(--white);
  background: var(--charcoal);
}

.partner__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: center;
}

.partner__copy > p:not(.eyebrow):not(.partner__domain) {
  margin: 26px 0 0;
  color: #cfc7ca;
  font-size: 17px;
}

.partner__domain {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid #544a4e;
  color: #cfc7ca;
  font-size: 13px;
}

.partner__domain strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 16px;
}

.partner-dashboard {
  padding: 28px;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.partner-dashboard__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.partner-dashboard__top div {
  padding: 0 20px 22px;
}

.partner-dashboard__top div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.partner-dashboard small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.partner-dashboard__top strong {
  display: block;
  margin-top: 5px;
  font-size: 28px;
}

.partner-tabs {
  margin-top: 18px;
  display: flex;
  gap: 6px;
}

.partner-tabs button {
  min-width: 76px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: #f3f0f1;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.partner-tabs button:active {
  transform: scale(0.96);
}

.partner-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--green);
}

.partner-list {
  margin-top: 12px;
  animation: panel-enter 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.partner-list > div {
  min-height: 78px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.partner-list time {
  color: var(--muted);
  font-size: 13px;
}

.partner-list span {
  min-width: 0;
}

.partner-list span strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-list em {
  padding: 6px 9px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.closing {
  text-align: center;
  background: var(--paper);
}

.closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing img {
  width: 84px;
  height: 84px;
  margin-bottom: 22px;
  object-fit: contain;
}

.closing .button {
  margin-top: 32px;
}

.site-footer {
  padding: 64px 0 calc(42px + env(safe-area-inset-bottom));
  color: var(--white);
  background: #241d20;
}

.site-footer__inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.brand--footer {
  width: auto;
}

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

.site-footer p {
  margin: 18px 0 28px;
  color: #bdb4b8;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  font-weight: 800;
}

.site-footer small {
  display: block;
  margin-top: 34px;
  color: #8f8589;
}

.policy-page {
  background: #f6f4f2;
}

.policy-page .site-header {
  background: rgba(255, 253, 252, 0.97);
  border-bottom-color: var(--line);
}

.policy-main {
  min-height: 75svh;
  padding: 142px 0 100px;
}

.policy-layout {
  width: min(calc(100% - 48px), 960px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.policy-aside {
  position: sticky;
  top: 110px;
}

.policy-aside > a {
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 800;
}

.policy-aside nav {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}

.policy-aside nav a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.policy-aside nav a[aria-current="page"] {
  color: var(--charcoal);
  font-weight: 700;
}

.policy-document {
  min-width: 0;
}

.policy-document h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.policy-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.draft-notice {
  margin: 30px 0 42px;
  padding: 18px 20px;
  border-left: 4px solid var(--pink-deep);
  background: var(--blush);
  border-radius: 0 6px 6px 0;
  font-size: 14px;
}

.policy-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}

.policy-section h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.policy-section p {
  margin: 10px 0 0;
  color: #574e52;
}

.policy-section ul,
.policy-section ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: #574e52;
}

.policy-section li + li {
  margin-top: 8px;
}

.request-path {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #e5c6d0;
  background: var(--white);
  border-radius: 8px;
}

.request-path strong {
  display: block;
  margin-bottom: 6px;
}

.policy-meta {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.flower-dialog {
  width: min(calc(100% - 32px), 520px);
  max-height: min(760px, calc(100svh - 32px));
  padding: 30px;
  color: var(--charcoal);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(48, 39, 43, 0.28);
}

.flower-dialog::backdrop {
  background: rgba(48, 39, 43, 0.58);
  animation: backdrop-enter 220ms ease both;
}

.flower-dialog[open] {
  animation: dialog-enter 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.flower-dialog > img {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.flower-dialog h2 {
  margin: 0;
  font-size: 32px;
}

.flower-dialog > p:not(.result-label) {
  color: var(--muted);
}

.flower-dialog dl {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.flower-dialog dl div {
  padding: 14px;
  background: var(--blush);
  border-radius: 6px;
}

.flower-dialog dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.flower-dialog dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 50px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms cubic-bezier(0.16, 1, 0.3, 1), transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.motion-enabled .flower-grid.reveal .flower-tile,
.motion-enabled .community-grid.reveal .community-card,
.motion-enabled .journey.reveal .journey__steps li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.motion-enabled .flower-grid.reveal.is-visible .flower-tile,
.motion-enabled .community-grid.reveal.is-visible .community-card,
.motion-enabled .journey.reveal.is-visible .journey__steps li {
  opacity: 1;
  transform: none;
}

.motion-enabled .flower-grid.reveal.is-visible .flower-tile:nth-child(2),
.motion-enabled .community-grid.reveal.is-visible .community-card:nth-child(2),
.motion-enabled .journey.reveal.is-visible .journey__steps li:nth-child(2) {
  transition-delay: 80ms;
}

.motion-enabled .flower-grid.reveal.is-visible .flower-tile:nth-child(3),
.motion-enabled .community-grid.reveal.is-visible .community-card:nth-child(3),
.motion-enabled .journey.reveal.is-visible .journey__steps li:nth-child(3) {
  transition-delay: 160ms;
}

.motion-enabled .flower-grid.reveal.is-visible .flower-tile:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header__inner,
  .section__inner,
  .hero__inner,
  .site-footer__inner {
    width: min(calc(100% - 36px), var(--max));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    padding: 14px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    min-height: 46px;
    padding: 11px 12px;
  }

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

  .site-nav a.is-current {
    color: var(--pink-deep);
    background: var(--blush);
    border-radius: 6px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__inner {
    padding-top: 30px;
  }

  .hero__image-wrap {
    top: auto;
    right: -38px;
    bottom: 60px;
    width: 560px;
    height: 500px;
  }

  .hero__brand > img {
    width: 80px;
    height: 80px;
  }

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

  .intro__grid,
  .section-heading,
  .collection__grid,
  .journey,
  .partner__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid,
  .section-heading {
    gap: 24px;
  }

  .intro__grid .section-number {
    margin-bottom: -8px;
  }

  .recommend-controls {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recommend-result {
    grid-template-columns: 1fr 1fr;
  }

  .recommend-result__body {
    padding: 40px;
  }

  .collection__grid,
  .partner__grid {
    gap: 50px;
  }

  .journey {
    gap: 34px;
  }

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

  .policy-layout {
    width: min(calc(100% - 36px), 760px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .policy-aside {
    position: static;
  }

  .policy-aside nav {
    display: flex;
    gap: 8px 18px;
    flex-wrap: wrap;
  }
}

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

  .site-header {
    min-height: 66px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand {
    width: auto;
    gap: 2px;
  }

  .brand__symbol {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 18px;
  }

  .policy-page .site-header__inner {
    gap: 12px;
  }

  .policy-page .brand {
    gap: 1px;
  }

  .policy-page .brand__symbol {
    width: 32px;
    height: 32px;
  }

  .policy-page .brand__name {
    font-size: 15px;
  }

  .policy-page .site-header .button {
    min-height: 40px;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: 720px;
    padding: 88px 0 72px;
  }

  .hero__inner {
    padding-top: 14px;
  }

  .hero__brand {
    gap: 1px;
  }

  .hero__brand > img {
    width: 56px;
    height: 56px;
  }

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

  .hero__copy {
    max-width: 360px;
    margin-top: 16px;
    font-size: 17px;
  }

  .hero__image-wrap {
    right: -48px;
    bottom: 62px;
    width: 405px;
    height: 360px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__index {
    min-height: 68px;
    padding: 0 18px;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero__index span:not(:last-child)::after {
    margin-left: 20px;
  }

  .section {
    padding: 66px 0;
  }

  .intro h2,
  .section-heading h2,
  .collection h2,
  .partner h2,
  .closing h2 {
    font-size: 30px;
  }

  .recommend-result {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .recommend-result__media {
    min-height: 310px;
  }

  .recommend-result__body {
    padding: 30px 24px 34px;
  }

  .recommend-result h3 {
    font-size: 30px;
  }

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

  .choice {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }

  .flower-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 190px 190px;
  }

  .flower-tile--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .journey__visual,
  .journey__visual img {
    min-height: 430px;
    height: 430px;
  }

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

  .partner-dashboard {
    padding: 18px;
  }

  .partner-dashboard__top div {
    padding: 0 10px 16px;
  }

  .partner-dashboard__top strong {
    font-size: 22px;
  }

  .partner-list > div {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 10px 0;
  }

  .partner-list em {
    grid-column: 2;
    justify-self: start;
  }

  .flower-dialog {
    padding: 24px;
  }

  .flower-dialog > img {
    width: 180px;
    height: 180px;
  }

  .policy-main {
    padding: 112px 0 74px;
  }

  .policy-document h1 {
    font-size: 32px;
  }

  .policy-lead {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 780px;
  }

  .hero__brand > img {
    width: 46px;
    height: 46px;
  }

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

  .hero__image-wrap {
    right: -42px;
    bottom: 62px;
    width: 365px;
    height: 330px;
  }

  .hero__index {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
    gap: 0;
    padding-inline: 8px;
    overflow: hidden;
    font-size: 12px;
    text-align: center;
  }

  .hero__index span:not(:last-child)::after {
    display: none;
  }
}

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

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

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

  .motion-enabled .hero__inner > .eyebrow,
  .motion-enabled .hero__inner > h1,
  .motion-enabled .hero__copy,
  .motion-enabled .hero__actions,
  .motion-enabled .hero__index,
  .motion-enabled .hero__image-wrap,
  .motion-enabled .flower-grid.reveal .flower-tile,
  .motion-enabled .community-grid.reveal .community-card,
  .motion-enabled .journey.reveal .journey__steps li {
    opacity: 1;
    transform: none;
  }
}
