/* ============================================================
   Coffex — Web3 Coffee Experience
   Dark / aurora / glassmorphism design system
   ============================================================ */

:root {
  /* Base */
  --bg:        #110e0d;
  --bg-soft:   #181412;
  --ink:       #f5ebe0;
  --muted:     #b0a399;
  --faint:     #807369;

  /* Brand accents */
  --amber:     #d4af37;
  --amber-deep:#a68323;
  --violet:    #cba276;
  --violet-deep:#8e6b46;

  /* Glass */
  --glass:     rgba(255, 255, 255, .03);
  --glass-2:   rgba(255, 255, 255, .05);
  --border:    rgba(255, 255, 255, .07);
  --border-2:  rgba(255, 255, 255, .1);

  /* Gradients */
  --grad:      linear-gradient(100deg, var(--amber) 0%, var(--amber-deep) 38%, var(--violet) 100%);
  --grad-soft: linear-gradient(135deg, rgba(212,175,55,.12), rgba(203,162,118,.12));

  /* Type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* Misc */
  --container: 1200px;
  --radius:   22px;
  --radius-sm: 16px;
  --shadow:   0 30px 70px -28px rgba(0, 0, 0, .85);
  --glow-amber: 0 0 0 1px rgba(244,182,95,.25), 0 18px 50px -16px rgba(244,182,95,.4);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--amber); color: #1a1208; }

/* ============================================================
   Background FX (aurora + grid + noise)
   ============================================================ */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: var(--bg); }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at 50% 18%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 50% 18%, #000, transparent 78%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(140px); opacity: .25; will-change: transform; }
.orb--1 { width: 540px; height: 540px; top: -140px; left: -120px;
  background: radial-gradient(circle, var(--amber), transparent 68%); animation: drift1 20s ease-in-out infinite; }
.orb--2 { width: 600px; height: 600px; top: 6%; right: -180px;
  background: radial-gradient(circle, var(--violet), transparent 68%); animation: drift2 26s ease-in-out infinite; }
.orb--3 { width: 520px; height: 520px; bottom: -180px; left: 28%;
  background: radial-gradient(circle, var(--amber-deep), transparent 68%); animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(80px,60px) scale(1.12);} }
@keyframes drift2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-90px,50px) scale(1.1);} }
@keyframes drift3 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(60px,-70px) scale(1.15);} }
.bg-noise {
  position: absolute; inset: 0; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --pad: .82rem 1.5rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: var(--pad);
  border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}
.btn--lg { --pad: 1rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--grad); background-size: 160% 160%;
  color: #1c1206; box-shadow: var(--glow-amber);
  animation: gradMove 6s ease infinite;
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(212,175,55,.3), 0 26px 60px -18px rgba(212,175,55,.45); }
@keyframes gradMove { 0%,100%{ background-position: 0% 50%;} 50%{ background-position: 100% 50%;} }
.btn--ghost { color: var(--ink); border: 1px solid transparent; }
.btn--ghost:hover { color: var(--amber); }
.btn--outline {
  border: 1px solid var(--border-2); color: var(--ink);
  background: var(--glass); backdrop-filter: blur(8px);
}
.btn--outline:hover { background: var(--glass-2); border-color: var(--amber); transform: translateY(-3px); box-shadow: 0 0 30px -6px rgba(212,175,55,.2); }
.btn .play { font-size: .7rem; }

/* ---------- Eyebrow / titles ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber);
  padding: .4rem .9rem; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.eyebrow--center { justify-content: center; }

.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.5rem); line-height: 1.06; letter-spacing: -.02em;
  margin: 1rem 0;
}
.section-title--center { text-align: center; }
.hl {
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; animation: gradMove 8s ease infinite;
}
.section-head { max-width: 660px; margin: 0 auto 3.2rem; text-align: center; }
.section-desc { color: var(--muted); font-size: 1.05rem; }
.lead { font-size: 1.12rem; color: #cfc8da; margin-bottom: 1rem; }

/* ============================================================
   Ticker keyframe (shared by marquee)
   ============================================================ */
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   Navbar
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 50; padding: .6rem 0; transition: background .4s, box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled {
  background: rgba(8,6,12,.72);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.55rem; color: var(--ink); letter-spacing: -.01em; }
.brand__text {
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradMove 8s ease infinite;
}

