:root {
  --background: 220 33% 98%;
  --foreground: 218 42% 11%;
  --primary: 216 66% 11%;
  --primary-foreground: 0 0% 100%;
  --secondary: 45 64% 52%;
  --secondary-foreground: 216 66% 11%;
  --muted: 220 18% 94%;
  --muted-foreground: 218 15% 42%;
  --border: 218 22% 86%;
  --card: 0 0% 100%;
  --card-foreground: 218 42% 11%;
  --shadow-sm: 0 10px 25px hsl(216 66% 11% / 0.08);
  --shadow-md: 0 18px 50px hsl(216 66% 11% / 0.14);
  --shadow-lg: 0 30px 90px hsl(216 66% 11% / 0.22);
  --transition-fast: 180ms ease;
  --transition-smooth: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

.dark {
  --background: 216 66% 11%;
  --foreground: 0 0% 100%;
  --primary: 216 66% 11%;
  --primary-foreground: 0 0% 100%;
  --secondary: 45 64% 52%;
  --secondary-foreground: 216 66% 11%;
  --muted: 217 34% 18%;
  --muted-foreground: 220 18% 76%;
  --border: 220 28% 24%;
  --card: 217 45% 15%;
  --card-foreground: 0 0% 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: hsl(var(--foreground));
  background: hsl(220 33% 98%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: max(12px, env(safe-area-inset-top));
  background: linear-gradient(180deg, hsl(216 66% 11% / 0.92), hsl(216 66% 11% / 0.66));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: hsl(var(--primary));
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(43 95% 78%));
  box-shadow: 0 12px 30px hsl(45 64% 52% / 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: white;
}

.brand small {
  color: hsl(0 0% 100% / 0.66);
  font-size: 0.72rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: hsl(0 0% 100% / 0.74);
  font-size: 0.9rem;
  font-weight: 500;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: hsl(var(--secondary));
  transform: translateY(-1px);
}

.header-cta {
  display: none;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: hsl(var(--secondary));
  border: 1px solid hsl(var(--secondary) / 0.5);
  background: hsl(var(--secondary) / 0.08);
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 132px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, hsl(45 64% 52% / 0.22), transparent 28%),
    linear-gradient(135deg, hsl(216 66% 11%) 0%, hsl(215 61% 15%) 42%, hsl(222 72% 6%) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, hsl(216 66% 11% / 0.96), hsl(216 66% 11% / 0.72)),
    repeating-linear-gradient(115deg, hsl(0 0% 100% / 0.035) 0 1px, transparent 1px 38px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, hsl(216 66% 11% / 0.62)),
    radial-gradient(circle at 18% 80%, hsl(45 64% 52% / 0.12), transparent 30%);
}

.campaign-silhouette {
  position: absolute;
  bottom: 0;
  width: 220px;
  height: 390px;
  opacity: 0.24;
  filter: blur(0.2px);
  background: linear-gradient(180deg, hsl(0 0% 100% / 0.5), hsl(0 0% 100% / 0.02));
  clip-path: polygon(42% 0, 58% 0, 66% 14%, 66% 29%, 78% 32%, 86% 100%, 14% 100%, 22% 32%, 34% 29%, 34% 14%);
}

.silhouette-one { right: 10%; transform: scale(1.08); }
.silhouette-two { right: 25%; transform: scale(0.84); opacity: 0.16; }
.silhouette-three { right: -3%; transform: scale(0.92); opacity: 0.13; }

.campaign-podium {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 360px;
  height: 150px;
  opacity: 0.24;
  background: linear-gradient(180deg, hsl(45 64% 52% / 0.28), hsl(0 0% 100% / 0.05));
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.hero-content {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--secondary));
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: hsl(var(--secondary));
}

.dark-text {
  color: hsl(var(--primary));
}

.hero h1,
.section-heading h2,
.content-block h2,
.strategy-content h2,
.contact-shell h2 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  color: white;
  font-size: clamp(2.7rem, 11vw, 5.8rem);
  max-width: 980px;
}

.hero-copy p {
  max-width: 710px;
  color: hsl(0 0% 100% / 0.78);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  margin: 24px 0 0;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: hsl(var(--primary));
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(43 95% 77%));
  box-shadow: 0 18px 46px hsl(45 64% 52% / 0.26);
}

.btn-secondary {
  color: white;
  border: 1px solid hsl(0 0% 100% / 0.28);
  background: hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(14px);
}

.hero-panel {
  border: 1px solid hsl(0 0% 100% / 0.16);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(145deg, hsl(0 0% 100% / 0.13), hsl(0 0% 100% / 0.045));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-lg);
}

