:root {
  --ink: #241817;
  --muted: #746462;
  --line: #f0ded9;
  --paper: #fff8f3;
  --soft: #fff0f5;
  --chocolate: #5a302b;
  --cacao: #7a443e;
  --berry: #d7195f;
  --berry-dark: #ae124a;
  --raspberry: #ff5f8f;
  --coral: #ff8a6b;
  --pistachio: #b9d98b;
  --blue: #bfe7f2;
  --gold: #d6a84f;
  --shadow: 0 24px 70px rgba(215, 25, 95, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px clamp(24px, 4.5vw, 72px);
  background: rgba(255, 248, 243, 0.9);
  border-bottom: 1px solid rgba(234, 223, 225, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(270px, 21vw, 340px);
}

.brand img {
  width: 100%;
  height: auto;
}

.brand strong,
footer strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.brand strong::first-letter,
.hero-logo strong {
  color: var(--berry);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #1e1716;
  font-size: 13px;
  font-weight: 700;
}

nav a:hover {
  color: var(--berry-dark);
  background: #ffe2eb;
  transform: translateY(-1px);
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.flip-nav {
  min-width: 74px;
  perspective: 520px;
}

.flip-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  pointer-events: none;
  backface-visibility: hidden;
  transition: transform 360ms cubic-bezier(0.2, 0.72, 0.24, 1), opacity 180ms ease;
}

.flip-nav .back {
  position: absolute;
  inset: 0;
  color: var(--berry-dark);
  font-weight: 800;
  transform: rotateX(180deg);
  opacity: 0;
}

.flip-nav .back img {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 248, 243, 0.95);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(82, 44, 37, 0.16);
  object-fit: cover;
}

.flip-nav:hover .front,
.flip-nav:focus-visible .front {
  transform: rotateX(-180deg);
  opacity: 0;
}

.flip-nav:hover .back,
.flip-nav:focus-visible .back {
  transform: rotateX(0);
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--berry), var(--coral));
  color: #fff;
  box-shadow: 0 14px 28px rgba(177, 19, 69, 0.22);
}

.header-cta:hover,
.button.primary:hover {
  background: linear-gradient(135deg, var(--berry-dark), #ff7756);
}

.button.secondary {
  background: #fff;
  color: var(--chocolate);
  border: 1px solid var(--line);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--berry-dark);
  border: 1px solid rgba(223, 30, 99, 0.22);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  display: block;
  min-height: 620px;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4.5vw, 72px) 42px;
  background:
    radial-gradient(circle at 38% 18%, rgba(191, 231, 242, 0.45), transparent 26%),
    radial-gradient(circle at 11% 74%, rgba(185, 217, 139, 0.36), transparent 20%),
    linear-gradient(90deg, rgba(255, 248, 243, 1) 0%, rgba(255, 248, 243, 0.94) 31%, rgba(255, 248, 243, 0.48) 45%, rgba(255, 248, 243, 0.03) 62%, rgba(255, 248, 243, 0) 100%),
    url("assets/hero-patisserie.png") center right / cover no-repeat;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.04;
}

.hero-copy {
  max-width: 610px;
  padding-top: 4px;
}

.hero-logo {
  display: inline-block;
  margin-bottom: 18px;
  font-family: Fraunces, Georgia, serif;
  color: var(--chocolate);
  line-height: 0.9;
}

.hero-logo strong {
  color: var(--berry);
}

.hero-logo span {
  display: block;
  font-size: clamp(64px, 8.3vw, 112px);
  letter-spacing: -0.04em;
}

.hero-logo small {
  display: block;
  width: 100%;
  margin-top: 4px;
  color: var(--chocolate);
  font-size: clamp(19px, 2.45vw, 34px);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: right;
}

.gold-rule {
  width: 92px;
  height: 2px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, var(--berry), var(--coral), var(--pistachio));
}

.hero p,
.section-heading p,
.split > div > p,
.contact > div > p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero p {
  max-width: 520px;
  margin: 0;
  color: #211817;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--berry);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 22px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.trust-strip {
  display: flex;
  justify-content: center;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 240, 245, 0.78), rgba(239, 251, 255, 0.76)),
    #fffdf9;
}

.trust-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 16px 24px;
  color: var(--chocolate);
}

.trust-strip strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.trust-icon {
  color: var(--chocolate);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 700;
}

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

.category-strip a {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-right: 2px solid #fff;
  background: var(--berry-dark);
}

.category-strip img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 450ms ease, opacity 450ms ease;
}

