:root {
  --canvas: #faece8;
  --surface: #fffaf7;
  --peach: #f9d5c7;
  --rose: #e4a4a5;
  --terracotta: #c07465;
  --wine: #6f3e3e;
  --chocolate: #3d1a0e;
  --muted: #765e56;
  --border: rgba(111, 62, 62, 0.16);
  --focus: #9d5148;
  --shadow: 0 18px 48px rgba(61, 26, 14, 0.12);
  --radius-pill: 999px;
  --container: 1200px;
  --header-offset: 128px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--chocolate);
  background: var(--canvas);
  font-family: "Nunito Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--chocolate);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-top: 3px solid var(--chocolate);
  background: var(--peach);
  box-shadow: 0 8px 25px rgba(61, 26, 14, 0.06);
}

.utility-bar {
  min-height: 34px;
  border-bottom: 1px solid var(--border);
  color: var(--wine);
  background: var(--peach);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.utility-bar__content {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p,
.utility-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.utility-bar svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.utility-contact {
  min-height: 30px;
  transition: color 160ms ease;
}

.utility-contact:hover {
  color: var(--chocolate);
}

.navigation-bar {
  position: relative;
  background: var(--peach);
}

.navigation-bar__content {
  min-height: 91px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  position: relative;
  width: 150px;
  height: 72px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  object-fit: cover;
  transform: translate(-50%, -49%);
  mix-blend-mode: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 38px);
  font-size: 0.82rem;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding-block: 34px;
  color: #62483f;
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--chocolate);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-button,
.menu-button,
.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 7px;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 800;
}

.cart-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding-inline: 5px;
  border-radius: var(--radius-pill);
  color: var(--surface);
  background: var(--rose);
  font-size: 0.68rem;
  line-height: 1;
}

.primary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid var(--chocolate);
  border-radius: var(--radius-pill);
  color: #fffaf7;
  background: var(--chocolate);
  box-shadow: 0 8px 18px rgba(61, 26, 14, 0.13);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.primary-button:hover {
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(61, 26, 14, 0.18);
  transform: translateY(-1px);
}

.primary-button:active {
  transform: translateY(0);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--canvas);
}

.menu-button span {
  width: 19px;
  height: 1.5px;
  display: block;
  border-radius: var(--radius-pill);
  background: var(--chocolate);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--border);
  background: var(--peach);
  box-shadow: 0 20px 28px rgba(61, 26, 14, 0.1);
}

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

.mobile-nav__content {
  display: grid;
  padding-block: 12px 20px;
}

.mobile-nav__content > a:not(.primary-button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav__content > a.is-active {
  color: var(--chocolate);
}

.mobile-nav__cta {
  width: 100%;
  margin-top: 16px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-offset));
  min-height: max(620px, calc(100svh - var(--header-offset)));
  display: grid;
  isolation: isolate;
  overflow: hidden;
  background: var(--canvas);
}

.hero__background,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__background {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  z-index: -2;
  background: radial-gradient(
    circle at center,
    rgba(255, 250, 247, 0.05) 0 26%,
    rgba(255, 250, 247, 0) 58%
  );
}

.hero__layout {
  display: grid;
  place-items: center;
  padding-block: clamp(50px, 7vw, 88px);
}

.hero__content {
  width: min(100%, 610px);
  padding: clamp(32px, 4.6vw, 58px) clamp(24px, 4.6vw, 58px);
  border: 1px solid rgba(111, 62, 62, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 247, 0.91);
  box-shadow: 0 24px 70px rgba(61, 26, 14, 0.12);
  text-align: center;
  backdrop-filter: blur(5px);
}

