/* ═══════════════════════════════════════════════════
   PAÇACI MESUT — Home (Professional Redesign)
   Light · Work Sans · Red · Rounded · Image-forward
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  /* Brand — maroon (from the logo circle) */
  --red:       #7B1C2C;   /* maroon — primary */
  --red-dark:  #5E1522;
  --red-deep:  #430F19;
  --red-soft:  #F3E5E8;   /* soft maroon tint (badges / tint bg) */

  /* Gold accent (logo frame / scrollwork) */
  --gold:      #C6A052;
  --gold-dark: #A6813A;
  --gold-soft: #F4EAD1;

  /* Neutrals — warm cream + brown (matches logo) */
  --ink:    #2B160C;      /* warm dark brown — primary text */
  --ink-2:  #6B564B;      /* warm secondary text */
  --ink-3:  #9C887B;      /* warm muted text */
  --bg:     #FFFDF9;      /* warm white */
  --bg-soft:#F7F0E4;      /* cream off-white */
  --blush:  #F6EAEA;      /* soft maroon-tint section */
  --dark:   #271410;      /* dark warm-brown — footer / dark sections */

  /* Contact greens (kept for WhatsApp recognizability) */
  --wa:      #25D366;     /* WhatsApp brand green */
  --wa-deep: #1FA855;     /* deeper green (large CTAs) */
  --call:    #271410;     /* call FAB — dark warm-brown */

  /* Lines & surfaces */
  --line:  rgba(43,22,12,.1);
  --line-2:rgba(43,22,12,.15);

  /* Radii */
  --r-sm:   10px;
  --r:      18px;
  --r-lg:   26px;
  --r-pill: 9999px;

  /* Shadows — warm */
  --sh-sm:  0 2px 10px rgba(43,22,12,.07);
  --sh:     0 14px 40px rgba(43,22,12,.12);
  --sh-lg:  0 24px 60px rgba(43,22,12,.18);
  --sh-red: 0 10px 26px rgba(123,28,44,.32);   /* maroon glow */

  /* Fonts */
  --f: 'Work Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* Inline SVG icons (via js/icons.js data-ic) */
.ic { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.ic svg, [data-ic] > svg { width: 1em; height: 1em; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 8px; border: 3px solid var(--bg-soft); }

/* ── LAYOUT ─────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.section { padding: clamp(64px, 9vw, 120px) 0; }

/* ── TYPE ───────────────────────────────────────── */
.display {
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.02em;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h3 { font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--ink-2); line-height: 1.7; }

/* Section header (centered title + red underline + subtitle) */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.sec-head .h2 { margin-bottom: 20px; }
.sec-head .rule { width: 66px; height: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: var(--r-pill); margin: 0 auto 22px; }
.sec-head .sub { color: var(--ink-3); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ── PILL BADGE ─────────────────────────────────── */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.pill-badge.ghost {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  box-shadow: none;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s, box-shadow .25s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(123,28,44,.4); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost-red { background: var(--red-soft); color: var(--red); }
.btn-ghost-red:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* WhatsApp green */
.btn-wa { background: var(--wa-deep); color: #fff; }
.btn-wa:hover { background: #178a45; transform: translateY(-2px); }

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 11px clamp(20px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s, border-color .35s;
}
/* Soft top scrim keeps the light nav legible over the hero image */
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(12,9,7,.55) 0%, rgba(12,9,7,0) 100%);
  opacity: 1; transition: opacity .35s var(--ease);
}
.nav.solid {
  background: rgba(255,253,249,.92);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 10px 34px rgba(43,22,12,.13);
  border-bottom-color: var(--line);
  padding: 8px clamp(20px, 4vw, 56px);
}
.nav.solid::before { opacity: 0; }

.brand { display: flex; align-items: center; }
.brand-text { display: none; }            /* logo already contains the wordmark */
.brand-logo { height: 72px; width: auto; display: block; flex-shrink: 0; transition: height .35s var(--ease), filter .35s var(--ease); filter: drop-shadow(0 3px 10px rgba(0,0,0,.55)); }
.nav.solid .brand-logo { height: 60px; filter: drop-shadow(0 2px 6px rgba(43,22,12,.16)); }  /* smaller + subtle shadow once scrolled onto cream */
.foot .brand-logo { height: 116px; filter: drop-shadow(0 5px 14px rgba(0,0,0,.4)); }
@media (max-width: 600px){ .brand-logo, .nav.solid .brand-logo { height: 54px; } .foot .brand-logo { height: 96px; } }
.brand-badge {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--sh-red);
  transition: transform .3s var(--ease);
}
.brand:hover .brand-badge { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: none; }   /* hidden — logo already contains the wordmark */
.brand-sup { font-size: .62rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-3); }
.brand-name { font-size: 1.2rem; font-weight: 900; letter-spacing: -.01em; color: var(--red); }
/* light-on-hero (default, transparent nav) */
.nav .brand-sup { color: rgba(255,255,255,.78); transition: color .3s; }
.nav .brand-name { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.32); transition: color .3s, text-shadow .3s; }
/* dark-on-white (scrolled / solid nav) */
.nav.solid .brand-sup { color: var(--ink-3); }
.nav.solid .brand-name { color: var(--red); text-shadow: none; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.92);
  position: relative; padding: 4px 0;
  transition: color .2s;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: #fff; border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav.solid .nav-links a { color: var(--ink-2); text-shadow: none; }
