:root {
  --cocoa-950: #23130f;
  --cocoa-900: #321b15;
  --cocoa-800: #4a2920;
  --cocoa-700: #684033;
  --terracotta-600: #a64f34;
  --terracotta-500: #bd6445;
  --gold-500: #c79245;
  --cream-50: #fffdf8;
  --cream-100: #fbf5e9;
  --cream-200: #f2e7d4;
  --rose-100: #f4e1da;
  --ink: #2b1c18;
  --muted-ink: #735f57;
  --white: #fff;
  --success: #427052;
  --danger: #a43f35;
  --border: rgba(74, 41, 32, 0.14);
  --shadow-sm: 0 8px 24px rgba(50, 27, 21, 0.08);
  --shadow-md: 0 22px 60px rgba(50, 27, 21, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --content: min(1180px, calc(100% - 40px));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 225, 218, 0.65), transparent 28rem),
    var(--cream-50);
  font-family: "Karla", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--cocoa-950);
  font-family: "Calistoga", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1,
.section-title h2,
.passion h2,
.contact-main h2,
.team-copy h3,
.menu-hero h1,
.menu-category-heading h2,
.cart-drawer-header h2 {
  font-family: "Calistoga", Georgia, serif;
}

p {
  text-wrap: pretty;
}

a,
button,
input,
select {
  font: inherit;
}

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--cocoa-950);
  border-radius: var(--radius-pill);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--cocoa-950);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.nav {
  width: var(--content);
  min-height: 84px;
  margin: auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 154px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 140px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.menu a {
  position: relative;
  padding: 12px 0;
  color: var(--cocoa-800);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.cart-open-button,
.btn,
.add-to-cart,
.cart-checkout-button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.cart-open-button {
  padding: 11px 12px 11px 20px;
  color: var(--white);
  background: var(--cocoa-900);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-open-button span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  place-items: center;
  color: var(--cocoa-950);
  background: var(--cream-100);
  border-radius: 50%;
}

.cart-open-button:hover,
.btn:hover,
.add-to-cart:hover:not(:disabled),
.cart-checkout-button:hover {
  box-shadow: 0 12px 30px rgba(50, 27, 21, 0.2);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 120px));
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--cocoa-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(35, 19, 15, 0.95) 0%, rgba(35, 19, 15, 0.76) 42%, rgba(35, 19, 15, 0.15) 72%),
    linear-gradient(0deg, rgba(35, 19, 15, 0.58), transparent 50%),
    url("assets/hero-banner.webp") center 46% / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  z-index: -1;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.025),
    0 0 0 108px rgba(255, 255, 255, 0.02);
}

.hero-content {
  width: var(--content);
  max-width: none;
  margin: 0 auto;
  padding: clamp(96px, 13vw, 170px) 0 clamp(64px, 8vw, 104px);
}

.hero .kicker {
  color: #f1c88a;
}

.kicker {
  margin: 0 0 16px;
  color: var(--terracotta-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(52px, 7vw, 96px);
  text-align: left;
}

.hero-content > p:not(.kicker) {
  max-width: 610px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  color: var(--white);
  background: var(--terracotta-600);
}

.btn-primary:hover {
  background: var(--terracotta-500);
}

.btn-light {
  color: var(--cocoa-950);
  background: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.hero-proof span {
  display: grid;
}

.hero-proof strong {
  color: var(--white);
  font-size: 16px;
}

.trust-strip {
  width: var(--content);
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.trust-strip > div {
  min-height: 116px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  column-gap: 14px;
}

.trust-strip > div + div {
  border-left: 1px solid var(--border);
}

.trust-strip span {
  grid-row: span 2;
  color: var(--gold-500);
  font-family: "Calistoga", serif;
  font-size: 28px;
}

.trust-strip strong {
  color: var(--cocoa-900);
  font-size: 16px;
}

.trust-strip small {
  color: var(--muted-ink);
  font-size: 14px;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 140px) 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-title > div,
.section-title.compact {
  max-width: 720px;
}

.section-title h2,
.passion h2,
.contact-main h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 62px);
}

.section-title p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-ink);
}

.ornament,
.mini-logo {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-500);
  font-size: 26px;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card > div {
  padding: 22px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-family: "Karla", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.product-card p {
  margin: 0 0 10px;
  color: var(--muted-ink);
  font-size: 14px;
}

.product-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--terracotta-600);
  font-size: 17px;
}

.variation-field {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  color: var(--cocoa-800);
  font-size: 13px;
  font-weight: 700;
}

.variation-field select,
.menu-search-field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.variation-field select:focus,
.menu-search-field input:focus {
  border-color: var(--terracotta-500);
}

.add-to-cart {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--cocoa-900);
  font-weight: 700;
}

.add-to-cart:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.passion {
  width: var(--content);
  margin: 0 auto clamp(90px, 10vw, 140px);
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  color: var(--white);
  background: var(--cocoa-900);
  border-radius: var(--radius-lg);
}

.passion-image {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
}

