/* ============================================================
   Annielito's Catering Services — design system
   Brand: black + butter gold (#EFEF75) from the company logo
   ============================================================ */

:root {
  --bg: #0c0c0a;
  --bg-2: #12120f;
  --card: #171713;
  --line: rgba(239, 239, 117, 0.14);
  --line-soft: rgba(245, 242, 233, 0.08);
  --gold: #efef75;
  --gold-deep: #c0c164;
  --cream: #f5f2e9;
  --muted: rgba(245, 242, 233, 0.62);
  --faint: rgba(245, 242, 233, 0.38);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--gold); color: #111; }

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold-deep);
}

.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- layout ---------- */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-alt { background: var(--bg-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--gold); color: #12120c; transform: translateY(-2px); }
.btn-solid { background: var(--gold); color: #12120c; }
.btn-solid:hover { background: var(--cream); border-color: var(--cream); }
.btn-ghost { border-color: rgba(245, 242, 233, 0.35); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); background: var(--cream); color: #12120c; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(10, 10, 8, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1360px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand img { width: 54px; height: 54px; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.brand-name span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { border: 1px solid var(--gold); color: var(--gold) !important; padding: 0.55rem 1.3rem !important; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: #12120c !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.6px;
  background: var(--cream);
  margin: 6px auto;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(4rem, 9vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-media img { animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,12,10,0.55) 0%, rgba(12,12,10,0.18) 40%, rgba(12,12,10,0.9) 88%),
    radial-gradient(90% 60% at 20% 90%, rgba(12,12,10,0.75), transparent 70%);
}
.hero-inner { max-width: 780px; }
.hero .kicker { color: var(--gold); }
.hero .kicker::before { background: var(--gold); }
.hero h1 {
  font-size: clamp(2.9rem, 7.4vw, 5.4rem);
  font-weight: 600;
  margin: 1.3rem 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { max-width: 540px; color: rgba(245, 242, 233, 0.8); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: 2.2rem;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex; align-items: center; gap: 0.9rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 2.6s ease-in-out infinite;
}
@keyframes drip { 0%,100% { opacity: 0.25; } 50% { opacity: 1; } }

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(9.5rem, 18vh, 13rem) 0 clamp(3.4rem, 7vh, 5rem);
  overflow: hidden;
}
.page-hero.with-img { min-height: 62vh; display: flex; align-items: flex-end; }
.page-hero .hero-media img { animation: none; }
.page-hero.with-img::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,12,10,0.6), rgba(12,12,10,0.35) 45%, var(--bg) 96%);
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-top: 1rem; }
.page-hero p.lede { max-width: 620px; color: var(--muted); margin-top: 1.1rem; font-size: 1.1rem; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-img {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.card-img:hover { transform: translateY(-6px); border-color: var(--line); }
.card-img figure { overflow: hidden; aspect-ratio: 4 / 3; margin: 0; }
.card-img figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card-img:hover figure img { transform: scale(1.06); }
.card-body { padding: 1.6rem 1.7rem 1.9rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.45rem; margin-bottom: 0.55rem; }
.card-body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card-link {
  margin-top: 1.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.card-link svg { transition: transform 0.3s var(--ease); }
.card-img:hover .card-link svg, a.more:hover svg { transform: translateX(5px); }

/* feature (why choose) */
.feature {
  padding: 1.9rem 1.7rem;
  border: 1px solid var(--line-soft);
  background: var(--card);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.feature:hover { border-color: var(--line); transform: translateY(-4px); }
.feature svg { width: 30px; height: 30px; stroke: var(--gold); margin-bottom: 1.1rem; }
.feature h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.94rem; }

/* dish scroller */
.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 320px);
  gap: 1.4rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
}
.scroller::-webkit-scrollbar { height: 4px; }
.scroller::-webkit-scrollbar-thumb { background: var(--gold-deep); }
.dish { scroll-snap-align: start; }
.dish figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0 0 1rem;
  border: 1px solid var(--line-soft);
}
.dish figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dish:hover figure img { transform: scale(1.07); }
.dish h3 { font-size: 1.3rem; }
.dish p { color: var(--faint); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.25rem; }

