/* ג'ורג' · יין בסמדר — Trashim CLM Bold + brand pink/blue */

@font-face {
  font-family: "Trashim";
  src: url("assets/trashim.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #f8d9d9;
  --pink-deep: #f0c4c8;
  --pink-soft: #fdf0f0;
  --blue: #1f3cff;
  --blue-deep: #1529c4;
  --blue-soft: rgba(31, 60, 255, 0.08);
  --blue-line: rgba(31, 60, 255, 0.18);
  --ink: #1f3cff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(31, 60, 255, 0.08);
  --max: 1120px;
  --nav-h: 76px;
  --font: "Trashim", "Arial Hebrew", "David", "Segoe UI", Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--pink);
  line-height: 1.65;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-synthesis: none;
  position: relative;
}

/* Keep finals readable: no faux bold/italic, decent size floor */
body, button, input, textarea, select {
  font-variant-ligatures: common-ligatures;
  font-feature-settings: "kern" 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.display {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin: 0 0 0.6rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin: 0 0 0.75rem;
  opacity: 0.75;
}

.section-head { text-align: center; margin-bottom: 3rem; }
.section-sub {
  margin: 0.4rem auto 0;
  max-width: 34rem;
  opacity: 0.85;
  font-size: 1rem;
}

/* floating deco */
.float.deco {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  user-select: none;
  mix-blend-mode: multiply;
}
.d1 { top: 18%; right: -4%; width: min(220px, 28vw); transform: rotate(-8deg); }
.d2 { top: 48%; left: -5%; width: min(240px, 30vw); transform: rotate(12deg); }
.d3 { top: 72%; right: -3%; width: min(200px, 26vw); transform: rotate(6deg); }
.d4 { top: 32%; left: -6%; width: min(180px, 24vw); transform: rotate(-14deg); }
.d5 { bottom: 8%; left: 4%; width: min(160px, 22vw); opacity: 0.12; transform: rotate(18deg); }
@media (max-width: 900px) {
  /* keep side art visible on mobile, just softer and smaller */
  .float.deco {
    opacity: 0.18;
    position: absolute; /* scroll with page so more sections get art */
  }
  .d1 { top: 12%; right: -18%; width: 42vw; opacity: 0.2; }
  .d2 { top: 38%; left: -20%; width: 44vw; opacity: 0.18; }
  .d3 { top: 62%; right: -16%; width: 40vw; opacity: 0.2; }
  .d4 { top: 78%; left: -18%; width: 38vw; opacity: 0.16; display: block; }
  .d5 { bottom: auto; top: 92%; left: 58%; width: 34vw; opacity: 0.14; display: block; }
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--pink) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--blue-line);
}

.nav-brand { position: relative; z-index: 2; display: flex; align-items: center; }
.nav-wordmark {
  height: 42px;
  width: auto;
  max-width: min(180px, 42vw);
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-size: 1rem;
}
.nav-links a {
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
  margin: 5px auto;
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--pink);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.45rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  body.nav-open { overflow: hidden; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  border: 1.5px solid var(--blue);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  background: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--blue);
  box-shadow: 0 10px 30px rgba(31, 60, 255, 0.12);
}
.btn-primary:hover { background: var(--blue); color: var(--pink); }
.btn-solid {
  background: var(--blue);
  color: var(--pink);
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
}
.btn-solid:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(31, 60, 255, 0.28);
}
.btn-ghost {
  padding: 0.55rem 1.15rem;
  font-size: 0.95rem;
}
.btn-ghost:hover { background: var(--blue); color: var(--pink); }

/* hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 0.5rem 0.75rem 1.5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: min(92vw, 900px);
  height: min(92vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 68%);
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: min(100%, 1100px);
  animation: rise 0.9s ease both;
}
.hero-logo {
  width: min(920px, 96vw);
  max-height: min(78vh, 860px);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 28px 50px rgba(31, 60, 255, 0.14));
}
.hero-scroll {
  margin-top: 0.35rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  opacity: 0.7;
  animation: bob 2.2s ease-in-out infinite;
}
@media (max-width: 700px) {
  .hero-logo {
    width: min(100vw, 560px);
    max-height: min(72vh, 640px);
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* intro + corkboard */
.intro { padding: 1.5rem 0 4rem; }
.intro-grid {
  display: grid;
  /* RTL: col1=right (intro, larger), col2=left (corkboard, smaller) */
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 1.15rem;
  align-items: stretch;
}
.intro-side {
  background: var(--pink-soft);
  border: 1.5px solid var(--blue-line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.1rem, 2.5vw, 1.7rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  align-content: start;
}
.intro-heading.display {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  margin-bottom: 0.45rem;
}
.intro-copy p {
  font-size: 0.98rem;
  max-width: 34ch;
  margin: 0;
  line-height: 1.7;
}
.intro-art {
  display: grid;
  place-items: center;
  margin-top: 0.2rem;
}
.intro-art img {
  width: min(200px, 70%);
  transform: rotate(3deg);
  filter: drop-shadow(0 12px 22px rgba(31, 60, 255, 0.1));
  opacity: 0.95;
}

/* corkboard — worn / broken realistic board */
.corkboard {
  border-radius: 18px 14px 20px 12px;
  overflow: hidden;
  box-shadow:
    0 18px 34px rgba(60, 30, 8, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  border: 2px solid #6e4218;
  min-height: 260px;
  max-width: 100%;
  transform: rotate(-0.6deg);
  align-self: center;
}
.corkboard-inner {
  height: 100%;
  min-height: 260px;
  padding: 0.75rem 0.7rem 0.9rem;
  position: relative;
  background:
    /* scratches / grain */
    repeating-linear-gradient(118deg, transparent 0 10px, rgba(80,40,10,0.05) 10px 11px),
    repeating-linear-gradient(12deg, transparent 0 7px, rgba(255,220,170,0.05) 7px 8px),
    /* worn patches */
    radial-gradient(ellipse at 18% 22%, rgba(90,50,18,0.28), transparent 34%),
    radial-gradient(ellipse at 78% 18%, rgba(255,230,180,0.16), transparent 28%),
    radial-gradient(ellipse at 62% 78%, rgba(70,35,10,0.22), transparent 36%),
    radial-gradient(ellipse at 30% 70%, rgba(140,85,35,0.2), transparent 30%),
    linear-gradient(152deg, #c89858 0%, #a56d35 38%, #8f5a28 62%, #b98445 100%);
}
.corkboard-inner::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px solid rgba(70, 35, 10, 0.35);
  border-radius: 10px 8px 14px 9px;
  box-shadow:
    inset 0 0 20px rgba(40, 18, 4, 0.18),
    inset 0 0 0 1px rgba(255, 220, 170, 0.08);
  pointer-events: none;
  clip-path: polygon(
    0% 3%, 4% 0%, 97% 1%, 100% 5%, 99% 96%, 95% 100%, 3% 99%, 0% 94%
  );
}
/* chipped corner / tear marks */
.corkboard-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 96% 6%, rgba(248,217,217,0.95) 0 7px, transparent 8px),
    radial-gradient(circle at 5% 94%, rgba(248,217,217,0.9) 0 6px, transparent 7px),
    linear-gradient(135deg, transparent 62%, rgba(40,15,0,0.18) 62.5% 64%, transparent 64.5%);
  opacity: 0.9;
}
.corkboard-title {
  position: relative;
  z-index: 1;
  margin: 0.15rem 0.25rem 0.7rem;
  text-align: center;
  font-size: 1.02rem;
  color: #2e1a0a;
  text-shadow: 0 1px 0 rgba(255,230,190,0.25);
  letter-spacing: 0.03em;
  opacity: 0.92;
}
.cork-notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.7rem 0.55rem;
  align-items: start;
  padding: 0.1rem 0.2rem 0.35rem;
}
.memo {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.25), transparent 30%),
    linear-gradient(180deg, #ffd4d8 0%, #f3bdc4 100%);
  color: var(--blue);
  border: 1px solid rgba(90, 40, 50, 0.14);
  border-radius: 3px 5px 2px 6px;
  padding: 0.9rem 0.6rem 0.6rem;
  min-height: 92px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 14px rgba(40, 18, 5, 0.28);
  position: relative;
  font-size: 0.84rem;
  line-height: 1.4;
  word-break: break-word;
  /* torn paper edge feel */
  clip-path: polygon(
    1% 2%, 4% 0%, 97% 1%, 100% 4%, 99% 96%, 96% 100%, 3% 99%, 0% 95%
  );
}
.memo::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 11px;
  height: 11px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 16%, #1f3cff 20% 68%, #101a80 100%);
  box-shadow: 0 2px 3px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,0,0,0.08);
}
.memo::after {
  /* tape residue / crease */
  content: "";
  position: absolute;
  top: 18px;
  right: 8px;
  width: 22px;
  height: 8px;
  background: rgba(255,255,255,0.22);
  transform: rotate(12deg);
  border-radius: 1px;
  pointer-events: none;
}
.memo-text { margin: 0; white-space: pre-wrap; }
.memo-img {
  display: block;
  width: 100%;
  max-height: 86px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(31,60,255,0.1);
  filter: contrast(0.98) saturate(0.92);
}
.memo:nth-child(3n) { background: linear-gradient(180deg, #ffd0d8 0%, #efb6c0 100%); }
.memo:nth-child(3n+1) { background: linear-gradient(180deg, #ffd8e2 0%, #f2c0cc 100%); }
.memo:nth-child(3n+2) { background: linear-gradient(180deg, #ffe2d8 0%, #f0c8bc 100%); }

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-side { text-align: center; order: 1; }
  .corkboard {
    order: 2;
    max-width: 340px;
    margin-inline: auto;
    transform: rotate(0.4deg);
  }
  .intro-copy p { margin-inline: auto; }
  .intro-art img { width: min(170px, 55%); }
  .cork-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .cork-notes { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .memo { font-size: 0.8rem; min-height: 84px; padding: 0.85rem 0.5rem 0.55rem; }
}

/* menu */
.menu { padding: 4rem 0 5.5rem; position: relative; }
.menu-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr;
  gap: 2.5rem;
  align-items: start;
}
.menu-side { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.menu-side img {
  width: 100%;
  opacity: 0.92;
  filter: drop-shadow(0 20px 30px rgba(31, 60, 255, 0.1));
}
.menu-cat + .menu-cat { margin-top: 3rem; }
.cat-title {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin: 0 0 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--blue);
  line-height: 1.25;
}
.cat-num {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  opacity: 0.55;
}
/* mobile accordion for wine menu */
.menu-toggle {
  display: none;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
  color: inherit;
}
.menu-toggle .cat-title {
  width: 100%;
  margin-bottom: 0;
  align-items: center;
}
.menu-chevron {
  margin-right: auto;
  width: 0.85rem;
  height: 0.85rem;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.75;
}
.menu-cat.open .menu-chevron { transform: rotate(135deg); }
.menu-cat-body { display: block; }
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .menu-cat > .cat-title.desktop-only { display: none; }
  .menu-cat-body {
    display: none;
    margin-top: 1rem;
  }
  .menu-cat.open .menu-cat-body { display: block; }
  .menu-cat + .menu-cat { margin-top: 1rem; }
  .menu-cat {
    border: 1.5px solid var(--blue-line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    background: color-mix(in srgb, white 30%, var(--pink));
  }
  .menu-cat .cat-title {
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.12rem;
    margin: 0;
  }
  .menu-cat.open { border-color: var(--blue); }
}
@media (min-width: 761px) {
  .menu-toggle { display: none !important; }
  .menu-cat-body { display: block !important; }
}
.wine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}
.wine {
  padding: 1.15rem 1.25rem;
  border: 1.5px solid var(--blue-line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, white 35%, var(--pink));
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wine:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.wine-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}
.wine h4 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}
.item-title-block {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.diet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.diet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
  line-height: 1.2;
  background: var(--pink-soft);
  white-space: nowrap;
}
.diet-badge.vegan {
  border-color: #15803d;
  color: #166534;
  background: #ecfdf3;
}
.diet-badge.gf {
  border-color: #a16207;
  color: #854d0e;
  background: #fffbeb;
}
.menu-item.kind-food .price {
  min-width: 4.5rem;
  justify-content: center;
}
.wine p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.55;
}
.price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: var(--pink);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .menu-layout { grid-template-columns: 1fr; }
  .menu-side { display: none; }
}
@media (max-width: 560px) {
  .wine-top { flex-direction: column; gap: 0.55rem; }
  .price { flex-direction: row; gap: 0.7rem; align-self: flex-start; }
}

/* events */
.events {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, white 28%, var(--pink)) 12%, color-mix(in srgb, white 28%, var(--pink)) 88%, transparent);
  position: relative;
  overflow: hidden;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.event-card {
  background: var(--pink);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  min-height: 220px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.event-card:hover { transform: translateY(-4px) rotate(-0.4deg); }
.event-date {
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--blue);
  border-radius: 18px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--pink-soft);
  line-height: 1.05;
}
.event-date .day { font-size: 1.55rem; }
.event-date .mon { font-size: 0.78rem; opacity: 0.75; }
.event-kind {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
}
.event-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  line-height: 1.2;
}
.event-body p:not(.event-kind) {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
}
.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.82rem;
  background: var(--pink-soft);
  line-height: 1.2;
}
.event-chip.free {
  background: var(--blue);
  color: var(--pink);
}
.event-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.events-art {
  position: absolute;
  left: -2%;
  bottom: -8%;
  width: min(280px, 34vw);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 960px) {
  .events-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* reserve */
.reserve { padding: 5rem 0 5.5rem; }
.reserve-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.reserve-copy p {
  max-width: 34ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.reserve-deco {
  width: min(320px, 80%);
  margin-top: 1.5rem;
  filter: drop-shadow(0 18px 28px rgba(31, 60, 255, 0.12));
}
.reserve-form {
  background: var(--pink-soft);
  border: 1.5px solid var(--blue);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* keep iOS date/time inside blue frame */
}
.field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
}
.field label { font-size: 0.95rem; }
.field .opt { opacity: 0.6; }
.field input,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1.5px solid var(--blue);
  background: var(--pink);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: box-shadow 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}