.nav.solid .nav-links a:hover, .nav.solid .nav-links a.active { color: var(--red); }
.nav.solid .nav-links a::after { background: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-weight: 700; font-size: .9rem;
  padding: 10px 22px; border-radius: var(--r-pill);
  transition: background .2s, transform .2s, color .2s, border-color .2s, box-shadow .2s;
}
.nav-call:hover { background: #fff; color: var(--red); border-color: #fff; transform: translateY(-1px); }
.nav.solid .nav-call { background: var(--red); color: #fff; border-color: transparent; box-shadow: var(--sh-red); }
.nav.solid .nav-call:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-ham span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s, background .3s; }
.nav.solid .nav-ham span { background: var(--ink); }
.nav-ham.open span { background: var(--ink); }
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile sheet */
.mnav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
}
.mnav.open { transform: none; }
.mnav a { font-size: 1.8rem; font-weight: 800; color: var(--ink); padding: 10px 24px; }
.mnav a:hover { color: var(--red); }
.mnav .btn { margin-top: 18px; }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 0 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.66) saturate(1.05); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 62% at 50% 50%, rgba(12,9,7,.4) 0%, rgba(12,9,7,.82) 100%),
    linear-gradient(to bottom, rgba(12,9,7,.72) 0%, rgba(12,9,7,.32) 28%, rgba(12,9,7,.5) 64%, rgba(12,9,7,.92) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding: 0 clamp(20px, 5vw, 40px); color: #fff; }
.hero-logo {
  height: clamp(124px, 16vw, 180px);
  width: auto;
  display: block;
  margin: 0 auto clamp(16px, 2.5vw, 26px);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.6));
}
.hero h1 { color: #fff; margin: 22px 0; text-shadow: 0 2px 24px rgba(0,0,0,.65), 0 1px 4px rgba(0,0,0,.5); }
.hero h1 .accent { color: #E3BA7C; }   /* logo gold — pops on dark hero */
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.88);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 28px; z-index: 2;
  display: flex; justify-content: center; gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
  color: rgba(255,255,255,.82);
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ════════════════ CATEGORY CARDS ════════════════ */
.cats { background: var(--bg); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 300px;
  display: flex; align-items: flex-end;
  box-shadow: var(--sh);
  transition: transform .4s var(--ease), box-shadow .4s;
  isolation: isolate;
  background: linear-gradient(155deg, var(--red) 0%, var(--red-deep) 100%);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.cat-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 84% 12%, rgba(198,160,82,.3) 0%, transparent 48%);
}
.cat-index {
  position: absolute; top: 4px; right: 22px; z-index: 0;
  font-family: var(--f); font-size: 7rem; font-weight: 900; line-height: 1;
  color: var(--gold); opacity: .16; letter-spacing: -.05em; pointer-events: none;
}
.cat-body { padding: 30px 28px; color: #fff; width: 100%; position: relative; }
.cat-body h3 { font-size: 1.55rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -.01em; }
.cat-body p { font-size: .92rem; color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.55; }
.cat-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: .92rem; color: var(--gold);
  transition: gap .25s var(--ease), color .2s;
}
.cat-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.cat-card:hover .cat-link { color: #EAC98A; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* ════════════════ STORY / CHEF ════════════════ */
.story { background: var(--blush); position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.story-visual { position: relative; }
.story-visual .photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
  background: linear-gradient(155deg, var(--red) 0%, var(--red-deep) 100%);
  display: grid; place-items: center; position: relative;
}
.story-visual .photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 22%, rgba(198,160,82,.28) 0%, transparent 55%);
}
.story-visual .photo:has(img) { padding: 14px; }
.story-visual .photo img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 12px);
}
.story-mark { width: 42%; color: var(--gold); position: relative; z-index: 1; }
.story-mark svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 16px rgba(0,0,0,.3)); }
.story-seal {
  position: absolute; right: -18px; bottom: -18px;
  width: 124px; height: 124px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--blush);
  transform: rotate(-8deg);
}
.story-seal b { display: block; font-size: 1.5rem; font-weight: 900; line-height: 1; }
.story-seal span { font-size: .56rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.story-content .h2 { margin-bottom: 18px; }
.story-content p { color: var(--ink-2); margin-bottom: 16px; line-height: 1.75; }
.story-quote {
  font-size: 1.15rem; font-style: italic; color: var(--ink);
  border-left: 3px solid var(--red); padding-left: 18px; margin: 22px 0;
  line-height: 1.6;
}
.feature-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 30px; }
.feature {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--r-pill);
  padding: 10px 18px; font-weight: 700; font-size: .88rem;
  box-shadow: var(--sh-sm);
}
.feature .ico {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; font-size: 1rem;
}

