:root {
  --header-bg: #FAEFEB;
  --ink: #514b4b;
  --accent: #c30f58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
}

.site-header {
  min-height: 104px;
  padding: 0 8.8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--header-bg);
  border-top: 1px solid #eadfdd;
  border-bottom: 1px solid #f1e7e5;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 222px;
  height: 88px;
  color: #b5114e;
  text-decoration: none;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  padding: 12px 0;
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent);
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 135px;
  min-height: 38px;
  padding: 0 19px;
  border-radius: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.order-button:hover {
  background: #a70c4a;
  transform: translateY(-1px);
}

.chat-icon {
  width: 15px;
  height: 13px;
  position: relative;
  display: inline-block;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.chat-icon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-left: 1.5px solid currentColor;
  transform: skew(-28deg);
}

.floating-socials {
  position: fixed;
  top: 50%;
  left: 18px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(48, 16, 28, 0.22);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.floating-socials a:hover,
.floating-socials a:focus-visible {
  background: #fff0f4;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(48, 16, 28, 0.3);
}

.floating-socials a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.floating-socials img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.floating-socials .chat-icon {
  width: 21px;
  height: 18px;
  border-width: 2px;
}

.floating-socials .chat-icon::after {
  bottom: -5px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-left-width: 2px;
}

.floating-socials-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.hero {
  min-height: calc(100vh - 104px);
  padding: 72px 6%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: url("../img/cheesecake.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(28, 16, 18, 0.47);
}

.hero-content {
  max-width: 850px;
  color: #fff;
  text-align: center;
  animation: hero-enter 700ms ease-out both;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #e62b68;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 20px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.hero-description {
  max-width: 690px;
  margin: 0 auto 38px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-button {
  min-width: 184px;
}

.hero-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(40, 27, 29, 0.22);
}

.hero-button--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.pastry-hero {
  min-height: calc(100vh - 104px);
  padding: 72px 6%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: url("../img/fondoPasteleria.webp") center center / cover no-repeat;
}

.pastry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(25, 12, 17, 0.5);
}

.pastry-hero-content {
  max-width: 700px;
  color: #fff;
  text-align: center;
  animation: hero-enter 700ms ease-out both;
}

.pastry-hero-kicker {
  margin: 0 0 13px;
  color: #e62b68;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pastry-hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(43px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.pastry-hero-description {
  margin: 0 auto 23px;
  font-size: 12px;
  line-height: 1.6;
}

.pastry-hero-button {
  min-width: 134px;
  min-height: 34px;
  padding: 0 15px;
  font-size: 11px;
}

.about-hero {
  min-height: calc(100vh - 104px);
  padding: 72px 6%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: url("../img/fondoNosotros.webp") center center / cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(14, 20, 27, 0.62);
}

.about-hero-content {
  max-width: 700px;
  color: #fff;
  text-align: center;
  animation: hero-enter 700ms ease-out both;
}

.about-hero-kicker {
  margin: 0 0 13px;
  color: #fff;
  font-size: 10px;
}

.about-hero h1 {
  margin: 0 0 13px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 0.98;
}

.about-hero-description {
  max-width: 620px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.65;
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 7%;
  padding: 58px 7%;
  background: #fff9f7;
}

.about-story-content {
  max-width: 440px;
  justify-self: end;
}

.about-story-content h2 {
  margin: 0 0 15px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(32px, 3.5vw, 45px);
  font-weight: 700;
  line-height: 1.05;
}

.about-story-content p {
  margin: 0 0 13px;
  color: #c84b33;
  font-size: 11px;
  line-height: 1.65;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-story-media {
  max-width: 430px;
  justify-self: start;
}

.about-story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 0.94;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 8px 15px rgba(69, 34, 30, 0.12);
}

.values-section {
  padding: 58px 6px 45px;
  background: #f7e5e9;
}

.values-section > h2 {
  margin: 0 0 30px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(31px, 3.3vw, 43px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

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

.value-card {
  min-height: 178px;
  padding: 17px 15px 14px;
  border: 1px solid #f0b7a7;
  border-radius: 10px;
  background: #fff9f7;
  text-align: center;
}

.value-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 15px;
  place-items: center;
  border-radius: 50%;
  background: #f8dfe6;
  color: var(--accent);
  font-size: 20px;
}

.value-card h3 {
  margin: 0 0 9px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.value-card p {
  margin: 0;
  color: #c84b33;
  font-size: 10px;
  line-height: 1.55;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 10%;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 78px 6%;
  background: #fff9f7;
}

.promise-intro {
  max-width: 330px;
}

.promise-intro h2 {
  margin: 0 0 12px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(30px, 3vw, 39px);
  font-weight: 400;
  line-height: 1.1;
}

.promise-intro p,
.promise-item p {
  margin: 0;
  color: #c84b33;
  font-size: 11px;
  line-height: 1.6;
}

.promise-list {
  display: grid;
  gap: 17px;
}

.promise-item {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.promise-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #f8dfe6;
  color: var(--accent);
  font-size: 17px;
  line-height: 1;
}

.promise-item h3 {
  margin: 0 0 3px;
  color: #181214;
  font-size: 11px;
  font-weight: 700;
}

.pastry-products-section {
  padding: 58px 6% 64px;
  background: #e8b4c7;
}

.pastry-products-section--additional {
  padding-top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.pastry-products-heading {
  margin-bottom: 31px;
  text-align: center;
}

.pastry-products-heading > p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pastry-products-heading h2 {
  margin: 0;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(32px, 3.2vw, 43px);
  font-weight: 400;
  line-height: 1.1;
}

.pastry-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.pastry-product-card {
  overflow: hidden;
  border-radius: 11px;
  background: #fff9f7;
  box-shadow: 0 5px 10px rgba(101, 42, 63, 0.08);
}

.pastry-product-image {
  height: 271px;
  position: relative;
  overflow: hidden;
}

.pastry-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pastry-product-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.pastry-product-content {
  min-height: 184px;
  padding: 14px 16px 13px;
}

.pastry-product-content h3 {
  margin: 0 0 7px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 400;
}

.pastry-product-kicker {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 8px;
}

.pastry-product-content > p:not(.pastry-product-kicker):not(.pastry-product-servings) {
  min-height: 56px;
  margin: 0;
  color: #c84b33;
  font-size: 10px;
  line-height: 1.55;
}

.pastry-product-servings {
  margin: 9px 0 12px;
  color: #c84b33;
  font-size: 9px;
}

.pastry-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #edb7ba;
}

.pastry-product-footer strong {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 400;
}

.pastry-product-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 49px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 15px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  text-decoration: none;
}

.pastry-product-footer .chat-icon {
  width: 11px;
  height: 9px;
}

.pastry-product-footer .chat-icon::after {
  bottom: -3px;
  width: 4px;
  height: 4px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 8%;
  padding: 58px 8%;
  background: #fff9f7;
}

.process-content {
  max-width: 470px;
  justify-self: end;
}

.process-kicker {
  margin: 0 0 11px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.process-content h2 {
  margin: 0 0 12px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(31px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

.process-description {
  max-width: 450px;
  margin: 0;
  color: #c84b33;
  font-size: 11px;
  line-height: 1.65;
}

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

.process-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #181214;
  font-size: 10px;
}

.process-steps span {
  width: 31px;
  color: #f1cbd5;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.process-steps strong::before {
  content: "✓";
  display: inline-grid;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid #e78ba5;
  border-radius: 50%;
  color: var(--accent);
  font-size: 8px;
}

.process-media {
  max-width: 430px;
  justify-self: start;
}

.process-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 8px 15px rgba(69, 34, 30, 0.12);
}

.faq-section {
  padding: 58px 6% 64px;
  background: #e8b4c7;
}

.faq-section h2 {
  margin: 0 0 28px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(32px, 3.2vw, 43px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 447px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-radius: 7px;
  background: #fff9f7;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  padding: 0 16px;
  cursor: pointer;
  color: #181214;
  font-size: 10px;
  list-style: none;
}

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

.faq-item summary::after {
  content: "⌄";
  color: #c84b33;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-2px);
}

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

.faq-item p {
  margin: 0;
  padding: 10px 16px 12px;
  border-top: 1px solid #f2cbd2;
  color: #c84b33;
  font-size: 10px;
  line-height: 1.55;
}

.pastry-final-cta {
  display: grid;
  min-height: 245px;
  padding: 45px 6%;
  place-items: center;
  background: var(--accent);
}

.pastry-final-cta > div {
  max-width: 600px;
  color: #fff;
  text-align: center;
}

.pastry-final-cta h2 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(32px, 3.5vw, 43px);
  font-weight: 400;
  line-height: 1.05;
}

.pastry-final-cta p {
  margin: 0 auto 21px;
  font-size: 11px;
  line-height: 1.5;
}

.pastry-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 166px;
  min-height: 33px;
  padding: 0 15px;
  border-radius: 18px;
  background: #fff;
  color: var(--accent);
  font-size: 10px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.pastry-final-cta a:hover {
  background: #fff0f4;
  transform: translateY(-1px);
}

.contact-intro {
  display: grid;
  min-height: 310px;
  padding: 55px 6%;
  place-content: center;
  background: #f7e5e9;
  text-align: center;
}

.contact-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 10px;
}

.contact-intro h1 {
  margin: 0 0 15px;
  color: #090708;
  font-family: Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 0.98;
}

.contact-intro > p:last-child {
  margin: 0;
  color: #c84b33;
  font-size: 12px;
  line-height: 1.5;
}

.contact-details-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
  padding: 48px 6% 64px;
  background: #fff9f7;
}

.whatsapp-card,
.contact-info-card {
  min-height: 226px;
  padding: 21px;
  border-radius: 11px;
}

.whatsapp-card {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 7px 14px rgba(101, 42, 63, 0.12);
}

.whatsapp-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.whatsapp-card-icon .chat-icon {
  width: 17px;
  height: 15px;
}

.whatsapp-card h2,
.contact-info-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.whatsapp-card p {
  max-width: 315px;
  margin: 0 0 18px;
  font-size: 10px;
  line-height: 1.55;
}

.whatsapp-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 127px;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 4px;
  background: #fff;
  color: var(--accent);
  font-size: 10px;
  text-decoration: none;
}

