:root {
  --bg: #0a0b0f;
  --bg-2: #101218;
  --bg-3: #161922;
  --text: #f5f2eb;
  --muted: #9aa1ad;
  --gold: #e8c57a;
  --gold-2: #c7923e;
  --gold-deep: #8a5c1f;
  --line: rgba(232, 197, 122, 0.2);
  --soft: rgba(255, 255, 255, 0.07);
  --ink: #0c0a06;
  --font: "Cairo", Tahoma, sans-serif;
  --radius: 18px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --section: clamp(4.5rem, 8vw, 6.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --k: #7dd3fc;
  --j: #f9a8d4;
  --c: var(--gold);
  --a: #86efac;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1000px 520px at 78% -8%, rgba(201, 146, 62, 0.14), transparent 55%),
    radial-gradient(780px 420px at 0% 28%, rgba(45, 58, 82, 0.16), transparent 50%),
    var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.container.narrow { width: min(760px, calc(100% - 2.5rem)); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(232, 197, 122, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.section-head { text-align: center; margin-bottom: 2.6rem; }
.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.3;
}
.section-head p {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #f0d59a, var(--gold-2) 55%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(184, 135, 58, 0.28);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: rgba(232, 197, 122, 0.5); color: var(--gold); }
.btn svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn.full { width: 100%; }

.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 0.55rem 0;
  background: rgba(10, 11, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 197, 122, 0.12);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding: 0.35rem 0;
  background: rgba(10, 11, 15, 0.96);
  border-bottom-color: rgba(232, 197, 122, 0.28);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}
.nav-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  min-width: 0;
  color: inherit;
}
.brand img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(232, 197, 122, 0.28));
  transition: transform 0.35s var(--ease), filter 0.35s ease;
}
.brand:hover img {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 18px rgba(232, 197, 122, 0.45));
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  line-height: 1.1;
  min-width: 0;
  padding-block: 0.1rem;
}
.brand-text strong {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-depts {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.55rem;
  color: rgba(232, 197, 122, 0.88);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.brand-depts span {
  position: relative;
  padding: 0;
}
.brand-depts span:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: -0.3rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(232, 197, 122, 0.55);
  transform: translate(50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-link {
  position: relative;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(232, 197, 122, 0.06);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  right: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(50%);
  transition: width 0.25s var(--ease);
  opacity: 0.9;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 48%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 197, 122, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.nav-phone svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-phone:hover {
  border-color: rgba(232, 197, 122, 0.45);
  background: rgba(232, 197, 122, 0.08);
  transform: translateY(-1px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d59a, var(--gold-2) 55%, var(--gold-deep));
  color: var(--ink);
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(184, 135, 58, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184, 135, 58, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(232, 197, 122, 0.22);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(100vh, 980px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 7rem 1.25rem 4.5rem;
}
.hero-stage { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(circle, rgba(232, 197, 122, 0.18), transparent 62%);
  filter: blur(10px);
  animation: glowPulse 5s ease-in-out infinite;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 197, 122, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 197, 122, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 72%);
  animation: meshDrift 20s linear infinite;
}
.hero-shield-bg {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(520px, 78vw);
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}
.hero-crest {
  position: relative;
  width: 160px;
  margin: 0 auto 1.2rem;
  animation: riseIn 0.85s var(--ease) both;
}
.hero-crest img {
  position: relative;
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 20px 42px rgba(184, 135, 58, 0.4));
}
.crest-aura {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 122, 0.35), transparent 68%);
  animation: glowPulse 4.5s ease-in-out infinite;
}
.hero-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  animation: riseIn 0.85s var(--ease) 0.06s both;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  animation: riseIn 0.85s var(--ease) 0.1s both;
}
.hero-depts {
  list-style: none;
  margin: 1.55rem auto 0;
  padding: 0;
  width: fit-content;
  max-width: min(100%, 42rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.6rem;
  animation: riseIn 0.85s var(--ease) 0.16s both;
}
.hero-depts::before,
.hero-depts::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 197, 122, 0.55), transparent);
  flex: 0 0 auto;
}
.hero-depts li {
  position: relative;
  padding: 0;
  color: #e8c57a;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-depts li::after { content: none; }
.hero-lead {
  margin: 1.4rem auto 0;
  max-width: 34rem;
  color: #c7ced8;
  font-size: 1.05rem;
  line-height: 1.8;
  animation: riseIn 0.85s var(--ease) 0.22s both;
}
.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  animation: riseIn 0.85s var(--ease) 0.28s both;
}
.scroll-cue {
  position: absolute;
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  z-index: 2;
}
.scroll-cue i {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(232, 197, 122, 0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.brand-band {
  height: 12px;
  background-color: #0d1016;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='22' viewBox='0 0 36 22'%3E%3Cpath d='M0 11 L7 0 L15 0 L8 11 L15 22 L7 22 Z M18 11 L25 0 L33 0 L26 11 L33 22 L25 22 Z' fill='%23e8c57a'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
  border-block: 1px solid rgba(232, 197, 122, 0.5);
  box-shadow: 0 0 14px rgba(232, 197, 122, 0.16);
}

.stats {
  padding: 1.5rem 0 0.25rem;
  border-bottom: 1px solid var(--soft);
  background: linear-gradient(180deg, rgba(16, 18, 24, 0.9), transparent);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.2rem;
}
.stat {
  text-align: center;
  padding: 0.9rem 0.6rem;
  border-inline-end: 1px solid var(--soft);
}
.stat:last-child { border: none; }
.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 800;
  line-height: 1.1;
}
.stat > span { display: block; margin-top: 0.3rem; font-weight: 700; }
.stat small { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.8rem; }

.pillars, .about, .services, .brands, .specialty, .why, .faq, .contact, .showcase {
  padding: var(--section) 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pillar {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.pillar-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pillar-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 15, 0.72));
  pointer-events: none;
}
.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.pillar:hover .pillar-media img { transform: scale(1.06); }
.pillar-body { padding: 1.05rem 1.1rem 1.25rem; }
.ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(232, 197, 122, 0.1);
  border: 1px solid var(--line);
  margin-bottom: 0.9rem;
}
.pillar .ico {
  width: 40px;
  height: 40px;
  margin-bottom: 0.7rem;
}
.ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar .ico svg { width: 18px; height: 18px; }
.pillars h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.pillars p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.showcase { padding-top: calc(var(--section) - 1rem); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}
.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(232, 197, 122, 0.18);
  min-height: 220px;
  background: #12141a;
}
.shot-lg {
  grid-row: span 2;
  min-height: 460px;
}
.shot-wide {
  grid-column: 2 / span 2;
  min-height: 220px;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.92) contrast(1.05);
}
.shot:hover img { transform: scale(1.05); }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 9, 12, 0.88)),
    linear-gradient(135deg, rgba(184, 135, 58, 0.12), transparent 45%);
  pointer-events: none;
}
.shot figcaption {
  position: absolute;
  inset-inline-start: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #f5f2eb;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo {
  position: relative;
  margin: 0;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #101218;
}
.about-photo > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.06);
}
.about-photo-overlay {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(10, 11, 15, 0.82);
  border: 1px solid rgba(232, 197, 122, 0.28);
  backdrop-filter: blur(12px);
}
.about-photo-overlay img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(184, 135, 58, 0.35));
}
.about-photo-overlay p {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
}
.about-photo-overlay span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}
.about-chip {
  position: absolute;
  inset-inline-end: 1rem;
  top: 1rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 11, 15, 0.88);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
}
.about-copy > p { margin: 0; color: var(--muted); }
.checks {
  margin: 1.3rem 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.checks li {
  position: relative;
  padding-inline-start: 1.25rem;
  font-weight: 600;
}
.checks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.services { background: linear-gradient(180deg, transparent, rgba(16, 18, 24, 0.7), transparent); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--soft);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 197, 122, 0.35);
}
.service.accent {
  background: linear-gradient(160deg, rgba(184, 135, 58, 0.16), rgba(255, 255, 255, 0.02));
  border-color: rgba(232, 197, 122, 0.3);
}
.service h3 { margin: 0 0 0.45rem; font-size: 1.1rem; }
.service p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.dept-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.chip {
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.88rem;
}
.chip.k { color: var(--k); border-color: rgba(125, 211, 252, 0.35); background: rgba(125, 211, 252, 0.08); }
.chip.j { color: var(--j); border-color: rgba(249, 168, 212, 0.35); background: rgba(249, 168, 212, 0.08); }
.chip.c { color: var(--c); border-color: rgba(232, 197, 122, 0.4); background: rgba(232, 197, 122, 0.1); }
.chip.a { color: var(--a); border-color: rgba(134, 239, 172, 0.35); background: rgba(134, 239, 172, 0.08); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.brand-card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--soft);
  background: var(--bg-2);
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}
.brand-card.k::before { background: var(--k); }
.brand-card.j::before { background: var(--j); }
.brand-card.c::before { background: var(--c); }
.brand-card.a::before { background: var(--a); }
.brand-card:hover { transform: translateY(-4px); }
.brand-card.k:hover { border-color: rgba(125, 211, 252, 0.4); }
.brand-card.j:hover { border-color: rgba(249, 168, 212, 0.4); }
.brand-card.c:hover { border-color: rgba(232, 197, 122, 0.45); }
.brand-card.a:hover { border-color: rgba(134, 239, 172, 0.4); }
.brand-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.brand-top span { font-weight: 800; }
.brand-top b {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.brand-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; line-height: 1.45; }
.brand-card > p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.pills span {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--soft);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.8rem;
  font-weight: 600;
}

