@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap");

:root {
  --pink: #f3e1df;
  --cream: #fff8f0;
  --peach: #f2c6b4;
  --vanilla: #f9eedc;
  --cherry: #8e2635;
  --cherry-dark: #6f1d2a;
  --chocolate: #4a2924;
  --espresso: #30201d;
  --sage: #36564a;
  --apricot: #e87945;
  --muted: #6f625e;
  --line: #dfc8c5;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(74, 41, 36, 0.1);
  --radius: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--pink);
  color: var(--espresso);
  font-family: "DM Sans", sans-serif;
  overflow-wrap: anywhere;
}
body.is-modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 4rem));
  margin-inline: auto;
}
.section {
  padding: 7rem 0;
}
.section--cream {
  background: var(--cream);
}
.section--vanilla {
  background: var(--vanilla);
}
.section__head {
  max-width: 680px;
  margin-bottom: 3rem;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow,
.label {
  color: var(--cherry);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}
h1,
h2,
h3,
h4 {
  color: var(--chocolate);
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.75rem;
}
p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}
.text-link {
  color: var(--cherry);
  font-weight: 700;
}
.text-link:hover {
  color: var(--cherry-dark);
}

.button {
  align-items: center;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 0.7rem;
  justify-content: center;
  letter-spacing: 0.02em;
  padding: 1rem 1.35rem;
  transition: 0.3s ease;
}
.button--primary {
  background: var(--cherry);
  box-shadow: 0 10px 24px rgba(142, 38, 53, 0.18);
  color: var(--white);
}
.button--primary:hover {
  background: var(--cherry-dark);
  box-shadow: 0 14px 28px rgba(142, 38, 53, 0.25);
  transform: translateY(-2px);
}
.button--secondary {
  border: 1px solid var(--chocolate);
  color: var(--chocolate);
}
.button--secondary:hover {
  background: var(--chocolate);
  color: var(--white);
  transform: translateY(-2px);
}
.button--light {
  background: var(--white);
  color: var(--cherry);
}
.button--light:hover {
  background: var(--vanilla);
  transform: translateY(-2px);
}
.button--wide {
  width: 100%;
}

.site-header {
  background: var(--pink);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .brand__logo {
  width: 115px;
}
.header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 84px;
}
.brand {
  align-items: center;
  color: var(--chocolate);
  display: inline-flex;
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  gap: 0.7rem;
}
.brand__logo {
  height: 42px;
  object-fit: contain;
  width: 42px;
}
.header__nav {
  align-items: center;
  display: flex;
  gap: 1.65rem;
}
.nav__link {
  color: var(--chocolate);
  font-size: 0.84rem;
  font-weight: 700;
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--cherry);
}
.header__menu {
  background: transparent;
  border: 0;
  color: var(--chocolate);
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
}

