:root {
  --paper: #fffaf3;
  --paper-deep: #f5efdf;
  --ink: #22311f;
  --muted: #66705e;
  --leaf: #639b2d;
  --leaf-dark: #3f641f;
  --pink: #e72f74;
  --pink-dark: #bd1e59;
  --saffron: #eca033;
  --white: #ffffff;
  --line: rgba(34, 49, 31, 0.15);
  --display: Georgia, "Times New Roman", serif;
  --body: Aptos, "Segoe UI", Arial, sans-serif;
  --hand: "Segoe Print", "Bradley Hand", cursive;
  --content: min(1180px, calc(100vw - 48px));
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(231, 47, 116, 0.2);
}

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

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

button,
a {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--pink);
  font-weight: 400;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topline {
  min-height: 34px;
  padding: 6px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--leaf-dark);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline p {
  margin: 0;
}

.topline a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 160ms ease;
}

.topline a:hover {
  color: #ffcadf;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 84px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255, 250, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand-crop {
  display: block;
  width: 170px;
  height: auto;
}

.brand img {
  width: 170px;
  height: auto;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.navigation > a:not(.nav-cta) {
  position: relative;
}

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

.navigation > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  width: var(--content);
  min-height: 730px;
  margin: 0 auto;
  padding: 74px 0 88px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.hero-leaf {
  position: absolute;
  left: -310px;
  bottom: -15px;
  width: 540px;
  height: auto;
  transform: rotate(-7deg);
  opacity: 0.34;
  filter: saturate(0.86);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--pink);
}

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

.eyebrow.light span {
  background: var(--saffron);
}

.hero h1 {
  max-width: 580px;
  margin-bottom: 28px;
  font-size: clamp(67px, 7vw, 112px);
}

.hero h1 em {
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -7px;
  width: 92%;
  height: 9px;
  transform: rotate(-2deg);
  border-radius: 50%;
  border-top: 3px solid var(--saffron);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 32px;
  color: #4d5948;
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--pink-dark);
  color: white;
}

.button-primary:hover {
  background: #981445;
}

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

.button-outline:hover {
  background: var(--leaf-dark);
  color: white;
}

.button-outline span {
  display: inline-block;
  margin-left: 7px;
}

.text-link,
.facebook-link {
  border-bottom: 1px solid currentColor;
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease;
}

.text-link:hover,
.facebook-link:hover {
  color: var(--pink);
}

.text-link span,
.facebook-link span {
  display: inline-block;
  margin-left: 6px;
}

.hero-hours {
  margin: 30px 0 0;
  padding-left: 15px;
  border-left: 3px solid var(--leaf);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-hours strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 30px 36px 0;
}

.hero-image-wrap {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #d8dfd3;
  box-shadow: 26px 26px 0 var(--paper-deep);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 63%, rgba(34, 49, 31, 0.18));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 57% center;
}

.hero-note {
  position: absolute;
  left: -52px;
  bottom: 2px;
  z-index: 2;
  width: 218px;
  min-height: 145px;
  padding: 28px 24px 22px;
  transform: rotate(-4deg);
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 8px 9px 0 rgba(34, 49, 31, 0.16);
}

.hero-note::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 72px;
  height: 25px;
  transform: translateX(-50%) rotate(2deg);
  background: rgba(255, 250, 243, 0.64);
}

.hero-note span {
  display: block;
  font-family: var(--hand);
  font-size: 22px;
  line-height: 1;
}

.hero-note strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.1;
}

.hero-note i {
  position: absolute;
  right: 16px;
  bottom: 9px;
  color: var(--pink);
  font-size: 26px;
  font-style: normal;
}

