/*
Theme Name: K1 Group Final
Theme URI: https://k1groups.com/
Author: K1 Group
Description: Final custom WordPress theme for K1 Group with multi-page website, editable content panel, K1 leadership, presence addresses, gallery, clients and service sections.
Version: 2.2.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: k1group-final
*/

:root {
  --blue: #0989ca;
  --blue-deep: #052b43;
  --blue-ink: #041c2d;
  --green: #46b64a;
  --amber: #f59e0b;
  --red: #ef4444;
  --pink: #d946ef;
  --paper: #f7fbff;
  --white: #ffffff;
  --ink: #101820;
  --muted: #5d6c78;
  --line: rgba(255, 255, 255, .28);
  --soft-line: rgba(5, 43, 67, .10);
  --glass: rgba(255, 255, 255, .70);
  --glass-dark: rgba(5, 31, 49, .62);
  --shadow: 0 24px 70px rgba(5, 43, 67, .18);
  --radius: 8px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(9, 137, 202, .06), transparent 420px),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.08;
  color: var(--blue-deep);
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(178px, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 60px rgba(5, 43, 67, .16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 8px;
  pointer-events: auto;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 12px 44px rgba(5, 43, 67, .14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--blue-deep);
}

.brand > span {
  display: block;
  margin-top: 1px;
  font-size: .68rem;
  color: var(--muted);
  white-space: nowrap;
}

.brand > span > span {
  display: block;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 9px;
  border-radius: 999px;
  color: #1d3547;
  font-size: .86rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: rgba(9, 137, 202, .10);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(5, 43, 67, .14);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.social-icons a[aria-label="WhatsApp"] {
  color: #20B15A;
}

.social-icons a[aria-label="WhatsApp"]:hover {
  color: #fff;
  background: linear-gradient(135deg, #20B15A, #128C7E);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.social-icons svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-icons a[aria-label="Facebook"] svg path,
.social-icons a[aria-label="LinkedIn"] svg path {
  fill: currentColor;
  stroke: none;
}

.icon-link,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(5, 43, 67, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: var(--blue-deep);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(5, 43, 67, .20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(5, 43, 67, .24);
}

.button.light {
  background: rgba(255, 255, 255, .82);
  color: var(--blue-deep);
  border-color: rgba(255, 255, 255, .42);
}

.button.green {
  background: var(--green);
}

.button.ghost {
  background: transparent;
  color: var(--blue-deep);
  border-color: rgba(5, 43, 67, .16);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 108px 0 34px;
  color: #fff;
  background: var(--blue-ink);
}

.hero .container {
  width: min(1520px, calc(100% - 128px));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 32, .94) 0%, rgba(3, 20, 32, .78) 46%, rgba(3, 20, 32, .44) 100%),
    linear-gradient(180deg, rgba(3, 20, 32, .24), rgba(3, 20, 32, .78));
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: 30px;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  width: min(730px, calc(100vw - 40px));
  max-width: 100%;
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: .82rem;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(70, 182, 74, .18);
}

.hero h1 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 5.35rem);
  width: min(850px, calc(100vw - 40px));
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero .lede {
  margin-top: 24px;
  width: min(660px, calc(100vw - 40px));
  max-width: 100%;
  color: rgba(235, 246, 252, .88);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 10px;
  margin-top: 42px;
}

.proof-card {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.proof-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.24rem;
}

.proof-card span {
  display: block;
  margin-top: 2px;
  color: rgba(225, 239, 247, .76);
  font-size: .78rem;
  font-weight: 700;
}

.photo-deck {
  min-height: 650px;
  position: relative;
  display: block;
  isolation: isolate;
  transform: translateX(0);
  max-width: min(980px, calc(100vw - 40px));
}

.photo-deck-single {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  max-width: none;
  overflow: visible;
}

.photo-deck-single::before,
.photo-deck-single::after {
  display: none;
}

.hero-design-art {
  width: min(1080px, 100%);
  max-width: 100%;
  max-height: 660px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 28px 64px rgba(0, 0, 0, .32));
}

.hero-design-art-blend {
  mix-blend-mode: multiply;
  filter:
    drop-shadow(0 28px 64px rgba(0, 0, 0, .32))
    brightness(1.18)
    contrast(1.08);
}

.photo-deck::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 36px;
  width: 92%;
  height: 440px;
  z-index: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #064d2b, #12823e 72%);
  clip-path: polygon(20% 0, 100% 0, 86% 100%, 0 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.photo-deck::after {
  content: "";
  position: absolute;
  left: 5%;
  top: 38px;
  width: 78%;
  height: 540px;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, .46);
  border-radius: 8px;
  transform: skewX(-14deg);
  pointer-events: none;
}

.deck-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform .35s ease, box-shadow .35s ease;
}

