:root {
  --navy: #24327d;
  --navy-deep: #15245f;
  --pink: #e92586;
  --pink-dark: #c9146f;
  --ink: #17214f;
  --body: #353a54;
  --muted: #69708c;
  --line: #dfe2ee;
  --surface: #f7f7fb;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --shadow-header: 0 8px 24px rgba(26, 34, 79, 0.08);
  --shell: min(1320px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(233, 37, 134, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(36, 50, 125, 0.08);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand-logo {
  position: relative;
  display: block;
  flex: 0 0 245px;
  width: 245px;
  height: 51px;
  overflow: hidden;
}

.brand-logo img {
  position: absolute;
  top: -48px;
  left: -17px;
  width: 280px;
  max-width: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 29px 0 25px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 8px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid var(--pink);
  border-radius: 3px;
  color: var(--white);
  background: var(--pink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms var(--ease-out);
}

.button:hover {
  border-color: var(--pink-dark);
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 45px;
  padding-inline: 20px;
  font-size: 12px;
  white-space: nowrap;
}

.button--outline {
  color: var(--pink);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 4px;
  color: var(--navy);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  background: var(--white);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.15fr);
  align-items: stretch;
  height: 650px;
  min-height: 650px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 78px 56px 68px 0;
}

.hero h1 {
  margin-bottom: 27px;
  font-size: clamp(46px, 4.35vw, 70px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--pink);
}

.hero__copy > p {
  max-width: 540px;
  margin-bottom: 28px;
  color: #4f5570;
  font-size: 17px;
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 45px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--pink {
  color: var(--pink);
}

.hero__personal strong {
  display: block;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 13px;
}

.hero__personal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__personal li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4f5570;
  font-size: 11px;
  font-weight: 500;
}

.hero__personal svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero__media {
  position: relative;
  height: 650px;
  min-height: 650px;
  overflow: hidden;
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 76px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  content: "";
}

.hero__media > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 43%;
}

.hero__media-note {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  min-width: 205px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy);
}

.hero__media-note::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--pink);
  content: "";
}

.hero__media-note strong {
  font-size: 14px;
}

.hero__media-note span {
  color: #dce0f3;
  font-size: 12px;
}

.trust-strip {
  padding: 18px 0;
  background: var(--surface);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1.32fr repeat(4, 1fr);
  align-items: center;
  min-height: 112px;
}

.trust-strip__lead,
.trust-point {
  min-height: 58px;
  padding: 0 22px;
}

.trust-strip__lead {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 12px;
}

.trust-strip__lead > span {
  width: 3px;
  height: 52px;
  background: var(--pink);
}

.trust-strip__lead strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--line);
}

