:root {
  --ink: #061116;
  --ink-soft: #0d2028;
  --paper: #f2f0e9;
  --paper-deep: #e4e0d5;
  --cyan: #00a9c7;
  --cyan-bright: #34d8ed;
  --orange: #f57b2a;
  --blue: #0757ae;
  --line: rgba(6, 17, 22, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 56px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 70px;
  }
}

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

::selection {
  background: var(--cyan);
  color: #fff;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 24px;
  left: 50%;
  width: min(calc(100% - 48px), 1440px);
  height: 76px;
  padding: 10px 12px 10px 20px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  background: rgba(246, 244, 238, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 13px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 210px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
  color: #24363d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform 260ms ease;
}

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

.header-call {
  justify-self: end;
  min-width: 220px;
  height: 54px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
  transition: background 220ms ease, transform 220ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.header-call span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 72% 45%, rgba(0, 169, 199, 0.22), transparent 36%),
    linear-gradient(135deg, #061116 0%, #0b252f 58%, #061116 100%);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 17, 0.96) 0%, rgba(2, 12, 17, 0.73) 46%, rgba(2, 12, 17, 0.22) 72%, rgba(2, 12, 17, 0.62) 100%),
    linear-gradient(0deg, rgba(2, 10, 13, 0.64) 0%, transparent 44%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: -10% -3%;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: -12% 0 0 42%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(69, 211, 230, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 211, 230, 0.2) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 80%, transparent);
  transform: perspective(500px) rotateY(-14deg) rotateX(3deg);
  will-change: transform;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  right: 12%;
  bottom: 17%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(52, 216, 237, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(0, 169, 199, 0.18), inset 0 0 50px rgba(0, 169, 199, 0.1);
  will-change: transform;
}

.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(245, 123, 42, 0.32);
  border-radius: inherit;
}

.hero-glow::after {
  inset: 40%;
  background: rgba(245, 123, 42, 0.8);
  box-shadow: 0 0 36px rgba(245, 123, 42, 0.76);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1440px);
  margin: 62px auto 0;
  padding: 56px 0;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8d2d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: block;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(64px, 7.35vw, 118px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.hero h1 em {
  display: block;
  color: var(--cyan-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86em;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 610px;
  margin: 34px 0 0;
  color: #c8d7da;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 57px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 40px rgba(245, 123, 42, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff8b3b;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.hero-status {
  position: absolute;
  right: max(24px, calc((100vw - 1440px) / 2));
  bottom: 47px;
  z-index: 2;
  min-width: 210px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 18, 24, 0.58);
  backdrop-filter: blur(15px);
  will-change: transform;
}

.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #67e899;
  box-shadow: 0 0 0 7px rgba(103, 232, 153, 0.1), 0 0 16px rgba(103, 232, 153, 0.6);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-status div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-status small {
  color: rgba(255, 255, 255, 0.51);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 14px;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: max(24px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 66px;
  height: 1px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan-bright);
  transform: translateX(-100%);
  animation: scan 2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.48; }
}

@keyframes scan {
  60%, 100% { transform: translateX(100%); }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #526269;
}

.section-label span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.section-label p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.section-label-light {
  color: #7c989f;
}

.intro {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
  padding: 150px 0 160px;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 2fr;
  gap: 7vw;
}

.intro-copy {
  max-width: 1000px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.intro h2,
.visit h2 {
  margin: 0;
  font-size: clamp(45px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.intro-columns {
  margin-top: 58px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.intro-columns p {
  margin: 0;
  color: #506168;
  font-size: 16px;
  line-height: 1.75;
}

.services {
  position: relative;
  padding: 150px max(24px, calc((100vw - 1440px) / 2)) 160px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 48%;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(52, 216, 237, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(0, 169, 199, 0.05);
}

.services-heading {
  position: relative;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 0.75fr;
  align-items: end;
  gap: 40px;
}

.services-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.services-heading > p {
  margin: 0 0 7px;
  color: #8ba0a6;
  font-size: 15px;
  line-height: 1.6;
}

.service-list {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 0.38fr 0.55fr 2.5fr;
  align-items: start;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
  transition: background 300ms ease, padding 300ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--cyan-bright), var(--orange));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms ease;
}

.service-card:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: #5e747b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 216, 237, 0.32);
  border-radius: 50%;
  color: var(--cyan-bright);
  background: rgba(52, 216, 237, 0.035);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 44px;
}

.service-body h3 {
  margin: -6px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-body > p {
  margin: 0;
  color: #92a7ad;
  font-size: 15px;
  line-height: 1.7;
}

.service-body ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.service-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0dbde;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.service-body li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(245, 123, 42, 0.5);
}

.promise {
  min-height: 840px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e9e5da;
  overflow: hidden;
}

.promise-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 17, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 17, 22, 0.05) 1px, transparent 1px),
    #ded9cc;
  background-size: 42px 42px;
}