.deck-panel:hover {
  transform: translateY(-6px) translateX(4px);
  box-shadow: 0 34px 82px rgba(0, 0, 0, .38);
}

.deck-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.deck-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 34%, rgba(0,0,0,.12));
  pointer-events: none;
}

.deck-panel::before {
  content: "";
  position: absolute;
  left: -4%;
  bottom: 16px;
  z-index: 2;
  width: 44%;
  height: 46px;
  border-radius: 8px;
  border: 2px solid rgba(70, 182, 74, .80);
  background: rgba(37, 47, 39, .96);
  transform: skewX(-14deg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
}

.deck-panel .label {
  display: none;
}

.deck-panel.primary {
  left: 14%;
  top: 184px;
  z-index: 4;
  width: 82%;
  height: 214px;
  min-height: 0;
}

.deck-panel.side-a {
  left: 37%;
  top: 0;
  z-index: 5;
  width: 50%;
  height: 168px;
}

.deck-panel.side-b {
  left: 10%;
  bottom: 44px;
  z-index: 3;
  width: 43%;
  height: 190px;
}

.deck-panel.side-c {
  right: 2%;
  bottom: 44px;
  z-index: 3;
  width: 46%;
  height: 190px;
}

.deck-panel.side-c::before {
  left: auto;
  right: 8%;
}

.deck-panel.side-a::before {
  left: -8%;
  width: 56%;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section.compact {
  padding: 68px 0;
}

.section.soft {
  background:
    linear-gradient(135deg, rgba(9, 137, 202, .07), rgba(70, 182, 74, .07)),
    #f4f9fc;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(6, 69, 107, .96), rgba(4, 28, 45, .98)),
    var(--blue-deep);
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section.dark p {
  color: rgba(225, 239, 247, .78);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  color: var(--blue);
  font-weight: 900;
  font-size: .82rem;
}

.section.dark .eyebrow {
  color: #9fe4ff;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head .lede {
  font-size: 1.08rem;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section.dark .glass-panel {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.about-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 28px;
  align-items: stretch;
}

.about-design-board {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(5, 43, 67, .14);
}

.about-design-art {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.about-image {
  min-height: 520px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  position: relative;
  overflow: hidden;
  padding: 46px;
  display: grid;
  align-content: center;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)),
    radial-gradient(circle at 92% 95%, rgba(245, 158, 11, .12), transparent 28%);
  border-color: rgba(255, 255, 255, .82);
}

.about-copy::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 185px;
  height: 185px;
  background: linear-gradient(135deg, var(--amber), var(--blue-deep));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .96;
}

.about-copy > * {
  position: relative;
  z-index: 1;
}

.about-copy .eyebrow {
  color: var(--amber);
}

.about-copy .eyebrow::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber) 0 48%, var(--blue-deep) 48% 100%);
}

.about-copy .button {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: var(--amber);
  color: #fff;
}

.about-photo-grid {
  position: relative;
  min-height: 560px;
  display: block;
  overflow: hidden;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 8px solid #f8fbff;
  background: #dce9f1;
  box-shadow: 0 18px 42px rgba(5, 43, 67, .18);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-1 {
  left: 0;
  top: 0;
  width: 58%;
  height: 61%;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 91%);
}

.about-photo-2 {
  right: 0;
  top: 0;
  width: 44%;
  height: 42%;
  clip-path: polygon(7% 0, 100% 0, 100% 92%, 0 100%);
}

.about-photo-3 {
  left: 0;
  bottom: 0;
  width: 39%;
  height: 37%;
  clip-path: polygon(0 7%, 100% 0, 91% 100%, 0 100%);
}