.passion-image img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.passion h2 {
  color: var(--white);
}

.passion-copy > p:not(.kicker) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
}

.passion .btn {
  margin-top: 14px;
}

.feature-grid {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-grid div {
  min-height: 100px;
  padding: 24px 18px 8px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  align-content: center;
  gap: 4px;
  text-align: center;
}

.feature-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-grid span {
  color: #e8b976;
  font-family: "Calistoga", serif;
  font-size: 20px;
}

.feature-grid strong {
  display: flex;
  min-height: 2.5em;
  align-items: flex-start;
  justify-content: center;
  font-size: 15px;
  line-height: 1.25;
}

.team-section {
  padding-top: 20px;
}

.section-title.compact {
  display: block;
  margin-bottom: 56px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  padding: clamp(24px, 3vw, 40px);
}

.team-card + .team-card {
  margin-top: 50px;
}

.team-card.reverse .team-photo {
  order: 2;
}

.team-card.reverse {
  grid-template-columns: 1.22fr minmax(300px, 0.78fr);
}

.team-photo {
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.team-copy {
  max-width: 670px;
}

.team-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
}

.team-copy p:not(.kicker) {
  color: var(--muted-ink);
}

.contact-section {
  width: var(--content);
  margin: 0 auto clamp(80px, 10vw, 130px);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
}

.contact-card {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-md);
}

.contact-main {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 146, 69, 0.16), transparent 42%),
    var(--cocoa-900);
}

.contact-main h2 {
  color: var(--white);
}

.contact-main > p:not(.kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-main .kicker {
  color: #e8b976;
}

.contact-main .btn-primary {
  color: var(--cocoa-950);
  background: var(--cream-50);
}

.contact-main .btn-light {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-details {
  background: var(--cream-100);
  border: 1px solid var(--border);
}

.contact-details h3 {
  font-size: 28px;
}

.contact-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: grid;
  gap: 2px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.contact-details span,
.contact-details a {
  color: var(--muted-ink);
}

.contact-quote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  min-height: 170px;
  color: var(--white);
  text-align: left;
  background:
    radial-gradient(circle at 92% 18%, rgba(199, 146, 69, 0.2), transparent 28%),
    var(--cocoa-950);
}

.contact-quote p {
  margin: 0;
  color: var(--cream-50);
  font-family: "Calistoga", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  font-weight: 400;
}

.contact-quote span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.contact-quote a {
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 20px;
  border: 0;
  color: var(--cocoa-950);
  background: var(--cream-100);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer {
  padding: 70px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.75fr);
  gap: 50px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--cocoa-950);
}

.footer img {
  width: 150px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-cta {
  margin-top: 18px !important;
  color: #f0c784 !important;
  font-weight: 700;
}

.copyright {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.48);
  background: #1b0e0b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  text-align: center;
}

/* Cardápio */
.menu-page {
  width: var(--content);
  margin: 0 auto;
  padding-bottom: 110px;
}

.menu-hero {
  position: relative;
  overflow: hidden;
  margin: 34px 0 24px;
  padding: clamp(48px, 8vw, 94px);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(35, 19, 15, 0.97), rgba(35, 19, 15, 0.72)),
    url("assets/bolo-red-velvt-recheado.webp") center / cover;
  border-radius: var(--radius-lg);
}

.menu-hero > div {
  max-width: 720px;
}

.menu-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(44px, 6vw, 76px);
}

.menu-hero p:not(.kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.menu-category-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  background: rgba(255, 253, 248, 0.94);
  scrollbar-width: none;
  backdrop-filter: blur(16px);
}

.menu-category-nav::-webkit-scrollbar {
  display: none;
}

.menu-category-nav a,
.menu-loading-pill {
  min-height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 9px 16px;
  color: var(--cocoa-800);
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.menu-category-nav a:hover {
  color: var(--white);
  background: var(--cocoa-900);
}

.menu-search-panel {
  margin: 18px 0 70px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.menu-search-field {
  display: grid;
  gap: 8px;
  color: var(--cocoa-800);
  font-size: 14px;
  font-weight: 700;
}

.menu-search-panel p {
  margin: 0 0 12px;
  color: var(--muted-ink);
}

.menu-feedback {
  margin-bottom: 24px;
  padding: 16px 20px;
  color: var(--cocoa-800);
  background: var(--cream-100);
  border-radius: var(--radius-sm);
}

.menu-feedback:empty,
.menu-feedback[hidden] {
  display: none;
}

.menu-category {
  padding: 0 0 82px;
  scroll-margin-top: 88px;
}

.menu-category-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.menu-category-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
}

.menu-category-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--muted-ink);
}

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