.hero-stamp {
  position: absolute;
  top: 35px;
  right: -40px;
  z-index: 2;
  width: 104px;
  height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(7deg);
  border-radius: 50%;
  background: var(--leaf-dark);
  color: white;
  box-shadow: 0 0 0 7px var(--paper), 0 0 0 8px var(--leaf-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-stamp strong {
  color: #ffd48f;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0;
}

.flower-line {
  width: calc(100% - 28px);
  margin: 0 auto;
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(-1.2deg);
  background: var(--pink);
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.flower-line b {
  padding: 0 19px;
  color: #ffd48f;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 132px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-heading h2,
.gallery-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 84px);
}

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 28px;
}

.service-card {
  position: relative;
  min-width: 0;
}

.service-card-large {
  grid-row: span 2;
}

.service-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 260ms ease, transform 420ms ease;
}

.service-card-large img {
  height: 626px;
}

.service-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.012);
}

.service-card-copy {
  position: relative;
  width: calc(100% - 44px);
  margin: -34px 0 0 auto;
  padding: 25px 28px 5px;
  background: var(--paper);
}

.service-card-copy span {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card-copy h3 {
  margin: 5px 0 9px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.service-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.wish-studio {
  position: relative;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 140px;
  overflow: clip;
  background: var(--leaf-dark);
  color: white;
}

.wish-studio::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -170px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.025), 0 0 0 130px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.studio-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
}

.studio-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(42px, 8vw, 105px);
}

.studio-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(57px, 6.7vw, 94px);
}

.studio-intro h2 em {
  color: #ff8eba;
}

.studio-intro-grid > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.finder-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 22px 24px 0 rgba(16, 37, 12, 0.34);
}

.flower-finder {
  min-width: 0;
  padding: clamp(34px, 5vw, 68px);
}

.finder-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 42px;
}

.tool-number {
  flex: 0 0 auto;
  padding-top: 4px;
  color: var(--pink-dark);
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
}

