/* ===== Dishcover21 ===== */
:root {
  --bg: #f6f9fd;
  --bg-2: #ecf2fa;
  --surface: #ffffff;
  --surface-2: #e6edf7;
  --line: #d9e3f0;
  --text: #16233a;
  --text-dim: #5b6b84;
  --accent: #1e5fd6;
  --accent-2: #3b82f6;
  --accent-soft: rgba(30, 95, 214, 0.1);
  --radius: 16px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 252, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1140px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.01em; }
.nav-brand img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 0.95rem; }
.nav-links a { color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 8px 18px;
  border-radius: 999px; font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30, 95, 214, 0.35); }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 900px 500px at 75% -10%, rgba(59, 130, 246, 0.14), transparent 60%),
    radial-gradient(ellipse 700px 400px at 10% 110%, rgba(30, 95, 214, 0.07), transparent 60%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero { padding: 64px 0 56px; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.hero-kicker::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { color: var(--text-dim); font-size: 1.12rem; max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--accent); color: #fff; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 9px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(30, 95, 214, 0.4); }
.btn-ghost {
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 1px solid var(--line); color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); }

.hero-stats { display: flex; gap: 36px; margin-top: 44px; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--accent); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }

/* Hero featured video */
.hero-video { position: relative; }
.hero-video .phone {
  aspect-ratio: 9 / 15; max-width: 320px; margin: 0 auto;
  border-radius: 28px; overflow: hidden; position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(22, 35, 58, 0.28), 0 0 0 8px rgba(22, 35, 58, 0.03);
  cursor: pointer; background: var(--surface);
}
.hero-video .phone img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hero-video .phone:hover img { transform: scale(1.04); }
.hero-video .phone::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 45%);
}
.hero-video .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%; z-index: 2;
  background: rgba(30, 95, 214, 0.92); display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); transition: transform 0.2s;
}
.hero-video .phone:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.hero-video .play svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.hero-video .caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2;
  font-size: 0.9rem; font-weight: 600; line-height: 1.35; color: #fff;
}
.hero-video .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(10, 18, 32, 0.75); backdrop-filter: blur(6px);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; color: #9cc3ff;
}

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.15;
}
.section-head .eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; display: block;
}
.section-head p { color: var(--text-dim); max-width: 52ch; margin-top: 10px; }
.section-link { color: var(--accent-2); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

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

/* ===== Filters ===== */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  border: 1px solid var(--line); background: transparent; color: var(--text-dim);
  padding: 8px 18px; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; font-family: var(--font-body);
  transition: all 0.18s;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }

/* ===== Video cards ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(30, 95, 214, 0.45); box-shadow: 0 16px 40px rgba(22, 35, 58, 0.16); }
.card .thumb { aspect-ratio: 9 / 13; position: relative; overflow: hidden; background: var(--surface-2); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.card:hover .thumb img { transform: scale(1.05); }
.card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.75), transparent 40%);
}
.card .play-sm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; z-index: 2;
  background: rgba(30, 95, 214, 0.9); display: grid; place-items: center;
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
}
.card:hover .play-sm { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.card .play-sm svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }
.card .badges { position: absolute; top: 12px; left: 12px; right: 12px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  background: rgba(10, 18, 32, 0.78); backdrop-filter: blur(6px);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; color: #f3f6fb;
}
.badge.gold { color: #ffd27a; border: 1px solid rgba(255, 210, 122, 0.35); }
.badge.city { color: #9cc3ff; }
.card .meta { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 14px; }
.card .meta .place { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: #fff; line-height: 1.25; }
.card .meta .sub { font-size: 0.8rem; color: rgba(243, 236, 226, 0.75); margin-top: 3px; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-img { position: relative; }
.about-img img {
  border-radius: 50%; border: 3px solid var(--accent);
  box-shadow: 0 24px 60px rgba(22, 35, 58, 0.22);
}
.about-img::after {
  content: "🍜"; position: absolute; bottom: 8px; right: 24px;
  font-size: 2.6rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 18px; line-height: 1.2; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; max-width: 58ch; }
.about-text .promise {
  border-left: 3px solid var(--accent); padding: 14px 20px; margin-top: 24px;
  background: var(--accent-soft); border-radius: 0 12px 12px 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--text);
}

/* ===== Follow ===== */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.social-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s, border-color 0.2s;
}
.social-card:hover { transform: translateY(-4px); border-color: var(--sc, var(--accent)); }
.social-card .icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--sc, var(--accent)) 12%, #fff); }
.social-card .icon svg { width: 22px; height: 22px; fill: var(--sc, var(--accent)); }
.social-card .name { font-weight: 700; font-size: 1.05rem; }
.social-card .handle { color: var(--text-dim); font-size: 0.88rem; }
.social-card .go { margin-top: auto; color: var(--accent-2); font-size: 0.88rem; font-weight: 600; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; }
.footer-brand img { width: 30px; height: 30px; border-radius: 50%; }
footer .fine { color: var(--text-dim); font-size: 0.85rem; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 18, 32, 0.88); backdrop-filter: blur(8px);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox .frame {
  width: min(420px, 92vw); aspect-ratio: 9 / 16;
  border-radius: 20px; overflow: hidden; background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  position: relative;
}
.lightbox iframe { width: 100%; height: 100%; border: 0; }
.lightbox .close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); font-size: 1.3rem; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s;
}
.lightbox .close:hover { background: var(--surface-2); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