.hero {
  min-height: 670px;
  overflow: hidden;
  position: relative;
}
.hero__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}
.hero::after {
  background: linear-gradient(
    90deg,
    rgba(48, 32, 29, 0.72),
    rgba(48, 32, 29, 0.12)
  );
  content: "";
  inset: 0;
  position: absolute;
}
.hero__content {
  align-items: center;
  display: flex;
  min-height: 670px;
  position: relative;
  z-index: 1;
}
.hero__copy {
  max-width: 690px;
}
.hero h1,
.hero p {
  color: var(--white);
}
.hero__copy p {
  margin: 1.6rem 0 2rem;
  max-width: 550px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__label {
  color: var(--peach);
}

.page-hero {
  padding: 5.5rem 0 4.5rem;
}
.page-hero__inner {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.page-hero__copy {
  max-width: 690px;
}
.page-hero__copy p {
  margin-top: 1.4rem;
  max-width: 600px;
}
.page-hero__note {
  color: var(--cherry);
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  max-width: 240px;
}

.card-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(4, 1fr);
}
.product-card,
.category-card,
.info-card,
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.product-card {
  overflow: hidden;
  transition: 0.3s ease;
}
.product-card:hover {
  border-color: var(--cherry);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.product-card__image {
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.product-card:hover .product-card__image {
  transform: scale(1.04);
}
.product-card__body {
  padding: 1.35rem;
}
.product-card__top {
  align-items: start;
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
}
.product-card h3 {
  font-size: 1.45rem;
}
.product-card p {
  font-size: 0.9rem;
  margin: 0.6rem 0 1rem;
}
.price {
  color: var(--cherry);
  font-weight: 700;
  white-space: nowrap;
}
.card-link {
  align-items: center;
  color: var(--cherry);
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: space-between;
}
.badge {
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  text-transform: uppercase;
}
.badge--cherry {
  background: var(--cherry);
}
.badge--sage {
  background: var(--sage);
}
.badge--apricot {
  background: var(--apricot);
}
.badge--dark {
  background: var(--chocolate);
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  padding: 1.7rem;
}
.info-card__icon {
  color: var(--cherry);
  font-size: 1.75rem;
  margin-bottom: 1.2rem;
}
.info-card h3 {
  font-size: 1.4rem;
}
.info-card p {
  font-size: 0.92rem;
  margin-top: 0.7rem;
}
.editorial {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: 1fr 1fr;
}
.editorial--reverse .editorial__image {
  order: 2;
}
.editorial__image {
  border-radius: 36px;
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}
.editorial__copy p {
  margin: 1.3rem 0 1.8rem;
}
.editorial__copy ul,
.check-list {
  color: var(--muted);
  line-height: 2;
  list-style: none;
  margin: 1.4rem 0 2rem;
  padding: 0;
}
.editorial__copy li::before,
.check-list li::before {
  color: var(--cherry);
  content: "✦";
  margin-right: 0.7rem;
}
.category-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.category-card {
  overflow: hidden;
  transition: 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card__image {
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  width: 100%;
}
.category-card__body {
  padding: 1.15rem;
}
.category-card h3 {
  font-size: 1.3rem;
}
.category-card p {
  font-size: 0.83rem;
  margin: 0.45rem 0 0.8rem;
}
.mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 220px 220px;
}
.mosaic img {
  border-radius: 24px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mosaic img:first-child {
  grid-row: span 2;
}
.facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.fact {
  border-right: 1px solid var(--line);
  padding: 0.5rem 1rem;
}
.fact:last-child {
  border: 0;
}
.fact strong {
  color: var(--chocolate);
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  font-weight: 400;
}
.fact span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.4rem;
}
.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.review-card {
  padding: 1.7rem;
}
.review-card__stars {
  color: var(--apricot);
  letter-spacing: 0.15em;
}
.review-card p {
  font-size: 0.95rem;
  margin: 1rem 0 1.3rem;
}
.review-card strong {
  color: var(--chocolate);
  font-size: 0.9rem;
}
.cta {
  background: var(--cherry);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.cta h2,
.cta p {
  color: var(--white);
}
.cta__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.cta__copy {
  max-width: 650px;
}
.cta__copy p {
  margin-top: 1rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.values {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.value {
  border-top: 2px solid var(--cherry);
  padding-top: 1.4rem;
}
.value h3 {
  margin-bottom: 0.6rem;
}
.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.process-card {
  position: relative;
}
.process-card img {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}
.process-card h3 {
  font-size: 1.2rem;
  margin-top: 0.8rem;
}
.process-card span {
  color: var(--cherry);
  font-weight: 700;
}

.menu-section__title {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.7rem;
  padding-bottom: 1rem;
}
.menu-section__title h2 {
  font-size: 2.4rem;
}
.menu-section__title p {
  font-size: 0.88rem;
  max-width: 380px;
  text-align: right;
}
.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.menu-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 120px 1fr auto;
  padding: 1rem 0;
}
.menu-item img {
  border-radius: 16px;
  height: 100px;
  object-fit: cover;
  width: 120px;
}
.menu-item h3 {
  font-size: 1.3rem;
}
.menu-item p {
  font-size: 0.84rem;
  margin-top: 0.35rem;
}
.menu-item__price {
  color: var(--cherry);
  font-weight: 700;
}
.accent-panel {
  background: var(--sage);
  border-radius: 32px;
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
}
.accent-panel h2,
.accent-panel p {
  color: var(--white);
}
.accent-panel p {
  margin: 1rem 0 1.5rem;
  max-width: 620px;
}

.order-grid,
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.85fr 1.15fr;
}
.order-grid__copy > p {
  margin: 1rem 0 2rem;
}
.order-types {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}
.order-type {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.order-type img {
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  width: 100%;
}
.order-type h3 {
  font-size: 1.2rem;
  padding: 0.9rem 1rem;
}
.timeline {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.timeline__item {
  display: grid;
  gap: 1rem;
  grid-template-columns: 42px 1fr;
}
.timeline__number {
  align-items: center;
  background: var(--cherry);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.timeline h3 {
  font-size: 1.25rem;
}
.timeline p {
  font-size: 0.88rem;
  margin-top: 0.2rem;
}
.form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2.6rem);
}
.form__heading {
  margin-bottom: 1.5rem;
}
.form__heading h2 {
  font-size: 2.3rem;
}
.form__heading p {
  margin-top: 0.5rem;
}
.form__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  color: var(--chocolate);
  font-size: 0.8rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--espresso);
  outline: 0;
  padding: 0.9rem 1rem;
  width: 100%;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cherry);
  box-shadow: 0 0 0 3px rgba(142, 38, 53, 0.1);
}
.contact-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.contact-list__item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.contact-list__item span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.contact-list__item strong,
.contact-list__item a {
  color: var(--chocolate);
  font-size: 1.05rem;
}
.map {
  border: 0;
  border-radius: 28px;
  filter: saturate(0.75);
  height: 380px;
  width: 100%;
}
.policy {
  background: var(--cream);
  border-radius: 28px;
  padding: clamp(1.5rem, 5vw, 4rem);
}
.policy h2 {
  font-size: 2rem;
  margin: 2.3rem 0 0.7rem;
}
.policy h2:first-child {
  margin-top: 0;
}
.policy p,
.policy li {
  font-size: 0.96rem;
}
.policy ol {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1.2rem;
}
.policy li {
  margin: 0.8rem 0;
  padding-left: 0.4rem;
}

.site-footer {
  background: var(--espresso);
  color: var(--white);
  padding: 4.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.site-footer .brand,
.site-footer h3 {
  color: var(--white);
}
.footer__intro p {
  color: #d6c4bf;
  margin-top: 1rem;
  max-width: 300px;
}
.site-footer h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__links {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer__links a,
.footer__links span {
  color: #d6c4bf;
  font-size: 0.88rem;
}
.footer__links a:hover {
  color: var(--peach);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #aa9690;
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.2rem;
}
.footer__legal {
  display: flex;
  gap: 1rem;
}
.modal {
  align-items: center;
  background: rgba(48, 32, 29, 0.6);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 50;
}
.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.modal__box {
  background: var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 430px;
  padding: 2.2rem;
  position: relative;
  text-align: center;
  transform: translateY(15px);
  transition: transform 0.25s ease;
}
.modal.is-visible .modal__box {
  transform: translateY(0);
}
.modal__icon {
  align-items: center;
  background: var(--peach);
  border-radius: 50%;
  color: var(--cherry);
  display: flex;
  font-size: 1.5rem;
  height: 55px;
  justify-content: center;
  margin: 0 auto 1.2rem;
  width: 55px;
}
.modal h2 {
  font-size: 2rem;
}
.modal p {
  margin: 0.7rem 0 1.5rem;
}
.modal__close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.4rem;
  position: absolute;
  right: 1rem;
  top: 0.8rem;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .card-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .editorial {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 2rem);
  }
  .section {
    padding-block: 3rem;
  }
  .header__inner {
    min-height: 72px;
  }
  .header__menu {
    display: block;
  }
  .header__nav {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1rem;
    position: absolute;
    top: 72px;
    width: 100%;
  }
  .header__nav.is-open {
    display: flex;
  }
  .brand {
    font-size: 1.45rem;
  }
  .brand__logo {
    height: 35px;
    width: 35px;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
  }
  .hero,
  .hero__content {
    min-height: 620px;
  }
  .hero__content {
    align-items: end;
    padding-bottom: 4rem;
  }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 250px;
  }
  .page-hero {
    padding-block: 3rem;
  }
  .page-hero__inner,
  .cta__inner {
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
  }
  .page-hero__note {
    max-width: 100%;
  }
  .card-grid,
  .feature-grid,
  .review-grid,
  .values,
  .process-grid,
  .menu-grid,
  .order-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact:nth-child(2) {
    border: 0;
  }
  .fact {
    padding-block: 1rem;
  }
  .editorial,
  .editorial--reverse {
    grid-template-columns: 1fr;
  }
  .editorial--reverse .editorial__image {
    order: 0;
  }
  .editorial__image {
    max-height: 420px;
  }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .mosaic img:first-child {
    grid-row: span 2;
  }
  .menu-section__title {
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .menu-section__title p {
    text-align: left;
  }
  .menu-item {
    grid-template-columns: 85px 1fr auto;
  }
  .menu-item img {
    height: 80px;
    width: 85px;
  }
  .menu-item h3 {
    font-size: 1.1rem;
  }
  .order-types {
    grid-template-columns: 1fr 1fr;
  }
  .form__grid {
    grid-template-columns: 1fr;
  }
  .field--full {
    grid-column: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__intro {
    grid-column: 1 / -1;
  }
  .footer__bottom {
    align-items: start;
    flex-direction: column;
    gap: 0.7rem;
  }
  .footer__legal {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