.tool-kicker {
  margin-bottom: 3px;
  color: var(--leaf-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finder-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.choice-group {
  min-width: 0;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.choice-group legend,
.budget-control label {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

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

.choice-card,
.choice-pill,
.palette-choice {
  position: relative;
  cursor: pointer;
}

.choice-card input,
.choice-pill input,
.palette-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card {
  min-height: 94px;
  padding: 14px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background: white;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--leaf);
}

.choice-card:has(input:checked) {
  border-color: var(--leaf-dark);
  background: #edf3e7;
  box-shadow: inset 0 -3px 0 var(--leaf);
}

.choice-card:has(input:focus-visible),
.choice-pill:has(input:focus-visible),
.palette-choice:has(input:focus-visible) {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}

.choice-card > span {
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.choice-card strong {
  font-size: 12px;
  line-height: 1.2;
}

.choice-pill span {
  min-height: 44px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: white;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.choice-pill:hover span {
  border-color: var(--leaf);
}

.choice-pill input:checked + span {
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
  color: white;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.palette-choice {
  min-width: 0;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: white;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.palette-choice:has(input:checked) {
  border-color: var(--pink);
  box-shadow: inset 0 -3px 0 var(--pink);
}

.palette-choice > span {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--line);
}

.palette-choice strong {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.palette-colorful > span { background: conic-gradient(#e72f74, #eca033, #639b2d, #995f9f, #e72f74); }
.palette-soft > span { background: linear-gradient(135deg, #f6c5d7 0 50%, #d8c8e8 50%); }
.palette-light > span { background: linear-gradient(135deg, #fff 0 50%, #709a5c 50%); }
.palette-bold > span { background: linear-gradient(135deg, #d91f4f 0 50%, #ed8a22 50%); }

.budget-control {
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: 34px;
  border-top: 1px solid var(--line);
}

.budget-control label {
  display: block;
  margin-bottom: 2px;
}

.budget-control p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.budget-input-wrap output {
  display: block;
  margin-bottom: 2px;
  color: var(--pink);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.budget-input-wrap input {
  width: 100%;
  accent-color: var(--pink);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.wish-card {
  position: sticky;
  top: 112px;
  min-width: 0;
  min-height: 570px;
  margin: 32px 32px 32px 0;
  padding: 58px 34px 34px;
  align-self: start;
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 8px 10px 0 rgba(34, 49, 31, 0.16);
}

.wish-card-tape {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 94px;
  height: 27px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(255, 250, 243, 0.72);
}

.wish-card-overline {
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wish-card-flower {
  position: absolute;
  top: 45px;
  right: 29px;
  color: var(--pink);
  font-size: 34px;
}

.wish-card h3 {
  max-width: 280px;
  margin-bottom: 17px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.02;
}

.wish-summary {
  min-height: 76px;
  margin-bottom: 28px;
  font-family: var(--hand);
  font-size: 17px;
  line-height: 1.45;
}

.wish-details {
  margin: 0 0 27px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(34, 49, 31, 0.2);
  border-left: 1px solid rgba(34, 49, 31, 0.2);
}

.wish-details > div {
  min-width: 0;
  padding: 10px 11px;
  border-right: 1px solid rgba(34, 49, 31, 0.2);
  border-bottom: 1px solid rgba(34, 49, 31, 0.2);
}

.wish-details dt {
  color: rgba(34, 49, 31, 0.67);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wish-details dd {
  margin: 1px 0 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 800;
}

.wish-note {
  margin-bottom: 21px;
  font-size: 11px;
  line-height: 1.5;
}

.wish-to-pickup {
  width: 100%;
  background: var(--ink);
}

.wish-to-pickup:hover {
  background: var(--leaf-dark);
}

.wish-to-pickup span {
  margin-left: 8px;
}

.studio-tools {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 40px;
  color: var(--ink);
}

.pickup-tool,
.care-tool {
  min-width: 0;
  padding: clamp(32px, 5vw, 58px);
}

.pickup-tool {
  background: var(--paper);
  scroll-margin-top: 110px;
}

.care-tool {
  background: var(--paper-deep);
}

.pickup-tool .finder-heading,
.care-tool .finder-heading {
  margin-bottom: 35px;
}

.pickup-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(34, 49, 31, 0.22);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.form-field textarea {
  min-height: 106px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7e8878;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--leaf-dark);
}

.prototype-hint {
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #edf3e7;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.prototype-hint > span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--leaf-dark);
  color: white;
  font-family: var(--display);
  font-weight: 700;
}

.prototype-hint p {
  margin: 0;
}

.pickup-form > .button {
  justify-self: start;
}

.pickup-result {
  margin-top: 24px;
  padding: 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  background: #e6f0dd;
  border-left: 4px solid var(--leaf-dark);
}

.pickup-result[hidden] {
  display: none;
}

.pickup-result > span {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--leaf-dark);
  color: white;
  font-weight: 800;
}

.pickup-result p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.care-intro {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.care-options {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.care-option {
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid rgba(34, 49, 31, 0.2);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.care-option:hover,
.care-option.is-active {
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
  color: white;
}

.care-result {
  padding: 30px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 4px 15px;
  background: white;
  border-top: 4px solid var(--pink);
}

.care-result-icon {
  width: 58px;
  height: 58px;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8d9e5;
  color: var(--pink);
  font-size: 29px;
}

.care-label {
  margin: 0;
  color: var(--pink-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-result h4 {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.care-result ul,
.care-extra {
  grid-column: 1 / 3;
}

.care-result ul {
  margin: 23px 0 18px;
  padding: 21px 0 0 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.care-result li + li {
  margin-top: 7px;
}

.care-extra {
  margin: 0;
  padding: 12px 14px;
  background: #fff3d8;
  font-size: 12px;
  line-height: 1.45;
}

.story {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
  background: var(--leaf-dark);
  color: white;
}

.story-image {
  position: relative;
  min-height: 720px;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(16, 37, 12, 0.72));
}

.story-image > p {
  position: absolute;
  right: 50px;
  bottom: 42px;
  left: 50px;
  z-index: 1;
  max-width: 590px;
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--saffron);
  font-family: var(--display);
  font-size: clamp(23px, 2.5vw, 36px);
  font-style: italic;
  line-height: 1.25;
}

.story-copy {
  max-width: 650px;
  padding: 100px clamp(42px, 7vw, 110px);
}

.story-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(58px, 6vw, 86px);
}

.story-copy h2 em {
  color: #ff8eba;
}

.story-copy > p {
  color: rgba(255,255,255,0.75);
}

.story-copy .story-intro {
  color: white;
  font-size: 20px;
  line-height: 1.55;
}

.button-light {
  margin-top: 16px;
  border-color: white;
  color: white;
}

.button-light:hover {
  background: white;
  color: var(--leaf-dark);
}

.gallery-section {
  padding-bottom: 150px;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 58px;
}

.gallery-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.78fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery-a {
  grid-row: 1 / 3;
}

.gallery-b {
  grid-column: 2 / 4;
}

.gallery-message {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--saffron);
}

.gallery-message span {
  color: var(--pink);
  font-size: 30px;
}

.gallery-message p {
  margin: 7px 0 1px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.16;
}

.gallery-message strong {
  font-family: var(--hand);
  font-size: 15px;
}

.visit {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  background: var(--ink);
  color: white;
}

.visit-photo {
  min-height: 660px;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.visit-card {
  padding: 85px clamp(38px, 6vw, 88px) 70px;
}

.visit-card h2 {
  max-width: 580px;
  margin-bottom: 44px;
  font-size: clamp(54px, 5vw, 80px);
}

.visit-details {
  display: grid;
  gap: 22px;
  margin-bottom: 40px;
}

.visit-details > div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.detail-label {
  display: block;
  margin-bottom: 5px;
  color: #b8c5af;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-details address,
.visit-details p,
.visit-details a {
  margin: 0;
  color: white;
  font-size: 16px;
  font-style: normal;
}

.visit-details a:hover {
  color: #ff8eba;
}

.button-pink {
  background: var(--pink-dark);
  color: white;
}

.button-pink:hover {
  background: #981445;
}

.visit .facebook-link {
  color: white;
}

.visit .facebook-link:hover {
  color: #ff8eba;
}

.hours-note {
  margin: 30px 0 0;
  color: #8f9d87;
  font-size: 12px;
}

footer {
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 28px;
  background: var(--paper-deep);
}

.footer-brand {
  color: var(--leaf);
  font-family: var(--display);
  font-size: 50px;
  font-style: italic;
  letter-spacing: -0.05em;
}

footer > p {
  max-width: 460px;
  margin: 2px 0 55px;
  color: var(--muted);
}

.footer-meta {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-meta a {
  border-bottom: 1px solid currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-late {
  transition-delay: 120ms;
}

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

section[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 1040px) {
  .navigation {
    gap: 15px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
  }

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

  .hero-note {
    left: -30px;
  }

  .hero-stamp {
    right: -10px;
  }

  .story-copy,
  .visit-card {
    padding-right: 48px;
    padding-left: 48px;
  }

  .finder-shell {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  }

  .flower-finder {
    padding-right: 38px;
    padding-left: 38px;
  }

  .choice-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .wish-card {
    margin-right: 24px;
  }

  .studio-tools {
    gap: 25px;
  }
}

@media (max-width: 820px) {
  :root {
    --content: min(100% - 36px, 680px);
  }

  .topline {
    display: none;
  }

  .site-header {
    min-height: 74px;
    padding: 8px 18px;
  }

  .brand-crop {
    width: 148px;
    height: auto;
  }

  .brand img {
    width: 148px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 22px 18px 26px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(34, 49, 31, 0.1);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation > a {
    padding: 12px 8px;
  }

  .navigation > .nav-cta {
    margin-top: 8px;
    padding: 12px 15px;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 66px 0 100px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero-visual {
    width: calc(100% - 25px);
    margin-left: auto;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 540px;
  }

  .hero-note {
    left: -26px;
  }

  .section {
    padding: 100px 0;
  }

  .wish-studio {
    padding: 100px 18px 110px;
  }

  .studio-intro,
  .finder-shell,
  .studio-tools {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .studio-intro-grid,
  .finder-shell,
  .studio-tools {
    grid-template-columns: 1fr;
  }

  .studio-intro-grid {
    gap: 24px;
  }

  .finder-shell {
    box-shadow: 14px 16px 0 rgba(16, 37, 12, 0.34);
  }

  .wish-card {
    position: relative;
    top: auto;
    width: auto;
    min-height: 0;
    margin: 0 32px 32px;
  }

  .studio-tools {
    margin-top: 32px;
  }

  .service-grid {
    gap: 44px 20px;
  }

  .service-card-large img {
    height: 560px;
  }

  .story,
  .visit {
    grid-template-columns: 1fr;
  }

  .story-image,
  .story-image img,
  .visit-photo,
  .visit-photo img {
    min-height: 560px;
  }

  .story-copy,
  .visit-card {
    max-width: 680px;
    padding: 82px 36px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 240px 280px;
  }

  .gallery-a {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-b {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}

@media (max-width: 560px) {
  :root {
    --content: calc(100% - 30px);
  }

  .hero {
    padding-top: 52px;
  }

  .hero-leaf {
    top: 215px;
    bottom: auto;
    left: -190px;
    width: 300px;
    opacity: 0.26;
  }

  .hero h1 {
    font-size: clamp(58px, 20vw, 78px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-visual {
    width: calc(100% - 12px);
    padding-right: 12px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 450px;
  }

  .hero-image-wrap img {
    object-position: 58% center;
  }

  .hero-note {
    left: -13px;
    bottom: -13px;
    width: 192px;
    min-height: 125px;
    padding: 23px 20px 18px;
  }

  .hero-note span {
    font-size: 18px;
  }

  .hero-note strong {
    font-size: 21px;
  }

  .hero-stamp {
    top: 26px;
    right: -3px;
    width: 88px;
    height: 88px;
  }

  .hero-stamp strong {
    font-size: 21px;
  }

  .flower-line {
    text-align: left;
  }

  .section {
    padding: 86px 0;
  }

  .wish-studio {
    padding: 86px 15px 96px;
  }

  .studio-intro {
    margin-bottom: 42px;
  }

  .studio-intro h2 {
    font-size: 51px;
  }

  .studio-intro-grid > p {
    font-size: 16px;
  }

  .finder-shell {
    box-shadow: 8px 10px 0 rgba(16, 37, 12, 0.34);
  }

  .flower-finder,
  .pickup-tool,
  .care-tool {
    padding: 31px 20px;
  }

  .finder-heading {
    gap: 12px;
    margin-bottom: 31px;
  }

  .finder-heading h3 {
    font-size: 31px;
  }

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

  .choice-card {
    min-height: 86px;
  }

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

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

  .budget-control {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .wish-card {
    margin: 0 20px 20px;
    padding: 51px 22px 24px;
  }

  .wish-card h3 {
    font-size: 34px;
  }

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

  .pickup-form > .button {
    width: 100%;
  }

  .care-result {
    padding: 23px 18px;
    grid-template-columns: 48px 1fr;
  }

  .care-result-icon {
    width: 48px;
    height: 48px;
  }

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

  .section-heading h2,
  .gallery-heading h2 {
    font-size: 49px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .service-card-large {
    grid-row: auto;
  }

  .service-card img,
  .service-card-large img {
    height: 390px;
  }

  .service-card-copy {
    width: calc(100% - 20px);
    padding-right: 18px;
    padding-left: 21px;
  }

  .story-image,
  .story-image img,
  .visit-photo,
  .visit-photo img {
    min-height: 430px;
  }

  .story-image > p {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .story-copy,
  .visit-card {
    padding: 70px 22px;
  }

  .story-copy h2,
  .visit-card h2 {
    font-size: 54px;
  }

  .gallery-heading {
    display: block;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 330px 220px 280px 220px;
  }

  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-message {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-section {
    padding-bottom: 100px;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  footer {
    padding-top: 58px;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@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;
  }
}
