/* ============================================================
   YASMA CAFE — Design System v2 "Cafe Modern"
   Dark espresso + gold. Editorial serif, arches, pills, marquee.
   ============================================================ */

:root {
  --bg: #0f0c0a;
  --bg-2: #16110e;
  --bg-3: #1e1713;
  --line: rgba(201, 162, 39, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold: #c9a227;
  --gold-bright: #e6c34d;
  --cream: #f3ede2;
  --cream-dim: #b8ae9c;
  --ink: #0f0c0a;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", Arial, sans-serif;
  --max: 1180px;
  --radius: 24px;
  --radius-lg: 34px;
  --arch: 999px 999px 26px 26px;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

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

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

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Type ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.08;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
}

.eyebrow::before {
  content: "\2726";
  font-size: 10px;
}

.lead {
  color: var(--cream-dim);
  font-size: 18px;
  max-width: 640px;
}

.gold { color: var(--gold); }

/* huge outlined word, editorial accent */
.outline-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(70px, 12vw, 190px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 39, 0.4);
  user-select: none;
  white-space: nowrap;
}

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 110px 0; }

.section-head { margin-bottom: 58px; }

.section-head h2 { font-size: clamp(38px, 5.2vw, 62px); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ---------- Nav ---------- */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(rgba(15, 12, 10, 0.92), rgba(15, 12, 10, 0.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.34em;
  color: var(--cream);
  text-transform: uppercase;
}

.brand span { color: var(--gold); }

.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.52em;
  color: var(--cream-dim);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 7px 2px;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}

.nav-links a:hover { color: var(--cream); }

.nav-links a:hover::after { right: 0; }

.nav-links a.active { color: var(--gold); }

.nav-links a.active::after { right: 0; }

.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  padding: 11px 26px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold); color: var(--ink); }

.nav-cta::after { display: none; }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  width: 44px; height: 44px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Hero (home, full-height) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.12) translateY(-16px); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 12, 10, 0.93) 20%, rgba(15, 12, 10, 0.55) 60%, rgba(15, 12, 10, 0.35)),
    linear-gradient(rgba(15, 12, 10, 0.2), rgba(15, 12, 10, 0.9) 92%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 28px 90px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(54px, 8.4vw, 112px);
  max-width: 800px;
  letter-spacing: -0.01em;
}

.hero p {
  margin-top: 26px;
  max-width: 520px;
  color: var(--cream-dim);
  font-size: 19px;
}

.hero-actions { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 70px;
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  max-width: 640px;
}

.hero-meta div small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.hero-meta div span { font-size: 15px; color: var(--cream-dim); }

/* rotating stamp badge */
.stamp {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 12%;
  width: 168px;
  height: 168px;
  pointer-events: none;
}

.stamp svg {
  width: 100%;
  height: 100%;
  animation: stampSpin 26s linear infinite;
}

.stamp text {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  fill: var(--gold);
}

.stamp::after {
  content: "\2726";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 30px;
}

@keyframes stampSpin {
  to { transform: rotate(360deg); }
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
  position: relative;
  z-index: 4;
}

.marquee-track {
  display: inline-block;
  animation: marq 36s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 25px;
  color: var(--cream);
  margin: 0 34px;
}

.marquee span i {
  font-style: normal;
  color: var(--gold);
  font-size: 15px;
  vertical-align: middle;
  margin-left: 68px;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Page hero (subpages, shorter) ---------- */

.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-inner { padding: 170px 28px 70px; }

.page-hero h1 { font-size: clamp(46px, 6.8vw, 88px); }

.page-hero .crumb {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 17px 40px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 39, 0.18); }

.btn-solid { background: var(--gold); color: var(--ink); font-weight: 500; }

.btn-solid:hover { background: var(--gold-bright); }

.btn-ghost { color: var(--gold); background: transparent; }

.btn-ghost:hover { background: var(--gold); color: var(--ink); }

/* ---------- Cards / grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.card-img { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 28px 28px 32px; }

.card-body h3 { font-size: 26px; margin-bottom: 8px; }

.card-body p { color: var(--cream-dim); font-size: 15.5px; }

.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15, 12, 10, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 8px 15px;
}

/* arch-top image, the cafe-modern signature */
.arch-img {
  border-radius: var(--arch);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.arch-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.arch-img:hover img { transform: scale(1.05); }

.arch-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.arch-duo .arch-img:first-child { transform: translateY(-34px); }

/* ---------- Menu rows ---------- */

.menu-section { margin-bottom: 64px; }

.menu-section h3 { font-size: 34px; margin-bottom: 6px; }

.menu-section .menu-note {
  color: var(--cream-dim);
  font-size: 14.5px;
  margin-bottom: 26px;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 6px;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 12px;
  transition: background 0.25s, padding 0.25s;
}

.menu-row:hover { background: rgba(201, 162, 39, 0.05); padding-left: 14px; }

.menu-row .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  white-space: nowrap;
}

.menu-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 162, 39, 0.35);
  transform: translateY(-5px);
}