.menu-item {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.menu-item:hover {
  border-color: rgba(166, 79, 52, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-item-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.menu-item-head h3 {
  margin-bottom: 12px;
  font-family: "Karla", sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.menu-item-head span {
  padding: 5px 9px;
  color: var(--success);
  background: rgba(66, 112, 82, 0.1);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-desc,
.menu-full,
.menu-meta {
  color: var(--muted-ink);
  font-size: 14px;
}

.menu-full {
  display: none;
}

.menu-price {
  margin: 18px 0 12px;
  color: var(--terracotta-600);
  font-size: 19px;
  font-weight: 700;
}

.variation-list {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.variation-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: var(--muted-ink);
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}

.variation-list strong {
  color: var(--cocoa-900);
}

.menu-option-group {
  display: grid;
  margin: 10px 0;
  padding: 12px 14px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.menu-option-group span {
  color: var(--muted-ink);
}

.variation-warning {
  display: block;
  margin: -6px 0 10px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}

.is-invalid {
  border-color: var(--danger) !important;
}

.menu-empty-state {
  padding: 70px 30px;
  text-align: center;
  background: var(--cream-100);
  border-radius: var(--radius-md);
}

/* Carrinho */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(27, 14, 11, 0.56);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(470px, 100%);
  height: 100dvh;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--cream-50);
  border-left: 1px solid var(--border);
  border-radius: 28px 0 0 28px;
  box-shadow: -20px 0 60px rgba(35, 19, 15, 0.24);
  transform: translateX(104%);
  transition: transform 280ms ease-out;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 22px;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 34px;
}

.cart-close-button {
  width: 48px;
  height: 48px;
  color: var(--cocoa-900);
  background: var(--cream-200);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 2px;
  gap: 14px;
}

.cart-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.cart-item h3 {
  margin-bottom: 8px;
  color: var(--cocoa-950);
  font-size: 20px;
}

.cart-item p {
  color: var(--muted-ink);
}

.cart-item-actions,
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-actions {
  justify-content: space-between;
}

.cart-qty button {
  width: 38px;
  height: 38px;
  color: var(--cocoa-900);
  background: var(--cream-200);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.cart-qty {
  padding: 4px;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.cart-remove,
.cart-clear-button {
  min-height: 44px;
  color: var(--danger);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.cart-empty {
  display: none;
  margin: auto;
  gap: 6px;
  padding: 32px 20px;
  color: var(--muted-ink);
  text-align: center;
}

.cart-empty.show {
  display: grid;
}

.cart-footer {
  padding: 20px;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-checkout-button {
  width: 100%;
  padding: 13px 18px;
  color: var(--white);
  background: var(--cocoa-900);
  font-weight: 700;
}

.cart-clear-button {
  width: 100%;
  margin-top: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
}

@media (max-width: 1024px) {
  .nav {
    grid-template-columns: 140px auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    color: var(--cocoa-900);
    background: var(--cream-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 700;
  }

  .menu {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    align-items: stretch;
    background: var(--cream-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .menu.open {
    display: grid;
  }

  .menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }

  .cart-open-button {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100% - 28px, 1180px);
  }

  .topbar span {
    display: none;
  }

  .nav {
    min-height: 74px;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .brand img {
    width: 112px;
    height: 52px;
  }

  .cart-open-button {
    width: 48px;
    padding: 0;
    color: transparent;
    font-size: 0;
  }

  .cart-open-button::before {
    content: "Sacola";
    color: var(--white);
    font-size: 0;
  }

  .cart-open-button span {
    width: 30px;
    height: 30px;
    margin: auto;
    color: var(--cocoa-950);
    font-size: 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-bg {
    background:
      linear-gradient(0deg, rgba(35, 19, 15, 0.96) 0%, rgba(35, 19, 15, 0.62) 66%, rgba(35, 19, 15, 0.18)),
      url("assets/hero-banner.webp") 62% center / cover no-repeat;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .trust-strip {
    margin-top: 14px;
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    min-height: 92px;
  }

  .trust-strip > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-title {
    display: grid;
    align-items: start;
  }

  .section-title .btn {
    width: 100%;
  }

  .product-row,
  .feature-grid,
  .contact-section,
  .menu-list,
  .menu-search-panel,
  .menu-category-heading {
    grid-template-columns: 1fr;
  }

  .product-card > img {
    aspect-ratio: 16 / 11;
  }

  .passion {
    padding: 14px 14px 30px;
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .passion-image img {
    min-height: 360px;
  }

  .passion-copy {
    padding: 14px;
  }

  .feature-grid {
    padding: 0 14px;
  }

  .feature-grid div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .team-card,
  .team-card.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-card.reverse .team-photo {
    order: 0;
  }

  .team-photo {
    max-width: 420px;
  }

  .contact-quote {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    min-height: 0;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-page {
    width: 100%;
  }

  .menu-hero,
  .menu-search-panel,
  .menu-category,
  .menu-feedback {
    margin-right: 14px;
    margin-left: 14px;
  }

  .menu-hero {
    padding: 46px 26px;
    border-radius: var(--radius-md);
  }

  .menu-category-nav {
    padding-right: 14px;
    padding-left: 14px;
  }

  .menu-search-panel {
    margin-bottom: 50px;
  }

  .cart-drawer {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
