@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("./assets/fonts/barlow-condensed-900-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/barlow-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/barlow-condensed-700.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/dm-sans-latin.woff2") format("woff2");
}

:root {
  --paper: #f1f4f5;
  --ink: #202b34;
  --brand-blue: #273e8e;
  --brand-blue-hover: #1c2e6e;
  --muted: #404d58;
  --orange: #c4491d;
  --orange-hover: #a83b16;
  --line: #bbc8d0;
  --line-strong: #9cabb7;
  --white: #fff;
  --light-blue: #e0eaf1;
  --surface-soft: #e5ebee;
  --surface-muted: #d4dfe7;
  --feature-blue: #293e68;
  --paper-grain: url("./assets/paper-grain.svg");
  --heading: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 6px;
}
::selection {
  background: #d7e3fa;
  color: var(--ink);
}
img {
  display: block;
  width: 100%;
}
.container {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 104px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.015em;
  color: var(--brand-blue);
  flex-shrink: 0;
}
.brand-name {
  display: block;
  padding-inline-end: 0.12em;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  transform: skewY(-2deg);
  transform-origin: left center;
}
.brand-mark {
  color: var(--brand-blue);
  width: 48px;
  height: 48px;
}
.brand-subtitle {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 0.625rem;
  letter-spacing: 0.19em;
  font-weight: 600;
}
.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 550;
}
.main-nav > a:not(.button) {
  position: relative;
}
.main-nav > a:not(.button):after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: width 0.2s;
}
.main-nav > a:hover:after {
  width: 100%;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--orange);
  color: var(--white);
  padding: 17px 25px;
  min-height: 58px;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}