.promise-visual::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 55px 100px rgba(6, 17, 22, 0.28);
}

.core-mark {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  color: var(--cyan-bright);
  border: 2px solid var(--cyan-bright);
  border-right-color: transparent;
  border-radius: 50%;
  font-size: 108px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.14em;
  text-indent: -0.08em;
  transform: rotate(-10deg);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(6, 17, 22, 0.23);
  border-radius: 50%;
  will-change: transform;
}

.orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(245, 123, 42, 0.7);
}

.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 690px; height: 690px; border-color: rgba(7, 87, 174, 0.16); }
.orbit-two::before { top: 18%; left: auto; right: 12%; background: var(--cyan); }

.promise-content {
  padding: 140px max(6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promise-content h2 {
  max-width: 690px;
  margin: 38px 0 56px;
  font-size: clamp(46px, 4.8vw, 75px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.promise blockquote {
  margin: 0;
  padding: 0 0 0 26px;
  border-left: 3px solid var(--orange);
  color: #304249;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.6vw, 27px);
  font-style: italic;
  line-height: 1.55;
}

.promise cite {
  margin-top: 13px;
  display: block;
  color: #6a787c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.standards {
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.standards span {
  padding: 9px 13px;
  border: 1px solid rgba(6, 17, 22, 0.17);
  border-radius: 100px;
  color: #34494f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.visit {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
  padding: 150px 0 160px;
}

.visit-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 2fr;
  gap: 7vw;
  align-items: start;
}

.visit-heading h2 {
  max-width: 930px;
}

.visit-grid {
  margin-top: 92px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 12px;
}

.visit-grid > * {
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.visit-grid > a:hover,
.visit-grid > a:focus-visible {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 25px 70px rgba(6, 17, 22, 0.13);
}

.location-card {
  position: relative;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(6, 17, 22, 0.5), rgba(6, 17, 22, 0.95)),
    radial-gradient(circle at 70% 20%, #037a8f, transparent 42%),
    var(--ink-soft);
  overflow: hidden;
}

.location-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(52, 216, 237, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(52, 216, 237, 0.03), 0 0 0 90px rgba(52, 216, 237, 0.025);
}

.phone-card {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue) !important;
}

.hours-card {
  background: #fff;
}

.card-overline {
  position: relative;
  z-index: 1;
  color: inherit;
  opacity: 0.58;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-grid strong {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 2.35vw, 38px);
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.hours-card p {
  margin: 0;
  color: #68777c;
  font-size: 14px;
  line-height: 1.65;
}

.card-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
}

.card-link i {
  font-size: 18px;
  font-style: normal;
}

footer {
  padding: 96px max(24px, calc((100vw - 1440px) / 2)) 32px;
  color: #fff;
  background: #040b0f;
}

.footer-top {
  padding-bottom: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top p {
  margin: 0;
  color: #71858c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-top > a {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  transition: color 250ms ease;
}

.footer-top > a span {
  color: var(--orange);
}

.footer-top > a:hover,
.footer-top > a:focus-visible {
  color: var(--cyan-bright);
}

.footer-grid {
  padding: 72px 0 80px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.8fr 0.55fr;
  gap: 52px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div > span {
  margin-bottom: 14px;
  color: #61767d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-grid a {
  color: #b9c8cc;
  font-size: 13px;
  line-height: 1.65;
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--cyan-bright);
}

.footer-brand img {
  width: min(100%, 290px);
  padding: 12px;
  border-radius: 7px;
  background: #f4f2ec;
}

.footer-brand p {
  max-width: 300px;
  margin: 14px 0 0;
  color: #73868c;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #4f6269;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav { display: none; }
  .services-heading { grid-template-columns: 1fr 2fr; }
  .services-heading > p { display: none; }
  .service-body { grid-template-columns: 1.2fr 1fr; }
  .service-body ul { display: none; }
  .promise-content { padding: 100px 52px; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .phone-card { grid-column: span 2; min-height: 220px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 65px;
    padding: 8px 9px 8px 13px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 10px;
  }

  .brand { width: min(46vw, 176px); }
  .header-call { min-width: 0; height: 48px; padding: 0 15px; }
  .header-call span { display: none; }
  .header-call strong { font-size: 11px; }

  .hero {
    min-height: 720px;
    align-items: center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(2, 12, 17, 0.91), rgba(2, 12, 17, 0.48)),
      linear-gradient(0deg, rgba(2, 10, 13, 0.78), transparent 60%);
  }

  .hero-media { inset: -8% -35%; }
  .hero-video { object-position: 62% center; }
  .hero-grid { inset: 0 0 0 18%; background-size: 48px 48px; }
  .hero-glow { right: -130px; bottom: 22%; width: 260px; height: 260px; }

  .hero-content {
    width: calc(100% - 40px);
    margin-top: 45px;
    padding-bottom: 112px;
  }

  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  .hero h1 { font-size: clamp(51px, 15.5vw, 75px); line-height: 0.91; }
  .hero-copy { max-width: 92%; margin-top: 26px; font-size: 15px; }
  .hero-actions { margin-top: 30px; flex-wrap: wrap; }
  .button { min-height: 52px; padding: 0 18px; gap: 18px; font-size: 11px; }

  .hero-status {
    right: 20px;
    bottom: 25px;
    min-width: 170px;
    padding: 13px 15px;
  }

  .scroll-cue { left: 20px; bottom: 28px; }

  .intro {
    width: calc(100% - 40px);
    padding: 96px 0 105px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro h2,
  .visit h2 { font-size: 45px; }
  .intro-columns { margin-top: 42px; grid-template-columns: 1fr; gap: 23px; }

  .services {
    padding: 96px 20px 105px;
  }

  .services-heading {
    margin-bottom: 56px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .services-heading h2 { font-size: 45px; }
  .service-card {
    min-height: 0;
    padding: 32px 0 38px;
    grid-template-columns: 42px 1fr;
    gap: 10px 18px;
  }

  .service-card:hover { padding-right: 0; padding-left: 0; }
  .service-icon { width: 50px; height: 50px; grid-column: 2; }
  .service-icon svg { width: 25px; height: 25px; }
  .service-body { grid-column: 2; grid-template-columns: 1fr; gap: 18px; }
  .service-body h3 { font-size: 34px; }
  .service-body > p { font-size: 14px; }

  .promise { min-height: 0; grid-template-columns: 1fr; }
  .promise-visual { min-height: 470px; }
  .promise-visual::before { width: 240px; height: 240px; }
  .core-mark { width: 135px; height: 135px; font-size: 76px; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 500px; height: 500px; }
  .promise-content { padding: 90px 20px 100px; }
  .promise-content h2 { margin: 34px 0 44px; font-size: 45px; }
  .promise blockquote { font-size: 20px; }
  .standards { flex-wrap: wrap; }

  .visit { width: calc(100% - 40px); padding: 96px 0 104px; }
  .visit-heading { grid-template-columns: 1fr; gap: 45px; }
  .visit-grid { margin-top: 58px; grid-template-columns: 1fr; }
  .visit-grid > *, .phone-card { min-height: 245px; grid-column: auto; padding: 27px; }
  .visit-grid strong { font-size: 29px; }

  footer { padding: 76px 20px 25px; }
  .footer-top { padding-bottom: 50px; display: block; }
  .footer-top p { margin-bottom: 25px; }
  .footer-top > a { gap: 20px; font-size: 42px; }
  .footer-grid { padding: 55px 0 58px; grid-template-columns: 1fr; gap: 40px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { gap: 20px; line-height: 1.5; }
}

.hero-expanded h1 {
  max-width: 980px;
  font-size: clamp(62px, 6.8vw, 108px);
}

.hero-expanded .hero-copy {
  max-width: 680px;
}

.signal-strip {
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #dcebed;
  background: linear-gradient(90deg, #0757ae, #007f9c 55%, #0757ae);
  overflow: hidden;
}

.signal-strip span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 17px rgba(245, 123, 42, 0.85);
}

.intro-expanded {
  padding-top: 145px;
}

.business-principles {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.business-principles span {
  min-height: 68px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #31454c;
  background: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.services-expanded .service-card {
  min-height: 285px;
}

.services-expanded .service-body ul {
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.sectors {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
  padding: 150px 0 160px;
}

.sectors-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 2fr;
  gap: 7vw;
  align-items: start;
}

.sectors-heading h2,
.brands-copy h2,
.delivery-head h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.06em;
}

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

.sector-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease;
}

.sector-grid article::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 169, 199, 0.18);
  border-radius: 50%;
  transition: transform 350ms ease;
}

.sector-grid article:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-4px);
}

.sector-grid article:hover::after {
  transform: scale(1.3);
}

.sector-grid article > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.sector-grid h3 {
  max-width: 260px;
  margin: auto 0 15px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.sector-grid p {
  max-width: 310px;
  margin: 0;
  color: #607077;
  font-size: 13px;
  line-height: 1.6;
}

.brands-section {
  padding: 150px max(24px, calc((100vw - 1440px) / 2)) 160px;
  display: grid;
  grid-template-columns: 0.68fr 1.72fr;
  gap: 5vw;
  background: #e4e0d5;
}

.brands-copy {
  align-self: start;
}

.brands-copy h2 {
  margin-top: 38px;
}

.brands-copy > p {
  max-width: 550px;
  margin: 30px 0 0;
  color: #56676e;
  font-size: 16px;
  line-height: 1.7;
}

.affiliation-note {
  margin-top: 48px;
  padding: 23px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.46);
}

.affiliation-note strong {
  color: #263a41;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliation-note span {
  color: #67767b;
  font-size: 12px;
  line-height: 1.6;
}

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

.brand-tile {
  min-height: 170px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(6, 17, 22, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.brand-tile:hover {
  z-index: 1;
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 24px 55px rgba(6, 17, 22, 0.12);
}

.brand-logo-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-wrap img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 70px;
}

.brand-symbol .brand-logo-wrap img {
  max-width: 62px;
  max-height: 62px;
}

.brand-wide .brand-logo-wrap img {
  max-width: 138px;
  max-height: 58px;
}

.brand-unv .brand-logo-wrap img {
  max-width: 130px;
  max-height: 78px;
}

.brand-apc .brand-logo-wrap img {
  width: 128px;
  max-height: none;
}

.brand-omada {
  color: #fff;
  border-color: #174e9b;
  background: linear-gradient(145deg, #1d64b8, #123f82);
}

.brand-omada:hover {
  color: #fff;
  background: linear-gradient(145deg, #2574ca, #174b94);
}

.brand-omada .brand-logo-wrap img {
  max-width: 145px;
}

.brand-tile > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-tile strong {
  font-size: 13px;
  font-weight: 800;
}

.brand-tile small {
  color: inherit;
  opacity: 0.55;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.delivery {
  padding: 150px max(24px, calc((100vw - 1440px) / 2)) 160px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 8vw;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 169, 199, 0.16), transparent 30%),
    var(--ink);
}

.delivery-head {
  align-self: start;
}

.delivery-head h2 {
  max-width: 650px;
  margin-top: 40px;
}

.delivery blockquote {
  margin: 64px 0 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--orange);
  color: #b9cdd2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-style: italic;
  line-height: 1.55;
}

.delivery cite {
  margin-top: 15px;
  display: block;
  color: #61777e;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.delivery-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.delivery-steps li {
  min-height: 145px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding 220ms ease, background 220ms ease;
}

.delivery-steps li:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.delivery-steps > li > span {
  padding-top: 7px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.delivery-steps h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 550;
  letter-spacing: -0.04em;
}

.delivery-steps p {
  max-width: 520px;
  margin: 0;
  color: #849ba1;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .business-principles { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-section { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery { grid-template-columns: 1fr; }
  .delivery-head h2 { max-width: 800px; }
}

@media (max-width: 760px) {
  .hero-expanded h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero-expanded .eyebrow { max-width: 300px; line-height: 1.6; }

  .signal-strip {
    min-height: 72px;
    padding: 0 20px;
    justify-content: flex-start;
    gap: 14px;
  }

  .signal-strip span { font-size: 8px; letter-spacing: 0.12em; }
  .signal-strip i { width: 5px; height: 5px; flex-basis: 5px; }
  .business-principles { margin-top: 35px; }
  .business-principles span { min-height: 58px; }

  .sectors { width: calc(100% - 40px); padding: 96px 0 104px; }
  .sectors-heading { grid-template-columns: 1fr; gap: 44px; }
  .sectors-heading h2, .brands-copy h2, .delivery-head h2 { font-size: 44px; }
  .sector-grid { margin-top: 55px; grid-template-columns: 1fr; }
  .sector-grid article { min-height: 220px; }

  .brands-section { padding: 96px 20px 104px; gap: 60px; }
  .brands-copy h2 { margin-top: 34px; }
  .affiliation-note { margin-top: 36px; }
  .brand-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .brand-tile { min-height: 155px; padding: 18px; }
  .brand-logo-wrap { min-height: 62px; }
  .brand-logo-wrap img { max-width: 105px; max-height: 52px; }
  .brand-symbol .brand-logo-wrap img { max-width: 48px; max-height: 48px; }
  .brand-wide .brand-logo-wrap img { max-width: 105px; max-height: 44px; }
  .brand-unv .brand-logo-wrap img { max-width: 95px; }
  .brand-omada .brand-logo-wrap img { max-width: 108px; }

  .delivery { padding: 96px 20px 104px; gap: 65px; }
  .delivery blockquote { margin-top: 46px; }
  .delivery-steps li { min-height: 135px; grid-template-columns: 44px 1fr; gap: 12px; }
  .delivery-steps li:hover { padding-right: 0; padding-left: 0; }
  .delivery-steps h3 { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