.category-strip a:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.category-strip span {
  position: absolute;
  left: 28px;
  right: 22px;
  bottom: 24px;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.45);
}

.section {
  padding: clamp(46px, 6vw, 78px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.section-logo {
  width: 72px;
  margin: 0 0 14px;
  border-radius: 18px;
}

.section h2 {
  max-width: 720px;
  font-size: clamp(38px, 5vw, 66px);
}

.category-list {
  display: grid;
  gap: 14px;
}

.category-list article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(215, 25, 95, 0.08);
}

.category-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 5px 14px;
  padding: 18px;
}

.category-list span {
  grid-row: span 2;
  color: var(--berry);
  font-family: Fraunces, Georgia, serif;
  font-size: 31px;
  font-weight: 700;
}

.category-list strong {
  font-size: 20px;
}

.category-list p,
.process span,
.contact-panel p,
footer span {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 360px;
  margin: 0;
  justify-self: start;
}

.segment-showcase {
  background:
    linear-gradient(180deg, #fff8f3 0%, #fff1f6 46%, #effcff 100%);
  overflow: hidden;
}

.segment-showcase .section-heading p {
  color: var(--muted);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  perspective: 1400px;
}

.segment-card {
  position: relative;
  min-width: 0;
  border-radius: 24px;
  outline: none;
  animation: segmentRise 700ms ease both;
}

.segment-card:nth-child(2) {
  animation-delay: 60ms;
}

.segment-card:nth-child(3) {
  animation-delay: 120ms;
}

.segment-card:nth-child(4) {
  animation-delay: 180ms;
  order: 5;
}

.segment-card:nth-child(5) {
  animation-delay: 240ms;
  order: 4;
}

.segment-card:nth-child(6) {
  animation-delay: 300ms;
  order: 6;
}

.segment-card.tall {
  grid-row: span 1;
}

.segment-card.wide {
  grid-column: auto;
}

.segment-card:nth-child(2),
.segment-card:nth-child(3),
.segment-card:nth-child(4),
.segment-card:nth-child(5),
.segment-card:nth-child(6) {
  grid-row: span 1;
}

.segment-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.segment-card:hover .segment-inner,
.segment-card:focus .segment-inner,
.segment-card:focus-within .segment-inner {
  transform: rotateY(180deg);
}

.segment-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(223, 30, 99, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(82, 44, 37, 0.12);
  backface-visibility: hidden;
}

.segment-front::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(36, 24, 23, 0.78));
}

.segment-face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

.segment-card:hover img {
  transform: scale(1.08);
}

.segment-front span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.9);
  color: var(--berry-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.segment-face h3,
.segment-face p,
.segment-face a {
  position: relative;
  z-index: 1;
}

.segment-face h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 40px);
}

.segment-face p {
  max-width: 420px;
  margin: 6px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.segment-back {
  justify-content: space-between;
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 95, 143, 0.22), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(185, 217, 139, 0.28), transparent 30%),
    #fff;
}

.segment-back h3 {
  color: var(--chocolate);
}

.segment-back p {
  color: var(--muted);
  font-size: 15px;
}

.segment-back a {
  align-self: flex-start;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--berry);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.why-chocoberry {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 95, 143, 0.18), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(191, 231, 242, 0.42), transparent 28%),
    #fff8f3;
}

.section-heading.centered {
  display: block;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.centered p {
  max-width: 690px;
  margin: 12px auto 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.quality-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(223, 30, 99, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(82, 44, 37, 0.09);
}

.quality-grid svg {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: var(--berry);
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-grid strong,
.quality-grid span {
  display: block;
}

.quality-grid strong {
  color: var(--chocolate);
  font-size: 20px;
}

.quality-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(82, 44, 37, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(82, 44, 37, 0.1);
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) repeat(4, minmax(132px, 1fr));
}

.compare-row > div {
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid rgba(82, 44, 37, 0.12);
  border-bottom: 1px solid rgba(82, 44, 37, 0.1);
  color: var(--ink);
  font-size: 14px;
}

.compare-row > div:last-child {
  border-right: 0;
}

.compare-row:last-child > div {
  border-bottom: 0;
}

.compare-head > div {
  background: rgba(255, 240, 245, 0.72);
  color: var(--chocolate);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-head > div:last-child {
  background:
    linear-gradient(135deg, rgba(255, 95, 143, 0.18), rgba(185, 217, 139, 0.2)),
    rgba(255, 255, 255, 0.9);
  color: var(--berry-dark);
}

.compare-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.compare-row .yes {
  background: rgba(185, 217, 139, 0.34);
  color: #3e6a22;
}

.compare-row .no {
  background: rgba(255, 95, 143, 0.12);
  color: var(--berry-dark);
}

.compare-row .maybe {
  background: rgba(191, 231, 242, 0.4);
  color: #35636c;
}

.compare-note {
  max-width: 920px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@keyframes segmentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flip-nav span {
    transition: none;
  }

  .flip-nav:hover .front,
  .flip-nav:focus-visible .front {
    transform: none;
    opacity: 1;
  }

  .flip-nav:hover .back,
  .flip-nav:focus-visible .back {
    transform: rotateX(180deg);
    opacity: 0;
  }
}

.occasions {
  background: #fffdfa;
}

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

.occasion-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(223, 30, 99, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 236, 243, 0.8), rgba(255, 255, 255, 0.9)),
    #fff;
  box-shadow: 0 18px 46px rgba(82, 44, 37, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.occasion-grid a:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(236, 255, 244, 0.78), rgba(255, 255, 255, 0.92)),
    #fff;
}

.occasion-grid a:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(239, 251, 255, 0.84), rgba(255, 255, 255, 0.92)),
    #fff;
}

