:root {
  --navy: #063f68;
  --blue: #0b77a1;
  --teal: #0f8aa4;
  --cyan: #9bd8ee;
  --ink: #102331;
  --muted: #657684;
  --paper: #f6f9fb;
  --white: #ffffff;
  --line: rgba(6, 63, 104, .26);
  --line-strong: rgba(6, 63, 104, .42);
  --shadow: 0 28px 80px rgba(6, 63, 104, .16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(155, 216, 238, .25), transparent 28%),
    linear-gradient(180deg, #f7fbfd, #eef7fb);
  font-family: "Plus Jakarta Sans", "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 63, 104, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 63, 104, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.12));
}

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: clamp(14px, 3vw, 42px);
  right: clamp(14px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(6, 63, 104, .18);
  backdrop-filter: blur(18px);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.compact,
.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(6, 63, 104, .12);
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 18px 50px rgba(6, 63, 104, .16);
}

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

.brand img {
  width: 78px;
  height: 52px;
  object-fit: contain;
  padding: 5px 8px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 63, 104, .12);
}

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

.brand strong {
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 850;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 11px 13px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(11, 119, 161, .12);
}

.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 30px rgba(11, 119, 161, .32);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: rgba(11, 119, 161, .12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero picture,
.hero picture::after {
  position: absolute;
  inset: 0;
}

.hero picture::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 29, 49, .84), rgba(3, 29, 49, .44) 48%, rgba(3, 29, 49, .12)),
    linear-gradient(0deg, rgba(3, 29, 49, .78), rgba(3, 29, 49, .06) 58%);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(72px, 10vw, 118px) clamp(18px, 8vw, 110px);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 6vw, 88px);
  bottom: clamp(26px, 7vw, 78px);
  min-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.projects .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 540;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: .92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.18;
}

.hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 35px rgba(11, 119, 161, .36);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .50);
  background: rgba(255, 255, 255, .08);
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background:
    radial-gradient(circle at 8% 0%, rgba(155, 216, 238, .46), transparent 24%),
    var(--line);
}

.intro-band::before,
.values::before,
.projects::before,
.contact::before {
  content: "";
  position: absolute;
  left: clamp(18px, 6vw, 88px);
  right: clamp(18px, 6vw, 88px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 119, 161, .34), transparent);
}

.intro-band div {
  min-height: 220px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(6, 63, 104, .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(234,248,252,.78)),
    var(--white);
}

.intro-band span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.intro-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 23px;
}

.intro-band p {
  color: var(--muted);
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 136px) clamp(18px, 6vw, 88px);
}

.illustrated-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(15, 138, 164, .20), transparent 24%),
    linear-gradient(180deg, #f7fbfd 0%, #e9f6fb 100%);
}

.illustrated-section::after,
.team::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(6, 63, 104, .13) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  opacity: .34;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.illustrated-section > *,
.team > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.contact p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.section-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-top: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.expertise-grid,
.values-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

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

.expertise-grid article,
.values-grid article,
.team-grid article,
.gallery-grid article {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 55px rgba(6, 63, 104, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.expertise-grid article:hover,
.values-grid article:hover,
.team-grid article:hover,
.gallery-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 119, 161, .72);
  box-shadow: var(--shadow);
}

.expertise-grid article {
  overflow: hidden;
  min-height: 260px;
  padding: 14px 14px 28px;
}

.card-media,
.value-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #eaf8fc;
}

.expertise-grid h3,
.expertise-grid p {
  padding: 0 12px;
}

.expertise-grid p,
.values-grid p,
.team-grid p,
.gallery-grid p {
  color: var(--muted);
}

.values {
  position: relative;
  background:
    radial-gradient(circle at 18% 10%, rgba(11, 119, 161, .20), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(15, 138, 164, .24), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #e3f4fa 100%);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(34px, 6vw, 64px);
}

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

.values-grid article {
  min-height: 255px;
  padding: 14px 14px 26px;
}

.values-grid span {
  display: block;
  margin: 0 12px 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.values-grid p {
  padding: 0 12px;
}

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

.team {
  background:
    linear-gradient(135deg, rgba(6,63,104,.06), rgba(155,216,238,.28)),
    #f7fbfd;
}

.team-grid article {
  overflow: hidden;
  padding-bottom: 18px;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 20px;
  background: #dceff5;
  transition: transform .35s ease;
}

.team-grid article:hover img {
  transform: scale(1.04);
}

.team-grid h3,
.team-grid p {
  padding: 0 18px;
}

.projects {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 0%, rgba(155, 216, 238, .25), transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(15, 138, 164, .36), transparent 32%),
    linear-gradient(135deg, #031d31, var(--navy));
}

.projects::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
}

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

.projects .section-heading {
  color: var(--white);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 30px 90px rgba(0, 0, 0, .22);
}

.project-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0b314f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  aspect-ratio: 1.12 / 1;
}

.project-tile.tall {
  grid-row: auto;
}

.project-tile.wide {
  grid-column: auto;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 29, 49, .86), rgba(3, 29, 49, .04) 62%);
}

.project-tile span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.04;
}

.project-tile small {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-tile:hover img {
  filter: saturate(1.08);
  transform: scale(1.07);
}

.see-more {
  display: table;
  margin: 36px auto 0;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  transition: transform .22s ease, background .22s ease;
}

.see-more:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .10);
}

