:root {
  --ink: #111311;
  --ink-soft: #1c1f1c;
  --paper: #f1f0eb;
  --paper-strong: #faf9f5;
  --muted: #6d716d;
  --line: rgba(17, 19, 17, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --orange: #f26a2b;
  --orange-dark: #d9531a;
  --container: 1280px;
  --header-h: 88px;
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--orange);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(92px, 10vw, 160px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.66);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h2 {
  font-size: clamp(3.1rem, 5.8vw, 6.15rem);
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 76px;
  background: rgba(17, 19, 17, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 25px;
  gap: 3px;
  transform: skewX(-10deg);
}

.brand-mark i {
  display: block;
  height: 5px;
  background: var(--orange);
}

.brand-mark i:nth-child(1) {
  width: 100%;
}

.brand-mark i:nth-child(2) {
  width: 76%;
}

.brand-mark i:nth-child(3) {
  width: 52%;
}

.brand-name {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
}

.brand-name span {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: #fff;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 46px;
  padding-inline: 20px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.header-cta svg,
.button svg,
.service-card a svg,
.back-to-top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  color: #fff;
  background: #141815;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.96) 0%, rgba(8, 10, 9, 0.78) 33%, rgba(8, 10, 9, 0.16) 67%, rgba(8, 10, 9, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 9, 8, 0.62) 0%, transparent 45%);
}

.hero-grid,
.contact-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: max(720px, 100svh);
  padding-block: calc(var(--header-h) + 70px) 70px;
}

.hero-content {
  width: min(100%, 850px);
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(4.1rem, 7.6vw, 7.9rem);
  line-height: 0.86;
}

.hero h1 em {
  display: inline-block;
  padding-left: clamp(30px, 7vw, 120px);
  color: var(--paper-strong);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(36px, 5vw, 80px);
  max-width: 760px;
  margin-top: 55px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-lead {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 58px;
  padding: 16px 18px 16px 22px;
  border: 0;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  min-width: 205px;
  color: #fff;
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.76);
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  animation: scroll 1.8s ease-in-out infinite;
}

.offer {
  position: relative;
  background: var(--paper);
}

.offer::after {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - var(--container)) / 2 - 40px));
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 60px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p:last-child {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.service-card:hover {
  color: #fff;
  background: var(--ink-soft);
  transform: translateY(-8px);
}

.service-card-featured {
  color: #fff;
  background: var(--ink);
}

.service-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-topline > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-topline svg {
  width: 66px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.service-card h3 {
  max-width: 290px;
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  transition: color 240ms ease;
}

.service-card:hover p,
.service-card-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card:hover > a,
.service-card-featured > a {
  border-top-color: var(--line-dark);
}

.about {
  color: #fff;
  background: var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 670px;
}

.about-visual::before {
  position: absolute;
  z-index: 1;
  top: -16px;
  right: -16px;
  width: 32%;
  aspect-ratio: 1;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  content: "";
}

.about-visual picture,
.about-visual img {
  width: 100%;
  height: 100%;
}

.about-visual picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-visual img {
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual:hover img {
  transform: scale(1.025);
}

.about-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(17, 19, 17, 0.84);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.about .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.about h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.about-lead {
  max-width: 590px;
  margin: 45px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.process-list {
  border-top: 1px solid var(--line-dark);
}

.process-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list span {
  padding-top: 2px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.83rem;
  line-height: 1.65;
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.about .text-link {
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  background: var(--paper-strong);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 160px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(3.3rem, 5.5vw, 5.75rem);
}

.faq-intro > p:last-child {
  max-width: 350px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.accordion-item button > span {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.accordion-item button i {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.accordion-item button b {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-item button b::before,
.accordion-item button b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.accordion-item button b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] b {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.accordion-item button[aria-expanded="true"] b::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-item button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 260ms ease, opacity 240ms ease;
}

.accordion-panel[hidden] {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 630px;
  margin: 0;
  padding: 0 76px 30px 62px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.contact::after {
  position: absolute;
  right: -7vw;
  bottom: -10vw;
  width: min(42vw, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 106, 43, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(242, 106, 43, 0.04), 0 0 0 84px rgba(242, 106, 43, 0.03);
  content: "";
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  mask-image: linear-gradient(to right, #000, transparent 88%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 80px;
  padding-block: clamp(90px, 10vw, 150px);
}

.contact-inner > .eyebrow {
  grid-column: 1 / -1;
}

.contact-copy h2 {
  font-size: clamp(3.3rem, 6vw, 6.6rem);
}

.contact-copy p {
  max-width: 650px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
}

.contact-actions {
  display: flex;
  min-width: 270px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 30px;
  padding-bottom: 5px;
}

.button-large {
  min-height: 70px;
  padding-inline: 26px 20px;
}

.phone-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
  font-size: 1.08rem;
  font-weight: 600;
}

.phone-link span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  color: #fff;
  background: #0b0d0b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 110px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
}

.back-to-top svg {
  width: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.hero .reveal:nth-child(4) {
  transition-delay: 230ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1080px) {
  :root {
    --header-h: 78px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 16px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.26);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .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);
  }

  .mobile-menu {
    position: fixed;
    z-index: 95;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px max(32px, calc((100vw - var(--container)) / 2));
    color: #fff;
    background: rgba(17, 19, 17, 0.99);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(1.7rem, 5vw, 2.7rem);
    font-weight: 500;
    letter-spacing: -0.035em;
  }

  .mobile-menu nav span {
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 30px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 65px;
  }

  .about-visual {
    min-height: 620px;
  }

  .faq-grid {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 70px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding-block: 90px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 59% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(8, 10, 9, 0.48)),
      linear-gradient(0deg, rgba(7, 9, 8, 0.74), transparent 60%);
  }

  .hero-inner {
    min-height: 780px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 13vw, 6.5rem);
  }

  .hero h1 em {
    padding-left: 0;
  }

  .hero-copy,
  .section-heading,
  .about-grid,
  .faq-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 620px;
    gap: 18px;
  }

  .hero-description {
    max-width: 500px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    gap: 34px;
  }

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

  .service-card {
    min-height: 340px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-content {
    padding-top: 10px;
  }

  .faq-intro {
    position: static;
  }

  .faq-grid {
    gap: 60px;
  }

  .contact-inner {
    gap: 48px;
  }

  .contact-inner > .eyebrow {
    grid-column: auto;
    margin-bottom: -12px;
  }

  .contact-actions {
    min-width: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 70px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 70px;
    padding: 32px 16px 24px;
  }

  .section {
    padding-block: 76px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.68rem;
  }

  h2,
  .about h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
    line-height: 0.95;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 120px 55px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.62), rgba(8, 10, 9, 0.18)),
      linear-gradient(0deg, rgba(7, 9, 8, 0.98) 2%, rgba(7, 9, 8, 0.83) 48%, rgba(7, 9, 8, 0.18) 100%);
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
    line-height: 0.9;
  }

  .hero-copy {
    margin-top: 35px;
    padding-top: 21px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-description {
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: stretch;
    gap: 22px;
    margin-top: 30px;
  }

  .button {
    min-width: 0;
    min-height: 55px;
    padding-inline: 18px 15px;
  }

  .text-link {
    align-self: center;
    white-space: nowrap;
  }

  .section-heading > p:last-child {
    margin-bottom: 0;
  }

  .offer-grid {
    margin-top: 54px;
  }

  .service-card {
    min-height: 320px;
    padding: 27px 24px;
  }

  .service-topline svg {
    width: 58px;
  }

  .about-grid {
    gap: 52px;
  }

  .about-visual {
    min-height: 410px;
  }

  .about-caption {
    padding: 14px;
    font-size: 0.58rem;
  }

  .about-lead {
    margin-block: 32px;
    font-size: 0.96rem;
  }

  .process-list > div {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding-block: 21px;
  }

  .faq-grid {
    gap: 46px;
  }

  .accordion-item button {
    padding-block: 23px;
  }

  .accordion-item button > span {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    font-size: 0.92rem;
  }

  .accordion-item button b {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .accordion-panel p {
    padding: 0 44px 24px 38px;
    font-size: 0.86rem;
  }

  .contact::after {
    width: 80vw;
  }

  .contact-copy p {
    margin-top: 30px;
    font-size: 0.9rem;
  }

  .button-large {
    width: 100%;
  }

  .footer-inner {
    min-height: 96px;
  }

  .brand-footer .brand-name {
    font-size: 0.9rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