.occasion-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 30, 99, 0.32);
  box-shadow: 0 22px 56px rgba(82, 44, 37, 0.12);
}

.occasion-grid span {
  color: var(--berry);
  font-family: Fraunces, Georgia, serif;
  font-size: 25px;
  font-weight: 800;
}

.occasion-grid strong {
  color: var(--chocolate);
  font-size: 15px;
  line-height: 1.45;
}

.corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 95, 143, 0.32), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(185, 217, 139, 0.28), transparent 26%),
    #fff;
  border: 1px solid rgba(223, 30, 99, 0.16);
  box-shadow: 0 22px 60px rgba(82, 44, 37, 0.1);
}

.corporate-cta span {
  display: block;
  margin-bottom: 10px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.corporate-cta h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
}

.corporate-cta p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.process {
  background: #f8f1e9;
}

.process-heading {
  margin-bottom: 34px;
  text-align: center;
}

.process-heading h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.process-heading p {
  margin: 12px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}

.process-visual {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 8px;
  background: #fffdf9;
}

.process-visual span {
  align-self: start;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-visual img {
  width: min(420px, 88%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(82, 44, 37, 0.15);
}

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

.process-steps li {
  position: relative;
  padding: 22px 64px 22px 24px;
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 12px 30px rgba(82, 44, 37, 0.05);
}

.process-steps li::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.process-steps li:first-child {
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(82, 44, 37, 0.08);
}

.process-steps li:first-child::after {
  content: "×";
  background: var(--gold);
  color: #fff;
}

.process-steps span,
.process-steps small,
.process-steps strong,
.process-steps p {
  display: block;
}

.process-steps span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
}

.process-steps small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-steps strong {
  margin-top: 9px;
  color: var(--chocolate);
  font-size: 20px;
}

.process-steps p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.gallery-grid .large {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 253, 251, 0.9);
  color: var(--chocolate);
  font-size: 13px;
  font-weight: 800;
}

.proof {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 95, 143, 0.18), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(191, 231, 242, 0.32), transparent 24%),
    #fff;
}

.social-feed {
  background:
    linear-gradient(135deg, rgba(255, 240, 245, 0.72), rgba(239, 251, 255, 0.72)),
    #fff;
}

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

.social-grid a {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 22px;
  background: var(--soft);
  box-shadow: 0 18px 46px rgba(82, 44, 37, 0.1);
}

.social-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.social-grid a:hover img {
  transform: scale(1.06);
}

.social-grid a::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(36, 24, 23, 0.82));
}

.social-grid span,
.social-grid strong {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  color: #fff;
}

.social-grid span {
  bottom: 66px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-grid strong {
  bottom: 20px;
  font-size: 24px;
  line-height: 1.1;
}

.feed-note {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.review-summary {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px 28px;
  border-radius: 24px;
  background: #f5f8fc;
  box-shadow: 0 14px 36px rgba(82, 44, 37, 0.06);
}

.review-summary strong,
.review-summary span,
.review-summary p {
  display: block;
}

.review-summary strong {
  color: var(--chocolate);
  font-size: 16px;
}

.review-summary span {
  margin-top: 4px;
  color: #f4a000;
  font-size: 20px;
  font-weight: 900;
}

.review-summary p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.proof-grid article {
  padding: 24px;
  border: 1px solid rgba(223, 30, 99, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(82, 44, 37, 0.08);
}

.proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--berry);
  font-family: Fraunces, Georgia, serif;
  font-size: 42px;
  font-weight: 800;
}

.proof-grid strong {
  display: block;
  color: var(--chocolate);
  font-size: 19px;
}

.proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 2px 12px;
  gap: 16px;
  margin-top: 16px;
}

