/* =========================================================
   Little Myanmar — Halal Myanmar Restaurant
   Apple-inspired, warm editorial, mobile-first
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* palette */
  --maroon:      #8B1A2B;
  --maroon-deep: #6E1322;
  --maroon-soft: #A8324A;
  --gold:        #C9A84C;
  --gold-bright: #E0C16A;
  --cream:       #FAF8F4;
  --cream-warm:  #F3ECE0;
  --charcoal:    #1C1C1E;
  --ink:         #2A2326;
  --muted:       #6B5F60;
  --line:        rgba(28,28,30,.10);

  /* type */
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* rhythm */
  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);
  --radius: 22px;
  --radius-lg: 30px;

  /* shadow */
  --shadow-sm: 0 2px 10px rgba(28,18,20,.06);
  --shadow-md: 0 18px 40px -18px rgba(28,18,20,.30);
  --shadow-lg: 0 40px 80px -30px rgba(40,15,22,.45);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, .96rem + .25vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--maroon); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 12px;
  z-index: 200; transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Shared bits ---------- */
.section { padding: var(--section-y) var(--pad); }
.eyebrow {
  font-size: .76rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 28px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow--gold { color: var(--gold-bright); }
.eyebrow--gold::before { background: var(--gold); }

.section-title {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  color: var(--maroon-deep);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--cream); }
.section-sub { color: var(--muted); max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--maroon); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .95rem 1.9rem; border-radius: 100px;
  font-family: var(--body); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn--gold { --bg: var(--gold); --fg: #2A1A0E; box-shadow: 0 14px 30px -12px rgba(201,168,76,.7); }
.btn--gold:hover { --bg: var(--gold-bright); }
.btn--maroon { --bg: var(--maroon); --fg:#fff; }
.btn--ghost {
  background: transparent; color: var(--cream); border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--pad);
  transition: padding .4s var(--ease);
}
.nav.scrolled {
  background: rgba(250,248,244,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(0,0,0,.4);
}
.nav.scrolled .nav__inner { padding-top: .8rem; padding-bottom: .8rem; }

.nav__brand { display: flex; align-items: center; gap: .65rem; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 11px; object-fit: cover; flex: none;
  box-shadow: var(--shadow-sm);
}
.brand-logo--lg { width: 48px; height: 48px; border-radius: 13px; }
.nav__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(140deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-bright); font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  box-shadow: inset 0 0 0 1.5px rgba(201,168,76,.55), var(--shadow-sm);
  flex: none;
}
.nav__name {
  font-family: var(--display); font-weight: 700; font-size: 1.22rem; color: var(--maroon-deep);
  letter-spacing: -.01em;
  transition: color .4s var(--ease);
}
.nav:not(.scrolled) .nav__name { color: #fff; text-shadow: 0 1px 20px rgba(0,0,0,.4); }
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,.92); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-weight: 500; font-size: .98rem; color: var(--ink);
  position: relative; transition: color .25s;
}
.nav__links a:not(.nav__cta)::after {
  content:""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--maroon); color: #fff !important; padding: .55rem 1.25rem; border-radius: 100px;
  font-weight: 600; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; border-radius: 10px;
}
.nav__burger span {
  width: 26px; height: 2px; border-radius: 2px; background: #fff; display: block;
  transition: transform .35s var(--ease), opacity .25s, background .4s;
}
.nav.scrolled .nav__burger span { background: var(--maroon-deep); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--pad) 4rem; overflow: hidden; isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -12% 0 0 0; z-index: -3;
  background-position: center 30%; background-size: cover; background-repeat: no-repeat;
  background-image: url('../assets/hero-feast.jpg');
  background-image: -webkit-image-set(
    url('../assets/hero-feast.webp') type('image/webp'),
    url('../assets/hero-feast.jpg') type('image/jpeg'));
  background-image: image-set(
    url('../assets/hero-feast.webp') type('image/webp'),
    url('../assets/hero-feast.jpg') type('image/jpeg'));
  transform: scale(1.08);
  will-change: transform;
}
/* Lighter hero on phones */
@media (max-width: 760px) {
  .hero__bg {
    background-image: url('../assets/hero-feast-mobile.jpg');
    background-image: -webkit-image-set(
      url('../assets/hero-feast-mobile.webp') type('image/webp'),
      url('../assets/hero-feast-mobile.jpg') type('image/jpeg'));
    background-image: image-set(
      url('../assets/hero-feast-mobile.webp') type('image/webp'),
      url('../assets/hero-feast-mobile.jpg') type('image/jpeg'));
  }
}
.hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 20% 30%, rgba(110,19,34,.32) 0%, transparent 60%),
    linear-gradient(180deg, rgba(20,8,12,.55) 0%, rgba(20,8,12,.30) 35%, rgba(110,19,34,.55) 78%, rgba(50,10,18,.92) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: .06; pointer-events: none;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content { max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold-bright); font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  font-size: .8rem; margin-bottom: 1.5rem;
  padding: .5rem 1rem; border: 1px solid rgba(224,193,106,.4); border-radius: 100px;
  background: rgba(20,8,12,.25); backdrop-filter: blur(6px);
}
.hero__crescent { font-size: 1rem; }
.hero__title {
  color: #fff; font-size: clamp(3.4rem, 2rem + 11vw, 8.5rem); font-weight: 800;
  line-height: .92; letter-spacing: -.025em; margin-bottom: 1.4rem;
  text-shadow: 0 6px 50px rgba(0,0,0,.4);
}
.hero__title span { display: block; }
.hero__title--accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 55%, #fff5dc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tagline {
  color: var(--cream); font-family: var(--display); font-style: italic;
  font-size: clamp(1.15rem, 1rem + 1vw, 1.6rem); margin-bottom: 1rem; font-weight: 500;
}
.hero__sub {
  color: rgba(255,255,255,.85); max-width: 50ch; margin-bottom: 2.2rem; font-size: 1.05rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.hero__scroll-line { width: 1px; height: 42px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content:""; position: absolute; inset: 0; background: var(--gold-bright);
  animation: scrollGo 2.2s var(--ease) infinite;
}
@keyframes scrollGo { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); }
.about__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.about__heading {
  font-size: clamp(2.1rem, 1.4rem + 3.5vw, 3.6rem); color: var(--maroon-deep); margin-bottom: 1.4rem;
}
.about__heading em { color: var(--gold); font-style: italic; }
.about__lead { font-size: 1.2rem; color: var(--ink); margin-bottom: 1rem; font-weight: 500; }
.about__story p { color: var(--muted); }

