@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fraunces-700.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/nunito-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/nunito-sans-600.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("../fonts/nunito-sans-700.woff2") format("woff2");
}

:root {
  --cream: #fff3f2;
  --cream-deep: #fce7e8;
  --white: #ffffff;
  --strawberry: #f24f70;
  --raspberry: #bd234e;
  --raspberry-dark: #97183e;
  --chocolate: #5a342e;
  --butter: #f5d46c;
  --pink-soft: #f8cdd6;
  --shadow: 0 18px 45px rgba(120, 54, 58, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(180deg, #fff8f4 0%, var(--cream) 100%);
  color: var(--chocolate);
  font-family: "Nunito Sans", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 42px);
  min-height: 66px;
  padding: 14px clamp(24px, 4vw, 68px) 14px clamp(120px, 15vw, 172px);
  border-radius: 0 0 28px 28px;
  background: rgba(255, 247, 245, 0.96);
  box-shadow: 0 10px 28px rgba(99, 51, 48, 0.08);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 20px;
  background:
    radial-gradient(circle at 10px 0, transparent 10px, #fff7f5 10.5px)
      0 0 / 20px 20px repeat-x;
  content: "";
}

.logo-link {
  position: absolute;
  top: 100%;
  left: clamp(20px, 4vw, 56px);
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 50%;
  transform: translateY(-46%);
}

.logo-badge {
  width: clamp(72px, 8vw, 108px);
  height: clamp(72px, 8vw, 108px);
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(120, 54, 58, 0.28));
  transition: transform 200ms ease;
}

.logo-link:hover .logo-badge {
  transform: scale(1.06) rotate(-4deg);
}

.logo-link:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 1px;
  left: 50%;
  height: 2px;
  border-radius: 20px;
  background: var(--strawberry);
  content: "";
  transition:
    right 180ms ease,
    left 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav .active {
  color: var(--strawberry);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav .active::after {
  right: 8%;
  left: 8%;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 13px;
  background: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.desktop-nav a:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, var(--strawberry), #e43d61);
  box-shadow: 0 10px 22px rgba(210, 52, 91, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--raspberry);
  box-shadow: 0 14px 28px rgba(174, 31, 72, 0.25);
}

.button-outline {
  border-color: var(--strawberry);
  background: rgba(255, 255, 255, 0.38);
  color: var(--raspberry);
}

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

.header-cta {
  min-height: 48px;
  padding-inline: 26px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(800px, calc(100vh - 90px));
  max-width: 1500px;
  grid-template-columns: minmax(240px, 0.9fr) minmax(440px, 1.42fr) minmax(270px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) clamp(24px, 4vw, 68px) 82px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--strawberry);
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--chocolate);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.65rem, 5.5vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

h1 em {
  color: var(--raspberry);
  font-style: normal;
}

.wavy-line {
  width: min(410px, 84%);
  height: 16px;
  margin: 18px auto 12px;
  background: url("data:image/svg+xml,%3Csvg width='120' height='14' viewBox='0 0 120 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8 C 11 2, 21 14, 31 8 S 51 2, 61 8 S 81 14, 91 8 S 111 2, 121 8' fill='none' stroke='%23f24f70' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 120px 14px repeat-x;
}

.hero-description {
  max-width: 570px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.proof-list {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  font-size: 0.91rem;
  font-weight: 700;
  list-style: none;
}

.proof-list li {
  position: relative;
}

.proof-list li + li::before {
  position: absolute;
  left: -14px;
  color: var(--strawberry);
  content: "•";
}

.proof-list li:first-child::before,
.proof-list li:last-child::after {
  color: var(--butter);
  content: "♥";
  font-size: 0.76em;
}

.proof-list li:first-child::before {
  margin-right: 8px;
}

.proof-list li:last-child::after {
  margin-left: 8px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-photo:hover img {
  transform: scale(1.035);
}

.hero-photo-cart {
  height: clamp(510px, 62vw, 650px);
  align-self: center;
  border-radius: 90px 90px 90px 34px;
  transform: rotate(-2deg);
}

.hero-photo-cart img {
  object-position: center;
}

.hero-side-stack {
  display: grid;
  gap: 20px;
  transform: rotate(1.5deg);
}

.hero-photo-fruit {
  height: clamp(230px, 24vw, 310px);
  border-radius: 70px 32px 70px 52px;
}

.hero-photo-spread {
  height: clamp(260px, 28vw, 345px);
  border-radius: 36px 70px 46px 70px;
}

.sticker {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.82);
  background: var(--butter);
  box-shadow: 0 8px 22px rgba(96, 47, 44, 0.16);
  color: var(--strawberry);
  font-family: sans-serif;
  font-size: 2rem;
}

.sticker-heart {
  right: -4px;
  bottom: 22px;
  border-radius: 46% 54% 51% 49% / 42% 46% 54% 58%;
}

.sticker-star {
  top: -7px;
  right: -6px;
  border-radius: 50%;
  transform: rotate(10deg);
}

.hero-doodle {
  position: absolute;
  z-index: 1;
  color: var(--strawberry);
  font-family: sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  opacity: 0.9;
  transform: rotate(-18deg);
}

.hero-doodle-one {
  top: 60px;
  left: 28%;
}

.hero-doodle-two {
  right: 29%;
  bottom: 56px;
  transform: rotate(14deg);
}

.section-tease {
  position: relative;
  min-height: 180px;
  padding: 60px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 50%, transparent 50%) 0 0 /
      42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.35) 50%, transparent 50%) 0 0 / 42px
      42px,
    var(--pink-soft);
  text-align: center;
}