.about-photo-4 {
  left: 35%;
  bottom: 0;
  width: 32%;
  height: 43%;
  clip-path: polygon(10% 0, 100% 0, 95% 100%, 0 100%);
}

.about-photo-5 {
  right: 0;
  bottom: 0;
  width: 35%;
  height: 49%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 96%);
}

.about-collage-mark {
  position: absolute;
  left: 47%;
  top: 43%;
  z-index: 8;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 999px;
  background: #fff;
  border: 5px solid var(--blue-deep);
  box-shadow: 0 20px 48px rgba(5, 43, 67, .22);
  transform: translate(-50%, -50%);
}

.about-collage-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  border-top: 1px solid rgba(5, 43, 67, .10);
  border-left: 1px solid rgba(5, 43, 67, .08);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  color: var(--blue-deep);
  font-weight: 800;
  font-size: .95rem;
  border-right: 1px solid rgba(5, 43, 67, .08);
  border-bottom: 1px solid rgba(5, 43, 67, .10);
}

.check-list li::before {
  content: "✓";
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  flex: 0 0 auto;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, .12);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

#businesses .section-head h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0989CA, #46B64A);
}

.business-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .98));
  box-shadow: 0 22px 70px rgba(5, 43, 67, .14);
  display: grid;
  grid-template-rows: 190px 1fr;
  isolation: isolate;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.business-card-compact {
  min-height: 426px;
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: rgba(70, 182, 74, .34);
  box-shadow: 0 30px 86px rgba(5, 43, 67, .20);
}

.business-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(70, 182, 74, .28), transparent 30%),
    linear-gradient(135deg, rgba(9, 137, 202, .14), rgba(70, 182, 74, .10));
}

.business-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.business-card:hover .business-media img {
  transform: scale(1.05);
}

.business-media.logo-only {
  padding: 0;
}

.business-media.logo-only img {
  opacity: 0;
}

.business-card-force .business-media {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .28), transparent 18%),
    radial-gradient(circle at 92% 6%, rgba(245, 158, 11, .26), transparent 18%),
    linear-gradient(135deg, #052b43 0%, #09699b 46%, #46b64a 100%);
}

.business-card-live .business-media {
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 255, 255, .54), transparent 8%),
    radial-gradient(circle at 55% 8%, rgba(255, 255, 255, .44), transparent 8%),
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, .36), transparent 9%),
    linear-gradient(135deg, rgba(3, 45, 64, .92), rgba(16, 185, 129, .72)),
    linear-gradient(90deg, #052b43, #0989ca);
}

.business-card-live .business-media::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 3px, transparent 3px 24px);
  opacity: .55;
  transform: skewX(-10deg);
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 185px 0 auto;
  height: 54px;
  background: #fff;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}

.business-body {
  position: relative;
  z-index: 2;
  padding: 0 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: rgba(255, 255, 255, .97);
}

.business-logo {
  width: 78px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(5, 43, 67, .08);
  box-shadow: 0 14px 34px rgba(5, 43, 67, .16);
  margin-top: -36px;
  margin-bottom: 4px;
}

.business-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.business-category-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #46B64A;
  background: rgba(70, 182, 74, .08);
  border: 1px solid rgba(70, 182, 74, .18);
}

.business-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.business-icon-text {
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.business-category {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}

.business-card h3 {
  font-size: 1.55rem;
  line-height: 1.08;
  color: var(--blue-deep);
}

.business-card-compact .business-body {
  padding-top: 0;
}

.business-card-compact .business-media {
  height: auto;
}

.business-card-compact .business-logo {
  width: 72px;
  height: 62px;
}

.business-card-compact .business-highlights span {
  font-size: .78rem;
}

.business-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}

.business-highlights span {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(236, 244, 249, .96), rgba(245, 250, 252, .98));
  color: #052b43;
  font-size: .8rem;
  font-weight: 800;
}