.about__stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2.2rem; }
.about__stat { display: flex; flex-direction: column; }
.about__stat-num {
  font-family: var(--display); font-size: 2.1rem; font-weight: 700; color: var(--maroon);
  line-height: 1;
}
.about__stat-label { font-size: .82rem; color: var(--muted); margin-top: .35rem; max-width: 14ch; }

.about__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end;
}
.cat-card__img {
  position: absolute; inset: 0; display: block;
  transition: transform .7s var(--ease);
}
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(40,12,20,.25) 55%, rgba(40,12,20,.88) 100%);
}
.cat-card__body { position: relative; z-index: 2; padding: 1.3rem; color: #fff; }
.cat-card__body h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.cat-card__body p { font-size: .85rem; color: rgba(255,255,255,.82); line-height: 1.4; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card:hover .cat-card__img { transform: scale(1.08); }

/* =========================================================
   MENU
   ========================================================= */
.menu { background: var(--cream-warm); }
.menu__head { max-width: var(--maxw); margin: 0 auto 2.8rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.menu__rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem var(--pad) 1.5rem; margin: 0 calc(var(--pad) * -1);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.menu__rail::-webkit-scrollbar { display: none; }

.dish {
  scroll-snap-align: center; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.dish__img { display: block; aspect-ratio: 4/3; overflow: hidden; transition: transform .7s var(--ease); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dish__info { padding: 1.3rem 1.4rem 1.6rem; }
.dish__tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--maroon); background: rgba(139,26,43,.08); padding: .3rem .7rem; border-radius: 100px; margin-bottom: .7rem;
}
.dish__info h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: .4rem; }
.dish__info p { font-size: .9rem; color: var(--muted); line-height: 1.45; }
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dish:hover .dish__img { transform: scale(1.06); }

.menu__note {
  text-align: center; margin-top: 2rem; color: var(--muted); font-size: .9rem;
  letter-spacing: .02em;
}

/* full menu banner */
.menu__banner {
  max-width: var(--maxw); margin: clamp(3rem,6vw,5rem) auto 0; border-radius: var(--radius-lg);
  min-height: clamp(180px, 30vw, 260px);
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-md); isolation: isolate;
}
.menu__banner-img { position: absolute; inset: 0; z-index: 0; }
.menu__banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.menu__banner::after {
  content:""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(40,12,20,.86) 0%, rgba(40,12,20,.5) 45%, rgba(40,12,20,.15) 100%);
}
.menu__banner-text { position: relative; z-index: 2; padding: clamp(1.5rem,4vw,2.6rem); color: #fff; }
.menu__banner-text .eyebrow { margin-bottom: .7rem; }
.menu__banner-text h3 { font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem); max-width: 18ch; color: #fff; }

/* =========================================================
   PRESS / MEDIA
   ========================================================= */
.press { background: var(--cream); }
.press__head { max-width: var(--maxw); margin: 0 auto 2.8rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.press__grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .press__grid { grid-template-columns: 1fr 1fr; } }

.press-card {
  display: flex; flex-direction: column; gap: .75rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.2rem); box-shadow: var(--shadow-sm);
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.press-card::before {
  content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease);
}
.press-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.4); }
.press-card:hover::before { transform: scaleY(1); }