.contact {
  position: relative;
  display: block;
  background:
    linear-gradient(135deg, rgba(155, 216, 238, .32), transparent 55%),
    var(--paper);
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 500px) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card,
.map-card {
  border: 2px solid var(--line-strong);
  border-radius: 34px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(234, 248, 252, .82)),
    var(--white);
}

.contact-row {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 78px 18px 20px;
  border-radius: 22px;
  transition: background .2s ease, transform .2s ease;
}

.contact-row:hover,
.email-row.is-open {
  background: rgba(155, 216, 238, .20);
  transform: translateY(-1px);
}

.contact-row span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-row strong,
.email-trigger {
  color: var(--navy);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 900;
  line-height: 1.12;
}

.contact-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 24px rgba(11,119,161,.22);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card .contact-row:nth-child(1) {
  background: linear-gradient(135deg, rgba(11,119,161,.14), rgba(155,216,238,.18));
}

.contact-card .contact-row:nth-child(2) {
  background: linear-gradient(135deg, rgba(15,138,164,.16), rgba(255,255,255,.64));
}

.contact-card .email-row {
  background: linear-gradient(135deg, rgba(6,63,104,.13), rgba(155,216,238,.22));
}

.contact-card .contact-row:nth-child(4) {
  background: linear-gradient(135deg, rgba(155,216,238,.22), rgba(255,255,255,.70));
}

.contact-card .contact-row:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, var(--teal), #66c6d8);
}

.contact-card .email-row .contact-icon {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.contact-card .contact-row:nth-child(4) .contact-icon {
  background: linear-gradient(135deg, #08779a, #42bdd0);
}

.email-row {
  cursor: pointer;
}

.email-trigger {
  width: fit-content;
  max-width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.email-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 29, 49, .54);
  backdrop-filter: blur(14px);
}

.email-modal[hidden] {
  display: none !important;
}

.email-modal-panel {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(211, 240, 249, .92));
  box-shadow: 0 34px 100px rgba(3, 29, 49, .35);
  animation: modalIn .22s ease both;
}

.email-modal-panel img {
  width: 120px;
  height: 82px;
  object-fit: contain;
  padding: 8px;
  margin-bottom: 16px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 63, 104, .12);
}

.email-modal-panel h3 {
  color: var(--navy);
  font-size: clamp(22px, 4vw, 30px);
  overflow-wrap: anywhere;
}

.email-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(11, 119, 161, .12);
  font-size: 26px;
  cursor: pointer;
}

.email-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.email-menu-actions a,
.email-menu-actions button {
  min-height: 48px;
  border: 1px solid rgba(6, 63, 104, .12);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.email-menu-actions a:hover,
.email-menu-actions button:hover {
  transform: translateY(-2px);
  background: rgba(155, 216, 238, .36);
}

.copy-feedback {
  min-height: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(.92) contrast(1.02);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  margin-top: 70px;
  padding: clamp(52px, 7vw, 90px) clamp(22px, 7vw, 110px) 34px;
  color: rgba(255, 255, 255, .78);
  border: 2px solid rgba(155,216,238,.22);
  border-bottom: 0;
  border-radius: 54px 54px 0 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(11, 119, 161, .45), transparent 30%),
    linear-gradient(135deg, #02182a, #063f68 68%, #0b77a1);
  box-shadow: 0 -30px 90px rgba(6, 63, 104, .16);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 118px;
  height: 84px;
  object-fit: contain;
  padding: 8px;
  border-radius: 22px;
  background: var(--white);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-weight: 850;
}

.site-footer nav a {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .72);
}

.site-footer nav strong {
  margin-bottom: 4px;
  color: var(--white);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: clamp(24px, 5vw, 70px);
}

.credit {
  grid-column: 1;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  text-align: left;
}

.credit a {
  color: var(--cyan);
  font-weight: 900;
}

.legal-footer {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  color: var(--cyan);
  font-weight: 900;
}

.gallery-hero {
  padding: 150px clamp(18px, 6vw, 88px) 64px;
  background:
    radial-gradient(circle at 18% 0%, rgba(155,216,238,.42), transparent 24%),
    linear-gradient(135deg, #eaf6fb, var(--white));
}

.gallery-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
}

.gallery-hero p:last-child {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 42px clamp(18px, 6vw, 88px) clamp(72px, 10vw, 120px);
  background:
    radial-gradient(circle at 90% 30%, rgba(15,138,164,.12), transparent 28%),
    #f7fbfd;
}

.gallery-grid article {
  overflow: hidden;
  padding-bottom: 18px;
  background: var(--white);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}

.gallery-grid h2,
.gallery-grid p {
  padding: 0 18px;
}

.gallery-grid h2 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content .contact-card {
  padding: clamp(24px, 5vw, 44px);
}

.legal-content h2 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1080px) {
  .team-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .intro-band,
  .split,
  .contact-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 9px 10px;
  }

  .brand img {
    width: 58px;
    height: 42px;
  }

  .brand strong {
    max-width: 190px;
  }

  .brand small {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-left: 18px;
    margin-bottom: 56px;
  }

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

  .expertise-grid,
  .values-grid,
  .team-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .project-tile.tall,
  .project-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    border-radius: 34px 34px 0 0;
  }

  .footer-columns,
  .site-footer nav,
  .credit {
    justify-content: flex-start;
    text-align: left;
  }

  .legal-footer {
    grid-column: 1;
    justify-self: start;
  }
}