.section-tease::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 24px;
  background:
    radial-gradient(circle at 12px 24px, transparent 12px, var(--cream) 12.5px)
      0 -24px / 24px 24px repeat-x;
  content: "";
}

.section-tease p {
  margin: 0;
  color: var(--raspberry);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
}

.mobile-menu {
  display: none;
}

.section-pad {
  padding: clamp(88px, 9vw, 138px) clamp(24px, 6vw, 96px);
}

.section-pad,
.event-strip,
.contact-section {
  scroll-margin-top: 150px;
}

@media (max-width: 760px) {
  .section-pad,
  .event-strip,
  .contact-section {
    scroll-margin-top: 122px;
  }
}

.section-heading {
  display: flex;
  max-width: 1320px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin: 0 auto 56px;
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
}

h2 {
  margin: 0;
  color: var(--chocolate);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.25rem, 5.8vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

h2 em {
  color: var(--raspberry);
  font-style: normal;
}

h3 {
  margin: 0;
  color: var(--chocolate);
}

.menu-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 50%, transparent 50%) 0 0 /
      46px 46px,
    linear-gradient(rgba(255, 255, 255, 0.25) 50%, transparent 50%) 0 0 / 46px
      46px,
    #f8d9df;
}

.menu-section::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 28px;
  background:
    radial-gradient(circle at 14px 28px, transparent 14px, var(--cream) 14.5px)
      0 -28px / 28px 28px repeat-x;
  content: "";
}

