@font-face {
  font-family: "Allura";
  src: url("assets/fonts/allura-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Italiana";
  src: url("assets/fonts/italiana-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --pink-pale: #fbf3f2;
  --pink: #f3dedd;
  --pink-deep: #dfb9b9;
  --rose: #96414b;
  --rose-dark: #61272e;
  --rose-ink: #7c343e;
  --brown: #50392f;
  --gold: #8e6a38;
  --paper: #fffaf7;
  --white: #fffefd;
  --line: rgba(80, 57, 47, 0.24);
  --display: "Italiana", "Iowan Old Style", "Baskerville", Georgia, serif;
  --script: "Allura", "Segoe Script", cursive;
  --body: "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --max: 1220px;
  --gutter: clamp(1.25rem, 4.2vw, 4.4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--brown);
  background: var(--pink-pale);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--rose-dark);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.top-note {
  min-height: 44px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--white);
  background: var(--rose-dark);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.top-note p {
  margin: 0;
}

.top-note p::after {
  margin-left: 0.85rem;
  color: var(--pink-deep);
  content: "♥";
}

.top-note a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 0.22rem;
}

.site-header {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  min-height: 104px;
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--rose-ink);
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 1px solid rgba(142, 106, 56, 0.3);
  border-radius: 50%;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong,
.footer-brand strong {
  font-family: var(--script);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 0.92;
}

.brand-type small,
.footer-brand small {
  margin-top: 0.45rem;
  padding-left: 0.12rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.7rem);
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-decoration: none;
}

nav a:not(.nav-order) {
  position: relative;
}

nav a:not(.nav-order)::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-order {
  min-height: 46px;
  padding: 0.72rem 1.05rem 0.72rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  background: var(--rose);
  border: 1px solid var(--rose);
}

.nav-order:hover {
  background: var(--rose-dark);
}