/* iOS Safari date/time overflow + RTL garble fix */
.field input[type="date"],
.field input[type="time"],
.field input[type="number"] {
  -webkit-appearance: none;
  appearance: none;
  direction: ltr;
  text-align: center;
  font-size: 16px; /* prevents iOS input zoom */
  line-height: 1.3;
  padding-inline: 0.7rem;
}
.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px var(--blue-soft);
  background: #fff;
}
.field input.invalid { box-shadow: 0 0 0 3px rgba(200, 40, 80, 0.2); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  min-width: 0;
  max-width: 100%;
}
.form-note {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.95rem;
  text-align: center;
}
@media (max-width: 860px) {
  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-deco { display: none; }
  .reserve-copy { text-align: center; }
  .reserve-copy p { margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; } /* always stack on phones */
  .reserve-form { padding: 1.15rem; }
  .container { width: min(100% - 1.25rem, var(--max)); }
}

/* footer */
.footer {
  border-top: 1.5px solid var(--blue-line);
  padding: 3rem 0 0;
  background: color-mix(in srgb, white 22%, var(--pink));
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.2rem;
  align-items: start;
}
.footer-logo {
  width: min(200px, 65%);
  background: transparent;
  filter: drop-shadow(0 10px 20px rgba(31, 60, 255, 0.1));
}
.footer-block h3 {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}
.footer-block p {
  margin: 0;
  line-height: 1.85;
  font-size: 1rem;
}
.footer-block a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.social-btn {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: 0.18s ease;
}
.social-btn:hover { background: var(--blue); color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--blue-line);
  text-align: center;
  padding: 1.1rem;
  font-size: 0.9rem;
  opacity: 0.75;
}
.footer-bottom p { margin: 0; }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .social { justify-content: center; }
}

.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--blue);
  color: var(--pink);
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.28s ease;
  box-shadow: 0 14px 40px rgba(31, 60, 255, 0.35);
  max-width: min(92vw, 420px);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.empty-state {
  text-align: center;
  opacity: 0.7;
  padding: 2rem;
  border: 1.5px dashed var(--blue-line);
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-inner, .hero-scroll { animation: none; }
  .btn, .wine, .event-card { transition: none; }
}
