:root {
  --pink: #ed73a6;
  --pink-dark: #d64d8a;
  --blush: #fde7ee;
  --mint: #bdddc9;
  --mint-dark: #80b49a;
  --cream: #fffaf1;
  --gold: #bc8122;
  --ink: #3d3637;
  --white: #fff;
  --line: rgba(61, 54, 55, 0.16);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --script: "Sacramento", cursive;
  --container: min(1160px, 92vw);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
p {
  margin: 0 0 1rem;
}
.announcement {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-header,
.site-footer,
main > .section-shell {
  width: var(--container);
  margin-inline: auto;
}
.site-header {
  height: 112px;
  width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 4;
}
.brand {
  width: 112px;
  height: 86px;
  display: block;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 5px 24px rgba(146, 85, 108, 0.16);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 800;
}
.nav-list a:hover {
  color: var(--pink-dark);
}
.nav-order {
  background: var(--pink);
  color: white !important;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}
.logo-hero {
  min-height: 650px;
  margin-top: -112px;
  padding: 190px max(4vw, calc((100vw - 1160px) / 2)) 90px;
  background-image: linear-gradient(
      90deg,
      rgba(255, 250, 241, 0.97) 0%,
      rgba(255, 250, 241, 0.78) 44%,
      rgba(255, 250, 241, 0.08) 68%
    ),
    url("/assets/images/generated/patisserie-hero-v2.png");
  background-size: cover;
  background-position: center;
}
.hero-copy {
  max-width: 660px;
}
.eyebrow,
.kicker {
  color: var(--pink-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(4.4rem, 8vw, 7.4rem);
}
h1 span,
h2 span {
  font-family: var(--script);
  color: var(--pink-dark);
  font-weight: 400;
  letter-spacing: 0;
}
h1 span {
  font-size: 1.05em;
}
.hero-intro {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 1.8rem 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.68rem;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(125, 74, 94, 0.2);
}
.button-pink {
  background: var(--pink);
  color: #fff;
}
.button-mint {
  background: var(--mint-dark);
  color: #fff;
}
.button-outline {
  border: 1px solid var(--pink-dark);
  color: var(--pink-dark);
}
.text-link {
  font-size: 0.69rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid currentColor;
}
.hero-badge {
  display: none;
}
.marquee {
  background: var(--mint);
  color: #376552;
  overflow: hidden;
  text-align: center;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  font-weight: 800;
  border-block: 1px solid rgba(55, 101, 82, 0.17);
}
.marquee span {
  color: var(--pink-dark);
  padding: 0 1.15rem;
}
.welcome {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: 8rem 0;
  align-items: center;
}
.welcome-heading {
  border-right: 1px solid var(--line);
  padding-right: 3rem;
}
.welcome h2,
.section-title h2,
.final-cta h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
}
.welcome-copy {
  font-size: 1.02rem;
}
.dropcap:first-letter {
  float: left;
  font: 4.8rem/0.7 var(--script);
  color: var(--pink-dark);
  padding: 0.2rem 0.4rem 0 0;
}
.signature-section {
  background: var(--blush)
    url("/assets/images/generated/patisserie-pattern-v2.png") center/cover fixed;
  padding: 7rem 0;
  position: relative;
}
.signature-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 246, 248, 0.82);
}
.signature-section > .section-shell {
  position: relative;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.signature-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem 1rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(214, 77, 138, 0.16);
  box-shadow: 0 15px 40px rgba(140, 91, 109, 0.1);
  position: relative;
}
.signature-card:nth-child(2) {
  transform: translateY(2rem);
}
.photo-frame {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.3rem;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.signature-card:hover img {
  transform: scale(1.04);
}
.card-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: white;
  color: var(--pink-dark);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
}
.signature-card h3 {
  font-size: 2rem;
  color: var(--pink-dark);
}
.signature-card > p:last-child {
  font-size: 0.87rem;
  max-width: 300px;
  margin: 0.6rem auto 0;
}
.center-link {
  text-align: center;
  margin-top: 4.7rem;
}
.sellout-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: 8rem 0;
  align-items: center;
}
.sellout-portrait {
  min-height: 580px;
  background: url("/assets/images/social/551d3c5eb13d3348.jpg") center/cover;
  position: relative;
  border: 12px solid white;
  box-shadow: 0 16px 60px rgba(93, 67, 76, 0.17);
  transform: rotate(-2deg);
}
.portrait-copy {
  position: absolute;
  inset: auto -30px 35px auto;
  background: var(--mint);
  padding: 1.2rem 1.5rem;
  transform: rotate(4deg);
  display: flex;
  flex-direction: column;
}
.portrait-copy small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.58rem;
}
.portrait-copy strong {
  font: 2rem/1 var(--script);
  color: #376552;
}
.sellout-copy {
  position: relative;
}
.script-heart {
  font: 5rem/1 var(--script);
  color: var(--pink);
  position: absolute;
  right: 0;
  top: -2rem;
}
.sellout-copy blockquote {
  font: clamp(3.6rem, 7vw, 6.8rem) / 0.9 var(--script);
  color: var(--pink-dark);
  margin: 1.2rem 0;
}
.reply-line {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.social-counts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.social-counts span {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}
.social-counts strong {
  font: 2.3rem/1 var(--serif);
  color: var(--mint-dark);
}
.final-cta {
  text-align: center;
  padding: 8rem 4vw;
  background: var(--mint)
    url("/assets/images/generated/patisserie-pattern-v2.png") center/cover;
  position: relative;
}
.final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(220, 240, 227, 0.88);
}
.final-cta > * {
  position: relative;
}
.final-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.7rem auto;
}
.centered {
  justify-content: center;
}
.cta-cake {
  font: 7rem/1 var(--script);
  color: var(--pink);
  margin-bottom: -1rem;
}
.hero {
  width: var(--container);
  margin: 2rem auto 0;
  padding: 5rem;
  background: var(--blush)
    url("/assets/images/generated/patisserie-pattern-v2.png") center/cover;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 250, 0.84);
}
.hero > * {
  position: relative;
}
.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  max-width: 900px;
}
.hero > p:last-child {
  max-width: 760px;
  margin-top: 1.5rem;
}
.story,
.stack {
  width: var(--container);
  margin-inline: auto;
}
.story {
  padding: 3rem 0;
}
.story h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: var(--pink-dark);
}
.stack > * + * {
  margin-top: 1rem;
}
.panel-grid,
.product-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 1.6rem;
}
.panel,
.product-card,
.gallery-card,
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(214, 77, 138, 0.18);
  padding: 1.2rem;
  box-shadow: 0 8px 30px rgba(140, 91, 109, 0.08);
}
.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.gallery-grid,
.testimonial-grid {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-placeholder {
  min-height: 180px;
  display: grid;
  place-items: center;
  background: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 800;
}
.testimonial-quote {
  font: 2rem/1.15 var(--script);
  color: var(--pink-dark);
}
.testimonial-meta,
.section-note {
  font-size: 0.82rem;
}
.status-pill {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  background: var(--mint);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-footer {
  padding: 3.5rem 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.site-footer a {
  color: var(--pink-dark);
  font-weight: 800;
}
.menu-toggle {
  display: none;
}
@media (max-width: 850px) {
  .site-header {
    height: 92px;
  }
  .brand {
    width: 92px;
    height: 72px;
  }
  .nav-list {
    gap: 0.8rem;
  }
  .nav-list li:nth-child(3) {
    display: none;
  }
  .logo-hero {
    margin-top: -92px;
    padding-top: 150px;
    min-height: 620px;
    background-position: 62% center;
  }
  .welcome,
  .sellout-section {
    grid-template-columns: 1fr;
  }
  .welcome-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 2rem;
  }
  .signature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .signature-card:nth-child(2) {
    transform: none;
  }
  .signature-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 0.75rem);
    justify-self: center;
  }
  .sellout-portrait {
    min-height: 500px;
  }
  .panel-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .signature-section {
    background-attachment: scroll;
  }
}
@media (max-width: 560px) {
  .announcement {
    font-size: 0.56rem;
  }
  .site-header {
    height: 82px;
  }
  .brand {
    width: 78px;
    height: 62px;
  }
  .nav-list li:not(:last-child) {
    display: none;
  }
  .logo-hero {
    margin-top: -82px;
    padding: 135px 6vw 65px;
    min-height: 660px;
    background-image: linear-gradient(
        rgba(255, 250, 241, 0.88),
        rgba(255, 250, 241, 0.68)
      ),
      url("/assets/images/generated/patisserie-hero-v2.png");
    background-position: 70% center;
  }
  h1 {
    font-size: 4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .welcome {
    padding: 5rem 0;
  }
  .signature-grid {
    grid-template-columns: 1fr;
  }
  .signature-card:last-child {
    grid-column: auto;
    width: auto;
  }
  .sellout-section {
    padding: 5rem 0;
  }
  .sellout-portrait {
    min-height: 420px;
  }
  .social-counts {
    gap: 1rem;
  }
  .final-cta {
    padding: 5rem 6vw;
  }
  .centered {
    align-items: center;
  }
  .hero {
    padding: 3rem 1.5rem;
  }
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .photo-frame img {
    transition: none;
  }
}

/* Playful menu and community collections */
.ornament-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.ornament-heading > span {
  font: 2.8rem/1 var(--script);
  color: var(--gold);
}
.ornament-heading .eyebrow {
  margin-bottom: 0.5rem;
}
.playful-products {
  gap: 1.5rem;
  align-items: start;
}
.playful-products .product-card {
  padding: 0 1rem 1.6rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  border: 1px solid rgba(214, 77, 138, 0.22);
  box-shadow: 0 18px 40px rgba(136, 76, 99, 0.12);
  transition: transform 0.25s ease;
}
.playful-products .product-card:hover {
  transform: translateY(-7px) rotate(-0.4deg);
}
.playful-products .product-card:nth-child(2) {
  margin-top: 2.2rem;
  background: #f3fbf6;
  border-color: rgba(128, 180, 154, 0.35);
}
.playful-products .product-card:nth-child(3) {
  background: #fff8e9;
  border-color: rgba(188, 129, 34, 0.25);
}
.card-awning {
  height: 38px;
  margin: 0 -1rem 1rem;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 30px,
    #fff 30px 60px
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% 78%,
    95% 100%,
    90% 78%,
    85% 100%,
    80% 78%,
    75% 100%,
    70% 78%,
    65% 100%,
    60% 78%,
    55% 100%,
    50% 78%,
    45% 100%,
    40% 78%,
    35% 100%,
    30% 78%,
    25% 100%,
    20% 78%,
    15% 100%,
    10% 78%,
    5% 100%,
    0 78%
  );
}
.product-card-2 .card-awning {
  background: repeating-linear-gradient(
    90deg,
    var(--mint-dark) 0 30px,
    #fff 30px 60px
  );
}
.product-card-3 .card-awning {
  background: repeating-linear-gradient(90deg, #d7a446 0 30px, #fff 30px 60px);
}
.product-photo-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50% 50% 46% 54% / 48% 46% 54% 52%;
  border: 7px solid #fff;
  box-shadow: 0 8px 24px rgba(89, 61, 71, 0.14);
}
.playful-products .product-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.playful-products .product-card:hover .product-image {
  transform: scale(1.05);
}
.product-number {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font: 1.1rem var(--serif);
  border: 3px solid white;
}
.product-card-2 .product-number {
  background: var(--mint-dark);
}
.product-card-3 .product-number {
  background: var(--gold);
}
.product-card-copy {
  padding: 1.4rem 0.5rem 0;
}
.product-category,
.gallery-count {
  margin: 0 0 0.35rem;
  color: var(--pink-dark);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.playful-products h3 {
  font-size: 1.8rem;
  color: var(--pink-dark);
  margin-bottom: 0.7rem;
}
.tiny-flourish {
  display: block;
  font: 1.7rem var(--script);
  color: var(--gold);
  margin-top: 0.5rem;
}
.availability-card {
  max-width: 820px !important;
  margin-bottom: 5rem !important;
  padding: 2rem 2.5rem !important;
  background: var(--mint)
    url("/assets/images/generated/patisserie-pattern-v2.png") center/cover;
  border: 1px solid rgba(128, 180, 154, 0.4);
  position: relative;
}
.availability-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(231, 246, 236, 0.88);
}
.availability-card > * {
  position: relative;
}
.availability-card h2 {
  color: #376552;
}
.playful-gallery {
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.playful-gallery .gallery-card {
  padding: 0.8rem;
  background: white;
  position: relative;
  box-shadow: 0 15px 40px rgba(124, 76, 94, 0.12);
  transition: transform 0.25s ease;
}
.playful-gallery .gallery-card:hover {
  transform: translateY(-5px);
}
.gallery-card-1 {
  grid-column: span 7;
  transform: rotate(-0.7deg);
}
.gallery-card-2 {
  grid-column: span 5;
  margin-top: 3.5rem;
  transform: rotate(1deg);
}
.gallery-card-3 {
  grid-column: span 5;
  margin-left: 2rem;
  transform: rotate(0.8deg);
}
.gallery-card-4 {
  grid-column: span 7;
  margin-top: 2rem;
  transform: rotate(-0.5deg);
}
.gallery-image-wrap {
  height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--blush);
}
.gallery-card-2 .gallery-image-wrap,
.gallery-card-3 .gallery-image-wrap {
  height: 310px;
}
.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-card-4 .gallery-image-wrap img {
  object-position: center;
}
.gallery-card:hover img {
  transform: scale(1.035);
}
.gallery-sticker {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  font: 1.35rem/1 var(--script);
  transform: rotate(-8deg);
  border: 3px solid white;
  box-shadow: 0 5px 18px rgba(88, 55, 68, 0.16);
}
.gallery-card-2 .gallery-sticker {
  background: var(--mint-dark);
  transform: rotate(7deg);
}
.gallery-card-3 .gallery-sticker {
  background: var(--gold);
}
.gallery-card-4 .gallery-sticker {
  background: var(--pink-dark);
}
.gallery-copy {
  padding: 1.3rem 0.8rem 0.7rem;
}
.gallery-copy h3 {
  font-size: 2rem;
  color: var(--pink-dark);
  margin-bottom: 0.55rem;
}
.gallery-copy > p:last-child {
  font-size: 0.88rem;
}
.social-pulse-section {
  margin-top: 3rem !important;
  padding: 4rem !important;
  background: var(--blush)
    url("/assets/images/generated/patisserie-pattern-v2.png") center/cover;
  position: relative;
}
.social-pulse-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 243, 247, 0.9);
}
.social-pulse-section > * {
  position: relative;
}
.social-pulse-section > h2,
.social-pulse-section > .section-note {
  text-align: center;
}
.social-pulse-section .section-note {
  max-width: 650px;
  margin: 1rem auto 2rem;
}
.social-pulse-section .testimonial-card {
  border-radius: 70px 70px 12px 12px;
  text-align: center;
  padding: 2.2rem;
}
.social-pulse-section .testimonial-quote {
  font-size: 2.8rem;
}
@media (max-width: 850px) {
  .playful-products .product-card:nth-child(2) {
    margin-top: 0;
  }
  .playful-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card-1,
  .gallery-card-2,
  .gallery-card-3,
  .gallery-card-4 {
    grid-column: auto;
    margin: 0;
  }
  .gallery-image-wrap,
  .gallery-card-2 .gallery-image-wrap,
  .gallery-card-3 .gallery-image-wrap {
    height: 300px;
  }
  .social-pulse-section {
    padding: 3rem 4vw !important;
  }
}
@media (max-width: 560px) {
  .ornament-heading {
    gap: 0.6rem;
  }
  .ornament-heading > span {
    font-size: 1.8rem;
  }
  .playful-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-image-wrap,
  .gallery-card-2 .gallery-image-wrap,
  .gallery-card-3 .gallery-image-wrap {
    height: 290px;
  }
  .gallery-card-1,
  .gallery-card-2,
  .gallery-card-3,
  .gallery-card-4 {
    transform: none;
  }
  .availability-card {
    padding: 1.6rem !important;
  }
  .social-pulse-section .testimonial-card {
    border-radius: 45px 45px 10px 10px;
  }
  .social-pulse-section .testimonial-quote {
    font-size: 2.2rem;
  }
}
