:root {
  --ink: #172d42;
  --muted: #6d7480;
  --paper: #f8f7f4;
  --stone: #e7f1ef;
  --charcoal: #12283b;
  --terracotta: #f17832;
  --olive: #77c9c4;
  --line: rgba(23, 45, 66, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(18, 40, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(23, 45, 66, 0.08);
  box-shadow: 0 16px 44px rgba(18, 40, 59, 0.1);
  backdrop-filter: blur(18px);
}

.top-bar {
  background: linear-gradient(90deg, var(--charcoal), #153d52 58%, #1d6d70);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.top-bar-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}

.top-bar a + a::before {
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 12px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 215px;
  min-width: 180px;
  padding: 8px 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 100%;
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(23, 45, 66, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 28px rgba(18, 40, 59, 0.06);
  font-size: 13px;
  color: #2d4254;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(18, 40, 59, 0.08);
}

.main-nav a.active {
  color: var(--terracotta);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

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

.nav-actions .button {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border-color: transparent;
  background: linear-gradient(135deg, var(--terracotta), #ff9f45);
  box-shadow: 0 12px 26px rgba(241, 120, 50, 0.28);
  color: var(--white);
}

.nav-actions .button:hover {
  background: linear-gradient(135deg, #e96925, var(--terracotta));
  box-shadow: 0 16px 34px rgba(241, 120, 50, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(18, 40, 59, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.ghost {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.button.ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5.2vw, 78px);
  font-weight: 600;
  line-height: 1.02;
}

.section-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.08;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(18, 40, 59, 0.82), rgba(18, 40, 59, 0.36) 54%, rgba(18, 40, 59, 0.08));
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--slide-image) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6500ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 38px;
}

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

.hero p {
  max-width: 640px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

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

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.active {
  width: 58px;
  background: var(--terracotta);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 88px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-stat {
  min-height: 120px;
  padding: 24px;
  background: rgba(18, 40, 59, 0.58);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.portrait-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.image-tall {
  aspect-ratio: 3 / 4.25;
}

.image-small {
  aspect-ratio: 4 / 5;
  margin-bottom: 42px;
}

.quote-panel {
  margin-top: 30px;
  padding: 30px;
  background: var(--charcoal);
  color: var(--white);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.stats-band {
  padding: 72px 0;
  background: #f0ece5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: center;
}

.stat-tile {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.stat-tile strong {
  display: block;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
}

.stat-tile span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 310px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.service-card .number {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 64px;
}

.service-card h3,
.process-step h3,
.project-card h3,
.article-card h3,
.value-card h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.band p {
  color: rgba(255, 255, 255, 0.68);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.process-step {
  min-height: 260px;
  padding: 30px;
  background: var(--charcoal);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--stone);
}

.project-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 28px;
}

.project-feature .image-wrap {
  min-height: 560px;
}

.project-meta {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.project-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.project-meta strong {
  color: var(--ink);
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-study {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 82px;
}

.case-study-media {
  min-height: 620px;
  overflow: hidden;
}

.case-study-content {
  padding: 38px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.case-study-content p {
  margin-top: 22px;
}

.project-gallery-head {
  margin-top: 26px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.project-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.project-gallery figure.wide {
  grid-column: span 2;
}

.project-gallery img {
  transition: transform 300ms ease;
}

.project-gallery figure:hover img {
  transform: scale(1.04);
}

.project-card,
.article-card,
.value-card {
  background: rgba(255, 255, 255, 0.42);
}

.project-card .image-wrap {
  aspect-ratio: 4 / 3.25;
}

.project-card .card-body,
.article-card .card-body,
.value-card {
  padding: 26px;
}

.split-band {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: 620px;
}

.split-band .image-wrap {
  min-height: 100%;
}

.split-content {
  display: grid;
  align-content: center;
  padding: 80px clamp(24px, 7vw, 112px);
  background: var(--stone);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.credential {
  padding: 22px;
  border: 1px solid rgba(23, 45, 66, 0.16);
}

.credential strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 250px;
  border: 1px solid var(--line);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card .image-wrap {
  aspect-ratio: 4 / 2.8;
}

.article-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 40, 59, 0.84), rgba(18, 40, 59, 0.34)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=85") center / cover;
  color: var(--white);
}

.cta .section {
  padding: 92px 0;
}

.cta p {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.78);
}

.core-values-panel {
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 34, 51, 0.92), rgba(15, 34, 51, 0.76)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=85") center / cover;
  color: var(--white);
}

.core-values-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  align-items: center;
}

.core-values-copy h2 {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.08;
}

.core-values-copy p {
  max-width: 540px;
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
}

.core-values-copy a {
  display: inline-block;
  border-bottom: 2px solid var(--white);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.value-accordion {
  display: grid;
}

.value-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  border-bottom: 4px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.value-icon {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.value-title {
  align-self: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.value-text {
  grid-column: 2;
  max-width: 640px;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  transition: max-height 220ms ease, margin-top 220ms ease;
}

.value-row.active .value-text {
  max-height: 150px;
  margin-top: 16px;
}

.value-row:hover {
  border-bottom-color: rgba(241, 120, 50, 0.9);
}

.page-hero {
  min-height: 470px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 40, 59, 0.76), rgba(18, 40, 59, 0.22)),
    var(--page-image, url("https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=1800&q=85")) center / cover;
}

.page-hero .section {
  padding: 120px 0 70px;
}

.page-hero p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.two-column {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
}

.contact-card {
  padding: 34px;
  background: var(--charcoal);
  color: var(--white);
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.78);
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.form textarea {
  min-height: 154px;
  resize: vertical;
}

.map-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: stretch;
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 34px;
  background: var(--stone);
}

.map-copy p {
  color: var(--ink);
  font-weight: 700;
}

.map-copy .button {
  width: fit-content;
}

.map-frame {
  min-height: 430px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  background: #0f2233;
  color: var(--white);
}

.site-footer .brand {
  width: 255px;
  max-width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.site-footer .brand img {
  max-height: 58px;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 34px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 40px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(18, 40, 59, 0.25);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(18, 40, 59, 0.32);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 24px 28px;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .button {
    display: none;
  }

  .section-head,
  .intro-grid,
  .project-feature,
  .case-study,
  .split-band,
  .two-column,
  .contact-grid,
  .map-section,
  .core-values-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .project-grid,
  .article-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-strip {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .project-feature .image-wrap {
    min-height: 420px;
  }

  .case-study-media {
    min-height: 460px;
  }

  .split-band .image-wrap {
    min-height: 420px;
  }

  .core-values-inner {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 24px, 1180px);
    min-height: 72px;
  }

  .brand {
    width: 178px;
    min-width: 164px;
    padding: 6px 0;
  }

  .brand img {
    max-height: 48px;
  }

  .main-nav {
    inset: 72px 0 auto 0;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 70px 0;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding-top: 70px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .process-grid,
  .project-grid,
  .article-grid,
  .values-grid,
  .stats-grid,
  .project-gallery,
  .credentials,
  .portrait-stack {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-auto-rows: 330px;
  }

  .project-gallery figure.wide {
    grid-column: span 1;
  }

  .case-study-media {
    min-height: 390px;
  }

  .case-study-content {
    padding: 26px;
  }

  .stats-band {
    padding: 46px 0;
  }

  .stat-tile {
    min-height: 96px;
    gap: 12px;
  }

  .core-values-panel {
    min-height: auto;
  }

  .core-values-inner {
    width: min(100% - 24px, 1180px);
    padding: 70px 0;
  }

  .value-row {
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .value-title {
    font-size: 14px;
  }

  .service-card .number {
    margin-bottom: 36px;
  }

  .project-feature .image-wrap,
  .split-band .image-wrap {
    min-height: 330px;
  }

  .map-copy {
    padding: 26px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}