.panel-topline {
  color: hsl(var(--secondary));
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

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

.stat-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: hsl(0 0% 100% / 0.08);
  border: 1px solid hsl(0 0% 100% / 0.11);
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: hsl(0 0% 100% / 0.13);
}

.stat-card strong {
  font-family: 'Playfair Display', Georgia, serif;
  color: hsl(var(--secondary));
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1;
}

.stat-card span {
  color: hsl(0 0% 100% / 0.75);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}

.about-section,
.services-section,
.business-section,
.gallery-section {
  background: hsl(220 33% 98%);
  color: hsl(218 42% 11%);
}

.two-column {
  display: grid;
  gap: 38px;
  align-items: center;
}

.image-card {
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid hsl(218 22% 86%);
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(circle at 20% 20%, hsl(45 64% 52% / 0.24), transparent 30%),
    linear-gradient(135deg, hsl(216 66% 11%), hsl(216 56% 18%));
}

.visual-map {
  position: absolute;
  inset: 36px;
  border-radius: 28px;
  background:
    linear-gradient(hsl(0 0% 100% / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, hsl(0 0% 100% / 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  border: 1px solid hsl(0 0% 100% / 0.12);
}

.map-node {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  box-shadow: 0 0 0 12px hsl(45 64% 52% / 0.12), 0 0 40px hsl(45 64% 52% / 0.34);
}

.node-a { left: 18%; top: 24%; }
.node-b { right: 20%; top: 32%; }
.node-c { left: 38%; bottom: 22%; }
.node-d { right: 16%; bottom: 16%; }

.map-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, hsl(var(--secondary)), transparent);
}

.line-a { width: 48%; left: 23%; top: 29%; transform: rotate(10deg); }
.line-b { width: 40%; left: 42%; top: 62%; transform: rotate(-18deg); }
.line-c { width: 36%; left: 24%; bottom: 31%; transform: rotate(28deg); }

.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: hsl(0 0% 100% / 0.12);
  border: 1px solid hsl(0 0% 100% / 0.18);
  backdrop-filter: blur(18px);
}

.visual-caption span {
  color: hsl(var(--secondary));
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.visual-caption strong {
  display: block;
  color: white;
  font-size: 1.35rem;
  line-height: 1.25;
  margin-top: 8px;
}

.content-block h2,
.section-heading h2,
.contact-shell h2 {
  color: hsl(218 42% 11%);
  font-size: clamp(2.1rem, 6vw, 4rem);
}

.content-block p,
.section-heading p,
.contact-shell p {
  color: hsl(218 15% 42%);
  margin: 18px 0 0;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.feature-card,
.service-card,
.business-card {
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(218 22% 86%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.feature-card {
  padding: 22px;
}

.feature-card:hover,
.service-card:hover,
.business-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--secondary) / 0.5);
}

.feature-card span {
  color: hsl(var(--secondary));
  font-weight: 900;
}

.feature-card h3,
.service-card h3,
.business-card h3,
.award-card h3,
.timeline-card h3 {
  margin: 8px 0 0;
  line-height: 1.25;
}

.feature-card p,
.business-card p,
.award-card p,
.timeline-card p {
  color: hsl(var(--muted-foreground));
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.timeline-section,
.awards-section,
.strategy-section,
.contact-section,
.site-footer {
  background:
    radial-gradient(circle at 18% 12%, hsl(45 64% 52% / 0.16), transparent 25%),
    linear-gradient(135deg, hsl(216 66% 11%), hsl(222 72% 6%));
  color: white;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.timeline-section .section-heading h2,
.timeline-section .section-heading p,
.awards-section .section-heading h2,
.awards-section .section-heading p,
.strategy-content h2,
.strategy-content p,
.contact-section h2,
.contact-section p {
  color: white;
}

.timeline-section .section-heading p,
.awards-section .section-heading p,
.strategy-content p,
.contact-section p {
  color: hsl(0 0% 100% / 0.72);
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  padding-left: 18px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(hsl(var(--secondary)), hsl(0 0% 100% / 0.12));
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 12px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  box-shadow: 0 0 0 8px hsl(45 64% 52% / 0.14);
}

.timeline-year {
  color: hsl(var(--secondary));
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.timeline-card,
.award-card,
.strategy-shell,
.contact-card {
  border: 1px solid hsl(0 0% 100% / 0.14);
  background: linear-gradient(145deg, hsl(0 0% 100% / 0.115), hsl(0 0% 100% / 0.045));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.timeline-card {
  padding: 22px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateX(5px);
  border-color: hsl(var(--secondary) / 0.54);
  background: hsl(0 0% 100% / 0.12);
}

.highlight-card,
.future-card {
  border-color: hsl(var(--secondary) / 0.45);
}

.service-grid,
.award-grid,
.business-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  min-height: 132px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card span {
  color: hsl(var(--secondary));
  font-size: 1.4rem;
}

.award-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.award-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: hsl(var(--secondary) / 0.12);
}

.award-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: hsl(var(--secondary) / 0.16);
  border: 1px solid hsl(var(--secondary) / 0.35);
  margin-bottom: 16px;
}

.business-card {
  padding: 26px;
  min-height: 180px;
}

.hero-business {
  color: white;
  background:
    radial-gradient(circle at 82% 20%, hsl(45 64% 52% / 0.34), transparent 32%),
    linear-gradient(135deg, hsl(216 66% 11%), hsl(216 56% 18%));
  border-color: hsl(var(--secondary) / 0.4);
}

.hero-business strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  color: hsl(var(--secondary));
  font-size: 4rem;
  line-height: 1;
}

.strategy-shell {
  padding: 28px;
  display: grid;
  gap: 26px;
}

.strategy-content h2 {
  font-size: clamp(2.1rem, 7vw, 4.4rem);
}

.strategy-metric {
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(43 95% 76%));
  color: hsl(var(--primary));
  box-shadow: 0 20px 60px hsl(45 64% 52% / 0.24);
}

.strategy-metric strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.strategy-metric span {
  display: block;
  font-weight: 900;
  margin-top: 10px;
}

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

.strategy-grid article {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: hsl(0 0% 100% / 0.07);
  border: 1px solid hsl(0 0% 100% / 0.12);
  color: hsl(0 0% 100% / 0.86);
  font-weight: 700;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.strategy-grid article:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--secondary) / 0.5);
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid hsl(218 22% 86%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-card:hover {
  transform: scale(1.018);
  box-shadow: var(--shadow-md);
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, hsl(216 66% 11% / 0.88)),
    repeating-linear-gradient(135deg, hsl(0 0% 100% / 0.07) 0 1px, transparent 1px 22px);
}

