:root {
  --ink: #20342d;
  --forest: #27483b;
  --moss: #60796b;
  --blush: #f1c8c9;
  --pink: #d76f84;
  --petal: #faece9;
  --cream: #fffaf3;
  --sage: #dfe9de;
  --line: rgba(32, 52, 45, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

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

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

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

.announcement {
  min-height: 36px;
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--forest);
  color: white;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.announcement strong::before,
.announcement strong::after {
  content: "✦";
  color: var(--blush);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50% 45% 50% 35%;
  background: var(--pink);
  color: white;
  font-size: 20px;
  font-style: italic;
  transform: rotate(-8deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--pink);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--forest);
  border-radius: 2px 18px 2px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--forest);
  color: white;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(39, 72, 59, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #1f3d32;
  box-shadow: 0 14px 30px rgba(39, 72, 59, 0.22);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 2px 14px 2px 14px;
  box-shadow: none;
}

.hero {
  min-height: 720px;
  padding: 72px 5vw 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 5vw;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 20%, rgba(241, 200, 201, 0.34), transparent 25%),
    linear-gradient(120deg, var(--cream) 0 54%, #f6e8e5 54%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 {
  max-width: 700px;
  font-size: clamp(66px, 7vw, 106px);
}

h2 {
  font-size: clamp(47px, 5.2vw, 76px);
}

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

.hero-lede {
  max-width: 530px;
  margin: 30px 0;
  color: #52665e;
  font-size: 18px;
  line-height: 1.7;
}

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

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

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.trust-row {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--blush);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
}

.avatars span:first-child {
  margin-left: 0;
}

.stars {
  color: #d99a36;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.trust-row small {
  color: #6e7f78;
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: min(520px, 80%);
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.52);
  border-radius: 50% 50% 45% 45% / 42% 42% 58% 58%;
  box-shadow: 0 36px 90px rgba(76, 58, 54, 0.2);
}

.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.04);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(39, 72, 59, 0.28);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 92%;
  height: 68%;
}

.orbit-two {
  width: 73%;
  height: 89%;
  transform: rotate(28deg);
}

.price-sticker {
  position: absolute;
  z-index: 3;
  right: 3%;
  top: 10%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50% 45% 50% 38%;
  background: var(--forest);
  color: white;
  transform: rotate(8deg);
  box-shadow: 0 14px 34px rgba(32, 52, 45, 0.28);
}

.price-sticker small {
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-sticker strong {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.delivery-note {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 8%;
  min-width: 270px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(39, 72, 59, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(39, 72, 59, 0.14);
  backdrop-filter: blur(10px);
}

.delivery-note > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
}

.delivery-note strong,
.delivery-note small {
  display: block;
}

.delivery-note strong {
  font-family: Georgia, serif;
  font-size: 17px;
}

.delivery-note small {
  margin-top: 2px;
  color: #77867f;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.proof-strip > div {
  position: relative;
  min-height: 128px;
  padding: 26px 26px 24px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip span {
  position: absolute;
  left: 25px;
  top: 29px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
}

.proof-strip strong {
  font-family: Georgia, serif;
  font-size: 18px;
}

.proof-strip small {
  margin-top: 5px;
  color: #839089;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.section {
  padding: 110px 5vw;
}

.section-heading.split {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 8vw;
  align-items: end;
}

.section-heading.split > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: #6d7d75;
  font-size: 15px;
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 22px;
}

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: #eee5df;
}

.product-card:nth-child(2n) .product-image {
  border-radius: 0 70px 0 0;
}

.product-card:nth-child(3n + 1) .product-image {
  border-radius: 70px 0 0 0;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.quick-add {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 25px;
  font-weight: 300;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.quick-add:hover {
  transform: rotate(90deg);
  background: var(--pink);
}

.product-info {
  padding: 17px 2px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.product-info h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.product-info p {
  margin: 4px 0 0;
  color: #829087;
  font-size: 11px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 26px;
}

.product-price small {
  color: #86918c;
  font-family: Inter, sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outline-button {
  margin: 52px auto 0;
  display: flex;
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

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

.delivery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--forest);
  color: white;
}

.delivery-photo {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.delivery-photo > img {
  height: 100%;
  object-fit: cover;
}

.delivery-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to top, rgba(20, 43, 34, 0.35), transparent 50%);
}

.map-card {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  width: min(360px, calc(100% - 64px));
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 250, 243, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.map-pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 12px;
}

.map-card strong,
.map-card small {
  display: block;
}

.map-card strong {
  font-family: Georgia, serif;
  font-size: 18px;
}

.map-card small {
  margin-top: 3px;
  color: #79877f;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delivery-copy {
  padding: 95px clamp(50px, 7vw, 110px);
  align-self: center;
}

.eyebrow.light {
  color: var(--blush);
}

.delivery-copy h2 em {
  color: var(--blush);
}

.delivery-copy > p {
  max-width: 540px;
  margin: 28px 0 35px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

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

.steps li {
  padding: 17px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--blush);
  font-family: Georgia, serif;
  font-style: italic;
}

.steps strong,
.steps small {
  display: block;
}

.steps strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.steps small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--forest);
}

.button-light:hover {
  background: var(--petal);
}

.occasion-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.occasion-card {
  position: relative;
  min-height: 380px;
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--cream);
  overflow: hidden;
}