.menu-row .price {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.menu-row .desc {
  flex-basis: 100%;
  color: var(--cream-dim);
  font-size: 14.5px;
  margin-top: 2px;
}

.menu-row.wraps { flex-wrap: wrap; }

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.chef-pick {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 4px 12px;
  margin-left: 10px;
  transform: translateY(-3px);
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.g-item:hover img { transform: scale(1.07); }

.g-item .g-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(15, 12, 10, 0.9));
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.g-item:hover .g-label { opacity: 1; transform: translateY(0); }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-item.g-arch { border-radius: var(--arch); }

/* ---------- Feature band / stats ---------- */

.band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.stats > div {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 40px 18px 34px;
  transition: border-color 0.3s, transform 0.3s;
}

.stats > div:hover { border-color: var(--line); transform: translateY(-4px); }

.stats .num {
  font-family: var(--serif);
  font-size: 54px;
  color: var(--gold);
  line-height: 1;
}

.stats .lbl {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Quote / testimonial ---------- */

.quote {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 46px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
}

.quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.stars { color: var(--gold); letter-spacing: 6px; font-size: 17px; margin-bottom: 22px; }

/* ---------- Info list (visit page) ---------- */

.info-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  padding: 44px;
}

.info-block h3 { font-size: 29px; margin-bottom: 20px; }

.info-line {
  display: flex;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15.5px;
  color: var(--cream-dim);
}

.info-line:last-child { border-bottom: none; }

.info-line .k {
  min-width: 120px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}

.info-line .v strong { color: var(--cream); font-weight: 400; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  filter: grayscale(0.85) invert(0.92) contrast(0.9);
  width: 100%;
  height: 440px;
}

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15.5px;
  color: var(--cream-dim);
}

.hours-table td:last-child { text-align: right; color: var(--cream); }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 28px;
}

.cta-banner .hero-bg { animation: none; }

.cta-banner h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(38px, 5.4vw, 68px);
  max-width: 780px;
  margin: 0 auto 18px;
}

.cta-banner p {
  position: relative;
  z-index: 2;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto 38px;
}

.cta-banner .hero-actions {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 0;
}

/* ---------- Footer ---------- */

footer {
  background: #0a0806;
  border-top: 1px solid var(--line);
  padding: 74px 0 34px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
}

.foot-grid h4 {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.foot-grid p, .foot-grid a {
  display: block;
  color: var(--cream-dim);
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color 0.25s;
}

.foot-grid a:hover { color: var(--gold); }

.foot-brand {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.foot-brand span { color: var(--gold); }

.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(184, 174, 156, 0.55);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ---------- Ordering cart ---------- */

.add-btn {
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.add-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

.add-btn:active { transform: scale(0.96); }

.menu-row .add-btn { margin-left: 6px; }

.add-group { display: inline-flex; gap: 6px; margin-left: 6px; }

.cart-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 200;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 26px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s, background 0.25s;
}

.cart-fab:hover { background: var(--gold-bright); transform: translateY(-2px); }

.cart-fab .cart-count {
  display: inline-block;
  min-width: 24px;
  height: 24px;
  line-height: 22px;
  margin-left: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
}

.cart-fab.pulse { animation: fabPulse 0.5s ease; }

@keyframes fabPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(10, 8, 6, 0.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.in { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 220;
  width: min(420px, 94vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 26px 26px 30px;
}

.cart-drawer.in { transform: none; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 6px;
}

.cart-head h3 { font-size: 28px; }

.cart-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  width: 38px; height: 38px;
  font-size: 20px;
  cursor: pointer;
}

.cart-close:hover { border-color: var(--gold); color: var(--gold); }

.cart-empty {
  display: none;
  color: var(--cream-dim);
  font-size: 15px;
  padding: 34px 0;
  text-align: center;
}

.cart-empty a { color: var(--gold); border-bottom: 1px solid var(--gold); }

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.cart-row-name { display: block; font-family: var(--serif); font-size: 17.5px; }

.cart-row-price { display: block; color: var(--gold); font-size: 13px; margin-top: 2px; }

.cart-qty { display: flex; align-items: center; gap: 10px; }

.cart-qty button {
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--cream);
  font-size: 15px;
  cursor: pointer;
}

.cart-qty button:hover { border-color: var(--gold); color: var(--gold); }

.cart-qty b { min-width: 16px; text-align: center; font-weight: 400; }

.cart-foot { display: none; margin-top: 14px; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.cart-total-row strong { font-family: var(--serif); font-size: 26px; color: var(--gold); letter-spacing: 0; }

.cart-type { display: flex; gap: 18px; margin-bottom: 14px; }

.type-opt { font-size: 13.5px; color: var(--cream-dim); display: flex; align-items: center; gap: 7px; cursor: pointer; }

.type-opt input { accent-color: var(--gold); }

.cart-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 12px 15px;
  margin-bottom: 10px;
  resize: none;
}

.cart-input:focus { outline: none; border-color: var(--gold); }

.cart-input::placeholder { color: rgba(184, 174, 156, 0.5); }

.cart-send { width: 100%; margin-top: 4px; }

.cart-fine { font-size: 11.5px; color: rgba(184, 174, 156, 0.6); margin-top: 12px; line-height: 1.55; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .split, .menu-cols, .grid-3, .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(15, 12, 10, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 26px 28px 34px;
    gap: 22px;
    align-items: flex-start;
  }
  .burger { display: block; }
  .stamp { display: none; }
}

@media (max-width: 640px) {
  section { padding: 78px 0; }
  .split, .menu-cols, .grid-3, .grid-2, .foot-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
  .hero-meta { gap: 26px; }
  .info-block { padding: 30px 22px; }
  .menu-row .name { white-space: normal; }
  .menu-row { flex-wrap: wrap; }
  .add-group, .menu-row .add-btn { margin-left: 0; }
  .cart-fab { right: 16px; bottom: 16px; padding: 14px 20px; }
  .arch-duo .arch-img:first-child { transform: none; }
  .marquee span { font-size: 20px; margin: 0 22px; }
  .marquee span i { margin-left: 44px; }
}