/* ---------- gallery masonry ---------- */
.masonry { columns: 3 300px; column-gap: 1.2rem; }
.masonry a {
  display: block;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  break-inside: avoid;
  position: relative;
}
.masonry img {
  width: 100%;
  transition: transform 0.7s var(--ease), filter 0.7s;
}
.masonry a:hover img { transform: scale(1.045); filter: brightness(1.08); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(8, 8, 6, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; object-fit: contain; }
.lightbox button {
  position: absolute;
  background: none;
  border: 1px solid rgba(245,242,233,0.3);
  color: var(--cream);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lightbox button:hover { border-color: var(--gold); color: var(--gold); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- clients ---------- */
.client-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.client-wall .client {
  background: #f7f5ee;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  min-height: 120px;
  filter: grayscale(35%);
  opacity: 0.92;
  transition: filter 0.4s, opacity 0.4s, transform 0.4s var(--ease);
}
.client-wall .client:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); }
.client-wall img { max-height: 64px; max-width: 82%; object-fit: contain; }
.client-wall .client.dark { background: #101010; }

/* marquee (home trusted-by) */
.marquee { overflow: hidden; position: relative; }
.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee .client {
  width: 190px;
  min-height: 104px;
  flex: none;
}

/* ---------- menu page ---------- */
.menu-nav {
  position: sticky;
  top: 70px;
  z-index: 60;
  background: rgba(10, 10, 8, 0.9);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--line-soft);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav ul {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  padding: 0.65rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1220px;
  margin: 0 auto;
  width: max-content;
  min-width: 100%;
}
.menu-nav a {
  display: block;
  white-space: nowrap;
  padding: 0.45rem 1.05rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.menu-nav a:hover, .menu-nav a.active { color: var(--gold); border-color: var(--line); }

.menu-section { padding: clamp(3.6rem, 7vw, 5.5rem) 0; scroll-margin-top: 128px; }
.menu-intro { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: end; justify-content: space-between; margin-bottom: 2.6rem; }
.menu-intro .section-head { margin-bottom: 0; }
.menu-note { color: var(--faint); font-size: 0.9rem; margin-top: 2rem; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pkg {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 2rem 1.9rem 2.1rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.pkg:hover { border-color: var(--line); transform: translateY(-5px); }
.pkg.highlight { border-color: var(--line); background: linear-gradient(170deg, rgba(239,239,117,0.06), var(--card) 55%); }
.pkg-tag { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }
.pkg h3 { font-size: 1.55rem; margin: 0.5rem 0 0.2rem; }
.pkg-price { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.pkg-price small { font-family: var(--sans); font-size: 0.78rem; color: var(--faint); letter-spacing: 0.08em; }
.pkg ul { list-style: none; margin: 1.3rem 0 1.5rem; flex: 1; }
.pkg li {
  padding: 0.46rem 0 0.46rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
}
.pkg li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05em;
  width: 14px; height: 1px;
  background: var(--gold-deep);
}
.pkg li:last-child { border-bottom: 0; }
.pkg-min { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

/* price tables (food trays) */
.price-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.price-table caption {
  text-align: left;
  font-family: var(--serif);
  font-size: 1.5rem;
  padding-bottom: 0.9rem;
  color: var(--cream);
}
.price-table th, .price-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: right;
  color: var(--muted);
  font-weight: 300;
}
.price-table th { color: var(--faint); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }
.price-table th:first-child, .price-table td:first-child { text-align: left; color: var(--cream); }
.price-table tr:hover td { color: var(--cream); }

/* ---------- about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split .imgbox { position: relative; }
.split .imgbox img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line-soft); }
.imgbox .accent {
  position: absolute;
  inset: auto auto -18px -18px;
  width: 45%; height: 45%;
  border: 1px solid var(--gold-deep);
  z-index: -1;
}
.prose p + p { margin-top: 1.1rem; }
.prose p { color: var(--muted); }
.prose strong { color: var(--cream); font-weight: 500; }

.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.value {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.value h3 { font-size: 1.22rem; color: var(--gold); margin-bottom: 0.4rem; }
.value p { font-size: 0.9rem; color: var(--muted); }

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 2.6rem; }
.stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin-top: 0.4rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cta-band .hero-media img { animation: none; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(10, 10, 8, 0.82);
}
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 700px; margin: 1rem auto 1.2rem; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 2.2rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 1.5rem 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.info-card + .info-card { margin-top: 1rem; }
.info-card svg { width: 24px; height: 24px; stroke: var(--gold); flex: none; margin-top: 0.2rem; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.98rem; }
.info-card a:hover { color: var(--gold); }

.form {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.form h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.form > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s;
}
.field select { appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- testimonials ---------- */
.quote-card {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 2rem 1.9rem;
}
.quote-card .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.3rem; line-height: 1.5; }
.quote-card figcaption { margin-top: 1.2rem; color: var(--faint); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- footer ---------- */
footer {
  background: #090907;
  border-top: 1px solid var(--line-soft);
  padding: 4.5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-grid h4 {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-brand img { width: 74px; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--muted); font-size: 0.94rem; max-width: 300px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a { color: var(--muted); font-size: 0.95rem; transition: color 0.3s; }
.footer-grid a:hover { color: var(--gold); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.6rem;
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  margin-top: 3.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: var(--faint);
  font-size: 0.85rem;
}

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .client-wall { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(9, 9, 7, 0.97);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s;
    z-index: 120;
  }
  .nav-open .nav-links { transform: none; opacity: 1; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .split, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .client-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-scroll { display: none; }
  .price-wrap { overflow-x: auto; }
  .imgbox .accent { display: none; }
}
