/* Gaf Moda - gafmoda.com
   Bespoke stylesheet. No framework, no build step, no CDN. */

:root {
  color-scheme: light only;
  --bg: #fbf6ee;
  --surface: #ffffff;
  --sand: #f3ebde;
  --ink: #2a211a;
  --muted: #7b6a5b;
  --accent: #e0952b;
  --accent2: #c97c1b;
  --leaf: #3f5d46;
  --leaf-soft: #6f8c72;
  --line: rgba(42, 33, 26, 0.12);
  --shadow: 0 18px 45px -28px rgba(42, 33, 26, 0.55);
  --radius: 22px;
  --maxw: 1180px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

/* ---------- language toggle ---------- */
body.lang-en .tr { display: none; }
body:not(.lang-en) .en { display: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 0 0 14px;
}
.lead { color: var(--muted); font-size: 18px; }
.center { text-align: center; }
.rule {
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--accent); color: #241a10; }
.btn--solid:hover { background: var(--accent2); color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--outline { border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent2); }

/* ---------- header ---------- */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.hdr.is-stuck {
  background: rgba(251, 246, 238, .93);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -26px rgba(42,33,26,.6);
}
.hdr__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  color: #241a10;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 2px rgba(36,26,16,.18);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__sub { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.hdr--light .brand__name, .hdr--light .nav a, .hdr--light .langbtn { color: #fff; }
.hdr--light .brand__sub { color: rgba(255,255,255,.7); }
.hdr--light .langbtn { border-color: rgba(255,255,255,.4); }
.hdr.is-stuck .brand__name, .hdr.is-stuck .nav a, .hdr.is-stuck .langbtn { color: var(--ink); }
.hdr.is-stuck .brand__sub { color: var(--muted); }
.hdr.is-stuck .langbtn { border-color: var(--line); }

.nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
.nav a { position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  height: 2px; width: 0; background: var(--accent); transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }
.hdr__actions { display: flex; align-items: center; gap: 12px; }
.langbtn {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  border-radius: 999px; padding: 7px 13px; cursor: pointer; transition: all .25s ease;
}
.langbtn:hover { border-color: var(--accent); color: var(--accent2); }
.burger { display: none; background: none; border: 0; padding: 8px; color: inherit; cursor: pointer; }
.hdr--light .burger { color: #fff; }
.hdr.is-stuck .burger { color: var(--ink); }

.mobile {
  display: none;
  background: rgba(251, 246, 238, .98);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile.is-open { display: block; }
.mobile__inner { display: flex; flex-direction: column; gap: 4px; padding: 18px 24px 26px; }
.mobile a { padding: 11px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile a:last-child { border-bottom: 0; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #221a12; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,17,11,.55) 0%, rgba(24,17,11,.28) 38%, rgba(24,17,11,.78) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(224,149,43,.20), transparent 60%);
}
.hero__fx { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero__body { position: relative; z-index: 2; text-align: center; padding: 120px 24px 96px; max-width: 860px; }
.hero__eyebrow { color: rgba(255,255,255,.86); letter-spacing: .34em; font-size: 12px; font-weight: 600; text-transform: uppercase; margin: 0 0 20px; }
.hero__title {
  color: #fff;
  font-size: clamp(56px, 13vw, 132px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: .9;
}
.hero__title span { color: var(--accent); margin-left: .09em; }
.hero__text { color: rgba(255,255,255,.88); font-size: clamp(17px, 2.2vw, 21px); margin: 22px auto 0; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); z-index: 2; animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* strip under hero */
.strip { background: var(--leaf); color: #f2f6ef; }
.strip__inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 44px;
  padding: 18px 24px; font-size: 14px; letter-spacing: .02em;
}
.strip b { color: var(--accent); font-weight: 600; }

/* ---------- about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); width: 100%; height: 470px; object-fit: cover; box-shadow: var(--shadow); }
.badge {
  position: absolute; right: -14px; bottom: -22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 16px 20px; box-shadow: var(--shadow); max-width: 210px;
}
.badge b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--accent2); line-height: 1; }
.badge span { font-size: 12.5px; color: var(--muted); }
.h2 { font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 20px; }
.body-copy p { color: rgba(42,33,26,.78); margin: 0 0 16px; }
.body-copy p:last-child { margin-bottom: 0; }

/* ---------- feature cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 14px 36px -30px rgba(42,33,26,.7);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(42,33,26,.6); }
.card__icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sand); font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- menu teaser ---------- */
.menu-block { background: var(--sand); }
.mcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.mcard img { height: 190px; width: 100%; object-fit: cover; }
.mcard__body { padding: 24px 24px 28px; }
.mcard h3 { font-size: 23px; margin-bottom: 8px; }
.mcard ul { list-style: none; margin: 14px 0 0; padding: 0; }
.mcard li { font-size: 14.5px; color: var(--muted); padding: 5px 0; border-bottom: 1px dashed var(--line); }
.mcard li:last-child { border-bottom: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: 18px; overflow: hidden; }
.gallery img { width: 100%; height: 340px; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure.tall img { height: 100%; min-height: 260px; }
.note { font-size: 12.5px; color: rgba(123,106,91,.85); text-align: center; margin-top: 18px; }

/* ---------- visit ---------- */
.info { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 22px; }
.info li { display: flex; gap: 16px; }
.info__ico { font-size: 19px; line-height: 1.4; }
.info b { display: block; font-size: 15px; margin-bottom: 2px; }
.info span, .info a { color: var(--muted); font-size: 15.5px; }
.info a:hover { color: var(--accent2); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- footer ---------- */
.ftr { background: #241d16; color: rgba(251,246,238,.82); }
.ftr__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding: 60px 0 34px; }
.ftr__brand { font-family: var(--font-display); font-size: 26px; color: #fff; margin-bottom: 8px; }
.ftr p { margin: 0; font-size: 14.5px; color: rgba(251,246,238,.6); max-width: 330px; }
.ftr__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 15px; align-items: center; }
.ftr__links a:hover { color: var(--accent); }
.ftr__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding: 22px 0 40px; font-size: 12.5px; color: rgba(251,246,238,.45);
}
.ftr__bottom a { color: var(--accent); }

/* ---------- to top + cookie ---------- */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  background: var(--accent); color: #241a10; border: 0; border-radius: 50%;
  width: 46px; height: 46px; display: none; place-items: center; cursor: pointer;
  box-shadow: var(--shadow); transition: background-color .25s ease;
}
.totop.is-on { display: grid; }
.totop:hover { background: var(--accent2); color: #fff; }

.cookie {
  position: fixed; z-index: 80; right: 16px; bottom: 16px; left: 16px;
  max-width: 380px; margin-left: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px; box-shadow: var(--shadow); font-size: 14px; color: var(--muted);
  display: none;
}
.cookie.is-on { display: block; }
.cookie__row { display: flex; gap: 10px; margin-top: 14px; }
.cookie .btn { padding: 9px 18px; font-size: 14px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- menu page ---------- */
.page-hero { position: relative; min-height: 52vh; display: grid; place-items: center; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,17,11,.72), rgba(24,17,11,.6)); }
.page-hero__body { position: relative; z-index: 2; text-align: center; padding: 150px 24px 70px; color: #fff; }
.page-hero__body h1 { font-size: clamp(40px, 7vw, 74px); color: #fff; }
.page-hero__body p { color: rgba(255,255,255,.82); margin: 14px 0 0; }

.mlist { display: grid; gap: 40px; }
.mgroup { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 34px 32px; box-shadow: 0 14px 36px -30px rgba(42,33,26,.7); }
.mgroup > h2 { font-size: 28px; margin-bottom: 6px; }
.mgroup > p.lead { font-size: 15.5px; margin: 0 0 22px; }
.mitems { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
.mitem { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.mitem__name { font-weight: 500; }
.mitem__desc { display: block; font-size: 13.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.mitem__dots { flex: 1; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--leaf); background: rgba(63,93,70,.1); border-radius: 999px; padding: 3px 10px; margin-left: 8px;
  vertical-align: middle;
}
.callout {
  background: var(--sand); border: 1px dashed var(--line); border-radius: 18px;
  padding: 20px 24px; color: var(--muted); font-size: 14.5px;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media img { height: 340px; }
  .badge { right: 14px; bottom: -18px; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: block; }
  .section { padding: 68px 0; }
  .grid--3, .gallery { grid-template-columns: repeat(2, 1fr); }
  .mitems { grid-template-columns: 1fr; }
  .hdr__actions .btn { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery img { height: 165px; }
  .mgroup { padding: 26px 20px; }
  .hero__body { padding: 110px 20px 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  .card:hover, .btn:hover { transform: none; }
}