.business-open {
  min-height: 50px;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: linear-gradient(135deg, #062a43, #00345f);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 12px 24px rgba(5, 43, 67, .16);
}

.business-open span:last-child {
  color: #46B64A;
  font-size: 1.7rem;
  line-height: 1;
  transition: transform .2s ease;
}

.business-card:hover .business-open span:last-child {
  transform: translateX(4px);
}

.presence-layout {
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(320px, .72fr);
  gap: 18px;
  align-items: center;
}

#presence {
  padding: 72px 0;
}

.presence-map {
  position: relative;
  min-width: 0;
  min-height: 360px;
  overflow: visible;
  padding: 0;
  background:
    radial-gradient(circle at 54% 56%, rgba(70, 182, 74, .18), transparent 22%),
    radial-gradient(circle at 62% 47%, rgba(9, 137, 202, .18), transparent 20%);
}

.india-svg-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}

.india-base {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82%, 620px);
  transform: translate(-50%, -50%);
  opacity: .28;
  filter: saturate(.4) invert(1);
}

.presence-svg {
  width: min(82%, 430px);
  height: auto;
  max-height: 100%;
  overflow: visible;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, .24));
}

.presence-svg #points,
.presence-svg #label_points {
  display: none;
}

.presence-svg #features path {
  fill: rgba(174, 205, 221, .28);
  stroke: rgba(222, 242, 250, .34);
  stroke-width: 1.1;
  transition: fill .25s ease, opacity .25s ease, filter .25s ease;
}

.presence-svg #features path.active-state {
  fill: var(--state-color) !important;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 2.2;
  opacity: .98;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--state-color) 56%, transparent));
}

.presence-pin-ring {
  fill: none;
  stroke-width: 7;
  opacity: .32;
  animation: mapRing 2.7s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.presence-pin-dot {
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .34));
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .10), transparent 45%);
  opacity: .9;
}

.state-zone {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--state-color);
  box-shadow: 0 0 0 16px color-mix(in srgb, var(--state-color) 18%, transparent), 0 0 46px var(--state-color);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.state-zone::before,
.state-zone::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 2px solid var(--state-color);
  border-radius: 999px;
  animation: pulse 2.6s infinite;
}

.state-zone::before {
  inset: -34px;
  animation-delay: .6s;
}

.state-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .60);
  box-shadow: 0 16px 44px rgba(5, 43, 67, .10);
}

.presence-side {
  display: grid;
  align-content: center;
  min-width: 0;
}

.presence-copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.presence-copy h3 {
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.presence-copy p {
  color: rgba(235,246,252,.82);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 46ch;
}

.presence-state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.presence-state-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--state-color) 66%, #07344e), color-mix(in srgb, var(--state-color) 38%, #052b43));
  border: 1px solid color-mix(in srgb, var(--state-color) 48%, rgba(255,255,255,.45));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--state-color) 22%, transparent);
}

.presence-state-chip span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px color-mix(in srgb, #fff 16%, transparent);
}

.presence-address-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 10px;
}

.presence-address-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 172px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06)),
    rgba(5, 43, 67, .34);
  border: 1px solid color-mix(in srgb, var(--state-color) 42%, rgba(255,255,255,.28));
  box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.presence-address-dot {
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--state-color);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--state-color) 18%, transparent);
}

.presence-address-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.18;
}

.presence-address-card small {
  display: block;
  margin-top: 4px;
  color: color-mix(in srgb, var(--state-color) 70%, #fff);
  font-weight: 900;
}

.presence-address-card p {
  margin-top: 12px;
  color: rgba(235,246,252,.84);
  font-size: .92rem;
  line-height: 1.55;
}

.state-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--state-color);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--state-color) 14%, transparent);
}

.state-card h3 {
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.section.dark .state-card h3 {
  color: var(--blue-deep);
}

.state-card strong {
  display: block;
  color: var(--blue);
  font-size: .8rem;
  margin: 3px 0 8px;
}

.state-card p {
  color: #4f6270;
}

.section.dark .state-card p {
  color: #4f6270;
}

.client-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.client-marquee {
  overflow: hidden;
  padding: 10px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeMove 34s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-card {
  position: relative;
  min-height: 150px;
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .62)),
    linear-gradient(135deg, rgba(9, 137, 202, .14), rgba(70, 182, 74, .12));
  box-shadow: 0 18px 52px rgba(5, 43, 67, .12);
  transition: transform .24s ease, box-shadow .24s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(9, 137, 202, .32), rgba(70, 182, 74, .20), rgba(245, 158, 11, .22));
  opacity: 0;
  z-index: 0;
  transition: opacity .2s ease;
}

