* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #34221a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #f0ded0;
  backdrop-filter: blur(12px);
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #c45a2d, #ef9b57, #7d3b25);
  box-shadow: 0 12px 28px rgba(196, 90, 45, .25);
  font-size: 1.35rem;
}

.brand-text {
  font-size: 1.25rem;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #5d3a2a;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #d66a35;
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff3ec;
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #7d3b25;
  margin: 5px auto;
}

.hero {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 42px auto 0;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
  padding: 58px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 223, 181, .82), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(255, 184, 149, .48), transparent 30%),
    linear-gradient(135deg, #fffaf6, #ffffff 52%, #fff3ec);
  overflow: hidden;
  border: 1px solid #f5dfd2;
  box-shadow: 0 24px 70px rgba(122, 67, 39, .12);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  opacity: .26;
  filter: blur(1px);
}

.shape-one {
  width: 230px;
  height: 230px;
  right: -75px;
  bottom: -65px;
  background: #ef9b57;
}

.shape-two {
  width: 150px;
  height: 150px;
  left: 46%;
  top: -60px;
  background: #a8432e;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff0e7;
  color: #a8432e;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .76rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: .9;
  color: #7d3b25;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #2f1f18;
  max-width: 780px;
  margin-bottom: 20px;
}

.hero h2 span {
  color: #c45a2d;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #694839;
  max-width: 660px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #b64a28, #e88444);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(182, 74, 40, .28);
}

.btn-secondary {
  color: #8f4126;
  background: #ffffff;
  border: 1px solid #efcfbd;
}

.hero-card {
  background: rgba(255,255,255,.86);
  border: 1px solid #f2d6c6;
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(122, 67, 39, .12);
  text-align: center;
}

.cake-illustration {
  width: 100%;
  height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.plate {
  position: absolute;
  bottom: 34px;
  width: 240px;
  height: 36px;
  background: #fff2e8;
  border: 2px solid #f1c5ad;
  border-radius: 999px;
  box-shadow: inset 0 0 20px rgba(196, 90, 45, .12);
}

.glass-dessert {
  position: relative;
  width: 142px;
  height: 185px;
  border-radius: 22px 22px 34px 34px;
  background: linear-gradient(to bottom, #fff7ef 0 16%, #e98b49 16% 40%, #ffe3c6 40% 62%, #9c3f2b 62% 80%, #ffe9c8 80% 100%);
  box-shadow: 0 22px 38px rgba(122, 67, 39, .16);
  border: 5px solid rgba(255, 255, 255, .75);
}

.cream {
  position: absolute;
  top: -40px;
  left: 24px;
  width: 96px;
  height: 70px;
  background: #fffdf8;
  border-radius: 50% 50% 42% 42%;
  box-shadow: 0 8px 18px rgba(122, 67, 39, .12);
}

.fruit-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #c94c31;
}

.dot-one { top: 54px; left: 35px; }
.dot-two { top: 92px; right: 28px; background: #f1b04d; }
.dot-three { bottom: 42px; left: 58px; background: #7d3b25; }

.hero-card h3 {
  font-size: 1.45rem;
  color: #7d3b25;
  margin-bottom: 8px;
}

.hero-card p {
  color: #684737;
}

.section {
  width: min(1080px, calc(100% - 32px));
  margin: 82px auto;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2,
.highlight h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #2f1f18;
}

.intro {
  text-align: center;
}

.intro-text {
  max-width: 880px;
  margin: auto;
  font-size: 1.15rem;
  color: #674536;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 245px;
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #f1ded2;
  box-shadow: 0 18px 42px rgba(122, 67, 39, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(122, 67, 39, .13);
}

.product-card.featured {
  background: linear-gradient(145deg, #fff8f1, #fff);
  border-color: #efc4ad;
}

.product-card.wide {
  grid-column: span 4;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff0e7;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.product-card h3 {
  color: #7d3b25;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.product-card p {
  color: #684737;
}

.highlight {
  width: min(1160px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  padding: 46px;
  border-radius: 36px;
  background: linear-gradient(135deg, #fff8f1, #ffffff);
  border: 1px solid #f1ded2;
  box-shadow: 0 24px 58px rgba(122, 67, 39, .08);
}

.highlight p {
  color: #684737;
  font-size: 1.08rem;
  margin-top: 14px;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-cards div {
  padding: 24px 18px;
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 24px;
  color: #7d3b25;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid #f1d7c8;
}

.location {
  text-align: center;
  padding: 44px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 155, 87, .2), transparent 30%),
    #fffaf6;
  border: 1px solid #f1ded2;
}

.location p {
  color: #684737;
  font-size: 1.1rem;
}

.contact {
  margin-bottom: 54px;
}

.contact-card {
  text-align: center;
  padding: 54px 24px;
  border-radius: 38px;
  background: linear-gradient(135deg, #7d3b25, #c45a2d);
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(122, 67, 39, .22);
}

.contact-card .eyebrow {
  color: #7d3b25;
  background: #fff2e9;
}

.contact-card h2,
.contact-card p {
  color: #ffffff;
}

.contact-card p {
  margin: 12px auto 24px;
  max-width: 620px;
}

.contact-card .btn-primary {
  background: #ffffff;
  color: #9a3f25;
}

footer {
  text-align: center;
  padding: 30px 16px;
  color: #684737;
  border-top: 1px solid #f1ded2;
  background: #fffaf6;
}

@media (max-width: 900px) {
  .hero,
  .highlight {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .hero {
    min-height: auto;
  }

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

  .product-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .navbar {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #f1ded2;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(122, 67, 39, .12);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    margin-top: 20px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-grid,
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .product-card.wide {
    grid-column: span 1;
  }

  .section {
    margin: 58px auto;
  }
}