.gallery-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  right: 22px;
  top: 22px;
  border-radius: 50%;
  background: hsl(var(--secondary) / 0.26);
  filter: blur(2px);
}

.gallery-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
}

.meeting { background: linear-gradient(135deg, hsl(216 66% 11%), hsl(45 64% 52%)); }
.campaign { background: linear-gradient(135deg, hsl(216 58% 18%), hsl(211 80% 28%)); }
.leadership { background: linear-gradient(135deg, hsl(222 72% 6%), hsl(45 64% 52%)); }
.awards { background: linear-gradient(135deg, hsl(45 64% 52%), hsl(216 66% 11%)); }
.discussion { background: linear-gradient(135deg, hsl(216 66% 11%), hsl(262 45% 28%)); }
.field { background: linear-gradient(135deg, hsl(216 66% 11%), hsl(160 38% 28%)); }

.contact-shell {
  display: grid;
  gap: 30px;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
}

.contact-card span {
  display: block;
  color: hsl(var(--secondary));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.contact-card strong {
  color: white;
  font-size: 1rem;
}

.contact-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: hsl(var(--primary));
  background: hsl(var(--secondary));
  font-weight: 900;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px hsl(45 64% 52% / 0.26);
}

.site-footer {
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  padding: 28px 0 104px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: hsl(0 0% 100% / 0.7);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: hsl(var(--secondary));
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 8px max(8px, env(safe-area-inset-bottom));
  background: hsl(216 66% 11% / 0.94);
  border-top: 1px solid hsl(0 0% 100% / 0.12);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  min-height: 50px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: hsl(0 0% 100% / 0.72);
  font-size: 0.68rem;
  font-weight: 700;
}

.bottom-nav a:focus-visible,
.bottom-nav a:hover {
  color: hsl(var(--secondary));
  background: hsl(0 0% 100% / 0.08);
}

.bottom-nav span {
  font-size: 1rem;
  line-height: 1;
}

@media (min-width: 640px) {
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .gallery-large {
    grid-row: span 2;
    min-height: 456px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 42px;
  }

  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 2;
  }

  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
  }

  .timeline-item::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-year {
    padding-top: 4px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .two-column {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  }

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

  .strategy-shell {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 42px;
  }

  .strategy-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .bottom-nav {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 110px 0;
  }

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

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

  .wide-award {
    grid-column: span 2;
  }

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

  .hero-business {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