.client-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 68px rgba(5, 43, 67, .18);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card img,
.client-card small,
.client-card strong {
  position: relative;
  z-index: 1;
}

.client-card img {
  width: 96px;
  height: 64px;
  object-fit: contain;
}

.client-card strong {
  display: block;
  text-align: center;
  color: var(--blue-deep);
  font-size: .9rem;
}

.client-card small {
  color: var(--muted);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 32%);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scroll-snap-type: x proximity;
}

.gallery-strip .gallery-item {
  scroll-snap-align: start;
}

.gallery-grid.full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 8px;
  background: #dce8ef;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(5, 31, 49, .72);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.film-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 25%);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.film-card {
  min-height: 420px;
  display: block;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: 0 24px 64px rgba(5, 43, 67, .20);
  scroll-snap-align: start;
}

.film-card iframe,
.film-card video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  background: #071f32;
}

.video-card {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.video-card video {
  min-height: 0;
  height: 100%;
  object-fit: cover;
}

.film-modal-panel {
  width: min(1180px, 94vw);
  max-height: 86vh;
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
}

.film-modal-panel h2 {
  margin-bottom: 18px;
}

.film-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.more-reel,
.landscape-film {
  overflow: hidden;
  border-radius: 8px;
  background: #071f32;
}

.more-reel iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.landscape-film {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.landscape-film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  padding: 150px 0 58px;
  background:
    linear-gradient(135deg, rgba(6, 69, 107, .96), rgba(4, 28, 45, .98)),
    var(--blue-deep);
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  max-width: 820px;
}

.page-hero p {
  margin-top: 18px;
  max-width: 720px;
  color: rgba(225, 239, 247, .78);
  font-size: 1.1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.content-panel {
  padding: 30px;
}

.content-panel h3 {
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

.compact-contact-section {
  padding: 38px 0;
}

.contact-compact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(360px, .85fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .58)),
    radial-gradient(circle at 16% 18%, rgba(70, 182, 74, .18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(9, 137, 202, .16), transparent 28%);
  border: 1px solid rgba(255, 255, 255, .74);
  box-shadow: 0 20px 54px rgba(5, 43, 67, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-compact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.contact-compact-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 18px 18px 18px 26px;
}

.contact-compact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-top: 4px;
}

.contact-compact-copy > p {
  max-width: 44ch;
  margin-top: 6px;
}

.contact-compact .contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.contact-compact .contact-row {
  min-height: 78px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .68);
  border-color: rgba(5, 43, 67, .08);
}

.contact-compact .contact-row a,
.contact-compact .contact-row span {
  font-weight: 700;
  color: #253a49;
}

.contact-compact-action {
  margin-top: 18px;
}

.contact-compact-map {
  min-height: 240px;
  max-height: 280px;
  border-radius: 8px;
  border: 1px solid rgba(5, 43, 67, .08);
  box-shadow: 0 18px 45px rgba(5, 43, 67, .10);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .48);
}

.contact-row strong {
  color: var(--blue-deep);
}

.inline-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(9, 137, 202, .09);
  color: var(--blue-deep);
  font-weight: 800;
}

.map-frame {
  min-height: 380px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-status {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status.success {
  color: #11692f;
  background: rgba(70, 182, 74, .14);
  border: 1px solid rgba(70, 182, 74, .28);
}

.form-status.error {
  color: #991b1b;
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .26);
}

.form-grid input,
.form-grid textarea,
.form-grid select,
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  border: 1px solid rgba(5, 43, 67, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  padding: 12px 13px;
  color: var(--ink);
  outline: none;
}

.form-grid textarea,
.admin-field textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-field small {
  display: block;
  margin-top: 6px;
  color: rgba(5, 43, 67, .58);
  font-size: 12px;
  line-height: 1.45;
}

.career-section {
  background:
    linear-gradient(135deg, rgba(5, 43, 67, .06), rgba(70, 182, 74, .08)),
    #eef7f2;
}

.career-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
}