/* ════════════════ FEATURED DISHES ════════════════ */
.feats { background: var(--bg-soft); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat-card {
  background: #fff; border-radius: var(--r);
  box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s;
  display: flex; flex-direction: column;
  padding: 26px 26px 28px;
  border-top: 4px solid var(--gold);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.feat-tag {
  align-self: flex-start;
  background: var(--red-soft); color: var(--red);
  font-size: .66rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
  margin-bottom: 15px;
}
.feat-body { display: flex; flex-direction: column; flex: 1; }
.feat-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em; }
.feat-body p { font-size: .9rem; color: var(--ink-3); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.feat-foot { display: flex; align-items: center; justify-content: space-between; }
.feat-price { font-size: 1.6rem; font-weight: 900; color: var(--red); letter-spacing: -.01em; }
.feat-foot .mini { font-size: .82rem; font-weight: 700; color: var(--ink-3); }
.feats-cta { text-align: center; margin-top: 48px; }

/* ════════════════ TESTIMONIAL ════════════════ */
.quote-sec { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.quote-sec::before {
  content: '“'; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  font-size: 18rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,.12); pointer-events: none;
}
.quote-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.quote-stars { color: #FFD24A; font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 22px; }
.quote-text { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600; line-height: 1.5; margin-bottom: 28px; }
.quote-by { font-weight: 800; font-size: 1rem; }
.quote-by span { display: block; font-weight: 500; font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 3px; }

/* ════════════════ LOCATION ════════════════ */
.loc { background: var(--bg); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.loc-info { background: var(--ink); color: #fff; padding: clamp(36px, 5vw, 60px); }
.loc-info .h2 { color: #fff; margin-bottom: 26px; }
.loc-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.loc-item:last-of-type { border-bottom: none; }
.loc-item .ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(198,160,82,.16); color: #E3BA7C;
  display: grid; place-items: center; font-size: 1.15rem;
}
.loc-item h5 { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: #FF8C82; margin-bottom: 4px; }
.loc-item p { color: rgba(255,255,255,.85); font-size: .96rem; line-height: 1.5; }
.loc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.loc-map { position: relative; min-height: 420px; }
.loc-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(.2) contrast(1.05); }

/* ════════════════ FOOTER ════════════════ */
.foot { background: var(--dark); color: rgba(255,255,255,.7); }
.foot-main { padding: clamp(48px, 7vw, 80px) 0 44px; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px; }
.foot .brand-name { color: #fff; }
.foot .brand-sup { color: rgba(255,255,255,.5); }
.foot-desc { font-size: .9rem; line-height: 1.8; margin: 18px 0; max-width: 280px; }
.foot-soc { display: flex; gap: 10px; }
.foot-soc a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.07); display: grid; place-items: center;
  font-size: 1.05rem; transition: background .2s, transform .2s, color .2s;
}
.foot-soc a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.foot-col h5 { color: #fff; font-size: .76rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-weight: 800; }
.foot-col li { margin-bottom: 11px; }
.foot-col a { font-size: .92rem; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.order-btns { display: flex; flex-direction: column; gap: 10px; }
.order-btn {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 12px 16px; border-radius: 14px; font-weight: 700; font-size: .9rem; color: #fff;
  transition: background .2s, transform .2s, border-color .2s;
}
.order-btn:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); border-color: rgba(255,255,255,.2); }
.order-btn .badge-ico { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: .9rem; flex-shrink: 0; }
.order-btn.wa .badge-ico { background: #1FA855; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .82rem;
}

/* ════════════════ FLOATING ACTIONS ════════════════ */
.fab { position: fixed; right: 20px; bottom: 24px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab a {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(43,22,12,.28);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.fab a:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 26px rgba(43,22,12,.34); }
.fab .wa { background: var(--wa); }
.fab .call { background: var(--dark); }   /* slate-900 — clean, breaks the two-greens */

/* ════════════════ REVEAL ════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger.in > * { animation: pop .6s var(--ease) backwards; }
.stagger.in > *:nth-child(2) { animation-delay: .1s; }
.stagger.in > *:nth-child(3) { animation-delay: .2s; }
@keyframes pop { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 980px) {
  .nav-links, .nav-call { display: none; }
  .nav-ham { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-visual { max-width: 440px; margin: 0 auto; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 320px; order: -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .story-seal { width: 100px; height: 100px; }
}

/* ═══════════════════════════════════════════════════
   INNER PAGES — page hero, menu, timeline, values, gallery
   ═══════════════════════════════════════════════════ */

/* ── PAGE HERO (inner banner) ── */
.page-hero {
  position: relative;
  padding: 170px 0 76px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(1.05); }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(12,9,7,.45) 0%, rgba(12,9,7,.8) 100%),
    linear-gradient(to bottom, rgba(12,9,7,.75) 0%, rgba(12,9,7,.4) 45%, rgba(12,9,7,.7) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 clamp(20px,5vw,40px); }
.page-hero .eyebrow { color: #E3BA7C; }   /* logo gold */
.page-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -.02em; color: #fff; margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.page-hero p { font-size: clamp(1rem,1.5vw,1.18rem); color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto; }

/* ── MENU PAGE ── */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(36px,5vw,52px); }
.menu-tab {
  padding: 11px 24px; border-radius: var(--r-pill);
  border: 2px solid var(--line-2); background: #fff;
  font-family: var(--f); font-weight: 700; font-size: .9rem; color: var(--ink-2);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.menu-tab:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.menu-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: var(--sh-red); }

/* Mobile QR-menu: single-row, horizontally scrollable, sticky category bar */
@media (max-width: 640px){
  .menu-tabs{
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 62px;
    z-index: 30;
    margin: 0 calc(-1 * clamp(20px, 4vw, 56px)) 22px;
    padding: 11px clamp(20px, 4vw, 56px);
    background: var(--bg-soft);
    box-shadow: 0 6px 14px -8px rgba(43,22,12,.35);
  }
  .menu-tabs::-webkit-scrollbar{ display: none; }
  .menu-tab{
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 9px 17px;
    font-size: .86rem;
  }
  .menu-tab.active{ box-shadow: 0 3px 10px rgba(123,28,44,.35); }
}

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-item {
  display: flex; gap: 14px; align-items: center; justify-content: space-between;
  background: #fff; border-radius: var(--r); padding: 16px 18px;
  box-shadow: var(--sh-sm); transition: transform .25s var(--ease), box-shadow .25s;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.menu-info { flex: 1; min-width: 0; }
.menu-item-head { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.menu-name { font-weight: 800; font-size: 1.06rem; letter-spacing: -.01em; line-height: 1.25; }
.menu-badge {
  font-size: .6rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--red); background: var(--red-soft); padding: 3px 9px; border-radius: var(--r-pill);
}
.menu-desc { font-size: .84rem; color: var(--ink-3); line-height: 1.45; margin-top: 4px; }
.menu-right { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; flex-shrink: 0; }
.menu-price { font-weight: 900; font-size: 1.28rem; color: var(--red); letter-spacing: -.01em; white-space: nowrap; }
.menu-empty { text-align: center; color: var(--ink-3); padding: 60px 0; font-size: 1rem; grid-column: 1/-1; }

/* Menu category sections (real-menu feel) */
.menu-section { margin-bottom: clamp(30px, 5vw, 44px); }
.menu-section:last-child { margin-bottom: 0; }
.menu-cat-head {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 900; color: var(--red);
  letter-spacing: -.01em; display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.menu-cat-head::after {
  content: ''; flex: 1; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(198,160,82,0));
}

/* ── TIMELINE (about) ── */
.timeline { position: relative; max-width: 740px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px; background: var(--line-2); }
.tl-item { position: relative; padding: 0 0 38px 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 9px; top: 2px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--red); border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--red-soft), var(--sh-sm);
}
.tl-year { font-weight: 900; color: var(--red); font-size: 1.05rem; letter-spacing: .5px; }
.tl-item h4 { font-weight: 800; font-size: 1.18rem; margin: 3px 0 7px; letter-spacing: -.01em; }
.tl-item p { color: var(--ink-3); font-size: .94rem; line-height: 1.65; }

/* ── VALUES ── */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: #fff; border-radius: var(--r); padding: 32px 24px; text-align: center;
  box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.value-ico {
  width: 62px; height: 62px; border-radius: 18px; margin: 0 auto 18px;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; font-size: 1.7rem;
}
.value-card h4 { font-weight: 800; font-size: 1.08rem; margin-bottom: 9px; letter-spacing: -.01em; }
.value-card p { color: var(--ink-3); font-size: .88rem; line-height: 1.6; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gal-item {
  position: relative; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-sm); cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,9,7,.5) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item.wide { grid-column: span 2; }
.gal-item.tall { grid-row: span 2; }

/* ── INNER PAGE RESPONSIVE ── */
@media (max-width: 980px) {
  .menu-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 1; }
}
@media (max-width: 560px) {
  .values { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-item.tall { grid-row: span 1; }
  .menu-thumb { width: 84px; height: 84px; }
}

/* ── CONTACT PAGE ── */
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: clamp(40px, 6vw, 60px); }
.info-card {
  background: #fff; border-radius: var(--r); padding: 30px 22px; text-align: center;
  box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.info-card .ico {
  width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 16px;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; font-size: 1.5rem;
}
.info-card h4 { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; font-weight: 800; }
.info-card p { font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.5; }
.info-card a { color: var(--ink); transition: color .2s; }
.info-card a:hover { color: var(--red); }

.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: stretch; }
.contact-form-card { background: #fff; border-radius: var(--r-lg); padding: clamp(28px, 4vw, 46px); box-shadow: var(--sh); }
.contact-form-card h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em; }
.contact-form-card .muted { color: var(--ink-3); font-size: .92rem; margin-bottom: 26px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: .84rem; margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--line-2); border-radius: 12px;
  font-family: var(--f); font-size: .95rem; color: var(--ink); background: var(--bg-soft);
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.form-field textarea { resize: vertical; min-height: 132px; }
.contact-form-card .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: .78rem; color: var(--ink-3); text-align: center; margin-top: 14px; }

.contact-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); min-height: 460px; position: relative; }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; filter: grayscale(.15) contrast(1.05); }