.button > span {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}
.button-small {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 0.875rem;
  gap: 23px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 52px;
  padding-block: 58px 60px;
  align-items: stretch;
}
.hero-copy {
  padding: 23px 0 8px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 650;
  line-height: 1.5;
  margin: 0 0 24px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(5rem, 8.45vw, 7.8125rem);
  margin-bottom: 27px;
}
.edge-word {
  color: var(--brand-blue);
}
.hero-description {
  max-width: 390px;
  line-height: 1.7;
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 29px;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
.text-link:hover {
  color: var(--brand-blue-hover);
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  margin-top: 48px;
  color: var(--muted);
}
.hero-location svg {
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  min-height: 530px;
  background: var(--ink);
  overflow: hidden;
}
.hero-visual > img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 49% center;
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, #1d2948aa);
}
.photo-label {
  position: absolute;
  left: 27px;
  bottom: 26px;
  font-size: 0.625rem;
  letter-spacing: 0.17em;
  font-weight: 550;
  color: #fff;
  z-index: 2;
}
.edge-badge {
  background: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 114px;
  height: 129px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--brand-blue);
}
.edge-badge img {
  width: 44px;
  height: 44px;
}
.edge-badge > span {
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}
.service-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 83px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.strip-inner > span:first-child {
  font-size: 0.6875rem;
  color: var(--muted);
}
.strip-inner strong {
  color: var(--ink);
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 43px;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
  color: var(--muted);
}
h2 {
  font-size: 4rem;
  margin-bottom: 0;
}
.section-heading > p {
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 3px;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  padding: 31px 32px 20px;
  position: relative;
  transition: background 0.25s;
}
.service-card:first-child {
  padding-left: 0;
  padding-right: 36px;
}
.service-card:last-child {
  padding-right: 0;
  padding-left: 36px;
}
.service-card + .service-card {
  border-left: 1px solid var(--line);
}
.service-card:hover {
  background: var(--surface-soft);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 45px;
}
.card-top svg {
  color: var(--brand-blue);
  width: 47px;
  height: 47px;
}
.service-card :is(h2, h3) {
  font-size: 2.1875rem;
  line-height: 1.05;
  margin-bottom: 18px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 35px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.card-bottom > span {
  font-size: 1.5625rem;
  font-weight: 400;
  color: var(--orange);
}
.card-link {
  position: absolute;
  inset: 0;
}
.contact-section {
  background: var(--surface-soft);
  padding-block: 90px;
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.contact-inner h2 {
  font-size: 5rem;
}
.contact-inner p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
}
.site-footer {
  padding-block: 35px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.footer-inner .brand {
  font-size: 1.4375rem;
}
.footer-inner p,
.footer-inner > span {
  font-size: 0.6875rem;
  color: var(--muted);
  margin: 0;
}
.ice-section {
  background: var(--light-blue);
  color: var(--ink);
  padding-block: 76px;
}
.ice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.ice-image {
  position: relative;
  min-height: 455px;
  align-self: stretch;
  overflow: hidden;
}
.ice-image > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ice-image:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #1d2948b0);
}
.ice-copy {
  padding-block: 19px;
}
.ice-copy .eyebrow {
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 23px;
}
.ice-copy h2 {
  font-size: 4rem;
  line-height: 1.03;
  margin-bottom: 25px;
}
.ice-copy h2 span {
  color: var(--brand-blue);
}
.ice-copy > p:not(.eyebrow) {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 430px;
}
.ice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}
.ice-tags span {
  border: 1px solid var(--line-strong);
  padding: 7px 10px;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.text-link-light {
  margin-top: 34px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 7px;
  gap: 38px;
}
.text-link-light:hover {
  color: var(--brand-blue);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding-block: 110px;
}
.about-heading .eyebrow {
  color: var(--muted);
  margin-bottom: 25px;
}
.about h2 {
  font-size: 4.75rem;
}
.about-signoff {
  display: block;
  margin-top: 45px;
  font-family: var(--heading);
  font-size: 1.3125rem;
  letter-spacing: 0.02em;
}
.about-copy > .about-lead {
  font-size: 1.4375rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  max-width: 500px;
  margin-bottom: 21px;
}
.about-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 510px;
}
.values {
  margin-top: 33px;
}
.values > div {
  border-top: 1px solid var(--line);
  padding-block: 22px 18px;
  display: flex;
  gap: 24px;
}
.values h3 {
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.values p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 455px;
}
.contact-section {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: start;
}
.contact-copy > .button {
  margin-top: 28px;
}
.contact-details {
  padding-top: 3px;
}
.contact-row {
  border-top: 1px solid var(--line-strong);
  padding-block: 21px 24px;
}
.contact-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.phone-link {
  font-family: var(--heading);
  font-size: 2.75rem;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.015em;
}
.phone-link:hover {
  color: var(--brand-blue);
}
.phone-link > span {
  font-family: var(--body);
  font-size: 1.75rem;
  font-weight: 400;
}
.contact-row address {
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.contact-row .visit-note {
  font-size: 0.75rem;
  margin: 17px 0 0;
}
.instagram-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
}
.instagram-row .contact-label {
  margin-bottom: 6px;
}
.instagram-row a {
  font-size: 0.9375rem;
  font-weight: 500;
}
.instagram-row a:hover {
  color: var(--brand-blue);
}
.instagram-row a > span {
  margin-left: 12px;
}
.footer-inner .brand-mark {
  width: 36px;
  height: 36px;
}
.service-card p,
.values p {
  font-size: 1rem;
}
.card-bottom {
  font-size: 0.75rem;
  letter-spacing: 0.035em;
}
.contact-label,
.ice-tags span,
.footer-inner p,
.footer-inner > span,
.strip-inner > span:first-child {
  font-size: 0.75rem;
}
.photo-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
@media (min-width: 1600px) {
  .hero {
    gap: 75px;
  }
  .hero-visual {
    min-height: 585px;
  }
  .hero-copy {
    padding-top: 30px;
  }
  .hero-location {
    margin-top: 55px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .main-nav {
    gap: 23px;
  }
  .hero {
    gap: 32px;
  }
  .hero-visual {
    min-height: 525px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-location {
    font-size: 0.6875rem;
    margin-top: 32px;
  }
  .brand {
    font-size: 1.5625rem;
  }
  .brand-subtitle {
    font-size: 0.5625rem;
  }
  .service-card {
    padding-inline: 24px;
  }
  .service-card:first-child {
    padding-right: 24px;
  }
  .service-card:last-child {
    padding-left: 24px;
  }
  .service-card :is(h2, h3) {
    font-size: 2rem;
  }
  .strip-inner {
    letter-spacing: 0.04em;
  }
  .strip-inner > span:first-child {
    max-width: 115px;
  }
  .card-bottom {
    font-size: 0.5625rem;
  }
  .hero .eyebrow {
    font-size: 0.625rem;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 84px;
  }
  .brand {
    font-size: 1.5625rem;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand-subtitle {
    font-size: 0.5625rem;
  }
  .menu-toggle {
    display: flex;
    border: 0;
    background: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    align-items: stretch;
    gap: 22px;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .main-nav > a:not(.button) {
    padding-block: 5px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 36px 34px;
  }
  .hero-copy {
    padding: 0;
  }
  h1 {
    font-size: 6.25rem;
    line-height: 0.93;
    margin-bottom: 24px;
  }
  .hero .eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 22px;
  }
  .hero-description {
    max-width: 440px;
    font-size: 1rem;
  }
  .hero-location {
    margin-top: 28px;
    font-size: 0.75rem;
  }
  .hero-visual {
    min-height: 430px;
  }
  .edge-badge {
    width: 95px;
    height: 112px;
  }
  .strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 22px;
    gap: 10px 17px;
    font-size: 0.625rem;
  }
  .strip-inner > span:first-child {
    max-width: none;
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }
  .section {
    padding-block: 66px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 32px;
  }
  h2 {
    font-size: 3.5rem;
  }
  .section-heading > p {
    font-size: 0.9375rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:first-child,
  .service-card:last-child {
    padding: 26px 0;
  }
  .service-card + .service-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .card-top {
    margin-bottom: 17px;
  }
  .card-top svg {
    width: 40px;
    height: 40px;
  }
  .service-card :is(h2, h3) {
    font-size: 2.25rem;
    margin-bottom: 13px;
  }
  .service-card p {
    max-width: 600px;
    margin-bottom: 20px;
  }
  .card-bottom {
    font-size: 0.625rem;
  }
  .contact-section {
    padding-block: 65px;
  }
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .contact-inner h2 {
    font-size: 4.25rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-inner p,
  .footer-inner > span {
    font-size: 0.75rem;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 5.5rem;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }
  .hero-location {
    font-size: 0.6875rem;
  }
  .brand {
    font-size: 1.4375rem;
  }
  .strip-inner {
    gap: 8px 10px;
    font-size: 0.5625rem;
  }
  .contact-inner h2 {
    font-size: 3.875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .ice-inner,
  .about,
  .contact-inner {
    gap: 40px;
  }
  .ice-copy h2 {
    font-size: 3.625rem;
  }
  .ice-tags span {
    font-size: 0.75rem;
  }
  .card-bottom {
    font-size: 0.75rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .strip-inner > span:first-child {
    font-size: 0.75rem;
  }
  .about h2 {
    font-size: 4.25rem;
  }
}
@media (max-width: 800px) {
  .ice-section {
    padding-block: 40px 48px;
  }
  .ice-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ice-image {
    min-height: 330px;
  }
  .ice-copy {
    padding: 0;
  }
  .ice-copy h2 {
    font-size: 3.625rem;
  }
  .ice-copy > p:not(.eyebrow) {
    max-width: 600px;
  }
  .ice-copy .eyebrow {
    font-size: 0.75rem;
  }
  .ice-tags {
    margin-top: 24px;
  }
  .text-link-light {
    margin-top: 25px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 66px;
  }
  .about h2 {
    font-size: 3.875rem;
  }
  .about-signoff {
    margin-top: 25px;
  }
  .about-copy > .about-lead {
    font-size: 1.375rem;
  }
  .about-copy > p {
    max-width: none;
  }
  .values p {
    max-width: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-details {
    width: 100%;
  }
  .phone-link {
    font-size: 2.625rem;
  }
  .contact-row address {
    font-size: 1.0625rem;
  }
  .desktop-break {
    display: none;
  }
  .card-bottom,
  .strip-inner,
  .strip-inner > span:first-child {
    font-size: 0.75rem;
  }
  .strip-inner {
    gap: 10px 13px;
  }
  .photo-label {
    font-size: 0.75rem;
    left: 20px;
    letter-spacing: 0.06em;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }
  .hero-location {
    font-size: 0.75rem;
  }
  .section-heading > p {
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .strip-inner {
    font-size: 0.75rem;
    gap: 10px 14px;
  }
  .ice-copy h2 {
    font-size: 3.25rem;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
  .hero-location {
    font-size: 0.75rem;
    align-items: flex-start;
  }
  .hero-location svg {
    margin-top: 2px;
  }
  .brand {
    font-size: 1.3125rem;
    gap: 9px;
  }
  .brand-subtitle {
    font-size: 0.5625rem;
    letter-spacing: 0.13em;
  }
  .phone-link {
    font-size: 2.375rem;
  }
}

.brand-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
}
@media (max-width: 800px) {
  .brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  .hero .eyebrow {
    max-width: 100%;
  }
}

/* Shared page navigation and links */
.main-nav a[aria-current="page"] {
  color: var(--brand-blue);
}
.main-nav a[aria-current="page"]:after {
  width: 100%;
}
.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.text-link-light {
  padding-bottom: 7px;
}
.main-nav .button {
  white-space: nowrap;
}
.card-bottom {
  min-height: 38px;
}
.page-intro {
  padding-block: 78px 65px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: end;
  gap: 70px;
}
.page-intro h1 {
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: 1;
  margin: 0;
}
.page-intro > .eyebrow {
  color: var(--muted);
}
.page-intro > p {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 395px;
  margin: 0 0 5px;
  line-height: 1.8;
}
.service-jump {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 23px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.service-jump a:hover {
  color: var(--brand-blue);
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 84px;
}
.detail-copy h2 {
  font-size: 4.5rem;
  margin-bottom: 24px;
}
.detail-copy > .eyebrow {
  color: var(--muted);
  margin-bottom: 20px;
}
.detail-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.detail-copy > .detail-lead {
  color: var(--ink) !important;
  font-size: 1.25rem !important;
  font-weight: 550;
  margin-bottom: 12px;
  line-height: 1.5;
}
.detail-note {
  border-top: 1px solid var(--line);
  margin-block: 26px;
  padding-top: 20px;
  max-width: 470px;
}
.detail-note strong {
  font-size: 0.9375rem;
  font-weight: 600;
}
.detail-note p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 9px 0 0;
}
.detail-copy > .button {
  margin-top: 5px;
}
.detail-photo {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  overflow: hidden;
}
.detail-photo > img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.service-detail-blue {
  background: var(--light-blue);
  color: var(--ink);
}
.service-detail-blue .detail-copy h2 {
  font-size: 4.15rem;
}
.service-detail-blue .detail-copy > .eyebrow,
.service-detail-blue .detail-copy > p:not(.eyebrow),
.service-detail-blue .detail-note p {
  color: var(--muted);
}
.service-detail-blue .detail-copy > .detail-lead {
  color: var(--brand-blue) !important;
}
.service-detail-blue .detail-note {
  border-color: var(--line-strong);
}
.tool-information {
  background: var(--surface-soft);
  padding: 43px 45px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tool-information > .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 24px;
}
.tool-information :is(h2, h3) {
  font-size: 2.7rem;
  line-height: 1.04;
  margin-bottom: 25px;
}
.tool-information > p:not(.eyebrow) {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0;
}
.tool-information ul {
  margin: 18px 0 25px;
  padding-left: 21px;
  line-height: 2;
  font-size: 1rem;
}
.tool-information li::marker {
  color: var(--brand-blue);
}
.tool-information .tool-footnote {
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
}
.page-cta {
  background: var(--light-blue);
  border-block: 1px solid var(--line);
  padding-block: 62px;
}
.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.page-cta h2 {
  font-size: 3.5rem;
  line-height: 1.03;
}
.page-cta .eyebrow {
  margin-bottom: 15px;
  color: var(--muted);
}
.page-cta .button {
  flex-shrink: 0;
}
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding-block: 86px;
}
.home-about > .eyebrow {
  align-self: start;
  padding-top: 9px;
  color: var(--muted);
}
.home-about h2 {
  font-size: 3.75rem;
  margin-bottom: 26px;
}
.home-about p:not(.eyebrow) {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 24px;
}
.about-divider {
  border-top: 1px solid var(--line);
}
.page-about .about {
  padding-block: 75px 90px;
}
.about-local {
  background: var(--light-blue);
  color: var(--ink);
  padding-block: 80px;
}
.about-local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}
.about-local h2 {
  font-size: 4rem;
}
.about-local .eyebrow {
  color: var(--muted);
  font-size: 0.75rem;
}
.about-local p:not(.eyebrow) {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 500px;
}
.about-local .text-link {
  margin-top: 7px;
}
.about-local .text-link:hover {
  color: var(--brand-blue-hover);
}
.contact-page {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 110px;
  padding-block: 76px 90px;
}
.contact-page h1 {
  font-size: clamp(4.5rem, 7.5vw, 7rem);
  margin-bottom: 29px;
}
.contact-page-copy > p:not(.eyebrow) {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 27px;
}
.contact-page .contact-details {
  padding-top: 6px;
}
.contact-page .contact-row {
  padding-block: 25px 29px;
}
.contact-page .phone-link {
  font-size: 3.25rem;
}
.contact-page .contact-row address {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.contact-before {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 28px;
  max-width: 440px;
}
.contact-before h2 {
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.contact-before p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}
.contact-service-note {
  border-block: 1px solid var(--line);
  background: var(--light-blue);
  padding-block: 32px;
}
.contact-service-note .container {
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: space-between;
}
.contact-service-note p {
  margin: 0;
  font-size: 1rem;
}
/* Let enlarged text reflow without clipping or horizontal scrolling. */
body {
  overflow-wrap: break-word;
}
.hero > *,
.ice-inner > *,
.about > *,
.contact-inner > *,
.page-intro > *,
.service-detail > *,
.home-about > *,
.about-local-inner > *,
.contact-page > * {
  min-width: 0;
}
.brand {
  flex-shrink: 1;
  min-width: 0;
}
.brand > span {
  min-width: 0;
}
.brand-mark,
.menu-toggle {
  flex-shrink: 0;
}
.button {
  max-width: 100%;
  text-align: center;
}
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}
.edge-badge {
  width: 7.125rem;
  height: 8.0625rem;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 24px;
  }
  .page-intro {
    gap: 40px;
  }
  .service-detail {
    gap: 40px;
  }
  .detail-copy h2 {
    font-size: 3.8rem;
  }
  .service-detail-blue .detail-copy h2 {
    font-size: 3.6rem;
  }
  .tool-information {
    padding: 30px;
  }
  .contact-page {
    gap: 50px;
  }
  .contact-page .phone-link {
    font-size: 2.8rem;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: auto;
    min-height: 84px;
  }
  .header-inner {
    min-height: 84px;
    padding-block: 15px;
    gap: 20px;
  }
  .main-nav {
    top: 100%;
  }
  .main-nav .button {
    white-space: normal;
  }
  .brand {
    font-size: 1.5rem;
    overflow-wrap: anywhere;
  }
  .brand-subtitle {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-actions {
    align-items: flex-start;
  }
  .hero-actions .text-link {
    margin-block: 4px;
  }
  .edge-badge {
    width: 5.9375rem;
    height: 7rem;
  }
  .page-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 43px 40px;
  }
  .page-intro h1 {
    font-size: 4.6rem;
  }
  .page-intro > p {
    max-width: 600px;
    font-size: 1rem;
  }
  .page-intro .eyebrow {
    font-size: 0.75rem;
  }
  .service-jump {
    gap: 14px 23px;
    line-height: 1.6;
    font-size: 0.875rem;
    padding-block: 20px;
  }
  .service-detail {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 50px;
  }
  .detail-copy h2,
  .service-detail-blue .detail-copy h2 {
    font-size: 3.7rem;
  }
  .detail-photo {
    min-height: 355px;
  }
  .service-detail-blue .detail-photo {
    order: 2;
  }
  .detail-copy > p:not(.eyebrow),
  .detail-note {
    max-width: 600px;
  }
  .detail-copy > .eyebrow {
    font-size: 0.75rem;
  }
  .tool-information {
    padding: 28px;
  }
  .tool-information :is(h2, h3) {
    font-size: 2.6rem;
  }
  .page-cta {
    padding-block: 45px;
  }
  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .page-cta h2 {
    font-size: 3rem;
  }
  .home-about {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 55px;
  }
  .home-about h2 {
    font-size: 3.3rem;
  }
  .home-about > .eyebrow {
    margin-bottom: 22px;
    padding: 0;
  }
  .page-about .about {
    padding-block: 48px 55px;
  }
  .about-local {
    padding-block: 52px;
  }
  .about-local-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .about-local h2 {
    font-size: 3.4rem;
  }
  .contact-page {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
    padding-block: 43px 52px;
  }
  .contact-page h1 {
    font-size: 5.4rem;
  }
  .contact-page-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .contact-page .phone-link {
    font-size: 2.6rem;
    overflow-wrap: anywhere;
  }
  .contact-page .contact-row address {
    font-size: 1.125rem;
  }
  .contact-before {
    margin-top: 32px;
    padding-top: 23px;
  }
  .contact-service-note .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 400px) {
  .brand {
    font-size: 1.3rem;
  }
  .brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.015em;
  }
  .page-intro h1 {
    font-size: 4.1rem;
  }
  .contact-page h1 {
    font-size: 4.8rem;
  }
  .detail-photo {
    min-height: 290px;
  }
  .detail-copy h2,
  .service-detail-blue .detail-copy h2 {
    font-size: 3.3rem;
  }
  .contact-page .phone-link {
    font-size: 2.3rem;
  }
}

.instagram-row {
  gap: 20px;
}
.instagram-row > div {
  min-width: 0;
}
.instagram-row a {
  overflow-wrap: anywhere;
}
.instagram-row > svg {
  flex-shrink: 0;
}

/* Supporting surfaces and shared navigation. */
.service-strip {
  background: var(--surface-soft);
}
.ice-tags span {
  background: #ffffff70;
}
.tool-information {
  border: 1px solid var(--line-strong);
}
.contact-service-note {
  background: var(--light-blue);
}

/* Services disclosure navigation */
.services-menu {
  position: relative;
}
.services-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 0;
  text-align: left;
}
.services-trigger:hover,
.services-trigger[aria-expanded="true"],
.services-menu.is-current .services-trigger {
  color: var(--brand-blue);
}
.services-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 286px;
  max-width: calc(100vw - 40px);
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px #1d29481a;
  z-index: 25;
}
.services-dropdown[hidden] {
  display: none;
}
.services-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-dropdown a {
  display: block;
  padding: 12px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.services-dropdown a:hover,
.services-dropdown a:focus-visible,
.services-dropdown a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--ink);
}
.services-dropdown a:focus-visible {
  outline-offset: -3px;
}
.services-dropdown li:first-child a {
  font-weight: 650;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.services-overview {
  padding-bottom: 88px;
}
.service-back {
  padding-top: 30px;
}
.page-service .service-detail {
  padding-block: 48px 78px;
}
.page-service .detail-copy h1 {
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 24px;
}
.page-service .service-detail-blue {
  margin-top: 28px;
}
.page-service .service-detail-blue .service-detail {
  padding-block: 65px;
}
@media (max-width: 800px) {
  .main-nav {
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    gap: 12px;
    font-size: clamp(2rem, 7vw, 2.25rem);
    font-weight: 600;
    line-height: 1.25;
  }
  .main-nav > * {
    flex-shrink: 0;
  }
  .main-nav > a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding-block: 12px;
  }
  .main-nav .button {
    min-height: 56px;
    font-size: 1.0625rem;
  }
  .services-trigger {
    width: 100%;
    min-height: 60px;
    padding: 12px 0;
  }
  .services-dropdown {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    padding: 5px 8px;
    background: var(--surface-soft);
    box-shadow: none;
  }
  .services-dropdown a {
    min-height: 48px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .services-dropdown a:hover,
  .services-dropdown a:focus-visible,
  .services-dropdown a[aria-current="page"] {
    background: var(--light-blue);
  }
  .services-overview {
    padding-bottom: 50px;
  }
  .service-back {
    padding-top: 25px;
  }
  .page-service .service-detail {
    padding-block: 36px 50px;
  }
  .page-service .detail-copy h1 {
    font-size: clamp(3.1rem, 11.5vw, 4.2rem);
  }
  .page-service .service-detail-blue .service-detail {
    padding-block: 42px;
  }
}

/* Clear service information and a stronger commercial identity. */
.page-home .hero {
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-block: 64px 72px;
  align-items: center;
}
.page-home .hero h1 {
  font-size: clamp(4.4rem, 6.5vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.page-home .hero-copy {
  padding-block: 0;
}
.page-home .hero-description {
  max-width: 490px;
  font-size: 1.125rem;
  line-height: 1.75;
}
.page-home .hero-visual {
  min-height: 510px;
}
.page-home .hero-visual::after {
  display: none;
}
.page-home .hero-location {
  margin: 32px 0 0;
  font-size: 0.875rem;
}
.hero-actions {
  gap: 20px 26px;
}
.specialty-nav {
  border-block: 1px solid var(--line);
}
.specialty-nav .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.specialty-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: var(--brand-blue);
}
.specialty-nav a:hover {
  background: var(--light-blue);
}
.commercial-feature {
  background: var(--brand-blue);
  color: var(--white);
  padding-block: 78px;
}
.commercial-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.commercial-feature .eyebrow {
  color: #dde7ff;
}
.commercial-feature h2 {
  font-size: clamp(3.4rem, 5vw, 4.75rem);
  line-height: 1.05;
}
.commercial-feature-copy {
  padding-top: 3px;
}
.commercial-feature-copy p {
  color: #edf2ff;
  line-height: 1.8;
  margin-bottom: 23px;
}
.commercial-feature-copy .feature-lead {
  color: white;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
}
.commercial-feature-copy .commercial-sectors {
  font-size: 0.9375rem;
  color: #edf2ff;
}
.button-light {
  background: white;
  color: var(--brand-blue);
}
.button-light:hover {
  background: #e9effa;
}
.commercial-feature a:focus-visible {
  outline-color: white;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-entry {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 1fr;
  align-items: start;
  gap: 35px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}
.service-audience {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  padding-top: 9px;
  margin: 0;
}
.service-description :is(h2, h3) {
  font-size: 2.35rem;
  line-height: 1.1;
  margin: 0 0 13px;
}
.service-description :is(h2, h3) a:hover {
  color: var(--brand-blue);
}
.service-description p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}
.service-entry > .text-link {
  justify-self: end;
  margin-top: 12px;
  color: var(--brand-blue);
}
.ice-section {
  background: var(--surface-soft);
}
.ice-copy h2 {
  color: var(--ink);
}
.ice-copy .text-link {
  margin-top: 10px;
  color: var(--brand-blue);
}
.page-intro h1 {
  font-size: clamp(3.5rem, 6.1vw, 6rem);
  line-height: 1.06;
}
.page-intro {
  grid-template-columns: 1.5fr 1fr;
}
.page-cta {
  background: var(--light-blue);
}
.page-cta .eyebrow {
  color: var(--muted);
}
.page-about .about {
  gap: 100px;
}
.page-commercial .commercial-hero .detail-copy h1 {
  font-size: clamp(3.25rem, 5.5vw, 5.25rem);
}
.commercial-support {
  background: var(--brand-blue);
  color: white;
}
.commercial-support .eyebrow {
  color: #dde7ff;
}
.commercial-support p:not(.eyebrow) {
  color: #edf2ff;
}
.commercial-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}
.commercial-audience-grid article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.commercial-audience-grid h3 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
.commercial-audience-grid p {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}
.page-commercial .tools-detail {
  padding-top: 0;
}
.tool-information > .text-link {
  align-self: flex-start;
  margin-top: 18px;
}
.commercial-inquiry .text-link {
  margin-top: 18px;
}
.contact-page h1 {
  font-size: clamp(4rem, 6.5vw, 6rem);
  line-height: 1.04;
}
.site-footer {
  padding-block: 60px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .brand {
  font-size: 1.65rem;
}
.footer-brand p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin: 4px 0 18px;
  color: var(--ink);
}
.footer-services a {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-services a:hover,
.footer-bottom a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.footer-phone {
  display: block;
  font-weight: 650;
  margin-bottom: 14px;
}
.footer-email {
  display: block;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
  min-width: 0;
}
.email-link {
  color: var(--brand-blue);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.email-link:hover {
  color: var(--brand-blue-hover);
}
.contact-row .email-link {
  font-size: 1.125rem;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .page-home .hero {
    gap: 36px;
  }
  .page-home .hero h1 {
    font-size: 5rem;
  }
  .commercial-feature-inner {
    gap: 45px;
  }
  .service-entry {
    grid-template-columns: 0.75fr 1.6fr;
    gap: 15px 35px;
  }
  .service-entry > .text-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 0;
  }
  .footer-main {
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .page-home .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 42px;
  }
  .page-home .hero h1 {
    font-size: clamp(3.65rem, 11.5vw, 5.3rem);
  }
  .page-home .hero .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
  }
  .page-home .hero-description {
    font-size: 1rem;
    max-width: 550px;
  }
  .page-home .hero-visual {
    min-height: 350px;
  }
  .page-home .hero-location {
    margin-top: 25px;
  }
  .specialty-nav .container {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .specialty-nav a {
    padding: 16px 12px;
    font-size: 0.8125rem;
  }
  .specialty-nav a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .commercial-feature {
    padding-block: 50px;
  }
  .commercial-feature-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .commercial-feature h2 {
    font-size: 3.4rem;
  }
  .commercial-feature .eyebrow {
    font-size: 0.6875rem;
  }
  .commercial-feature-copy .feature-lead {
    font-size: 1.2rem;
  }
  .service-entry {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-block: 28px;
  }
  .service-audience {
    padding: 0;
    font-size: 0.6875rem;
  }
  .service-description :is(h2, h3) {
    font-size: 2.2rem;
  }
  .service-entry > .text-link {
    grid-column: 1;
    margin-top: 4px;
  }
  .page-intro {
    grid-template-columns: 1fr;
  }
  .page-intro h1 {
    font-size: clamp(3.4rem, 10vw, 4.5rem);
  }
  .page-about .about {
    gap: 35px;
  }
  .page-commercial .commercial-hero .detail-copy h1 {
    font-size: clamp(2.65rem, 11vw, 3.75rem);
  }
  .commercial-audience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .commercial-audience-grid h3 {
    font-size: 2.15rem;
  }
  .commercial-support h2 {
    font-size: 3.3rem;
  }
  .contact-page h1 {
    font-size: 4rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    margin-bottom: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }
}
@media (max-width: 420px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .page-home .hero-visual {
    min-height: 310px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .commercial-feature h2 {
    font-size: 3.1rem;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 12px;
  }
  .brand-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}

.page-about .brand-story {
  display: block;
  max-width: 840px;
}
.brand-story .about-copy > p {
  max-width: none;
}
.brand-story .story-heading {
  font-family: var(--body);
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 24px;
}

/* Photographer-sourced imagery for every service. */
.service-entry {
  grid-template-columns: 280px minmax(0, 1fr) auto;
  align-items: center;
}
.service-entry-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-soft);
}
.service-entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-description .service-audience {
  margin: 0 0 12px;
  padding: 0;
}
.service-entry > .text-link {
  align-self: center;
}
img.photo-knives {
  object-position: 50% 75%;
}
img.photo-commercial {
  object-position: 52% 65%;
}
img.photo-tools {
  object-position: 50% 45%;
}
.page-ice-resurfacer .detail-photo {
  align-self: center;
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.ice-image {
  align-self: center;
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.ice-image::after {
  display: none;
}
.tool-guide {
  padding-bottom: 78px;
}
.tool-guide .tool-information {
  display: block;
  max-width: 840px;
  margin-inline: auto;
}
@media (max-width: 1100px) {
  .service-entry {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .service-entry-image {
    grid-row: 1 / 3;
  }
  .service-entry > .text-link {
    grid-column: 2;
  }
}
@media (max-width: 800px) {
  .service-entry {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .service-entry-image {
    grid-row: auto;
  }
  .service-entry > .text-link {
    grid-column: 1;
  }
  .tool-guide {
    padding-bottom: 50px;
  }
}

/* Cool workshop surfaces; the navigation stays bright white. */
body {
  background-image: var(--paper-grain);
}
.specialty-nav,
.service-strip {
  background-color: var(--surface-soft);
}
.page-cta,
.about-local,
.contact-service-note {
  background-color: var(--surface-muted);
}
.site-footer {
  background-color: var(--surface-soft);
}
.commercial-feature,
.commercial-support {
  background-color: var(--feature-blue);
}
.specialty-nav,
.service-strip,
.page-cta,
.about-local,
.contact-service-note,
.site-footer,
.ice-section,
.service-detail-blue,
.contact-section,
.tool-information,
.commercial-feature,
.commercial-support {
  background-image: var(--paper-grain);
}
.button-light {
  background: var(--paper);
}
.button-light:hover {
  background: var(--surface-muted);
}
.site-header,
.site-header .main-nav,
.services-dropdown {
  background-color: var(--white);
  background-image: none;
}

/* Black footer with the brand reversed to white. */
.site-footer {
  background: #101010;
  color: #f6f7f8;
  border-top-color: #101010;
}
.site-footer .brand,
.site-footer .footer-label {
  color: #fff;
}
.site-footer .brand-mark {
  filter: brightness(0) invert(1);
}
.site-footer .footer-brand p,
.site-footer .footer-bottom {
  color: #c4cbd1;
}
.site-footer .footer-bottom {
  border-top-color: #3b4248;
}
.site-footer a:hover {
  color: #b4d3ed;
}
.site-footer a:focus-visible {
  outline-color: #b4d3ed;
}

/* Larger service photographs, with copy placed directly on the image. */
.service-list {
  display: grid;
  gap: 24px;
  border: 0;
}
.service-entry {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 440px;
  padding: 52px;
  gap: 24px;
  border: 0;
  background: #15212b;
  color: var(--white);
}
.service-entry-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
  background: #15212b;
}
.service-entry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(8 17 24 / 90%) 0%,
    rgb(8 17 24 / 80%) 40%,
    rgb(8 17 24 / 32%) 75%,
    rgb(8 17 24 / 8%) 100%
  );
  pointer-events: none;
}
.service-entry .service-description,
.service-entry > .text-link {
  position: relative;
  z-index: 1;
  max-width: 510px;
}
.service-description .service-audience {
  color: #e2e9ee;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 18px;
}
.service-description :is(h2, h3) {
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.05;
}
.service-description p {
  color: var(--white);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.service-entry > .text-link {
  align-self: flex-start;
  margin: 0;
  color: var(--white);
  font-size: 0.9375rem;
}
.service-entry a:hover,
.service-description :is(h2, h3) a:hover {
  color: #c7e4fa;
}
.service-entry a:focus-visible {
  outline-color: white;
}
.page-home .hero-visual {
  min-height: 560px;
}
@media (max-width: 1100px) {
  .service-entry {
    padding: 40px;
  }
  .service-entry .service-description,
  .service-entry > .text-link {
    max-width: 470px;
  }
  .service-entry-image::after {
    background: linear-gradient(
      90deg,
      rgb(8 17 24 / 90%),
      rgb(8 17 24 / 80%) 60%,
      rgb(8 17 24 / 25%)
    );
  }
}
@media (max-width: 800px) {
  .service-list {
    gap: 20px;
  }
  .service-entry {
    min-height: 580px;
    justify-content: flex-end;
    padding: 32px;
    gap: 24px;
  }
  .service-entry-image::after {
    background: linear-gradient(
      180deg,
      rgb(8 17 24 / 5%) 0%,
      rgb(8 17 24 / 35%) 23%,
      rgb(8 17 24 / 88%) 45%,
      rgb(8 17 24 / 96%) 100%
    );
  }
  .service-entry .service-description,
  .service-entry > .text-link {
    max-width: 100%;
  }
  .service-description :is(h2, h3) {
    font-size: 3rem;
  }
  .service-description p {
    font-size: 1rem;
  }
  .page-home .hero-visual {
    min-height: 400px;
  }
}
@media (max-width: 420px) {
  .service-entry {
    padding: 26px;
  }
  .service-description :is(h2, h3) {
    font-size: 2.7rem;
  }
  .service-description .service-audience {
    font-size: 0.6875rem;
  }
  .page-home .hero-visual {
    min-height: 350px;
  }
}

@media (min-width: 801px) {
  .service-entry-image img.photo-knives {
    object-position: 50% 65%;
  }
  .service-entry-image img.photo-tools {
    object-position: 50% 45%;
  }
}
@media (max-width: 800px) {
  .service-entry-image img {
    height: 340px;
  }
  .service-entry-image::after {
    background: linear-gradient(
      180deg,
      rgb(21 33 43 / 5%) 0,
      rgb(21 33 43 / 20%) 125px,
      rgb(21 33 43 / 90%) 275px,
      #15212b 340px
    );
  }
}

/* A photographic opening with a quieter, more consistent page rhythm. */
.site-header {
  position: sticky;
  top: 0;
}
.button {
  padding-inline: 28px;
  letter-spacing: 0.005em;
}
.button:hover {
  transform: none;
}
.page-home .hero-premium {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  padding: 0;
  background: #101c26;
  color: white;
}
.hero-premium .hero-inner {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-block: 92px;
}
.hero-premium .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.page-home .hero-premium h1 {
  font-size: clamp(4.25rem, 5.7vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 30px;
  text-wrap: balance;
}
.hero-premium .edge-word {
  color: #c0dbef;
}
.page-home .hero-premium .hero-description {
  color: #f1f5f8;
  max-width: 490px;
  font-size: 1.125rem;
  line-height: 1.8;
}
.page-home .hero-premium .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
}
.hero-premium .hero-visual > img {
  object-position: 50% 65%;
}
.page-home .hero-premium .hero-visual::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(8 16 23 / 94%) 0%,
    rgb(8 16 23 / 82%) 40%,
    rgb(8 16 23 / 24%) 78%,
    rgb(8 16 23 / 10%) 100%
  );
}
.hero-premium .text-link,
.page-home .hero-premium .hero-location {
  color: white;
}
.hero-premium .text-link:hover,
.hero-premium .hero-location a:hover {
  color: #c0dbef;
}
.hero-premium a:focus-visible {
  outline-color: white;
}
.page-home .hero-premium .hero-location {
  margin-top: 35px;
  font-size: 0.875rem;
}
.specialty-nav a {
  min-height: 88px;
  padding-block: 24px;
}
.section-heading {
  gap: 48px;
}
.section-heading h2,
.home-about h2,
.page-cta h2 {
  text-wrap: balance;
  line-height: 1.06;
}
.page-intro h1,
.page-service .detail-copy h1,
.contact-page h1 {
  text-wrap: balance;
}
.page-home .services {
  padding-block: 104px;
}
.service-list {
  gap: 30px;
}
.service-entry {
  min-height: 470px;
  padding: 56px;
}
.service-description p {
  max-width: 480px;
}
.commercial-feature {
  padding-block: 94px;
}
.commercial-feature-inner {
  align-items: center;
  gap: 96px;
}
.commercial-feature-copy .feature-lead {
  font-size: 1.5rem;
}
.home-about {
  padding-block: 100px;
}
.page-cta {
  padding-block: 68px;
}
.site-footer {
  padding-block: 72px 28px;
}
img.photo-ice-resurfacer {
  object-position: 50% 65%;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .service-entry-image img {
    transition: transform 0.6s ease;
  }
  .service-entry:hover .service-entry-image img {
    transform: scale(1.025);
  }
}
@media (max-width: 1100px) {
  .hero-premium .hero-inner {
    min-height: 620px;
    padding-block: 70px;
  }
  .hero-premium .hero-copy {
    max-width: 620px;
  }
  .page-home .hero-premium h1 {
    font-size: 4.5rem;
  }
  .page-home .hero-premium .hero-visual::after {
    background: linear-gradient(
      90deg,
      rgb(8 16 23 / 94%),
      rgb(8 16 23 / 83%) 57%,
      rgb(8 16 23 / 28%)
    );
  }
  .service-entry {
    padding: 42px;
  }
  .commercial-feature-inner {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .hero-premium .hero-inner {
    min-height: 740px;
    padding-block: 240px 48px;
    align-items: flex-end;
  }
  .hero-premium .hero-copy {
    max-width: 590px;
  }
  .page-home .hero-premium h1 {
    font-size: clamp(3.25rem, 9vw, 4.6rem);
    margin-bottom: 24px;
  }
  .page-home .hero-premium .hero-description {
    font-size: 1rem;
  }
  .hero-premium .hero-visual > img {
    height: 450px;
    object-position: 50% 75%;
  }
  .page-home .hero-premium .hero-visual::after {
    background: linear-gradient(
      180deg,
      rgb(16 28 38 / 3%) 0,
      rgb(16 28 38 / 20%) 120px,
      rgb(16 28 38 / 87%) 240px,
      #101c26 450px
    );
  }
  .page-home .hero-premium .hero-location {
    margin-top: 25px;
  }
  .specialty-nav a {
    min-height: 72px;
    padding: 18px 14px;
  }
  .section-heading {
    gap: 24px;
  }
  .page-home .services {
    padding-block: 64px;
  }
  .service-list {
    gap: 24px;
  }
  .service-entry {
    min-height: 580px;
    padding: 32px;
  }
  .commercial-feature {
    padding-block: 60px;
  }
  .commercial-feature-inner {
    gap: 30px;
  }
  .commercial-feature-copy .feature-lead {
    font-size: 1.25rem;
  }
  .home-about {
    padding-block: 64px;
  }
  .page-cta {
    padding-block: 48px;
  }
  .site-footer {
    padding-top: 52px;
  }
}
@media (max-width: 420px) {
  .service-entry {
    padding: 26px;
  }
}

/* Service coverage and practical information. */
.service-search {
  max-width: 720px;
  margin-bottom: 36px;
}
.service-search label {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 650;
}
.service-search input {
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 16px 18px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1.125rem;
}
.service-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.service-search input:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
}
.service-search [role="status"] {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
}
[data-service-card][hidden],
.search-empty[hidden] {
  display: none;
}
.search-empty {
  padding: 36px;
  background: var(--white);
}
.search-empty h2 {
  font-size: 2.5rem;
}
.search-empty p {
  max-width: 600px;
  margin: 16px 0 24px;
}
.tool-range,
.service-faq {
  padding-block: 28px 84px;
}
.tool-range h2,
.service-faq h2 {
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.1;
}
.tool-range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.tool-range-grid article {
  padding: 30px;
  background: var(--white);
}
.tool-range-grid h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.1;
}
.tool-range-grid ul {
  padding-left: 20px;
  margin: 0;
}
.tool-range-grid li {
  padding-block: 5px;
}
.tool-range-grid li::marker {
  color: var(--brand-blue);
}
.service-scope-note {
  max-width: 840px;
  margin: 30px 0 0;
  color: var(--muted);
}
.service-faq dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 64px;
  margin: 0;
}
.service-faq dt {
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 650;
}
.service-faq dd {
  margin: 0;
  color: var(--muted);
}
.service-faq dd a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
img.photo-scissors-photo {
  object-position: 50% 76%;
}
@media (min-width: 1001px) {
  .page-home .service-list,
  .page-services .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .service-entry,
  .page-services .service-entry {
    padding: 42px;
    min-height: 500px;
  }
  .service-entry-image::after {
    background: linear-gradient(
      90deg,
      rgb(8 17 24 / 90%),
      rgb(8 17 24 / 72%) 62%,
      rgb(8 17 24 / 60%)
    );
  }
}
@media (max-width: 800px) {
  .tool-range-grid,
  .service-faq dl {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .tool-range,
  .service-faq {
    padding-block: 16px 56px;
  }
  .tool-range-grid article,
  .search-empty {
    padding: 24px;
  }
}

/* A single diagonal cut through selected link labels, then a clean reset. */
.slice-label {
  display: inline-block;
  position: relative;
  min-width: 0;
  pointer-events: none;
}
.slice-label-piece {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

@supports (clip-path: polygon(0 0, 100% 0, 100% 42%, 0 58%)) {
  .slice-label-text {
    animation: var(--slice-original-animation, none);
  }
  .slice-label-top {
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 58%);
    animation: var(--slice-top-animation, none);
  }
  .slice-label-bottom {
    clip-path: polygon(0 58%, 100% 42%, 100% 100%, 0 100%);
    animation: var(--slice-bottom-animation, none);
  }

  @media (prefers-reduced-motion: no-preference) and (forced-colors: none) {
    .slice-link:focus-visible,
    .slice-link.is-slicing {
      --slice-original-animation: edge-slice-original
        var(--slice-duration, 680ms) linear both;
      --slice-top-animation: edge-slice-top var(--slice-duration, 680ms)
        cubic-bezier(0.22, 1, 0.36, 1) both;
      --slice-bottom-animation: edge-slice-bottom var(--slice-duration, 680ms)
        cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .slice-link.is-slicing {
      --slice-duration: 260ms;
    }
  }
  @media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) and (forced-colors: none) {
    .slice-link:hover {
      --slice-original-animation: edge-slice-original
        var(--slice-duration, 680ms) linear both;
      --slice-top-animation: edge-slice-top var(--slice-duration, 680ms)
        cubic-bezier(0.22, 1, 0.36, 1) both;
      --slice-bottom-animation: edge-slice-bottom var(--slice-duration, 680ms)
        cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .main-nav > .slice-link:not([aria-current="page"])::after {
      content: none;
    }
  }
}

@keyframes edge-slice-original {
  0%,
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes edge-slice-top {
  0%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  0%,
  12%,
  100% {
    transform: translate(0, 0);
  }
  32%,
  52% {
    transform: translate(0.2em, -0.075em);
  }
}
@keyframes edge-slice-bottom {
  0%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  0%,
  12%,
  100% {
    transform: translate(0, 0);
  }
  32%,
  52% {
    transform: translate(-0.2em, 0.075em);
  }
}