.hero {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  min-height: 710px;
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--gutter) clamp(6rem, 9vw, 8.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--rose-ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.4vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

h1 em {
  position: relative;
  color: var(--rose);
  font-family: var(--script);
  font-size: 1.08em;
  font-style: normal;
  letter-spacing: 0;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 3%;
  bottom: 0.12em;
  left: 0;
  height: 7px;
  border-bottom: 2px solid rgba(142, 106, 56, 0.55);
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.hero-intro {
  max-width: 610px;
  margin: 2.1rem 0 0;
  color: #67524a;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.button {
  min-height: 54px;
  padding: 0.88rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  border: 1px solid var(--rose);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.button-filled {
  color: var(--white);
  background: var(--rose);
}

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

.button-plain {
  color: var(--rose-dark);
  border-color: transparent;
  border-bottom-color: var(--rose);
}

.button-plain:hover {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.hero-list {
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.6rem;
  color: #715b52;
  list-style: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-list li::before {
  margin-right: 0.55rem;
  color: var(--rose);
  content: "♥";
  font-size: 0.55rem;
}

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

.seal-wrap {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
}

.seal-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid rgba(255, 254, 253, 0.86);
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(97, 39, 46, 0.13);
  transform: rotate(-1.6deg);
}

.tiny-heart {
  position: absolute;
  z-index: 3;
  color: var(--rose);
  font-size: 1.1rem;
}

.tiny-heart-one {
  top: 7%;
  right: -3%;
  transform: rotate(11deg);
}

.tiny-heart-two {
  bottom: 12%;
  left: -8%;
  font-size: 0.75rem;
  transform: rotate(-12deg);
}

.scallop {
  height: 24px;
  background:
    radial-gradient(circle at 12px -2px, var(--pink-pale) 13px, transparent 14px) 0 0 / 24px 24px repeat-x,
    var(--rose-dark);
}

.brand-story {
  min-height: 640px;
  padding: clamp(5rem, 10vw, 9rem) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8.5rem);
  color: var(--paper);
  background: var(--rose-dark);
}

.brand-story-mark {
  display: grid;
  place-items: center;
}

.brand-story-mark svg {
  width: min(78%, 340px);
  fill: none;
  stroke: var(--pink-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.brand-story-mark .filled {
  fill: var(--rose);
  stroke: var(--pink-deep);
}

.brand-story-mark span {
  margin-top: -0.3rem;
  color: var(--pink-deep);
  font-family: var(--script);
  font-size: clamp(2rem, 4vw, 3.4rem);
  transform: rotate(-5deg);
}

.brand-story-copy {
  max-width: 790px;
}

.brand-story h2,
.section-intro h2,
.mini-banner h2,
.order-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.brand-story h2 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(3.5rem, 6.3vw, 6.4rem);
}

.brand-story h2 span {
  display: block;
  color: var(--pink-deep);
  font-family: var(--script);
  font-size: 1.06em;
  letter-spacing: 0;
}

.brand-story-copy > p:not(.eyebrow, .script-line) {
  max-width: 650px;
  margin: 2rem 0 0;
  color: #eadbd7;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  line-height: 1.6;
}

.script-line {
  margin: 1.4rem 0 0;
  color: var(--pink-deep);
  font-family: var(--script);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1;
}

.cupcakes {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(142, 106, 56, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 106, 56, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

.section-intro,
.occasion-index,
.mini-banner {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.62fr 1.15fr 0.73fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.section-intro .eyebrow {
  padding-top: 0.8rem;
}

.section-intro h2 {
  color: var(--rose-dark);
  font-size: clamp(3.3rem, 5.4vw, 5.5rem);
}

.section-intro > p:last-child {
  margin: 0;
  padding-top: 0.85rem;
  color: #6c5850;
  font-size: 0.93rem;
}

.occasion-index {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.occasion-index article {
  min-height: 190px;
  padding: 2.1rem 2.3rem 2.5rem 0;
  display: grid;
  grid-template-columns: 3.7rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  border-top: 1px solid var(--line);
}

.occasion-index article:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
}

.occasion-index article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.occasion-number {
  grid-row: 1 / span 2;
  padding-top: 0.3rem;
  color: var(--rose);
  font-family: var(--display);
  font-size: 0.84rem;
}

.occasion-index h3 {
  margin: 0;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.occasion-index p {
  max-width: 380px;
  margin: 0.7rem 0 0;
  color: #6d5a52;
  font-size: 0.86rem;
}

.mini-banner {
  min-height: 330px;
  margin-top: clamp(4.5rem, 8vw, 8rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 0.65fr 1.3fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  color: var(--rose-dark);
  border: 1px solid rgba(142, 106, 56, 0.25);
  background: var(--pink);
  box-shadow: 12px 14px 0 var(--pink-pale);
}

.mini-illustration svg {
  width: min(100%, 290px);
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-illustration .heart {
  fill: var(--rose);
}

.mini-illustration .spark {
  stroke: var(--gold);
  stroke-width: 1.5;
}

.mini-banner .script-line {
  color: var(--rose);
}

.mini-banner h2 {
  max-width: 620px;
  margin-top: 0.35rem;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.circle-link {
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--rose);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.circle-link:hover {
  background: var(--rose-dark);
  transform: rotate(-4deg);
}

.circle-link i {
  margin-top: -1.4rem;
  font-size: 1.2rem;
  font-style: normal;
}

.order {
  padding: clamp(5rem, 10vw, 10rem) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  gap: clamp(4rem, 9vw, 9rem);
  color: var(--white);
  background: var(--rose-ink);
}

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

.order-copy h2 {
  color: var(--white);
  font-size: clamp(3.8rem, 6.4vw, 6.5rem);
}

.order-copy h2 em {
  color: var(--pink-deep);
  font-family: var(--script);
  font-size: 1.12em;
  font-style: normal;
  letter-spacing: 0;
}

.order-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.8rem 0 0;
  color: #f0dfdc;
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
}

.order-steps {
  margin: 3.3rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.order-steps li {
  min-height: 96px;
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: start;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.order-steps > li > span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  border-radius: 50%;
  background: var(--pink-deep);
  font-size: 0.7rem;
  font-weight: 600;
}

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

.order-steps strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
}

.order-steps small {
  margin-top: 0.25rem;
  color: #e6d2cf;
  font-size: 0.78rem;
}

.order-note {
  position: relative;
  max-width: 460px;
  margin: 1.5rem 0;
  padding: clamp(2.3rem, 4vw, 3.6rem);
  align-self: center;
  color: var(--brown);
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(150, 65, 75, 0.09) 34px 35px),
    var(--paper);
  box-shadow: 15px 17px 0 rgba(97, 39, 46, 0.38);
  transform: rotate(1.3deg);
}

.paper-clip {
  position: absolute;
  top: -1.1rem;
  right: 2.2rem;
  width: 20px;
  height: 55px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  transform: rotate(8deg);
}

.paper-clip::after {
  position: absolute;
  inset: 4px 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 9px;
  content: "";
}

.note-kicker {
  margin: 0;
  color: var(--rose);
  font-family: var(--script);
  font-size: 2rem;
  line-height: 1;
}

.order-note h3 {
  margin: 0.25rem 0 1.8rem;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.order-note dl {
  margin: 0;
}

.order-note dl div {
  padding: 0.85rem 0;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  border-bottom: 1px solid rgba(80, 57, 47, 0.28);
}

.order-note dt {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-note dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.note-signoff {
  margin: 1.5rem 0 1.1rem;
  color: #6d5a52;
  font-size: 0.77rem;
}

.order-note .button {
  width: 100%;
}

.note-phone {
  min-height: 44px;
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: 1rem;
  text-align: center;
  text-underline-offset: 0.3rem;
}

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

.footer-main,
.footer-base {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-main {
  min-height: 250px;
  padding-block: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--rose-ink);
  text-decoration: none;
}

.footer-brand img {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(142, 106, 56, 0.36);
  border-radius: 50%;
}

.footer-brand > span {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 2rem;
}

.footer-main > p {
  margin: 0;
  color: #674f46;
  font-family: var(--display);
  font-size: 1.18rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.footer-contact a,
.footer-base {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-underline-offset: 0.25rem;
}

.footer-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-base {
  min-height: 68px;
  padding-block: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(80, 57, 47, 0.2);
}

.footer-base p {
  margin: 0;
}

.footer-base > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-base p span {
  padding-inline: 0.4rem;
  color: var(--rose);
}

.mobile-order-bar {
  display: none;
}

:focus-visible {
  outline: 3px solid #d68750;
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  }

  h1 {
    font-size: clamp(4.1rem, 8vw, 6rem);
  }

  .order {
    grid-template-columns: 1fr 390px;
    gap: 4rem;
  }

  .section-intro {
    grid-template-columns: 0.55fr 1.25fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 88px;
  }

  nav > a:not(.nav-order) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 4rem;
  }

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

  .hero-identity {
    width: min(82vw, 560px);
    min-height: auto;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-story {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 3rem;
  }

  .mini-banner {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .mini-banner .circle-link {
    grid-column: 2;
    width: 120px;
  }

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

  .order-note {
    width: min(100%, 580px);
    max-width: none;
    justify-self: center;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .top-note {
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .top-note p::after {
    display: none;
  }

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

  .brand img {
    width: 51px;
    height: 51px;
  }

  .brand-type strong {
    font-size: 1.5rem;
  }

  .nav-order {
    display: none;
  }

  .hero {
    padding-top: 3.4rem;
    padding-bottom: 5.8rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.64rem;
  }

  .eyebrow > span {
    width: 1.75rem;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.1rem);
    line-height: 0.89;
  }

  .hero-intro {
    margin-top: 1.7rem;
    font-size: 1.12rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .button-plain {
    border-color: var(--rose);
  }

  .hero-list {
    gap: 0.5rem 1rem;
  }

  .hero-identity {
    width: 84vw;
  }

  .tiny-heart-two {
    left: -2%;
  }

  .brand-story {
    min-height: auto;
    padding-block: 5.8rem;
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .brand-story-mark {
    order: 2;
  }

  .brand-story-mark svg {
    width: min(65%, 280px);
  }

  .brand-story h2 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .brand-story-copy > p:not(.eyebrow, .script-line) {
    font-size: 1.12rem;
  }

  .cupcakes {
    padding-block: 5.8rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .section-intro > p:last-child {
    grid-column: auto;
    margin-top: 0.8rem;
  }

  .section-intro h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .occasion-index {
    grid-template-columns: 1fr;
    margin-top: 3.8rem;
  }

  .occasion-index article,
  .occasion-index article:nth-child(even) {
    min-height: 150px;
    padding: 1.65rem 0;
    grid-template-columns: 2.7rem 1fr;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
  }

  .occasion-index article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .occasion-index h3 {
    font-size: 2.15rem;
  }

  .mini-banner {
    margin-top: 4.5rem;
    padding: 2.1rem 1.25rem 2.4rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    box-shadow: 7px 8px 0 var(--pink-pale);
  }

  .mini-illustration {
    max-width: 230px;
  }

  .mini-banner .circle-link {
    grid-column: auto;
    width: 116px;
  }

  .order {
    padding-block: 5.8rem;
    gap: 3.5rem;
  }

  .order-copy h2 {
    font-size: clamp(3.5rem, 15vw, 4.7rem);
  }

  .order-note {
    margin: 0;
    padding: 2.3rem 1.5rem;
    box-shadow: 9px 10px 0 rgba(97, 39, 46, 0.38);
    transform: rotate(0.5deg);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 0.46fr;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--rose-dark);
    box-shadow: 0 -8px 25px rgba(52, 20, 24, 0.2);
  }

  .mobile-order-bar a {
    min-width: 0;
    display: grid;
    place-items: center;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-decoration: none;
  }

  .mobile-order-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
}

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

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