.menu-grid {
  display: grid;
  max-width: 1320px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  display: grid;
  min-height: 152px;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(151, 24, 62, 0.08);
  border-radius: 26px;
  background: rgba(255, 250, 248, 0.9);
  box-shadow: 0 12px 32px rgba(109, 50, 55, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.menu-card:hover {
  z-index: 2;
  box-shadow: 0 20px 42px rgba(109, 50, 55, 0.13);
  transform: translateY(-5px) rotate(-0.4deg);
}

.menu-card:nth-child(even):hover {
  transform: translateY(-5px) rotate(0.4deg);
}

.menu-card::after {
  position: absolute;
  top: -54px;
  right: -48px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--pink-soft);
  content: "";
  opacity: 0.45;
}

.menu-card.corn::after {
  background: #f5c85f;
}

.menu-card.yellow::after {
  background: var(--butter);
}

.menu-number {
  color: var(--raspberry);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.menu-card h3 {
  margin-bottom: 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.03em;
}

.menu-card p {
  max-width: 480px;
  margin: 0;
  color: #74534d;
  font-size: 0.94rem;
  line-height: 1.5;
}

.menu-heart {
  position: relative;
  z-index: 1;
  color: var(--strawberry);
  font-family: sans-serif;
  font-size: 2rem;
}

.menu-note {
  display: flex;
  max-width: 900px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px auto 0;
  padding: 16px 22px;
  border: 1px dashed rgba(151, 24, 62, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
}

.menu-note > span {
  color: var(--strawberry);
}

.menu-note a {
  color: var(--raspberry);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.experience-section {
  display: grid;
  max-width: 1500px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
  margin: 0 auto;
}

.experience-image {
  position: relative;
  height: min(730px, 62vw);
  min-height: 590px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 90px 34px 90px 34px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.experience-image img,
.about-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-image img {
  object-position: center;
}

.experience-seal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 136px;
  height: 136px;
  place-items: center;
  padding: 22px 10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 14px 30px rgba(70, 39, 36, 0.18);
  color: var(--raspberry);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(6deg);
}

.experience-seal strong {
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.experience-copy .section-intro {
  max-width: 620px;
  margin: 26px 0 34px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.68;
}

.steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(90, 52, 46, 0.14);
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--raspberry);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.steps h3 {
  margin: 1px 0 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
}

.steps p {
  margin: 0;
  color: #74534d;
  line-height: 1.5;
}

.included-card {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: var(--cream-deep);
}

.included-card > p {
  margin: 0 0 14px;
  color: var(--raspberry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.included-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.included-card li::before {
  position: absolute;
  left: 0;
  color: var(--strawberry);
  content: "♥";
  font-size: 0.72rem;
}

.event-strip {
  position: relative;
  padding: 54px 24px;
  overflow: hidden;
  background: var(--raspberry);
  color: var(--white);
  text-align: center;
}

.event-strip::before,
.event-strip::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 22px;
  background:
    radial-gradient(circle at 11px 0, transparent 11px, var(--cream) 11.5px)
      0 0 / 22px 22px repeat-x;
  content: "";
}

.event-strip::before {
  top: -11px;
}

.event-strip::after {
  bottom: -11px;
  transform: rotate(180deg);
}

.event-strip > p {
  margin: 0 0 22px;
  color: var(--pink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-strip > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
}

.event-strip span {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  font-weight: 700;
}

.event-strip b {
  margin-left: 18px;
  color: var(--butter);
  font-family: sans-serif;
  font-size: 0.45em;
}

.gallery-section {
  background:
    radial-gradient(circle at 15% 24%, rgba(255, 255, 255, 0.75), transparent 24%),
    #f9e4e7;
}

.gallery-grid {
  display: grid;
  max-width: 1320px;
  grid-template-columns: 0.82fr 1fr 0.76fr;
  grid-template-rows: 270px 290px;
  gap: 18px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(105, 52, 56, 0.12);
}

.gallery-card img {
  transition: transform 650ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 247, 245, 0.9);
  backdrop-filter: blur(8px);
  color: var(--raspberry);
  font-size: 0.83rem;
  font-weight: 800;
  text-align: center;
}

.gallery-tall {
  grid-row: 1 / 3;
  border-radius: 76px 28px 64px 34px;
  transform: rotate(-1deg);
}

.gallery-wide {
  grid-column: 2 / 4;
  border-radius: 32px 70px 34px 60px;
  transform: rotate(0.7deg);
}

.gallery-square {
  border-radius: 34px 64px 34px 64px;
  transform: rotate(-0.8deg);
}

.gallery-quote {
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 66px 28px 64px 30px;
  background: var(--butter);
  color: var(--raspberry);
  text-align: center;
  transform: rotate(1.4deg);
}

.gallery-quote span {
  position: absolute;
  top: 6px;
  left: 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.35;
}

.gallery-quote p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.gallery-quote i {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-family: sans-serif;
  font-size: 2.5rem;
  font-style: normal;
}

.about-section {
  background: #fff9f6;
}

.about-card {
  display: grid;
  max-width: 1320px;
  grid-template-columns: 1fr 0.78fr;
  align-items: stretch;
  gap: 28px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(151, 24, 62, 0.08);
  border-radius: 44px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vw, 48px);
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.7;
}

.about-copy > p + p:not(.eyebrow) {
  margin-top: 12px;
}

.text-link {
  width: fit-content;
  margin-top: 28px;
  border-bottom: 2px solid var(--strawberry);
  color: var(--raspberry);
  font-weight: 800;
  line-height: 1.8;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.about-photo {
  min-height: 610px;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 82px 28px 74px 34px;
  box-shadow: 0 14px 34px rgba(105, 52, 56, 0.12);
  transform: rotate(1deg);
}

.about-photo img {
  object-position: center;
}

.faq-section {
  display: grid;
  max-width: 1320px;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
  margin: 0 auto;
}

.faq-heading {
  position: sticky;
  top: 150px;
}

.faq-heading > p:last-child {
  max-width: 440px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(151, 24, 62, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  transition: background 180ms ease;
}

.faq-list details[open] {
  background: var(--cream-deep);
}

.faq-list summary {
  position: relative;
  padding: 24px 62px 24px 26px;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--raspberry);
  content: "+";
  font-family: sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 70px 24px 26px;
  color: #74534d;
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.11), transparent 21%),
    radial-gradient(circle at 87% 78%, rgba(255, 255, 255, 0.11), transparent 22%),
    var(--raspberry);
  color: var(--white);
  text-align: center;
}

.contact-section .eyebrow {
  color: var(--butter);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section h2 em {
  color: var(--pink-soft);
}

.contact-section > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px auto 30px;
  color: #ffeef2;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
}

.button-light {
  gap: 9px;
  background: var(--white);
  color: var(--raspberry);
}

.button-light:hover {
  background: var(--butter);
  box-shadow: 0 16px 32px rgba(64, 17, 32, 0.22);
}

.contact-hearts {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  color: var(--pink-soft);
  font-family: sans-serif;
  font-size: 2.7rem;
  letter-spacing: 0.45em;
  opacity: 0.65;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 48px;
  padding: 52px clamp(24px, 6vw, 96px);
  background: #512f2b;
  color: #ffecef;
}

.footer-wordmark {
  width: fit-content;
  color: var(--pink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.footer-wordmark span {
  margin-left: 5px;
  color: var(--strawberry);
  font-family: sans-serif;
  font-size: 0.4em;
  vertical-align: top;
}

footer > p {
  grid-row: 2;
  margin: 0;
  color: #e9cdd0;
}

footer > div {
  display: flex;
  grid-column: 2;
  grid-row: 1 / 3;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

footer > div a {
  padding: 10px 6px;
  margin: -10px -6px;
  transition: color 180ms ease;
}

footer > div a:hover {
  color: var(--butter);
}

footer small {
  grid-column: 1 / 3;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8b8bb;
  font-size: 0.76rem;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(220px, 0.8fr) minmax(420px, 1.2fr);
  }

  .hero-side-stack {
    display: none;
  }

  .hero-doodle-two {
    right: 5%;
  }

  .experience-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }

  .gallery-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .gallery-wide {
    grid-column: 2;
  }

  .gallery-quote {
    display: none;
  }

  .about-card {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    gap: 12px;
    padding: 12px 18px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(151, 24, 62, 0.22);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--raspberry);
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: 210px;
    padding: 14px;
    border: 1px solid rgba(151, 24, 62, 0.1);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-menu nav a:hover {
    background: var(--cream-deep);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 20px 64px;
  }

  .hero-copy {
    grid-row: 1;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .proof-list {
    flex-wrap: wrap;
    gap: 9px 20px;
    font-size: 0.82rem;
  }

  .hero-photo-cart {
    width: min(440px, 94%);
    height: 520px;
    margin: 0 auto;
  }

  .hero-side-stack {
    display: grid;
    width: min(520px, 100%);
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 auto;
    transform: none;
  }

  .hero-photo-fruit,
  .hero-photo-spread {
    height: 210px;
    border-width: 5px;
    border-radius: 34px;
  }

  .hero-doodle-one {
    top: 18px;
    left: 7%;
  }

  .hero-doodle-two {
    display: none;
  }

  .section-pad {
    padding: 82px 20px;
  }

  .section-heading {
    display: grid;
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-heading > p {
    margin: 0;
  }

  h2 {
    font-size: clamp(3rem, 13.8vw, 4.5rem);
  }

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

  .menu-card {
    min-height: 132px;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .menu-number {
    font-size: 1.55rem;
  }

  .menu-card p {
    font-size: 0.87rem;
  }

  .menu-heart {
    font-size: 1.55rem;
  }

  .menu-note {
    align-items: flex-start;
    border-radius: 22px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

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

  .experience-image {
    height: 520px;
    min-height: 0;
    border-width: 6px;
    border-radius: 62px 24px 58px 24px;
  }

  .experience-image img {
    object-position: center;
  }

  .experience-seal {
    right: 18px;
    bottom: 18px;
    width: 108px;
    height: 108px;
    padding: 17px 7px;
    font-size: 0.61rem;
  }

  .experience-seal strong {
    font-size: 1.45rem;
  }

  .included-card ul {
    grid-template-columns: 1fr;
  }

  .event-strip {
    padding: 48px 20px;
  }

  .event-strip > div {
    gap: 10px 16px;
  }

  .event-strip b {
    margin-left: 12px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 190px;
    gap: 12px;
  }

  .gallery-tall {
    grid-row: 1;
    grid-column: 1;
    border-radius: 48px 20px 42px 20px;
  }

  .gallery-wide {
    grid-row: 2;
    grid-column: 1 / 3;
    border-radius: 22px 44px 22px 44px;
  }

  .gallery-square {
    grid-row: 1;
    grid-column: 2;
    border-radius: 22px 46px 22px 46px;
  }

  .gallery-card {
    border-width: 5px;
  }

  .gallery-card figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
    font-size: 0.71rem;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 30px;
  }

  .about-copy {
    padding: 24px 10px;
  }

  .about-photo {
    min-height: 480px;
    border-width: 6px;
    border-radius: 54px 22px 48px 24px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    padding: 21px 54px 21px 20px;
  }

  .faq-list summary::after {
    right: 17px;
  }

  .faq-list details p {
    margin: -2px 24px 22px 20px;
  }

  .contact-hearts {
    font-size: 2.1rem;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 46px 24px;
  }

  footer > p,
  footer > div,
  footer small {
    grid-row: auto;
    grid-column: 1;
  }

  footer > div {
    justify-content: flex-start;
  }
}

body.modal-open {
  overflow: hidden;
}

dialog#booking-modal {
  width: min(600px, 92vw);
  max-height: min(88vh, 800px);
  padding: 0;
  border: none;
  border-radius: 36px;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(90, 30, 40, 0.35);
  color: var(--chocolate);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

dialog#booking-modal.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

dialog#booking-modal::backdrop {
  background: rgba(88, 30, 40, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 220ms ease;
}

dialog#booking-modal.is-open::backdrop {
  opacity: 1;
}

.modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: inherit;
  padding: clamp(28px, 4vw, 44px);
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(90, 30, 40, 0.14);
  color: var(--raspberry);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.modal-close:hover {
  background: var(--pink-soft);
  transform: rotate(90deg);
}

.modal-close:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 3px;
}

.modal-header {
  padding-right: 52px;
  margin-bottom: 22px;
}

.modal-header h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.modal-intro {
  max-width: 440px;
  margin: 12px 0 0;
  font-weight: 600;
  line-height: 1.5;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form[hidden] {
  display: none;
}

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

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--raspberry-dark);
}

.form-row label span {
  color: #a17872;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(151, 24, 62, 0.14);
  border-radius: 14px;
  background: var(--white);
  color: var(--chocolate);
  font-family: inherit;
  font-size: 0.96rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 84px;
}

.form-row input:user-invalid,
.form-row select:user-invalid {
  border-color: #d94b4b;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--strawberry);
  box-shadow: 0 0 0 4px rgba(242, 79, 112, 0.16);
  outline: none;
}

.form-actions {
  margin-top: 6px;
}

.form-actions .button {
  width: 100%;
}

.modal-success {
  display: grid;
  gap: 14px;
  padding: 20px 0 6px;
  text-align: center;
}

.modal-success[hidden] {
  display: none;
}

.modal-success:focus-visible {
  outline: none;
}

.modal-success-icon {
  justify-self: center;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--butter);
  color: var(--strawberry);
  font-size: 1.8rem;
}

.modal-success h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
}

.modal-success p {
  max-width: 420px;
  margin: 0 auto;
  color: #74534d;
  line-height: 1.6;
}

.modal-success .button {
  justify-self: center;
  margin-top: 6px;
}

@media (max-width: 560px) {
  .modal-card {
    padding: 26px 20px 30px;
  }

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

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

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

  dialog#booking-modal,
  dialog#booking-modal::backdrop {
    transition-duration: 0.01ms !important;
  }
}
