/* =========================================================
   Zuzunely · Dia dos Namorados — folha de estilo principal
   ========================================================= */

:root {
  /* paleta padrão — Terracota & Brie */
  --bg: #f1e7d9;
  --bg-2: #ead8c1;
  --paper: #f8f0e3;
  --ink: #2a1810;
  --ink-soft: #5a4032;
  --accent: #b04b3a;
  --accent-deep: #7a2e1f;
  --petal: #d68b7a;
  --leaf: #6a6a3a;
  --line: #2a181020;

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 64px);

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #1a0e0a;
  --bg-2: #241510;
  --paper: #221410;
  --ink: #f3e3cf;
  --ink-soft: #c9a98c;
  --accent: #d4664e;
  --accent-deep: #b04b3a;
  --petal: #e69b8a;
  --leaf: #b8b070;
  --line: #f3e3cf25;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 350;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 400ms ease, color 400ms ease;
}

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

button { font: inherit; color: inherit; }

a { color: inherit; }

/* ---------- type primitives ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.smallcaps {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poetic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--ink-soft);
}

.price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-variant-numeric: oldstyle-nums;
}

/* ---------- shared layout ---------- */

.frame {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.heart {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  vertical-align: middle;
  position: relative;
  transform: rotate(-45deg) translateY(-0.05em);
}
.heart::before, .heart::after {
  content: "";
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  background: currentColor;
  border-radius: 50%;
}
.heart::before { top: -50%; left: 0; }
.heart::after { left: 50%; top: 0; }
.heart.sq { transform: rotate(-45deg) translateY(0); background: currentColor; border-radius: 0; }
.heart.sq::before, .heart.sq::after { background: currentColor; border-radius: 50%; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav .brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav .brand sup {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  vertical-align: top;
  margin-left: 4px;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 200ms;
}
.nav-links a:hover { color: var(--accent); }
.nav .cart-btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 9px 16px 8px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 150ms ease, background 200ms;
}
.nav .cart-btn:hover { transform: translateY(-1px); background: var(--accent-deep); }
.nav .cart-btn .badge {
  background: var(--accent);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0;
}

@media (max-width: 740px) {
  .nav-links { display: none; }
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(48px, 8vw, 100px) var(--pad) clamp(48px, 8vw, 100px);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  max-width: 72ch;
}

.hero h1.display {
  font-size: clamp(48px, 8vw, 120px);
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}
.hero h1 .ink-soft { color: var(--ink-soft); }
.hero h1 .amp {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}
.hero .lede {
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* placeholder ::: */
.ph {
  background:
    repeating-linear-gradient(
      45deg,
      color-mix(in oklab, var(--ink) 7%, transparent) 0 1px,
      transparent 1px 9px
    ),
    color-mix(in oklab, var(--accent) 9%, var(--bg-2));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed color-mix(in oklab, var(--ink) 25%, transparent);
  pointer-events: none;
}
.ph.tall { aspect-ratio: 3/4; }
.ph.sq { aspect-ratio: 1; }
.ph.wide { aspect-ratio: 4/3; }

/* countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.countdown .unit {
  background: var(--paper);
  padding: 18px 12px 14px;
  text-align: center;
}
.countdown .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.countdown .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* hero side stack */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-aside .ph { aspect-ratio: 4/5; min-height: 320px; }

.seal {
  position: absolute;
  top: 60px;
  right: clamp(20px, 4vw, 60px);
  width: 130px;
  height: 130px;
  pointer-events: none;
  animation: seal-rotate 22s linear infinite;
  z-index: 2;
}
.seal text {
  font-family: var(--font-body);
  font-size: 7.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  fill: var(--accent-deep);
}
.seal .core {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  fill: var(--accent);
}
@keyframes seal-rotate { to { transform: rotate(360deg); } }
@media (max-width: 880px) { .seal { top: 16px; right: 16px; width: 96px; height: 96px; } }

/* ---------- section header ---------- */

.section {
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.section.warm { background: var(--bg-2); }
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark { --ink: #f3e3cf; --ink-soft: #c9a98c; --line: #f3e3cf22; }
.section.dark .ph { background:
  repeating-linear-gradient(
    45deg,
    color-mix(in oklab, var(--paper) 6%, transparent) 0 1px,
    transparent 1px 9px
  ),
  color-mix(in oklab, var(--accent) 14%, #2a181088);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 48px;
}
.section-head .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
.section-head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1;
}
.section-head .meta {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 28ch;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .meta { text-align: left; }
}

/* ---------- box cards ---------- */

.boxes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.box-card {
  grid-column: span 6;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease;
  overflow: hidden;
}
.box-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px color-mix(in oklab, var(--ink) 40%, transparent);
}
.box-card.featured { grid-column: span 12; display: grid; grid-template-columns: 1.1fr 1fr; }
.box-card .img {
  aspect-ratio: 5/4;
  min-height: 280px;
  border-bottom: 1px solid var(--line);
}
.box-card.featured .img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 460px;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}
.box-card .body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.box-card .ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px 5px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 999px;
}
.box-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}
.box-card .desc {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 42ch;
}
.box-card .row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.box-card .row .price { font-size: clamp(28px, 3vw, 36px); line-height: 1; }
.box-card .row .price small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 6px;
  color: var(--ink-soft);
  font-weight: 500;
}
.box-card .add {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 10px 18px 9px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.box-card .add:hover { background: var(--ink); color: var(--paper); }
.box-card .add.in {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  font-size: 11px;
  padding: 4px 10px 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: color-mix(in oklab, var(--bg-2) 50%, transparent);
}
.chip.more { border-style: dashed; color: var(--accent); }

@media (max-width: 880px) {
  .box-card { grid-column: span 12; }
  .box-card.featured { grid-template-columns: 1fr; }
  .box-card.featured .img { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- modal ---------- */

.modal-scrim {
  position: fixed;
  inset: 0;
  background: color-mix(in oklab, var(--ink) 70%, transparent);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  color: var(--ink);
  max-width: 1080px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border: 1px solid var(--line);
  transform: translateY(20px) scale(0.98);
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
}
.modal-scrim.open .modal { transform: translateY(0) scale(1); }
.modal .gallery {
  background: var(--bg-2);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.modal .gallery .hero-ph { aspect-ratio: 4/5; min-height: 360px; }
.modal .gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.modal .gallery .thumbs .ph {
  aspect-ratio: 1;
  cursor: pointer;
  transition: opacity 200ms;
}
.modal .gallery .thumbs .ph:hover { opacity: 0.7; }

.modal .content {
  padding: 36px 36px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal .content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  margin: 8px 0 12px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.modal .content .lede {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
}
.modal .content .ingredients {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.modal .content .ingredients li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  font-size: 14px;
}
.modal .content .ingredients li .qty {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.modal .footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  position: sticky;
  bottom: 0;
  background: var(--paper);
}
.modal .footer .price { font-size: 40px; line-height: 1; }
.modal .footer .price small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 6px;
  color: var(--ink-soft);
  font-weight: 500;
}
.modal .footer .add {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 14px 24px 13px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms;
}
.modal .footer .add:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.modal .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
}
.modal .close:hover { background: var(--bg-2); }
.modal .close::before, .modal .close::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: var(--ink);
}
.modal .close::before { transform: rotate(45deg); }
.modal .close::after { transform: rotate(-45deg); }

@media (max-width: 820px) {
  .modal { grid-template-columns: 1fr; max-height: 96vh; }
  .modal .gallery { padding: 16px; }
  .modal .gallery .hero-ph { min-height: 220px; aspect-ratio: 5/3; }
}

/* ---------- dinner ---------- */

.dinner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .dinner { grid-template-columns: 1fr; gap: 32px; }
  .dinner .left { position: static; order: 2; }
  .dinner .right { order: 1; }
  .dinner .left img { aspect-ratio: 16/9 !important; max-height: 280px; object-position: center 30%; }
}
.dinner .left {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dinner h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.dinner .ph.cover { aspect-ratio: 4/5; min-height: 420px; }
.dinner .reserve-card {
  background: var(--accent);
  color: #fff8f0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dinner .reserve-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}
.dinner .reserve-card .row strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
}
.dinner .reserve-card .btn {
  margin-top: 6px;
  background: #fff8f0;
  color: var(--accent-deep);
  border: 0;
  padding: 14px 18px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
}
.dinner .reserve-card .btn:hover { background: #fff; }

.menu-course {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.menu-course:last-child { border-bottom: 1px solid var(--line); }
.menu-course .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-course .label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.menu-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  padding: 16px 0;
  align-items: baseline;
}
.menu-item + .menu-item { border-top: 1px dashed var(--line); }
.menu-item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.menu-item h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 6px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.menu-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- calendar + delivery ---------- */

.logistics {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
@media (max-width: 880px) { .logistics { grid-template-columns: 1fr; } }

.calendar {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}
.calendar .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.calendar .head .month {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
}
.calendar .head .legend {
  display: flex;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.calendar .head .legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.calendar .head .legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 2px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-grid .dow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px 0;
}
.cal-grid .day {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
  transition: background 200ms, transform 150ms;
  position: relative;
  background: color-mix(in oklab, var(--paper) 100%, transparent);
}
.cal-grid .day.muted { color: var(--line); cursor: default; background: transparent; border-color: transparent; }
.cal-grid .day.avail:hover { background: var(--bg-2); transform: scale(1.02); }
.cal-grid .day.peak { background: color-mix(in oklab, var(--accent) 16%, var(--paper)); }
.cal-grid .day.peak::after { content: "♥"; position: absolute; bottom: 4px; right: 6px; color: var(--accent); font-size: 11px; }
.cal-grid .day.sold { background: var(--bg-2); color: var(--ink-soft); text-decoration: line-through; cursor: not-allowed; }
.cal-grid .day.sel {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal-grid .day.sel::after { content: "✓"; position: absolute; bottom: 3px; right: 6px; color: var(--accent); font-size: 11px; }

.windows {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.windows button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 200ms;
}
.windows button.sel {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.windows button:not(.sel):hover { border-color: var(--ink); }

.delivery-card { display: flex; flex-direction: column; gap: 20px; }
.delivery-card h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 58px);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.015em;
}
.delivery-card .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.delivery-card .info-grid .cell {
  background: var(--paper);
  padding: 18px 16px;
}
.delivery-card .cell .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.delivery-card .cell .val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.25;
}
.whats {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 18px 20px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 200ms;
}
.whats:hover { background: var(--accent-deep); }
.whats .arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--paper);
  position: relative;
}
.whats .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--paper);
  border-right: 1px solid var(--paper);
  transform: rotate(45deg);
}