.nav__links { display: flex; gap: 2rem; margin-right: auto; margin-left: 2.5rem; }
.nav__links a { font-weight: 500; font-size: .95rem; color: var(--muted); position: relative; padding: .2rem 0; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--grad); border-radius: 2px; transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .5rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; isolation: isolate; padding: clamp(3rem, 7vw, 6rem) 0 7rem; overflow: hidden; }

/* Background coffee video */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .34; filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 95% at 78% 16%, rgba(203,162,118,.1), transparent 55%),
    radial-gradient(90% 70% at 12% 90%, rgba(212,175,55,.08), transparent 60%),
    linear-gradient(180deg, rgba(17,14,13,.5) 0%, rgba(17,14,13,.74) 58%, var(--bg) 100%);
}
.hero__inner, .hero__glow { position: relative; z-index: 1; }
.scroll-ind { z-index: 2; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }

.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.7rem, 6.2vw, 5.2rem); line-height: 1.0; letter-spacing: -.03em; margin: 1.3rem 0; }
.hero__sub { font-size: 1.15rem; color: var(--muted); max-width: 31rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 2.6rem; }

.hero__stats { display: flex; gap: 2.6rem; }
.hero__stats .stat strong {
  display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stats .stat span { font-size: .84rem; color: var(--faint); }

/* Hero visual */
.hero__visual { position: relative; justify-self: center; }
.hero__cup { position: relative; width: min(420px, 82vw); aspect-ratio: 3/3.5; }
.hero__img {
  width: 100%; height: 100%; border-radius: 28px; position: relative; z-index: 1;
  background: #1a1018 var(--img) center/cover;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
/* subtle ambient glow behind the cup */
.hero__cup::before {
  content: ""; position: absolute; inset: -10px; border-radius: 40px; z-index: 0;
  background: radial-gradient(circle, rgba(212,175,55,.12), transparent 70%);
  filter: blur(20px); opacity: .8;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

.float-card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: .7rem;
  background: rgba(16,12,22,.7); color: var(--ink);
  padding: .7rem .95rem; border-radius: 16px;
  border: 1px solid var(--border-2); backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.float-card strong { display: block; font-size: .92rem; }
.float-card small { color: var(--muted); font-size: .75rem; }
.fc__icon { font-size: 1.3rem; }
.float-card--1 { top: 7%; left: -9%; animation: floaty 5s ease-in-out infinite; }
.float-card--2 { bottom: 9%; right: -7%; animation: floaty 7s ease-in-out infinite .5s; }

/* Steam */
.steam { position: absolute; top: -4%; left: 50%; transform: translateX(-50%); width: 60px; height: 80px; z-index: 3; }
.steam span { position: absolute; bottom: 0; width: 10px; height: 10px; background: rgba(255,255,255,.45); border-radius: 50%; filter: blur(4px); animation: steam 4s ease-in-out infinite; }
.steam span:nth-child(1){ left: 30%; animation-delay: 0s; }
.steam span:nth-child(2){ left: 50%; animation-delay: 1.2s; }
.steam span:nth-child(3){ left: 70%; animation-delay: 2.4s; }
@keyframes steam { 0%{ transform: translateY(0) scale(1); opacity: 0;} 30%{ opacity:.55;} 100%{ transform: translateY(-60px) scale(2.4); opacity: 0;} }

/* Scroll indicator */
.scroll-ind { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--border-2); border-radius: 20px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-ind span { width: 4px; height: 8px; background: var(--amber); border-radius: 4px; box-shadow: 0 0 8px var(--amber); animation: scrolly 1.6s infinite; }
@keyframes scrolly { 0%{ transform: translateY(0); opacity: 1;} 70%{ transform: translateY(14px); opacity: 0;} 100%{ opacity: 0;} }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { padding: 1rem 0; overflow: hidden; white-space: nowrap; border-block: 1px solid var(--border); background: rgba(255,255,255,.015); }
.marquee__track { display: inline-flex; align-items: center; gap: 2.4rem; animation: ticker 24s linear infinite; }
.marquee span {
  font-family: var(--serif); font-weight: 600; font-size: 1.6rem; letter-spacing: .02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.marquee i { font-size: .8rem; color: var(--faint); }

/* ============================================================
   Glass cards + spotlight
   ============================================================ */
.glow-card {
  position: relative; isolation: isolate;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.glow-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(212,175,55,.08), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.glow-card:hover { transform: translateY(-8px); border-color: var(--border-2); box-shadow: 0 30px 60px -28px rgba(0,0,0,.6), 0 0 40px -18px rgba(212,175,55,.3); }
.glow-card:hover::before { opacity: 1; }

/* ============================================================
   Bento — Neden Coffex
   ============================================================ */
.bento-sec { padding: 5.5rem 0; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1.3rem; }
.bento__cell { padding: 1.7rem; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.bento__icon { font-size: 1.8rem; margin-bottom: auto; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--border); }
.bento__cell h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin: .9rem 0 .4rem; }
.bento__cell p { color: var(--muted); font-size: .93rem; }
.bento__cell--feature { grid-column: span 2; grid-row: span 2; justify-content: flex-end; }
.bento__cell--feature::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: var(--img) center/cover;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 85%);
          mask-image: linear-gradient(to top, #000 0%, transparent 85%);
}
.bento__cell--feature h3 { font-size: 1.9rem; }
.bento__cell--feature .big-num { font-family: var(--serif); font-size: 3rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bento__cell--wide { grid-column: span 2; }

/* ============================================================
   About
   ============================================================ */
.about { padding: 5.5rem 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: center; }
.about__media { position: relative; min-height: 470px; }
.about__img { position: absolute; border-radius: var(--radius); background: #1a1018 var(--img) center/cover; box-shadow: var(--shadow); border: 1px solid var(--border-2); }
.about__img--main { inset: 0 18% 14% 0; }
.about__img--sub { width: 52%; aspect-ratio: 3/3.6; right: 0; bottom: 0; border: 6px solid var(--bg); outline: 1px solid var(--border-2); }
.about__badge {
  position: absolute; top: 5%; left: -4%; z-index: 2;
  background: var(--grad); color: #1c1206; width: 98px; height: 98px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; font-family: var(--serif); font-weight: 700; line-height: 1.1;
  box-shadow: 0 0 40px -8px rgba(212,175,55,.4); rotate: -8deg;
}
.about__list { margin: 1.4rem 0 2rem; display: grid; gap: .75rem; }
.about__list li { display: flex; align-items: center; gap: .75rem; font-weight: 500; color: #d8d2e2; }
.about__list span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #1c1206; font-size: .75rem; flex: none; }

/* ============================================================
   Menu
   ============================================================ */
.menu { padding: 5.5rem 0; }
.menu__tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.8rem; }
.tab { padding: .6rem 1.3rem; border-radius: 100px; font-weight: 600; font-size: .9rem; color: var(--muted); border: 1px solid var(--border); background: var(--glass); backdrop-filter: blur(8px); transition: .3s var(--ease); }
.tab:hover { color: var(--ink); border-color: var(--border-2); }
.tab.is-active { background: var(--grad); color: #1c1206; border-color: transparent; box-shadow: 0 0 24px -6px rgba(244,182,95,.6); }

.menu__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card { overflow: hidden; }
.card.is-hidden { display: none; }
.card__media { position: relative; aspect-ratio: 4/3.3; background: #1a1018 var(--img) center/cover; transition: transform .6s var(--ease); }
.card:hover .card__media { transform: scale(1.06); }
.card__tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; background: rgba(8,6,12,.7); color: var(--amber); backdrop-filter: blur(6px); border: 1px solid var(--border); font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: 100px; letter-spacing: .04em; }
.card__tag--alt { background: var(--grad); color: #1c1206; border-color: transparent; }
.card__body { padding: 1.2rem 1.25rem 1.4rem; }
.card__row { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.card__row h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.price { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card__body p { color: var(--muted); font-size: .9rem; margin-top: .35rem; }

/* ============================================================
   Banner CTA
   ============================================================ */
.banner { position: relative; text-align: center; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; border-block: 1px solid var(--border); }
.banner__overlay { position: absolute; inset: 0; z-index: -1; background: var(--img) center/cover fixed; opacity: .22; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 300px at 50% 50%, rgba(122,84,255,.18), transparent 70%); }
.banner__inner { position: relative; max-width: 640px; margin-inline: auto; }
.banner h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.1; margin: 1rem 0; }
.banner p { color: var(--muted); margin-bottom: 1.8rem; font-size: 1.08rem; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: 5.5rem 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1.1rem; }
.gallery__item { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: #1a1018 var(--img) center/cover; border: 1px solid var(--border); transition: transform .6s var(--ease), border-color .4s, box-shadow .4s; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,6,12,.6)); opacity: .5; transition: opacity .4s; }
.gallery__item:hover { transform: scale(1.02); border-color: var(--amber); box-shadow: 0 0 40px -12px rgba(244,182,95,.5); }
.gallery__item:hover::after { opacity: .8; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================================
   Contact
   ============================================================ */
.contact { padding: 5.5rem 0 6rem; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.contact__list { display: grid; gap: 1.2rem; margin: 1.8rem 0; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.ci { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--glass); border: 1px solid var(--border); font-size: 1.3rem; flex: none; }
.contact__list strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.contact__list p { color: var(--muted); font-size: .95rem; }
.socials { display: flex; gap: .7rem; flex-wrap: wrap; }
.social-btn {
  --sz: 46px;
  display: grid; place-items: center; width: var(--sz); height: var(--sz);
  border-radius: 14px; color: var(--muted);
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), color .3s, border-color .3s, background .3s, box-shadow .35s var(--ease);
}
.social-btn svg { width: 46%; height: 46%; }
.social-btn:hover { transform: translateY(-4px); color: #fff; border-color: transparent; }
.social-btn--ig:hover { background: radial-gradient(circle at 28% 112%, #fdf497 0%, #fd5949 42%, #d6249f 66%, #285AEB 100%); box-shadow: 0 14px 30px -10px rgba(214,36,159,.7); }
.social-btn--x:hover  { background: #0b0b0d; border-color: var(--border-2); box-shadow: 0 14px 30px -12px rgba(255,255,255,.4); }
.social-btn--fb:hover { background: #1877F2; box-shadow: 0 14px 30px -10px rgba(24,119,242,.75); }
.social-btn--yt:hover { background: #FF0000; box-shadow: 0 14px 30px -10px rgba(255,0,0,.75); border-color: transparent; }
.socials--sm { margin-top: .2rem; }
.socials--sm .social-btn { --sz: 40px; border-radius: 12px; }

/* Contact map */
.contact__map { padding: 0; overflow: hidden; min-height: 470px; }
.contact__map iframe {
  display: block; width: 100%; height: 100%; min-height: 470px; border: 0;
  filter: invert(.92) hue-rotate(180deg) brightness(.96) contrast(.96) saturate(.82);
  transition: filter .6s var(--ease);
}
.contact__map:hover iframe { filter: invert(.88) hue-rotate(180deg) brightness(1) contrast(1) saturate(.95); }

.contact__form { padding: 2.2rem; }
.contact__form h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: #c6bfd4; }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(0,0,0,.25); font: inherit; color: var(--ink);
  transition: border .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(244,182,95,.14); }
.field textarea { resize: vertical; }
.field input[type="date"] { color-scheme: dark; }
.form-status { margin-top: 1rem; color: #7ee0a8; font-weight: 600; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer__inner { display: grid; gap: 4rem; }
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
.footer__brand p { margin: 1.5rem 0; color: var(--muted); }
.newsletter { display: flex; gap: .5rem; margin-top: 1.5rem; max-width: 400px; }
.newsletter input {
  flex: 1; padding: .8rem 1rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--glass); color: var(--ink);
}
.footer__cols { display: flex; justify-content: flex-end; gap: 4rem; }
@media (max-width: 760px) {
  .footer__cols { justify-content: flex-start; }
}
.footer__cols h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; margin-bottom: 1rem; }
.footer__cols a { display: block; color: var(--muted); padding: .3rem 0; font-size: .92rem; transition: color .25s, padding .25s; }
.footer__cols a:hover { color: var(--amber); padding-left: .35rem; }
.footer__bottom { border-top: 1px solid var(--border); padding: 1.4rem 0; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: var(--faint); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { order: -1; }
  .bento { grid-auto-rows: 180px; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media { max-width: 460px; }
  .contact__map, .contact__map iframe { min-height: 380px; }
  .footer__inner { grid-template-columns: 1fr; }
  .banner__overlay { background-attachment: scroll; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 62px 0 auto 0; flex-direction: column; gap: 0; padding: 1rem 1.3rem 1.6rem; margin: 0;
    background: rgba(8,6,12,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform .4s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { color: var(--ink); padding: .9rem 0; border-bottom: 1px solid var(--border); }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero__stats { gap: 1.4rem; flex-wrap: wrap; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--feature { grid-column: span 2; }
  .menu__grid, .gallery__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-auto-rows: 200px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .field-row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .float-card--1 { left: 0; } .float-card--2 { right: 0; }
  .marquee span { font-size: 1.25rem; }
  .hero { padding-bottom: 4rem; }
  .contact__map, .contact__map iframe { min-height: 300px; }
  .socials { gap: .6rem; }
}