.specialty { background: linear-gradient(180deg, transparent, rgba(16, 18, 24, 0.85), transparent); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.spec-grid > div {
  padding: 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--soft);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.spec-grid > div:hover {
  border-color: rgba(232, 197, 122, 0.35);
  transform: translateY(-3px);
}
.spec-grid h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.spec-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.brand-cloud {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.brand-cloud span {
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 700;
  background: rgba(232, 197, 122, 0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.why-grid article {
  padding: 1.3rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}
.why-grid h3 { margin: 0 0 0.45rem; color: var(--gold); font-size: 1.02rem; }
.why-grid p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-list details {
  border: 1px solid var(--soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.15rem 1rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2.1rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(620px 260px at 100% 0%, rgba(184, 135, 58, 0.18), transparent 60%),
    var(--bg-2);
  box-shadow: var(--shadow);
}
.contact-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 800;
}
.contact-panel > div > p { margin: 0.65rem 0 0; color: var(--muted); }
.phone-xl {
  display: inline-block;
  margin-top: 1rem;
  font-size: clamp(1.85rem, 5vw, 2.7rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.contact-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contact-card {
  text-align: center;
  padding: 1.8rem 1.3rem;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--soft);
}
.contact-card img { margin: 0 auto 1rem; }
.contact-card h3 { margin: 0; }
.contact-card p { margin: 0.4rem 0 0; }
.contact-card .muted { color: var(--muted); font-size: 0.9rem; }
.contact-card .btn { margin-top: 1.15rem; }

.footer {
  border-top: 1px solid var(--soft);
  padding: 2.5rem 0 6.5rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.footer-brand { display: flex; gap: 0.85rem; }
.footer-brand strong { display: block; color: var(--text); }
.footer-brand p { margin: 0.35rem 0 0; }
.footer h4 { margin: 0 0 0.7rem; color: var(--text); }
.footer a { display: block; margin-top: 0.4rem; transition: color 0.2s ease; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--soft);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  inset-inline-end: 1.1rem;
  bottom: 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1ebe57;
  color: #fff;
  box-shadow: 0 12px 30px rgba(30, 190, 87, 0.35);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

.mobile-dock {
  display: none;
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 85;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.45rem;
  border-radius: 16px;
  background: rgba(10, 11, 15, 0.94);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-dock a {
  text-align: center;
  padding: 0.7rem 0.35rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  background: rgba(232, 197, 122, 0.08);
  color: var(--gold);
}
.mobile-dock .wa-dock {
  background: #1ebe57;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes meshDrift {
  from { transform: translateY(0); }
  to { transform: translateY(52px); }
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .nav-link { padding: 0.5rem 0.55rem; font-size: 0.84rem; }
  .brand-text strong { font-size: 1rem; }
  .brand-depts span:last-child { display: none; }
}

@media (max-width: 980px) {
  .stats-row, .pillars-grid, .why-grid, .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-inline-end: none; border-bottom: 1px solid var(--soft); }
  .about-grid, .brands-grid, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .shot-lg {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }
  .shot-wide {
    grid-column: 1 / -1;
    min-height: 200px;
  }
  .navbar { z-index: 1200; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.35rem 1rem 1.1rem;
    background: #0a0b0f;
    border-bottom: 1px solid rgba(232, 197, 122, 0.28);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.72);
    z-index: 1300;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 0.95rem 0.35rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
  }
  .nav-link.active,
  .nav-link:hover {
    background: rgba(232, 197, 122, 0.08);
  }
  .nav-link::after { display: none; }
  .menu-toggle { display: inline-flex; margin-inline-start: auto; order: 3; }
  .nav-actions { display: none; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 760px) {
  .container { width: min(1080px, calc(100% - 1.35rem)); }
  .brand-text strong { font-size: 0.92rem; }
  .brand img { width: 40px; height: 40px; }
  .brand-depts { font-size: 0.62rem; gap: 0.4rem; }
  .brand-depts span:not(:last-child)::after {
    inset-inline-end: -0.22rem;
    width: 2px;
    height: 2px;
  }
  .nav-row { min-height: 60px; gap: 0.65rem; }
  .navbar {
    padding:
      max(0.35rem, env(safe-area-inset-top))
      0
      0.35rem;
  }
  .stats-row, .pillars-grid, .why-grid, .spec-grid, .services-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .shot, .shot-lg, .shot-wide { min-height: 210px; }
  .about-photo, .about-photo > img { min-height: 280px; }
  .hero {
    min-height: auto;
    padding: 5.6rem 1rem 2.4rem;
  }
  .hero-crest, .hero-crest img { width: 96px; height: 96px; }
  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.65rem;
  }
  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.35rem); }
  .hero-depts {
    margin-top: 1.05rem;
    gap: 0.55rem 1rem;
  }
  .hero-depts::before,
  .hero-depts::after { width: 1.25rem; }
  .hero-depts li {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  .hero-lead { font-size: 0.95rem; margin-top: 0.9rem; }
  .hero-actions {
    margin-top: 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { width: 100%; }
  .hero-shield-bg { width: min(340px, 88vw); opacity: 0.55; }
  .section-head { margin-bottom: 1.6rem; }
  .pillars, .about, .services, .brands, .specialty, .why, .faq, .contact, .showcase {
    padding: 3.4rem 0;
  }
  .contact-panel { padding: 1.35rem; border-radius: 20px; }
  .phone-xl { font-size: 1.7rem; }
  .scroll-cue, .wa-float { display: none; }
  .mobile-dock {
    display: grid;
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    inset-inline: 0.65rem;
  }
  .dept-chips { gap: 0.5rem; }
  .chip { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .pills { gap: 0.45rem; }
  .pills span { font-size: 0.75rem; }
  .footer {
    padding-bottom: calc(6.8rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 520px) {
  .brand-text strong {
    max-width: 11.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-depts { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