.career-copy h2 {
  max-width: 660px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.career-copy p {
  max-width: 700px;
  margin-top: 12px;
}

.career-form-wrap {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(5,43,67,.10);
}

.career-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.career-form .button,
.career-form .form-note {
  grid-column: span 2;
}

.leadership-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(70, 182, 74, .22), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(9, 137, 202, .28), transparent 34%),
    linear-gradient(135deg, rgba(6, 69, 107, .96), rgba(4, 28, 45, .98)),
    var(--blue-deep);
  color: #fff;
}

.leadership-hero h1 {
  color: #fff;
}

.leadership-hero p {
  color: rgba(225, 239, 247, .82);
}

.leadership-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(9, 137, 202, .10), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(70, 182, 74, .12), transparent 24%),
    #f4f9fc;
}

.leadership-grid {
  display: grid;
  gap: 24px;
}

.leader-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  overflow: hidden;
  min-height: 415px;
  padding: 0 54px 0 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)),
    radial-gradient(circle at 86% 16%, rgba(9, 137, 202, .08), transparent 25%);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 24px 70px rgba(5, 43, 67, .14);
}

.leader-card::after {
  content: "“";
  position: absolute;
  right: 52px;
  top: 32px;
  font-family: Georgia, serif;
  font-size: 190px;
  line-height: .65;
  color: rgba(5, 43, 67, .06);
  pointer-events: none;
}

.leader-card-alt {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  padding: 0 0 0 54px;
}

.leader-card-alt .leader-photo-frame {
  order: 2;
}

.leader-card-alt::after {
  right: auto;
  left: 52px;
}

.leader-photo-frame {
  position: relative;
  display: grid;
  place-items: end center;
  align-self: stretch;
  min-height: 415px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(145deg, rgba(2, 30, 48, .98), rgba(3, 71, 104, .96)),
    var(--blue-deep);
  border: 0;
  box-shadow: none;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.leader-card-alt .leader-photo-frame {
  border-radius: 0 8px 8px 0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.leader-photo-frame::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 118%;
  height: 38%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  clip-path: polygon(0 58%, 100% 22%, 100% 100%, 0 100%);
}

.leader-photo-frame::after {
  content: "";
  position: absolute;
  inset: 46px 48px auto auto;
  width: 120px;
  height: 78px;
  opacity: .26;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .8) 1.5px, transparent 2px);
  background-size: 16px 16px;
}

.leader-photo-frame img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.03) contrast(1.02);
}

.leader-mark {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 30px rgba(5, 43, 67, .20);
}

.leader-body {
  position: relative;
  z-index: 1;
  padding: 54px 0;
}

.leader-role {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.leader-body h3 {
  margin-top: 16px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.leader-accent-line {
  display: block;
  width: 96px;
  height: 4px;
  margin: 18px 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 55%, var(--blue) 55% 100%);
}

.leader-body p {
  max-width: 64ch;
  margin: 0 0 24px;
  font-size: 1.04rem;
  line-height: 1.78;
}

.leader-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-weight: 900;
}

.leader-line span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.leader-line span::before {
  content: "K1";
  color: #fff;
  font-size: .76rem;
  font-family: var(--font-head);
  font-weight: 900;
}

.leader-card {
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  min-height: 0;
  gap: 30px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76)),
    radial-gradient(circle at 8% 10%, rgba(9, 137, 202, .14), transparent 26%);
}

.leader-card::after {
  content: "";
  right: -70px;
  bottom: -90px;
  top: auto;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(70, 182, 74, .18), transparent 68%);
}

.leader-card-alt {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  padding: 26px;
}

.leader-photo-frame,
.leader-card-alt .leader-photo-frame {
  min-height: 380px;
  border-radius: 8px;
  clip-path: none;
  background:
    linear-gradient(180deg, rgba(5, 43, 67, .06), rgba(9, 137, 202, .10)),
    #fff;
  border: 1px solid rgba(5, 43, 67, .10);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, .56), 0 18px 44px rgba(5, 43, 67, .12);
}

.leader-photo-frame::before,
.leader-photo-frame::after {
  display: none;
}