@media (max-width: 980px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 340px; }
}
@media (max-width: 560px) { .info-cards { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   MENU CART / WHATSAPP ORDERING
   ═══════════════════════════════════════════════════ */
/* Card footer: price + qty control */
.menu-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }

.qty-add {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  font-size: 1.5rem; font-weight: 400; line-height: 1;
  display: grid; place-items: center;
  box-shadow: var(--sh-red); transition: transform .18s var(--ease), background .2s;
}
.qty-add:hover { background: var(--red-dark); transform: scale(1.1); }

.qty-stepper {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-soft); border-radius: var(--r-pill); padding: 4px;
}
.qty-btn {
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--red); color: #fff; font-size: 1.2rem; font-weight: 400; line-height: 1;
  display: grid; place-items: center; transition: background .2s, transform .15s;
}
.qty-btn:hover { background: var(--red-dark); transform: scale(1.08); }
.qty-n { min-width: 22px; text-align: center; font-weight: 800; color: var(--ink); font-size: 1rem; }

/* Cart floating button (added to .fab on menu page) */
.cart-fab {
  position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  font-size: 1.35rem; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(123,28,44,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.cart-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 26px rgba(123,28,44,.46); }
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: var(--r-pill); background: var(--ink); color: #fff;
  font-size: .72rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid #fff;
}
.cart-fab.empty .cart-badge { display: none; }

