:root {
  --cream: #fff6df;
  --butter: #ffe9b6;
  --peach: #f6b29c;
  --rose: #d7595d;
  --cocoa: #8a3f27;
  --chocolate: #4a2118;
  --ink: #2b1712;
  --muted: #775d54;
  --white: #fffdf8;
  --line: rgba(74, 33, 24, 0.16);
  --shadow: 0 20px 50px rgba(74, 33, 24, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(246, 178, 156, 0.2), transparent 34%),
    radial-gradient(circle at 80% 8%, rgba(215, 89, 93, 0.12), transparent 24%),
    repeating-linear-gradient(115deg, rgba(138, 63, 39, 0.035) 0 2px, transparent 2px 18px);
  content: "";
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  padding: 12px clamp(18px, 5vw, 70px);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 128px;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--cocoa);
}

.button,
.nav-order,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.primary,
.nav-order {
  background: var(--cocoa);
  color: var(--white);
}

.primary:hover,
.nav-order:hover {
  background: var(--chocolate);
}

.secondary,
.outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--cocoa);
}

.compact {
  min-height: 40px;
  font-size: 14px;
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(34px, 7vw, 86px) clamp(18px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 10px;
  color: #b96717;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--cocoa);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
}

h2 {
  color: var(--chocolate);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}

h3 {
  color: var(--cocoa);
  font-size: 24px;
}

.hero-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.trust-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 26px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--chocolate);
  font-size: 14px;
  font-weight: 850;
  padding: 8px 13px;
}

.hero-media {
  position: relative;
  min-height: 530px;
}

.hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: min(54%, 330px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
}

.hero-cake {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(82%, 520px);
  aspect-ratio: 4 / 5;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.quick-order-strip,
.section,
.site-footer {
  margin-inline: clamp(18px, 5vw, 70px);
}

.quick-order-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px;
}

.quick-order-strip span {
  color: var(--muted);
}

.section {
  padding-block: clamp(58px, 8vw, 104px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p,
.custom-copy > p,
.proof-section p,
.faq-list p,
.site-footer p,
.form-note {
  color: var(--muted);
}

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

.menu-panel,
.order-form,
.proof-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 34px rgba(74, 33, 24, 0.08);
}

.menu-panel {
  padding: 22px;
}

.menu-panel.wide {
  grid-column: span 2;
}

.menu-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.menu-image-wrap {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-image-wrap img {
  width: 100%;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.process {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.process div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 2px 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.process span {
  grid-row: span 2;
  color: var(--rose);
  font-weight: 950;
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--chocolate);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

textarea {
  resize: vertical;
}

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

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(74, 33, 24, 0.11);
}

figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

figcaption {
  color: var(--chocolate);
  font-weight: 900;
  padding: 14px;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  padding: 20px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 32px 0 92px;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  max-width: 520px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--cocoa);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 157, 85, 0.28);
  font-weight: 950;
  padding: 0 18px;
}

@media (max-width: 1060px) {
  .hero,
  .custom-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 460px;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-panel.wide {
    grid-column: span 2;
  }
}

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

  .brand img {
    width: 108px;
  }

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

  .nav-order {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-logo {
    width: 52%;
  }

  .hero-cake {
    width: 86%;
  }

  .quick-order-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .menu-panel.wide {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 50px;
  }

  .hero-actions .button,
  .quick-order-strip .button {
    width: 100%;
  }
}