.leader-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.leader-body {
  padding: 12px 12px 12px 0;
}

.leader-card-alt .leader-body {
  padding: 12px 0 12px 12px;
}

.leader-role {
  min-height: 34px;
  padding: 6px 12px;
}

.leader-body h3 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.leader-accent-line {
  margin: 14px 0 20px;
}

.leader-body p {
  max-width: 68ch;
  margin: 0 0 22px;
}

.site-footer {
  padding: 54px 0 28px;
  background: #041c2d;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .75fr);
  gap: 28px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(225, 239, 247, .74);
}

.site-footer h3,
.site-footer strong {
  color: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-social {
  margin-top: 18px;
}

.footer-social a {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .18);
}

.footer-logo img {
  width: 62px;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(225, 239, 247, .58);
  font-size: .88rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 14, 22, .86);
}

.modal.open {
  display: flex;
}

.modal img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
}

.modal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 1.4rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}

body[data-page="admin"] .page-hero {
  display: none;
}

body[data-page="admin"] main {
  padding-top: 150px;
}

body[data-page="admin"] main > .section {
  min-height: calc(100vh - 150px);
  padding: 28px 0 34px;
}

body[data-page="admin"] .admin-layout {
  height: calc(100vh - 190px);
  align-items: start;
}

.admin-side {
  position: relative;
  top: 0;
  align-self: start;
  max-height: 100%;
  overflow: auto;
  padding: 18px;
  overscroll-behavior: contain;
}

.admin-side a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--blue-deep);
  font-weight: 800;
}

.admin-side a:hover {
  background: rgba(9, 137, 202, .10);
}

.admin-main {
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.admin-section {
  padding: 24px;
  margin-bottom: 18px;
  scroll-margin-top: 18px;
}

.admin-section h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-grid-wide {
  grid-column: 1 / -1;
}

.admin-preview-thumb {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(9, 137, 202, .06);
  border: 1px solid rgba(5, 43, 67, .10);
}

.admin-preview-thumb img {
  width: 118px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(5, 43, 67, .10);
}

.admin-preview-thumb span {
  color: var(--blue-deep);
  font-weight: 800;
}

.admin-field {
  display: grid;
  gap: 7px;
}

.admin-field label {
  color: var(--blue-deep);
  font-size: .82rem;
  font-weight: 900;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(5, 43, 67, .10);
  background: rgba(255, 255, 255, .70);
}

.admin-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-actions {
  position: sticky;
  bottom: 14px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .80);
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.notice {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .26);
  color: #6d4702;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: cardReveal .65s cubic-bezier(.2, .8, .2, 1) both;
}

.reveal.in-view,
.text-animate.in-view {
  opacity: 1;
  transform: none;
}

.text-animate {
  opacity: 1;
  transform: none;
  clip-path: none;
  animation: textRise .72s cubic-bezier(.2, .8, .2, 1) both;
}

.text-animate.in-view {
  clip-path: none;
}