.occasion-card.featured {
  background: var(--petal);
}

.occasion-number {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.occasion-icon {
  position: absolute;
  right: 25px;
  top: 20px;
  color: rgba(215, 111, 132, 0.24);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.occasion-card h3 {
  position: relative;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.occasion-card p {
  position: relative;
  max-width: 380px;
  margin: 14px 0 25px;
  color: #77867f;
  font-size: 13px;
  line-height: 1.7;
}

.occasion-card button {
  position: relative;
  width: fit-content;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.review-section {
  padding: 110px 5vw;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 7vw;
  background: white;
}

.review-score {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.review-score > strong {
  font-family: Georgia, serif;
  font-size: 57px;
  font-weight: 400;
  line-height: 1;
}

.review-score div span,
.review-score div small {
  display: block;
}

.review-score div span {
  color: #d99a36;
  letter-spacing: 0.12em;
}

.review-score div small {
  margin-top: 4px;
  color: #8a958f;
  font-size: 9px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 34px 27px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

blockquote:nth-child(2) {
  background: var(--petal);
  transform: translateY(30px);
}

.quote-mark {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.8;
}

blockquote > p {
  flex: 1;
  margin: 18px 0 30px;
  color: #52665e;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
}

blockquote footer {
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--line);
}

blockquote footer > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  font-size: 9px;
  font-weight: 800;
}

blockquote footer strong,
blockquote footer small {
  display: block;
}

blockquote footer strong {
  font-family: Georgia, serif;
  font-size: 14px;
}

blockquote footer small {
  color: #8a958f;
  font-size: 8px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  background: var(--sage);
}

.faq-heading {
  align-self: start;
}

.faq-heading > p {
  margin: 30px 0 5px;
  color: #687a71;
  font-size: 13px;
}

.faq-heading > a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.faq-list details {
  border-top: 1px solid rgba(32, 52, 45, 0.18);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(32, 52, 45, 0.18);
}

.faq-list summary {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: Georgia, serif;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary b {
  color: var(--pink);
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 300;
  transition: transform 200ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -8px 40px 25px 0;
  color: #65766e;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  padding: 125px 5vw;
  overflow: hidden;
  text-align: center;
  background: var(--petal);
}

.eyebrow.centered {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(54px, 6.3vw, 92px);
}

.final-cta > p {
  margin: 23px 0 28px;
  color: #6e7e76;
  font-size: 15px;
}

.final-cta > .button {
  margin: 0 auto;
}

.final-cta > small {
  margin-top: 14px;
  display: block;
  color: #89958e;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.floating-flower {
  position: absolute;
  color: rgba(215, 111, 132, 0.22);
  font-family: Georgia, serif;
}

.flower-one {
  left: 8%;
  top: 18%;
  font-size: 150px;
  transform: rotate(-18deg);
}

.flower-two {
  right: 9%;
  bottom: 13%;
  font-size: 110px;
  transform: rotate(14deg);
}

.footer {
  padding: 75px 5vw 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  background: #1e382f;
  color: white;
}

.footer .brand-mark {
  background: var(--blush);
  color: var(--forest);
}

.footer-brand > p {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 9px;
  color: var(--blush);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 24px;
  display: none;
  place-items: center;
  background: rgba(22, 37, 31, 0.72);
  backdrop-filter: blur(8px);
}

.modal-backdrop.is-open,
.modal-backdrop:not(#order-modal) {
  display: grid;
}

.order-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  padding: 48px;
  overflow-y: auto;
  background: var(--cream);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 23px;
  cursor: pointer;
}

.order-modal h2 {
  font-size: 55px;
}

.order-modal > p,
.success-message > p {
  margin: 20px 0 26px;
  color: #6a7a72;
  font-size: 13px;
  line-height: 1.7;
}

.order-modal form {
  display: grid;
  gap: 15px;
}

.order-modal label {
  display: grid;
  gap: 7px;
  color: #6d7c74;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-modal input,
.order-modal select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(32, 52, 45, 0.2);
  border-radius: 0;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 13px;
  text-transform: none;
}

.order-modal input:focus,
.order-modal select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(215, 111, 132, 0.12);
}

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

.form-submit {
  width: 100%;
  margin-top: 7px;
}

.form-note {
  color: #8a958f;
  font-size: 9px;
  text-align: center;
}

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-errors {
  margin: 0 0 18px;
  padding: 12px 15px;
  border-left: 3px solid var(--pink);
  background: rgba(215, 111, 132, 0.1);
  color: #8b3f50;
  font-size: 12px;
}

.form-errors p {
  margin: 4px 0;
}

.success-message {
  padding: 25px 10px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-size: 28px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .review-section {
    grid-template-columns: 1fr;
  }

  .review-intro {
    max-width: 590px;
  }
}

@media (max-width: 900px) {
  .announcement span {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
  }

  .menu-button span {
    width: 23px;
    height: 1px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    padding: 28px 5vw 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(32, 52, 45, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav .button {
    margin-top: 6px;
  }

  .hero {
    padding-top: 55px;
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 3% 20%, rgba(241, 200, 201, 0.34), transparent 25%),
      var(--cream);
  }

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

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

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading.split,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .delivery-section {
    grid-template-columns: 1fr;
  }

  .delivery-copy {
    order: -1;
  }

  .occasion-section {
    grid-template-columns: 1fr;
  }

  .occasion-card {
    min-height: 310px;
  }

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

  blockquote:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 620px) {
  .announcement {
    min-height: 32px;
    font-size: 9px;
  }

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

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding: 45px 22px 60px;
  }

  h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

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

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

  .text-link {
    width: fit-content;
  }

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

  .hero-image-wrap {
    width: 84%;
  }

  .price-sticker {
    right: 0;
    width: 96px;
    height: 96px;
  }

  .price-sticker strong {
    font-size: 35px;
  }

  .delivery-note {
    left: 0;
    min-width: 245px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 22px;
  }

  .section-heading.split {
    gap: 27px;
  }

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

  .delivery-copy {
    padding: 82px 24px;
  }

  .delivery-photo {
    min-height: 520px;
  }

  .review-section {
    padding: 82px 22px;
  }

  .review-grid {
    gap: 12px;
  }

  .footer {
    padding: 64px 22px 28px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .order-modal {
    padding: 42px 22px 28px;
  }

  .order-modal h2 {
    font-size: 45px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