/* Drawer */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,9,7,.55); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(430px, 100%);
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(101%); transition: transform .4s var(--ease);
  box-shadow: -24px 0 70px rgba(0,0,0,.28);
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.cart-head h3 { font-size: 1.28rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.cart-close {
  background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink-3);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; transition: background .2s, color .2s;
}
.cart-close:hover { background: var(--bg-soft); color: var(--ink); }

.cart-scroll { flex: 1; overflow-y: auto; padding: 8px 24px 20px; }
.cart-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-weight: 700; font-size: .96rem; line-height: 1.3; }
.cart-line-price { color: var(--red); font-weight: 700; font-size: .86rem; margin-top: 2px; }
.cart-line .qty-stepper { background: var(--bg-soft); }
.cart-empty { text-align: center; color: var(--ink-3); padding: 56px 20px; }
.cart-empty .big { font-size: 2.6rem; margin-bottom: 12px; color: var(--ink-3); display: inline-flex; }
.cart-empty .big svg { width: 1em; height: 1em; }

/* Order form */
.cart-form { margin-top: 18px; }
.cart-form.hidden { display: none; }
.cart-form h4 { font-size: .78rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-3); margin: 6px 0 10px; }
.otype, .pay { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.otype-btn, .pay-btn {
  padding: 11px 8px; border-radius: 12px; border: 2px solid var(--line-2);
  background: #fff; font-family: var(--f); font-weight: 700; font-size: .85rem;
  cursor: pointer; color: var(--ink-2); transition: border-color .2s, background .2s, color .2s;
}
.otype-btn.active, .pay-btn.active { border-color: var(--red); background: var(--red-soft); color: var(--red); }
.cfield { margin-bottom: 12px; }
.cfield.hidden { display: none; }
.cfield label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: 5px; color: var(--ink-2); }
.cfield input, .cfield textarea {
  width: 100%; padding: 11px 13px; border: 2px solid var(--line-2); border-radius: 11px;
  font-family: var(--f); font-size: .92rem; background: #fff; color: var(--ink);
  transition: border-color .2s;
}
.cfield input:focus, .cfield textarea:focus { outline: none; border-color: var(--red); }
.cfield textarea { min-height: 60px; resize: vertical; }

.cart-foot { border-top: 1px solid var(--line); padding: 16px 24px 20px; background: var(--bg-soft); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total span { font-weight: 700; color: var(--ink-2); }
.cart-total b { font-size: 1.5rem; color: var(--red); font-weight: 900; letter-spacing: -.01em; }
.cart-order { width: 100%; justify-content: center; }
.cart-order:disabled { opacity: .5; cursor: not-allowed; }
.cart-clear {
  width: 100%; background: none; border: none; color: var(--ink-3);
  font-family: var(--f); font-size: .82rem; font-weight: 600; padding: 12px; cursor: pointer; margin-top: 4px;
  transition: color .2s;
}
.cart-clear:hover { color: var(--red); }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; }
  .menu-thumb { width: 78px; height: 78px; }
}