.text-rise {
  animation: textRise .85s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-copy > .text-rise:nth-child(1) {
  animation-delay: .05s;
}

.hero-copy > .text-rise:nth-child(2) {
  animation-delay: .18s;
}

.hero-copy > .text-rise:nth-child(3) {
  animation-delay: .32s;
}

.hero-copy > .text-rise:nth-child(4) {
  animation-delay: .46s;
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0% {
    opacity: .9;
    transform: scale(.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes mapRing {
  0% {
    opacity: .48;
    transform: scale(.66);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .hero .container {
    width: min(1180px, calc(100% - 40px));
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero-grid,
  .about-grid,
  .presence-layout,
  .contact-grid,
  .contact-compact,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .contact-compact-map {
    min-height: 280px;
  }

  .leader-card,
  .leader-card-alt {
    grid-template-columns: 1fr;
    padding: 0 0 28px;
    gap: 0;
  }

  .leader-card-alt .leader-photo-frame {
    order: 0;
  }

  .leader-photo-frame,
  .leader-card-alt .leader-photo-frame {
    min-height: 360px;
    border-radius: 8px 8px 0 0;
    clip-path: none;
  }

  .leader-body {
    padding: 28px;
  }

  .photo-deck {
    min-height: 460px;
    transform: none;
  }

  .presence-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-side {
    position: relative;
    top: 0;
    max-height: none;
    overflow: visible;
  }

  body[data-page="admin"] main {
    padding-top: 130px;
  }

  body[data-page="admin"] .admin-layout {
    height: auto;
  }

  .admin-main {
    height: auto;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .hero-copy,
  .hero h1,
  .hero .lede,
  .hero-proof {
    width: min(390px, 100%);
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.1rem);
  }

  .photo-deck {
    width: min(390px, 100%);
    max-width: 390px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .hero .container {
    width: min(1180px, calc(100% - 28px));
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 36px;
  }

  .brand > span > span,
  .nav-actions .button,
  .header-social {
    display: none;
  }

  .header-social {
    display: inline-flex;
  }

  .header-social a:not([aria-label="WhatsApp"]) {
    display: none;
  }

  .main-nav.open {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 48px;
  }

  .hero-grid {
    gap: 30px;
    min-width: 0;
  }

  .hero-copy,
  .hero h1,
  .hero .lede {
    width: min(390px, 100%);
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 2.9rem);
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-deck {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-auto-rows: 170px;
    width: 100%;
    max-width: 390px;
    overflow: hidden;
  }

  .photo-deck-single {
    min-height: 300px;
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    overflow: visible;
  }

  .hero-design-art {
    width: min(430px, 100%);
    max-height: 320px;
  }

  .photo-deck::before,
  .photo-deck::after {
    display: none;
  }

  .deck-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  }

  .deck-panel.primary {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 220px;
    width: auto;
    height: auto;
  }

  .deck-panel.side-a {
    top: auto;
    width: auto;
    height: auto;
  }

  .deck-panel.side-b {
    top: auto;
    width: auto;
    height: auto;
  }

  .deck-panel.side-c {
    width: auto;
    height: auto;
  }

  .deck-panel::before {
    height: 34px;
    width: 54%;
    bottom: 10px;
  }

  .section {
    padding: 66px 0;
  }

  .presence-layout {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
    overflow: hidden;
    justify-items: center;
  }

  .about-image {
    min-height: 320px;
  }

  .about-photo-grid {
    min-height: 500px;
  }

  .about-photo {
    border-width: 5px;
  }

  .about-collage-mark {
    width: 112px;
    height: 112px;
    padding: 14px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .leader-body h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .career-panel,
  .career-form {
    grid-template-columns: 1fr;
  }

  .career-form .button,
  .career-form .form-note {
    grid-column: auto;
  }

  .about-copy,
  .content-panel,
  .admin-section {
    padding: 22px;
  }

  .check-list,
  .business-grid,
  .client-showcase,
  .gallery-grid,
  .gallery-grid.full,
  .film-strip,
  .two-col,
  .leadership-grid,
  .footer-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .presence-map {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 310px;
    padding: 0;
  }

  .india-svg-shell {
    inset: 0;
  }

  .presence-svg {
    width: min(100%, 360px);
  }

  .presence-copy {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding: 0;
  }

  .presence-copy h3 {
    font-size: 1.42rem;
    line-height: 1.14;
    max-width: 32ch;
  }

  .presence-copy p {
    font-size: .95rem;
    max-width: 34ch;
  }

  .presence-state-chip {
    font-size: .9rem;
    min-height: 34px;
    padding: 7px 10px;
  }

  .presence-address-grid {
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .presence-address-card {
    min-height: auto;
  }

  .compact-contact-section {
    padding: 42px 0;
  }

  .contact-compact {
    padding: 14px;
  }

  .contact-compact-copy {
    padding: 16px 14px 6px 18px;
  }

  .contact-compact .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-compact-map {
    min-height: 230px;
  }

  .leader-card {
    padding: 16px;
    gap: 18px;
  }

  .leader-photo-frame {
    min-height: 330px;
  }

  .leader-body {
    padding: 4px;
  }

  .gallery-strip {
    grid-auto-columns: minmax(260px, 86%);
  }

  .film-strip {
    grid-auto-columns: minmax(270px, 88%);
  }

  .film-more-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