.trust-point svg {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.trust-point span {
  color: #424964;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

.section {
  padding: clamp(80px, 8vw, 126px) 0;
}

.section-heading {
  margin-bottom: 54px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 700;
}

.section-heading > span {
  display: block;
  width: 54px;
  height: 3px;
  margin-inline: auto;
  background: var(--pink);
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;
}

.services .section-heading {
  text-align: left;
}

.services .section-heading > span {
  margin-left: 0;
}

.services__image {
  height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.services__content h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.services__content > p {
  max-width: 570px;
  margin-bottom: 18px;
  color: #555b74;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.service-list a::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  content: "";
}

.service-list a span {
  margin-right: auto;
}

.service-list b {
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.service-list a:hover b {
  transform: translateX(4px);
}

.process {
  padding-top: 20px;
  background: var(--white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 10px clamp(40px, 5vw, 78px);
  text-align: center;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step__number {
  position: absolute;
  top: 10px;
  left: 22px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.process-step > svg {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.process-step p {
  margin-bottom: 0;
  color: #5c627a;
  font-size: 13px;
  line-height: 1.7;
}

.about {
  background: var(--surface);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: clamp(50px, 8vw, 115px);
  align-items: center;
}

.about__media {
  height: 550px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
}

.section-label::before {
  width: 34px;
  height: 2px;
  background: var(--pink);
  content: "";
}

.about__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.5vw, 50px);
}

.about__copy p:not(.section-label) {
  max-width: 590px;
  color: #555b74;
}

.about__copy .button {
  margin-top: 10px;
}

.projects {
  padding-bottom: 100px;
}

.projects .section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.projects .section-heading h2 {
  margin-bottom: 0;
}

.projects .section-heading > span {
  width: 82px;
  margin: 0;
}

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

.project-card__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.project-card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__images img:first-child {
  border-right: 3px solid var(--white);
}

.project-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
}

.project-card__caption h3 {
  margin: 0;
  font-size: 16px;
}

.project-card__caption a {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.project-card__caption a span {
  margin-left: 8px;
  font-size: 18px;
}

.contact-section {
  padding: clamp(85px, 9vw, 140px) 0 0;
  background: var(--white);
}

.contact-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: start;
  min-height: 720px;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-stage__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 720px;
  padding: 64px clamp(38px, 4.5vw, 68px) 0;
  overflow: hidden;
}

.contact-stage__index {
  margin-bottom: 38px;
  color: #aeb8e2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-stage h2 {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.035em;
}

.contact-stage__intro > p:not(.contact-stage__index) {
  max-width: 530px;
  margin-bottom: 32px;
  color: #d9dff8;
  font-size: 15px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
}

.contact-details svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-details span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.contact-details small {
  margin-bottom: 4px;
  color: #aeb8e2;
  font-size: 10px;
  font-weight: 500;
}

.contact-stage__photo {
  position: relative;
  width: min(390px, 88%);
  height: 220px;
  margin: auto 0 0 auto;
  overflow: hidden;
}

.contact-stage__photo::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 64px;
  height: 8px;
  background: var(--pink);
  content: "";
}

.contact-stage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.84;
}

.contact-stage__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 15px;
  color: var(--white);
  background: rgba(21, 36, 95, 0.88);
  font-size: 10px;
}

.contact-form-wrap {
  position: relative;
  z-index: 2;
  margin: -42px 44px 44px 0;
  padding: clamp(34px, 4vw, 56px);
  border-radius: var(--radius-md);
  color: var(--body);
  background: var(--white);
  box-shadow: 0 8px 8px rgba(11, 21, 65, 0.14);
}

.contact-form__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-form__heading span {
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-form__heading strong {
  max-width: 190px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

.form-notice {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.form-notice--success {
  color: #124a39;
  background: #e7f6ef;
}

.form-notice--error {
  color: #7b183a;
  background: #fdeaf1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.form-field label > span {
  color: var(--pink);
}

.form-field label small {
  margin-left: 6px;
  color: #6c728b;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbc0d2;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  height: 50px;
}

.form-field textarea {
  min-height: 125px;
  padding: 12px 0;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--navy);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-width: 2px;
  border-color: var(--pink);
  background: #fbfbfe;
}

.form-field [aria-invalid="true"] {
  border-color: #b3264f;
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #a81843;
  font-size: 11px;
  line-height: 1.45;
}

.field-error.is-visible {
  display: block;
}

.form-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  color: #565c74;
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--pink);
}

.field-error--consent {
  margin-top: -17px;
  margin-left: 33px;
}

.form-submit {
  align-self: flex-start;
  min-width: 245px;
  gap: 18px;
}

.form-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.form-submit:hover svg {
  transform: translateX(4px);
}

.form-submit.is-loading {
  cursor: wait;
  opacity: 0.78;
}

.form-footnote {
  margin: -10px 0 0;
  color: #71778d;
  font-size: 10px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding: 0 0 max(24px, env(safe-area-inset-bottom));
  color: #dce0f3;
  background: #0d163f;
}

.site-footer__statement {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 60px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__statement p,
.site-footer__statement strong {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-footer__statement p {
  color: #aeb8e2;
  font-size: clamp(27px, 3vw, 44px);
}

.site-footer__statement strong {
  max-width: 750px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 70px);
  text-align: right;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.95fr;
  gap: clamp(55px, 8vw, 120px);
  padding-top: 62px;
  padding-bottom: 62px;
}

.brand-logo--footer {
  width: 245px;
  height: 51px;
  margin-bottom: 24px;
  border-radius: 3px;
  background: var(--white);
}

.brand-logo--footer img {
  top: -48px;
  left: -17px;
  width: 280px;
}

.footer-brand > p {
  max-width: 440px;
  margin: 0;
  color: #aeb8e2;
  font-size: 13px;
  line-height: 1.75;
}

.footer-navigation,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-navigation > p,
.footer-contact > p {
  margin: 0 0 12px;
  color: #7f8abe;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-navigation a,
.footer-contact a {
  min-height: 34px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-navigation a:hover,
.footer-contact a:hover {
  color: var(--pink);
  transform: translateX(3px);
}

.footer-contact .footer-phone {
  margin-bottom: 2px;
  color: var(--pink);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-contact .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--pink);
  font-weight: 700;
}

.footer-cta span {
  font-size: 18px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #8791be;
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  font-size: 11px;
}

.site-footer__bottom a {
  color: var(--white);
}

.fallback-content {
  min-height: 65vh;
  padding-block: 80px;
}

.js-ready .reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .site-header__inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .phone-link span {
    display: none;
  }

  .header-actions {
    gap: 16px;
  }

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

  .trust-strip__lead,
  .trust-point {
    padding-inline: 14px;
  }

  .trust-point {
    gap: 9px;
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .primary-nav {
    position: fixed;
    z-index: 98;
    top: 82px;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(420px, 100%);
    padding: 25px 32px 50px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    box-shadow: -14px 20px 30px rgba(21, 36, 95, 0.12);
    transform: translateX(105%);
    transition: transform 320ms var(--ease-out);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

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

  .menu-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero__content {
    grid-template-columns: minmax(380px, 0.85fr) minmax(440px, 1.15fr);
  }

  .hero__copy {
    padding-right: 38px;
  }

  .hero__personal ul {
    gap: 12px 18px;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .trust-strip__lead {
    grid-column: 1 / -1;
    padding: 22px 18px;
  }

  .trust-point {
    min-height: 85px;
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-point:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .services__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 45px;
  }

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

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 36px), 760px);
  }

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

  .phone-link span {
    display: inline;
  }

  .hero__content {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
  }

  .hero__copy {
    width: var(--shell);
    max-width: none;
    margin-inline: auto;
    padding: 72px 0 55px;
  }

  .hero__media {
    height: 550px;
    min-height: 550px;
  }

  .hero__media > img {
    min-height: 0;
  }

  .hero__media::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 52px;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0));
  }

  .services__layout,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .services__image {
    height: 540px;
  }

  .about__media {
    height: 500px;
  }

  .process-step {
    padding-inline: 42px;
  }

  .process-step__number {
    position: static;
    display: block;
    margin-bottom: 18px;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-stage__intro {
    min-height: 620px;
  }

  .contact-stage__photo {
    width: min(430px, 72%);
  }

  .contact-form-wrap {
    margin: -32px 32px 40px;
  }

  .site-footer__statement {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__statement strong {
    text-align: left;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(calc(100% - 28px), 560px);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand-logo {
    flex-basis: 190px;
    width: 190px;
    height: 39px;
  }

  .brand-logo img {
    top: -37px;
    left: -13px;
    width: 217px;
  }

  .primary-nav {
    top: 72px;
  }

  .phone-link {
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: 4px;
    background: var(--surface);
  }

  .phone-link span {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero__copy {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 42px), 540px);
    margin: -64px auto 0;
    padding: 30px 23px 28px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 8px rgba(20, 31, 80, 0.12);
  }

  .hero__copy::before {
    position: absolute;
    top: 0;
    left: 23px;
    width: 58px;
    height: 6px;
    background: var(--pink);
    content: "";
  }

  .hero {
    padding: 14px 0 46px;
    background: var(--surface);
  }

  .hero__content {
    display: flex;
    flex-direction: column;
  }

  .hero__media {
    order: -1;
    width: min(calc(100% - 28px), 560px);
    height: 410px;
    min-height: 410px;
    margin-inline: auto;
    border-radius: var(--radius-md);
  }

  .hero__media > img {
    object-position: center 47%;
  }

  .hero__media::before {
    height: 90px;
    background: linear-gradient(180deg, rgba(21, 36, 95, 0.06), transparent);
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1.08;
  }

  .hero__copy > p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero__buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }

  .hero__buttons .button {
    width: 100%;
  }

  .hero__buttons .text-link {
    justify-content: center;
    min-height: 44px;
  }

  .hero__personal ul {
    display: flex;
    gap: 8px 18px;
  }

  .hero__personal li {
    flex: 1 1 130px;
    min-height: 38px;
  }

  .hero__media-note {
    right: 14px;
    bottom: 84px;
    min-width: 178px;
    padding: 12px 15px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip__lead {
    grid-column: auto;
  }

  .trust-point,
  .trust-point:nth-child(even) {
    border-right: 0;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .services .section-heading {
    text-align: left;
  }

  .services__image {
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
  }

  .services__image img {
    object-position: 55% center;
  }

  .about__media {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }

  .about__media img {
    object-position: 55% center;
  }

  .service-list {
    gap: 0;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    padding: 38px 14px;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-card__images {
    grid-template-columns: 1.25fr 0.75fr;
    height: 430px;
    gap: 5px;
    border-radius: var(--radius-md);
  }

  .project-card__images img:first-child {
    border-right: 0;
  }

  .projects {
    padding-top: 82px;
    color: var(--white);
    background: var(--navy-deep);
  }

  .projects .section-heading {
    display: block;
    text-align: center;
  }

  .projects .section-heading h2,
  .projects .project-card__caption h3 {
    color: var(--white);
  }

  .projects .section-heading h2 {
    margin-bottom: 15px;
  }

  .projects .section-heading > span {
    width: 54px;
    margin-inline: auto;
  }

  .project-card__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-section {
    padding-top: 74px;
  }

  .contact-stage {
    width: 100%;
  }

  .contact-stage__intro {
    min-height: 590px;
    padding: 44px 22px 0;
  }

  .contact-stage__index {
    margin-bottom: 24px;
  }

  .contact-stage h2 {
    font-size: 39px;
  }

  .contact-stage__photo {
    width: calc(100% + 22px);
    height: 205px;
    margin-right: -22px;
  }

  .contact-form-wrap {
    margin: 0;
    padding: 34px 22px 40px;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-form__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__heading strong {
    max-width: none;
    text-align: left;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

  .form-field label {
    font-size: 14px;
  }

  .form-submit {
    width: 100%;
    min-height: 54px;
  }

  .contact-details {
    flex-direction: column;
  }

  .site-footer__statement {
    gap: 18px;
    padding-top: 50px;
    padding-bottom: 42px;
  }

  .site-footer__statement p {
    font-size: 26px;
  }

  .site-footer__statement strong {
    font-size: 42px;
    line-height: 1.05;
  }

  .site-footer__main {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-block: 48px;
  }

  .footer-navigation,
  .footer-contact {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-navigation a,
  .footer-contact a {
    min-height: 44px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    flex-basis: 165px;
    width: 165px;
    height: 34px;
  }

  .brand-logo img {
    top: -32px;
    left: -11px;
    width: 188px;
  }

  .site-header__inner {
    gap: 8px;
  }

  .header-actions {
    gap: 8px;
  }

  .phone-link,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__media {
    height: 370px;
    min-height: 370px;
  }

  .hero__copy {
    width: calc(100% - 30px);
    margin-top: -50px;
    padding-inline: 19px;
  }

  .hero__media-note {
    display: none;
  }

  .project-card__images {
    grid-template-columns: 1.2fr 0.8fr;
    height: 390px;
  }
}

@media (pointer: coarse) {
  .primary-nav a,
  .service-list a,
  .footer-navigation a,
  .footer-contact a {
    min-height: 44px;
  }
}

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

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

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