.press-card__pub { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon); }
.press-card__title { font-family: var(--display); font-style: italic; font-weight: 600; font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem); line-height: 1.3; color: var(--ink); }
.press-card__text { font-size: .92rem; color: var(--muted); line-height: 1.55; }
.press-card__link { margin-top: auto; padding-top: .4rem; font-size: .85rem; font-weight: 600; color: var(--maroon); letter-spacing: .01em; transition: gap .3s; }
.press-card:hover .press-card__link { color: var(--maroon-soft); }

/* full categorised menu */
.fullmenu {
  max-width: var(--maxw); margin: clamp(2rem,4vw,3rem) auto 0;
  display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.6rem);
}
.fullmenu__col { padding-top: 1.4rem; border-top: 2px solid var(--gold); }
.fullmenu__cat {
  font-family: var(--display); font-size: 1.4rem; color: var(--maroon-deep); margin-bottom: 1rem;
}
.fullmenu__col ul { display: flex; flex-direction: column; }
.fullmenu__col li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .6rem;
  padding: .6rem 0; border-bottom: 1px solid var(--line);
}
.fullmenu__col li span { font-weight: 600; color: var(--ink); }
.fullmenu__col li em { font-style: normal; font-size: .82rem; color: var(--muted); }

@media (min-width: 620px)  { .fullmenu { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .fullmenu { grid-template-columns: repeat(4, 1fr); } }

.visit__closed { color: var(--maroon); font-weight: 600; }

/* =========================================================
   HALAL
   ========================================================= */
.halal {
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(201,168,76,.16) 0%, transparent 50%),
    linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 70%, #4d0e1a 100%);
  color: var(--cream); position: relative; overflow: hidden;
}
.halal::before {
  content:""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0l7 23h23l-18 14 7 23-19-14-19 14 7-23L0 23h23z' fill='%23C9A84C'/%3E%3C/svg%3E");
  background-size: 80px;
}
.halal__inner {
  max-width: var(--maxw); margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
}
.halal__badge { display: flex; justify-content: center; }
.halal__ring {
  width: clamp(200px, 50vw, 270px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center; gap: .4rem;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.08), transparent 60%);
  border: 2px solid var(--gold); box-shadow: 0 0 0 8px rgba(201,168,76,.12), inset 0 0 40px rgba(201,168,76,.15);
  position: relative; animation: floaty 6s ease-in-out infinite;
}
.halal__ring::before {
  content:""; position: absolute; inset: 14px; border-radius: 50%; border: 1px dashed rgba(201,168,76,.5);
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.halal__crescent { font-size: 2.6rem; color: var(--gold-bright); }
.halal__word { font-family: var(--display); font-size: 2rem; font-weight: 800; letter-spacing: .12em; color: #fff; }
.halal__cert { font-size: .68rem; letter-spacing: .2em; color: var(--gold-bright); }

.halal__copy .section-title { margin-bottom: 1.2rem; }
.halal__text { color: rgba(255,255,255,.85); max-width: 52ch; margin-bottom: 1.6rem; }
.halal__list { display: flex; flex-direction: column; gap: .7rem; }
.halal__list li {
  position: relative; padding-left: 1.9rem; color: var(--cream); font-weight: 500;
}
.halal__list li::before {
  content:"✓"; position: absolute; left: 0; top: -1px;
  width: 1.3rem; height: 1.3rem; display: grid; place-items: center; font-size: .7rem;
  background: var(--gold); color: var(--maroon-deep); border-radius: 50%; font-weight: 800;
}

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--cream); }
.visit__head { max-width: var(--maxw); margin: 0 auto 2.8rem; text-align: center; display:flex; flex-direction:column; align-items:center; }
.visit__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
}
.visit__map {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 320px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  filter: saturate(1.05);
}
.visit__map iframe { display: block; min-height: 320px; }
.visit__card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.visit__card-title { font-size: 1.6rem; color: var(--maroon-deep); }
.visit__card-sub { color: var(--gold); font-style: italic; font-family: var(--display); margin-bottom: 1.6rem; }
.visit__row { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.visit__row p { color: var(--ink); }
.visit__icon { font-size: 1.2rem; flex: none; }
.visit__hours { width: 100%; display: flex; flex-direction: column; gap: .5rem; }
.visit__hours > div { display: flex; justify-content: space-between; gap: 1rem; }
.visit__hours span:first-child { color: var(--muted); }
.visit__hours span:last-child { font-weight: 600; color: var(--ink); }
.visit__btn { margin-top: 1.6rem; align-self: flex-start; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--charcoal); color: var(--cream); padding: clamp(3rem,6vw,4.5rem) var(--pad) 1.5rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__name { font-family: var(--display); font-size: 1.3rem; font-weight: 700; }
.footer__tag { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer__addr { font-style: normal; color: rgba(255,255,255,.7); line-height: 1.7; }
.footer__social { display: flex; gap: .8rem; }
.footer__social a {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); color: var(--cream);
  transition: transform .3s var(--ease), background .3s, border-color .3s, color .3s;
}
.footer__social a:hover { transform: translateY(-3px); background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.footer__bar {
  max-width: var(--maxw); margin: 1.5rem auto 0;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.5);
}

/* =========================================================
   SCROLL-TO-TOP
   ========================================================= */
.totop {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--maroon); color: #fff; font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.8);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s;
}
.totop.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.totop:hover { background: var(--maroon-deep); transform: translateY(-3px) scale(1.05); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.fade-up.in { opacity: 1; transform: none; }

/* hero load reveal */
.reveal { opacity: 0; transform: translateY(26px); animation: heroIn .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 720px) {
  .menu__rail { grid-auto-columns: 360px; }
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .about__story { align-self: center; }
  .halal__inner { grid-template-columns: auto 1fr; }
  .visit__grid { grid-template-columns: 1.4fr 1fr; }
  .visit__map { min-height: 480px; }
  .visit__map iframe { min-height: 480px; }
  .footer__inner { grid-template-columns: 1.4fr 1fr auto; align-items: center; }
  .footer__social { justify-content: flex-end; }
}
@media (min-width: 980px) {
  .menu__rail {
    grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible;
    margin: 0 auto; padding: 0; max-width: var(--maxw);
  }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 6rem var(--pad) 2.5rem;
    background: rgba(250,248,244,.92);
    backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%); transition: transform .5s var(--ease);
    border-radius: 0 0 28px 28px;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; color: var(--ink) !important; }
  .nav:not(.scrolled) .nav__links a { color: var(--ink) !important; }
  .nav__links a::after { display: none; }
  .nav__cta { background: var(--maroon); color: #fff !important; text-align: center; border-radius: 14px; margin-top: 1rem; border-bottom: 0; }
  body.nav-open { overflow: hidden; }
}