.whatsapp-card small {
  display: block;
  margin-top: 15px;
  font-size: 8px;
}

.contact-info-card {
  border: 1px solid #f0b7a7;
  background: #fff9f7;
}

.contact-info-card h2 {
  color: #181214;
}

.contact-info-card dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.contact-info-row dt {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #f8dfe6;
  color: var(--accent);
  font-size: 15px;
}

.contact-info-row dd {
  margin: 0;
  color: #181214;
  font-size: 10px;
}

.contact-info-row dd span {
  display: block;
  margin-bottom: 2px;
  color: #c84b33;
  font-size: 8px;
}

.contact-info-row a,
.contact-info-row dd p {
  margin: 0;
  color: #181214;
  font-size: 10px;
  text-decoration: none;
}

.contact-info-row a:hover {
  color: var(--accent);
}

.arrow-icon {
  font-size: 21px;
  line-height: 0;
}

.specialty-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 6.2%;
  padding: 88px 8.8%;
  background: #fff9f7;
}

.specialty-media {
  min-height: 450px;
  position: relative;
}

.specialty-media img {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center 58%;
  box-shadow: 0 18px 28px rgba(69, 34, 30, 0.14);
}

.specialty-badge {
  position: absolute;
  left: 24px;
  bottom: 23px;
  min-width: 144px;
  padding: 13px 19px 12px;
  border-radius: 15px;
  background: #fff9f7;
  color: var(--accent);
  box-shadow: 0 8px 18px rgba(69, 34, 30, 0.1);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.specialty-badge small {
  display: block;
  margin-top: 3px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.specialty-copy {
  max-width: 590px;
}

.specialty-kicker {
  margin: 0 0 25px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.specialty-copy h2 {
  margin: 0 0 22px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.specialty-description {
  margin: 0 0 23px;
  color: #c84b33;
  font-size: 15px;
  line-height: 1.8;
}

.benefits {
  display: grid;
  gap: 13px;
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #514b4b;
  font-size: 14px;
}

.benefits li::before {
  content: "✓";
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.specialty-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.specialty-action {
  min-width: 173px;
}

.specialty-action--outline {
  border: 1px solid #e78ba5;
  background: transparent;
  color: var(--accent);
}

.specialty-action--outline:hover {
  background: #fff0f4;
}

.favorites-section {
  padding: 73px 3% 7px;
  background: #e8b4c7;
}

.favorites-heading {
  margin: 0 auto 39px;
  text-align: center;
}

.favorites-kicker {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.favorites-heading h2 {
  margin: 0 0 7px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.2vw, 45px);
  font-weight: 400;
  line-height: 1.1;
}

.favorites-heading > p:last-child {
  margin: 0;
  color: #c84b33;
  font-family: Georgia, serif;
  font-size: 14px;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 13px;
  background: #fff9f7;
  box-shadow: 0 6px 12px rgba(101, 42, 63, 0.08);
}

.product-image-wrap {
  height: 327px;
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 4px 11px;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.product-content {
  min-height: 171px;
  padding: 17px 17px 14px;
}

.product-content h3 {
  margin: 0 0 5px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.product-content p {
  min-height: 48px;
  margin: 0;
  color: #c84b33;
  font-size: 11px;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.product-price {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 13px;
}

.product-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 59px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 17px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  text-decoration: none;
}

.product-order .chat-icon {
  width: 12px;
  height: 10px;
}

.product-order .chat-icon::after {
  bottom: -3px;
  width: 4px;
  height: 4px;
}

.charcuterie-section {
  padding: 0 3% 45px;
  background: #e8b4c7;
}

.charcuterie-section > .section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading .section-kicker {
  margin: 0 0 8px;
  color: #c84b33;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
}

.section-heading > p:last-child {
  margin: 0;
  color: #4e3b40;
  font-size: 13px;
  line-height: 1.6;
}

.charcuterie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.charcuterie-section .product-image-wrap {
  height: 307px;
}

.charcuterie-section .product-content p {
  min-height: 0;
  line-height: 1.55;
}

.charcuterie-section .product-footer {
  margin-top: 13px;
}

.steps-section {
  padding: 39px 6% 84px;
  border-top: 1px solid #e5a0a2;
  background: #fff9f7;
}

.steps-heading,
.testimonials-heading {
  text-align: center;
}

.steps-kicker,
.testimonials-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.steps-heading h2,
.testimonials-heading h2 {
  margin: 0;
  color: #181214;
  font-family: Georgia, serif;
  font-size: clamp(32px, 3.2vw, 43px);
  font-weight: 400;
  line-height: 1.1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  max-width: 900px;
  margin: 47px auto 0;
}

.step-item {
  color: #c84b33;
  text-align: center;
}

.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 19px;
  place-items: center;
  border-radius: 50%;
  background: #f8dfe6;
  color: var(--accent);
  font-size: 23px;
  line-height: 1;
}

.step-number {
  margin: 0 0 3px;
  color: #f1cbd5;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.step-item h3 {
  margin: 0 0 11px;
  color: #181214;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.step-item > p:last-child {
  max-width: 260px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.55;
}

.testimonials-section {
  padding: 85px 6% 42px;
  background: #e8b4c7;
}

.testimonials-heading {
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 802px;
  margin: 0 auto;
}

.testimonial-card {
  min-height: 184px;
  padding: 24px 20px 20px;
  border-radius: 12px;
  background: #fff9f7;
  box-shadow: 0 6px 12px rgba(101, 42, 63, 0.08);
}

.testimonial-rating {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  min-height: 58px;
  margin: 0 0 16px;
  color: #181214;
  font-size: 11px;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-author {
  color: #181214;
  font-size: 11px;
  font-weight: 700;
}

.testimonial-city {
  margin-top: 2px;
  color: #c84b33;
  font-size: 10px;
}

.final-cta {
  display: grid;
  min-height: 370px;
  padding: 58px 6%;
  place-items: center;
  background: var(--accent);
}

.final-cta-content {
  max-width: 560px;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(37px, 4vw, 51px);
  font-weight: 400;
  line-height: 0.98;
}

.final-cta p {
  max-width: 455px;
  margin: 0 auto 31px;
  font-size: 13px;
  line-height: 1.65;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 221px;
  min-height: 37px;
  padding: 0 19px;
  border-radius: 22px;
  background: #fff;
  color: var(--accent);
  font-size: 12px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.final-cta-button:hover {
  background: #fff0f4;
  transform: translateY(-1px);
}

.site-footer {
  color: #fff;
  background: #0b0b0b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.1fr;
  gap: 12%;
  padding: 34px 7% 35px;
}

.footer-brand-column {
  max-width: 275px;
}

.footer-brand {
  display: block;
  width: 90px;
  height: 45px;
  margin-bottom: 10px;
  background: #fff9f7;
}

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

.footer-brand-column p,
.footer-contact p {
  margin: 0;
  color: #d2c9cc;
  font-size: 10px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #2b2b2b;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

.footer-socials .chat-icon {
  width: 12px;
  height: 10px;
}

.footer-socials .chat-icon::after {
  bottom: -3px;
  width: 4px;
  height: 4px;
}

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

.footer-menu h2,
.footer-contact h2 {
  margin: 1px 0 7px;
  color: #d2c9cc;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-menu a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 10px;
  text-decoration: none;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: #e78ba5;
}

.footer-contact p {
  margin-top: 10px;
}

.footer-contact .chat-icon {
  width: 11px;
  height: 10px;
}

.footer-contact .chat-icon::after {
  bottom: -3px;
  width: 4px;
  height: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 7%;
  border-top: 1px solid #292929;
  color: #8b8587;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: #e78ba5;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 0;
    padding: 18px 6%;
    flex-wrap: wrap;
    gap: 18px;
  }

  .brand {
    width: 190px;
    height: 76px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .main-nav a {
    white-space: nowrap;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100vh - 164px);
    padding: 58px 6%;
    background-position: 57% center;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 60px);
  }

  .hero-description {
    font-size: 16px;
  }

  .pastry-hero {
    min-height: calc(100vh - 164px);
    padding: 58px 6%;
    background-position: center center;
  }

  .pastry-hero h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .pastry-hero-description {
    font-size: 13px;
  }

  .about-hero {
    min-height: calc(100vh - 164px);
    padding: 58px 6%;
  }

  .about-hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .about-hero-description {
    font-size: 13px;
  }

  .about-story-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 52px 8%;
  }

  .about-story-content,
  .about-story-media {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .values-section {
    padding: 52px 6% 42px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .value-card {
    min-height: 160px;
  }

  .promise-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 58px 8%;
  }

  .promise-intro {
    max-width: 440px;
  }

  .pastry-products-section {
    padding: 52px 6% 50px;
  }

  .pastry-products-section--additional {
    padding-top: 0;
  }

  .pastry-products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pastry-product-image {
    height: min(271px, 78vw);
  }

  .process-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 56px 8%;
  }

  .process-content,
  .process-media {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .faq-section {
    padding: 52px 6% 50px;
  }

  .faq-list {
    max-width: 520px;
  }

  .pastry-final-cta {
    min-height: 220px;
    padding: 42px 6%;
  }

  .pastry-final-cta h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .specialty-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 6%;
  }

  .specialty-media,
  .specialty-media img {
    min-height: 360px;
    height: 360px;
  }

  .specialty-copy {
    max-width: none;
  }

  .favorites-section {
    padding: 58px 6% 24px;
  }

  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-image-wrap {
    height: min(327px, 78vw);
  }

  .charcuterie-section {
    padding: 0 6% 24px;
  }

  .charcuterie-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .charcuterie-section .product-image-wrap {
    height: min(307px, 78vw);
  }

  .steps-section {
    padding: 52px 6% 64px;
  }

  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps-grid {
    margin-top: 38px;
  }

  .testimonials-section {
    padding-top: 60px;
  }

  .final-cta {
    min-height: 320px;
    padding: 52px 6%;
  }

  .final-cta h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .contact-intro {
    min-height: 270px;
    padding: 45px 6%;
  }

  .contact-intro h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .contact-details-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 6% 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 8% 32px;
  }

  .footer-brand-column {
    max-width: 300px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 15px 8%;
  }
}

@media (max-width: 420px) {
  .floating-socials {
    top: 50%;
    left: 12px;
    gap: 8px;
  }

  .floating-socials a {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  .brand {
    width: 164px;
    height: 66px;
  }

  .order-button {
    min-width: 112px;
    padding: 0 13px;
    font-size: 12px;
  }

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

  .hero-button {
    width: min(100%, 230px);
  }

  .specialty-section {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .specialty-media,
  .specialty-media img {
    min-height: 300px;
    height: 300px;
    border-radius: 16px;
  }

  .specialty-copy h2 {
    font-size: 40px;
  }

  .specialty-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .specialty-action {
    width: 100%;
  }

  .favorites-section {
    padding-right: 5%;
    padding-left: 5%;
  }

  .product-content {
    min-height: 0;
  }

  .charcuterie-section {
    padding-right: 5%;
    padding-left: 5%;
  }
}