/* ---------- cart drawer ---------- */

.drawer-scrim {
  position: fixed;
  inset: 0;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: var(--paper);
  color: var(--ink);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  margin: 0;
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-item .thumb { aspect-ratio: 1; }
.drawer-item .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  margin: 0 0 4px;
  line-height: 1.05;
}
.drawer-item .qty-row { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--ink-soft); }
.qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.qty-btn:hover { border-color: var(--ink); }
.drawer-item .row-price { font-family: var(--font-display); font-style: italic; font-size: 20px; }
.drawer-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.drawer-foot .totals { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.drawer-foot .totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}
.drawer-foot .totals .row.total {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
}
.drawer-foot .checkout {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background 200ms;
}
.drawer-foot .checkout:hover { background: var(--accent-deep); }
.drawer-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--ink-soft);
}
.drawer-empty .poetic { font-size: 24px; margin-bottom: 8px; color: var(--ink); }

/* checkout success */
.success {
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.success .ring {
  width: 90px;
  height: 90px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 36px;
}
.success h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  margin: 12px 0 4px;
}
.success p { color: var(--ink-soft); font-size: 14px; max-width: 28ch; }

/* ---------- instagram strip ---------- */

.ig-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 880px) { .ig-strip { grid-template-columns: repeat(2, 1fr); } }
.ig-tile {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
}
.ig-tile .ph { width: 100%; height: 100%; aspect-ratio: auto; }
.ig-tile .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  background: linear-gradient(to top, color-mix(in oklab, var(--ink) 80%, transparent), transparent);
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms, transform 250ms;
}
.ig-tile:hover .cap { opacity: 1; transform: translateY(0); }
.ig-tile .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--paper);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  padding: 3px 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ---------- footer ---------- */

.footer {
  padding: clamp(48px, 8vw, 96px) 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-grid p, .footer-grid a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin: 0 0 6px;
}
.footer-grid a:hover { color: var(--accent); }
.footer-grid .col-brand .display {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------- micro animations ---------- */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 700ms cubic-bezier(.2,.7,.2,1) both; }

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms, transform 250ms;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 999px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .heart { color: var(--accent); }

/* sweep marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--accent);
  color: #fff8f0;
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  gap: 48px;
  padding-left: 48px;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee .heart { width: 14px; height: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- shop grid (caixas estilo loja) ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
@media (max-width: 640px) {
  .shop-grid { grid-template-columns: 1fr; }
}