.hero__cupcake {
  width: 54px;
  height: 54px;
  margin: 0 auto 11px;
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero h1 {
  max-width: 560px;
  margin: 12px auto 15px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.45rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 470px;
  margin: 0 auto 25px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero__button {
  min-width: 168px;
}

.products-section {
  padding-block: clamp(78px, 9vw, 126px);
  background: var(--canvas);
}

.products-section__header {
  max-width: 720px;
  margin: 0 auto clamp(42px, 5vw, 66px);
  text-align: center;
}

.products-section__header h2 {
  margin: 12px 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.7rem, 5.5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.products-section__header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

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

.family-card {
  min-width: 0;
  background: rgba(249, 213, 199, 0.5);
}

.product-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(111, 62, 62, 0.18);
  color: rgba(111, 62, 62, 0.72);
  background: #f4c9bb;
}

.product-photo-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(111, 62, 62, 0.28);
}

.product-photo-frame--image::before {
  display: none;
}

.product-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product-photo-frame span {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-card > div:last-child {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 15px 14px 17px;
  text-align: center;
}

.family-card h3 {
  margin: 0 0 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.08;
}

.family-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.products-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-block: clamp(48px, 6vw, 72px) 28px;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.products-divider::before,
.products-divider::after {
  content: "";
  height: 1px;
  background: var(--border);
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 17px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-card > .product-photo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

.product-card__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 4px 5px;
}

.product-card h3 {
  margin: 0 0 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.16;
}

.product-card p {
  margin: 0;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-add-button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.product-add-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.product-add-button:hover {
  color: var(--surface);
  background: var(--wine);
  transform: translateY(-1px);
}

.order-callout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px) 24px;
  color: var(--surface);
  background: var(--wine);
  text-align: center;
}

.order-callout__cupcake {
  width: 47px;
  height: 47px;
  margin-bottom: 13px;
  fill: none;
  stroke: var(--peach);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.order-callout > span {
  color: var(--peach);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-callout h3 {
  margin: 9px 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.order-callout p {
  max-width: 250px;
  margin: 0 0 22px;
  color: rgba(255, 250, 247, 0.78);
  font-size: 0.79rem;
  line-height: 1.55;
}

.callout-button {
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid var(--surface);
  border-radius: var(--radius-pill);
  color: var(--chocolate);
  background: var(--surface);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.callout-button:hover {
  background: var(--peach);
  transform: translateY(-1px);
}

.catalog-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.products-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  margin-top: 32px;
}

.secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 23px;
  border: 1px solid var(--wine);
  border-radius: var(--radius-pill);
  color: var(--wine);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.secondary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.secondary-button:hover {
  color: var(--surface);
  background: var(--wine);
  transform: translateY(-1px);
}

.catalog-page {
  background: var(--canvas);
}

.catalog-hero {
  padding-block: clamp(68px, 8vw, 112px);
  border-bottom: 1px solid var(--border);
  background: var(--peach);
}

.catalog-hero__content {
  max-width: 820px;
  text-align: center;
}

.catalog-hero h1 {
  margin: 13px 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 6.6vw, 6.1rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.catalog-hero p {
  max-width: 620px;
  margin: 0 auto 17px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-hero .text-link {
  margin-top: 8px;
}

.catalog-content {
  padding-block: clamp(72px, 9vw, 128px);
}

.catalog-groups {
  display: grid;
  gap: clamp(72px, 9vw, 118px);
}

.catalog-group__header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.catalog-group__header > span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.catalog-group__header h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

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

.catalog-item {
  min-width: 0;
}

.catalog-item__body {
  position: relative;
  min-height: 178px;
  padding: 16px 50px 10px 3px;
}

.catalog-item__category {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-item h3 {
  margin: 0 0 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  line-height: 1.1;
}

.catalog-item p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.catalog-item strong {
  display: block;
  color: var(--wine);
  font-size: 0.78rem;
}

.catalog-item .product-add-button {
  position: absolute;
  top: 16px;
  right: 0;
}

.story-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 6vw, 82px);
  background:
    linear-gradient(rgba(249, 213, 199, 0.9), rgba(249, 213, 199, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(111, 62, 62, 0.035) 38px 39px);
}

.story-section::before,
.story-section::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(111, 62, 62, 0.11);
  border-radius: 48% 52% 43% 57% / 52% 44% 56% 48%;
  pointer-events: none;
}

.story-section::before {
  top: -74px;
  left: -58px;
  transform: rotate(18deg);
}

.story-section::after {
  right: -68px;
  bottom: -82px;
  transform: rotate(-25deg);
}

.story-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.story-copy {
  max-width: 570px;
}

.story-copy h2 {
  max-width: 560px;
  margin: 11px 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.story-copy p {
  max-width: 535px;
  margin: 0 0 14px;
  color: #60473f;
  font-size: 0.96rem;
  line-height: 1.62;
}

.story-copy .story-copy__lead {
  color: var(--chocolate);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 600;
  line-height: 1.42;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    gap 160ms ease;
}

.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.text-link:hover {
  gap: 13px;
  color: var(--chocolate);
}

.story-media {
  width: min(100%, 360px);
  margin: 0;
  justify-self: end;
}

.story-video-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 8px solid rgba(255, 250, 247, 0.72);
  border-radius: 16px;
  background: var(--rose);
  box-shadow: 0 25px 60px rgba(61, 26, 14, 0.15);
}

.story-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-media figcaption {
  margin-top: 13px;
  color: rgba(61, 26, 14, 0.72);
  font-size: 0.78rem;
  text-align: center;
}

.order-process {
  padding-block: clamp(78px, 9vw, 126px);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2 {
  margin: 12px 0 15px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.section-heading p {
  max-width: 570px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--border);
}

.order-step {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
}

.order-step + .order-step {
  border-left: 1px solid var(--border);
}

.order-step__number {
  display: block;
  margin-bottom: 25px;
  color: var(--terracotta);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.order-step > svg {
  width: 39px;
  height: 39px;
  margin-bottom: 25px;
  fill: none;
  stroke: var(--wine);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.order-step h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.08;
}

.order-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.order-process__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.order-process__action span {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 124px);
  background: var(--peach);
}

.about-section::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -55px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(111, 62, 62, 0.12);
  border-radius: 49% 51% 43% 57% / 55% 45% 55% 45%;
  transform: rotate(18deg);
}

.about-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.67fr);
  align-items: center;
  gap: clamp(52px, 8vw, 105px);
}

.about-copy {
  max-width: 640px;
}

.about-copy h2 {
  max-width: 600px;
}

.about-copy p {
  max-width: 590px;
  margin: 0 0 15px;
  color: #60473f;
  line-height: 1.66;
}

.about-copy .about-copy__lead {
  color: var(--chocolate);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  font-weight: 600;
  line-height: 1.42;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(111, 62, 62, 0.2);
  border-radius: var(--radius-pill);
  color: var(--wine);
  background: rgba(255, 250, 247, 0.4);
  font-size: 0.71rem;
  font-weight: 800;
}

.contact-card {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 16px;
  color: var(--surface);
  background: var(--wine);
  box-shadow: 0 25px 60px rgba(61, 26, 14, 0.18);
}

.contact-card .eyebrow {
  color: var(--peach);
}

.contact-card h3 {
  margin: 11px 0 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-card p {
  margin: 0 0 24px;
  color: rgba(255, 250, 247, 0.78);
  font-size: 0.88rem;
  line-height: 1.62;
}

.contact-card__whatsapp {
  width: 100%;
  color: var(--chocolate);
  background: var(--surface);
  box-shadow: none;
}

.contact-card__whatsapp:hover {
  background: var(--peach);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.social-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 247, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.social-links a:hover {
  color: var(--wine);
  background: var(--surface);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-footer {
  color: rgba(255, 250, 247, 0.82);
  background: var(--chocolate);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.55fr) minmax(250px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  padding-block: clamp(58px, 7vw, 88px);
}

.footer-brand > a {
  width: 118px;
  height: 118px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 250, 247, 0.7);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.5;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 11px;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 7px;
  color: var(--peach);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--peach);
}

.footer-contact p {
  max-width: 300px;
  margin: 5px 0 0;
  color: rgba(255, 250, 247, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 250, 247, 0.13);
  color: rgba(255, 250, 247, 0.56);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.gan-credit span {
  color: rgba(255, 250, 247, 0.82);
  font-weight: 800;
  letter-spacing: 0.035em;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(61, 26, 14, 0.38);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(420px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(61, 26, 14, 0.2);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform 220ms ease,
    visibility 220ms;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__body {
  min-height: 0;
  flex: 1;
  display: flex;
  overflow-y: auto;
}

.cart-drawer h2 {
  margin: 2px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--canvas);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-drawer__empty[hidden] {
  display: none;
}

.cart-items {
  width: 100%;
  display: grid;
  align-content: start;
  gap: 2px;
  padding-block: 10px;
}

.cart-items[hidden],
.cart-footer[hidden] {
  display: none;
}

.cart-line {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 12px;
  padding-block: 13px;
  border-bottom: 1px solid var(--border);
}

.cart-line__thumb {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--wine);
  background: var(--peach);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
}

.cart-line h3 {
  margin: 0 0 3px;
  font-size: 0.85rem;
  line-height: 1.25;
}

.cart-line__price {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 800;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 30px 32px 30px;
  align-items: center;
  margin-top: 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--wine);
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
}

.cart-line__remove {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cart-line__remove svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cart-footer {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cart-footer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.cart-footer__total span {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-footer__total strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.cart-footer__checkout {
  width: 100%;
}

.cart-footer__checkout:disabled {
  border-color: #9f8d85;
  background: #9f8d85;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.75;
}

.cart-footer small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: center;
}

.empty-cart-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--peach);
}

.empty-cart-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.cart-drawer__empty h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
}

.cart-drawer__empty p {
  max-width: 270px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

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

@media (max-width: 1060px) {
  .navigation-bar__content {
    grid-template-columns: 148px 1fr auto;
    gap: 20px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .cart-button__label {
    display: none;
  }

  .story-section__grid {
    gap: 44px;
  }

  .featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
  }

  .order-callout {
    min-height: 340px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-offset: 112px;
  }

  .utility-bar__content {
    justify-content: center;
  }

  .utility-contact {
    display: none;
  }

  .navigation-bar__content {
    min-height: 75px;
    grid-template-columns: 132px 1fr;
  }

  .brand {
    width: 126px;
    height: 62px;
  }

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

  .desktop-nav,
  .header-actions > .primary-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: clamp(620px, calc(100svh - var(--header-offset)), 820px);
  }

  .hero__background {
    object-position: center;
  }

  .hero__content {
    width: min(100%, 560px);
  }

  .story-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-section {
    padding-block: 48px;
  }

  .story-copy {
    max-width: 640px;
  }

  .story-media {
    width: min(100%, 320px);
    justify-self: center;
  }

  .product-families {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .family-card > div:last-child {
    min-height: 86px;
  }

  .catalog-hero {
    padding-block: 64px;
  }

  .catalog-content {
    padding-block: 70px;
  }

  .catalog-groups {
    gap: 70px;
  }

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

  .about-section__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-copy {
    max-width: 680px;
  }

  .contact-card {
    max-width: 560px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .featured-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    min-height: 128px;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    border-bottom: 1px solid var(--border);
  }

  .product-card > .product-photo-frame {
    height: 128px;
    width: 128px;
    aspect-ratio: 1 / 1;
  }

  .product-card__body {
    align-items: center;
    padding: 12px 0 12px 15px;
  }

  .order-callout {
    min-height: 330px;
    margin-top: 8px;
  }

  .catalog-hero {
    padding-block: 52px;
  }

  .catalog-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .catalog-content {
    padding-block: 54px;
  }

  .catalog-groups {
    gap: 56px;
  }

  .catalog-group__header {
    margin-bottom: 18px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalog-item {
    min-height: 128px;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    border-bottom: 1px solid var(--border);
  }

  .catalog-item > .product-photo-frame {
    width: 128px;
    height: 128px;
  }

  .catalog-item__body {
    min-height: 128px;
    padding: 14px 48px 14px 15px;
  }

  .catalog-item .product-add-button {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .catalog-item .product-add-button:hover {
    transform: translateY(calc(-50% - 1px));
  }

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

  .order-step + .order-step {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .order-process__action {
    flex-direction: column;
    text-align: center;
  }

  .about-section {
    padding-block: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 54px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding-block: 20px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .utility-bar {
    font-size: 0.69rem;
  }

  .navigation-bar__content {
    grid-template-columns: 114px 1fr;
    gap: 10px;
  }

  .brand {
    width: 110px;
  }

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

  .header-actions {
    gap: 3px;
  }

  .cart-button {
    padding-inline: 5px;
  }

  .hero__layout {
    padding-block: 42px;
  }

  .hero__content {
    padding: 31px 21px 34px;
    border-radius: 14px;
    backdrop-filter: blur(3px);
  }

  .hero__cupcake {
    width: 46px;
    height: 46px;
  }

  .hero h1 {
    font-size: clamp(2.22rem, 11.2vw, 3rem);
  }

  .hero p {
    font-size: 0.9rem;
  }

  .story-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .story-media {
    width: min(100%, 290px);
  }

  .products-section__header h2 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .product-families {
    gap: 10px;
  }

  .family-card > div:last-child {
    min-height: 100px;
    padding-inline: 9px;
  }

  .family-card h3 {
    font-size: 1rem;
  }

  .products-divider {
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-card > .product-photo-frame {
    height: 112px;
    width: 112px;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .catalog-item {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .catalog-item > .product-photo-frame {
    width: 108px;
    height: 108px;
    align-self: center;
  }

  .catalog-item__body {
    min-height: 122px;
    padding-left: 13px;
  }

  .catalog-item h3 {
    font-size: 1.05rem;
  }

  .story-video-frame {
    border-width: 7px;
    border-radius: 14px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .contact-card {
    padding: 28px 22px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    padding:
      max(18px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .navigation-bar__content {
    grid-template-columns: 104px 1fr;
  }

  .brand {
    width: 102px;
  }

  .product-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .product-card > .product-photo-frame {
    width: 100px;
    height: 100px;
  }

  .catalog-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .catalog-item > .product-photo-frame {
    width: 96px;
    height: 96px;
  }

  .catalog-item__body {
    padding-right: 44px;
    padding-left: 11px;
  }

  .cart-line {
    grid-template-columns: 50px minmax(0, 1fr) 32px;
    gap: 9px;
  }

  .cart-line__thumb {
    width: 50px;
    height: 50px;
  }
}

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

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