.testimonial-grid article {
  flex: 0 0 min(360px, 82vw);
  scroll-snap-align: start;
  padding: 22px;
  border-radius: 22px;
  background: #f5f8fc;
  border: 1px solid rgba(82, 44, 37, 0.08);
}

.testimonial-grid p {
  margin: 0 0 18px;
  color: var(--chocolate);
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-grid strong {
  display: block;
  color: var(--chocolate);
  font-size: 14px;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.faq {
  background:
    linear-gradient(135deg, rgba(255, 236, 243, 0.62), rgba(236, 255, 244, 0.46)),
    #fffdfa;
}

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

.faq details {
  border: 1px solid rgba(223, 30, 99, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(82, 44, 37, 0.08);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--chocolate);
  font-weight: 900;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--berry);
  font-size: 22px;
  line-height: 1;
}

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

.faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: #fff;
}

.contact-panel {
  padding: 24px;
}

.contact-panel .button + .button {
  margin-top: 12px;
}

.contact-panel p {
  margin-top: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .split,
  .contact,
  .corporate-cta {
    grid-template-columns: 1fr;
  }

  .corporate-cta {
    margin-right: 20px;
    margin-left: 20px;
  }

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

  .hero {
    min-height: auto;
    padding: 280px 24px 32px;
    background:
      linear-gradient(180deg, rgba(255, 250, 245, 0.06) 0%, rgba(255, 250, 245, 0.06) 58%, rgba(255, 250, 245, 0.92) 88%, var(--paper) 100%),
      url("assets/hero-patisserie.png") center top / cover no-repeat;
  }

  .hero-copy {
    max-width: 640px;
    padding: 22px;
    background: rgba(255, 250, 245, 0.94);
    border: 1px solid rgba(230, 222, 216, 0.72);
    box-shadow: 0 16px 36px rgba(42, 22, 20, 0.12);
  }

  .trust-strip,
  .occasion-grid,
  .process ol,
  .category-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .segment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .segment-card.tall,
  .segment-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 860px;
  }

  .section-heading {
    display: block;
  }

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

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

  .testimonial-grid {
    grid-template-columns: none;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 360px;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: static;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 14px 14px 10px;
  }

  .brand {
    width: min(300px, 82vw);
    justify-self: center;
  }

  .header-cta {
    display: none;
  }

  nav {
    order: initial;
    justify-content: flex-start;
    gap: 10px;
    width: calc(100vw - 28px);
    padding: 2px 0 4px;
    font-size: 12px;
    white-space: nowrap;
  }

  nav a {
    min-height: 32px;
    padding: 0 10px;
  }

  .flip-nav {
    min-width: 68px;
  }

  .flip-nav .back img {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding: 214px 14px 18px;
    background:
      linear-gradient(180deg, rgba(255, 248, 243, 0) 0%, rgba(255, 248, 243, 0.02) 52%, rgba(255, 248, 243, 0.94) 80%, var(--paper) 100%),
      url("assets/hero-patisserie.png") center top / auto 285px no-repeat;
  }

  .hero-copy {
    padding: 15px;
    border-radius: 18px;
  }

  .hero-logo {
    margin-bottom: 10px;
  }

  .hero-logo span {
    font-size: 46px;
  }

  .hero-logo small {
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-align: right;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.08;
  }

  .gold-rule {
    width: 58px;
    margin: 10px 0 11px;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .button.primary {
    width: 100%;
    min-height: 42px;
  }

  .text-link {
    min-height: 22px;
    font-size: 12px;
  }

  .trust-strip a {
    display: block;
    padding: 10px 12px;
    text-align: center;
  }

  .trust-icon {
    display: block;
    font-size: 18px;
    line-height: 1;
  }

  .trust-strip strong {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.05;
  }

  .category-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    padding: 1px;
    background: #fff;
    border-bottom: 0;
  }

  .category-strip a,
  .category-strip img {
    min-height: 112px;
  }

  .category-strip a {
    border-right: 0;
  }

  .category-strip span {
    left: 10px;
    right: 8px;
    bottom: 9px;
    font-size: 18px;
  }

  .section {
    padding: 34px 14px;
  }

  .story-section {
    display: block;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .section-logo {
    width: 54px;
    margin-bottom: 9px;
  }

  .section h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .split > div > p,
  .section-heading p,
  .contact > div > p {
    font-size: 14px;
  }

  .category-list {
    gap: 8px;
    margin-top: 12px;
  }

  .category-list article {
    grid-template-columns: 32px 1fr;
    gap: 3px 10px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .category-list span {
    font-size: 20px;
  }

  .category-list strong,
  .process strong {
    font-size: 16px;
  }

  .category-list p,
  .process span {
    font-size: 12px;
  }

  .segment-showcase {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .segment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    grid-auto-rows: 186px;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .segment-face {
    padding: 12px;
    border-radius: 16px;
  }

  .segment-card {
    border-radius: 16px;
  }

  .segment-front span {
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    font-size: 9px;
  }

  .segment-face h3 {
    font-size: 19px;
  }

  .segment-face p,
  .segment-back p {
    font-size: 11px;
    line-height: 1.35;
  }

  .segment-back a {
    padding: 8px 10px;
    font-size: 11px;
  }

  .occasion-grid a {
    min-height: 116px;
    padding: 14px;
    border-radius: 14px;
  }

  .occasion-grid span {
    font-size: 18px;
  }

  .occasion-grid strong {
    font-size: 12px;
  }

  .corporate-cta {
    margin-right: 14px;
    margin-left: 14px;
    padding: 22px;
    border-radius: 18px;
  }

  .corporate-cta h2 {
    font-size: 26px;
    line-height: 1.05;
  }

  .corporate-cta p {
    font-size: 13px;
  }

  .corporate-cta .button {
    width: 100%;
  }

  .quality-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }

  .quality-grid article {
    aspect-ratio: 1 / 1;
    min-height: auto;
    padding: 10px;
    border-radius: 14px;
  }

  .quality-grid svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    stroke-width: 3.6;
  }

  .quality-grid strong {
    font-size: 11px;
    line-height: 1.15;
  }

  .quality-grid span {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.25;
  }

  .compare-table {
    border-radius: 16px;
  }

  .compare-row {
    min-width: 780px;
    grid-template-columns: minmax(190px, 1.35fr) repeat(4, minmax(118px, 1fr));
  }

  .compare-row > div {
    padding: 12px 10px;
    font-size: 12px;
  }

  .compare-head > div {
    font-size: 10px;
  }

  .compare-row span {
    min-height: 24px;
    padding: 4px 7px;
    font-size: 10px;
  }

  .compare-note {
    font-size: 11px;
    text-align: left;
  }

  .process {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .process-layout {
    gap: 12px;
  }

  .process-heading {
    margin-bottom: 18px;
  }

  .process-heading h2 {
    font-size: 34px;
  }

  .process-heading p {
    font-size: 13px;
  }

  .process-visual {
    min-height: 250px;
    padding: 18px;
  }

  .process-visual img {
    width: min(210px, 82%);
  }

  .process-steps {
    gap: 8px;
  }

  .process-steps li {
    min-height: auto;
    padding: 14px 46px 14px 14px;
  }

  .process-steps li::before {
    content: none;
  }

  .process-steps li::after {
    top: 14px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .process-steps span {
    font-size: 15px;
  }

  .process-steps small {
    font-size: 9px;
  }

  .process-steps strong {
    margin-top: 5px;
    font-size: 15px;
  }

  .process-steps p {
    margin-top: 8px;
    font-size: 12px;
  }

  .social-grid {
    gap: 8px;
  }

  .social-grid a,
  .social-grid img {
    min-height: 190px;
  }

  .social-grid strong {
    font-size: 18px;
  }

  .review-summary {
    display: block;
    padding: 16px;
    border-radius: 16px;
  }

  .review-summary .button {
    width: 100%;
    margin-top: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 142px;
    gap: 8px;
  }

  .gallery-grid .large {
    grid-row: span 1;
  }

  .proof-grid {
    gap: 8px;
  }

  .proof-grid article {
    padding: 16px;
    border-radius: 16px;
  }

  .proof-grid span {
    font-size: 30px;
  }

  .testimonial-grid {
    gap: 8px;
  }

  .testimonial-grid article {
    padding: 16px;
    border-radius: 16px;
  }

  .testimonial-grid p {
    font-size: 18px;
  }

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

  figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px;
    font-size: 11px;
  }

  .contact {
    gap: 16px;
  }

  .contact-panel {
    padding: 16px;
    border-radius: 16px;
  }

  footer {
    display: block;
    padding: 22px 14px;
  }
}
