/*
  Milan Petergáč Autoservis — visual system
  Dark workshop editorial direction: graphite, warm signal orange, sharp lines.
*/

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/barlow-condensed-600.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/barlow-condensed-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/manrope-800.ttf") format("truetype");
}

:root {
  --canvas: #0b0d10;
  --canvas-soft: #12161b;
  --panel: #171c22;
  --panel-raised: #20262d;
  --paper: #f3efe7;
  --paper-dim: #d8d5cf;
  --muted: #a3a9af;
  --muted-deep: #747b82;
  --line: rgba(243, 239, 231, 0.16);
  --line-strong: rgba(243, 239, 231, 0.31);
  --signal: #ee9e28;
  --signal-soft: #ffc464;
  --signal-deep: #ba651b;
  --alert: #d35133;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --page-width: min(1180px, calc(100vw - 48px));
  --radius: 2px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 0% 0%, rgba(238, 158, 40, 0.12), transparent 30rem),
    linear-gradient(130deg, #0b0d10 0%, #0e1115 48%, #11151a 100%);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.58;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px;
  mix-blend-mode: soft-light;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--signal-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  transform: translateY(-160%);
  color: #17120a;
  background: var(--signal-soft);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--signal-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-title {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease;
}

.text-link::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: width 180ms var(--ease-out);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--signal-soft);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 52px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 15px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 220ms var(--ease-out), background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button:active {
  transform: translateY(-1px);
}

.button--primary {
  color: #1b1308;
  background: var(--signal);
}

.button--primary:hover {
  background: var(--signal-soft);
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.button--secondary:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
}

.button__arrow {
  width: 18px;
  height: 18px;
  transition: transform 220ms var(--ease-out);
}

.button:hover .button__arrow {
  transform: translateX(3px);
}

.header-meta {
  padding: 8px 0;
  color: #d7d5d0;
  background: #090b0e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-meta__inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-meta__inside span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-meta__inside span::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(238, 158, 40, 0.14);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(11, 13, 16, 0.84);
  backdrop-filter: blur(16px);
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.site-header__inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 46px;
  height: 44px;
}

.brand__word {
  display: grid;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand__sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  color: var(--paper-dim);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal);
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  min-height: 42px;
  padding: 12px 14px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: transparent;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__bars::before {
  transform: translateY(-6px);
}

.menu-toggle__bars::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 122px));
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(60vw, 950px);
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(11, 13, 16, 0) 45%, rgba(11, 13, 16, 0.7));
  pointer-events: none;
}

.hero__inside {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: stretch;
  width: var(--page-width);
  min-height: inherit;
  margin: auto;
}

.hero__copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px 40px 88px 0;
}

.hero__title {
  max-width: 670px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.2vw, 7.9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero__title em {
  display: block;
  margin-top: 8px;
  color: var(--signal);
  font-family: var(--font-body);
  font-size: 0.28em;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: none;
}

.hero__lead {
  max-width: 545px;
  margin: 28px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 650px;
  margin: 55px 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero__fact {
  min-height: 84px;
  padding: 16px 14px 0 0;
  border-right: 1px solid var(--line);
}

.hero__fact + .hero__fact {
  padding-left: 18px;
}

.hero__fact:last-child {
  border-right: 0;
}

.hero__fact strong,
.hero__fact span {
  display: block;
}

.hero__fact strong {
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.22;
}

.hero__fact span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.25;
}

.hero__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--canvas) 0%, rgba(11, 13, 16, 0.28) 22%, rgba(11, 13, 16, 0.06) 50%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.65), rgba(11, 13, 16, 0) 42%);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.1) brightness(0.78);
  transform: scale(1.035);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero__visual-mark {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 60px);
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__visual-mark::before {
  width: 39px;
  height: 1px;
  content: "";
  background: var(--signal);
}

.hero__signal {
  position: absolute;
  z-index: 2;
  top: 90px;
  right: clamp(20px, 4vw, 60px);
  display: grid;
  width: 103px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--paper);
  text-align: center;
}

.hero__signal::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  content: "";
}

.hero__signal b,
.hero__signal small {
  position: relative;
  display: block;
}

.hero__signal b {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.75;
}

.hero__signal small {
  margin-top: 6px;
  color: var(--signal-soft);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-line {
  position: relative;
  z-index: 3;
  width: var(--page-width);
  margin: -1px auto 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

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

.feature-line__item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 12px 20px 12px 0;
  color: var(--paper-dim);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
}

.feature-line__item + .feature-line__item {
  padding-left: 23px;
  border-left: 1px solid var(--line);
}

.feature-line__number {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.intro {
  padding: clamp(100px, 12vw, 176px) 0 clamp(72px, 8vw, 112px);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  align-items: start;
  gap: clamp(44px, 10vw, 145px);
}

.intro__body {
  padding-top: 50px;
  border-top: 1px solid var(--line-strong);
}

.intro__body p {
  max-width: 455px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 1.05rem;
}

.intro__body .text-link {
  margin-top: 34px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(240px, 0.58fr) 45px;
  align-items: center;
  gap: 18px;
  min-height: 155px;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms var(--ease-out), background-color 250ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-row__number {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.service-row__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-row__text {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-row__arrow {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--signal);
  font-size: 1.1rem;
  transition: transform 240ms var(--ease-out), background-color 240ms ease, color 240ms ease;
}

.service-row:hover .service-row__arrow {
  transform: rotate(-45deg);
  color: #1b1308;
  background: var(--signal);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  min-height: 630px;
  margin-top: clamp(80px, 12vw, 160px);
  background: var(--panel);
}

.visual-split__photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.visual-split__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(238, 158, 40, 0.09), rgba(0, 0, 0, 0.38));
}

.visual-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.1);
}

.photo-caption {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-caption::before {
  width: 20px;
  height: 2px;
  content: "";
  background: var(--signal);
}

.visual-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px);
}

.visual-split__body .section-title {
  max-width: 470px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.visual-split__body p {
  max-width: 455px;
  margin: 24px 0 0;
  color: var(--paper-dim);
}

.visual-split__body .button {
  align-self: flex-start;
  margin-top: 33px;
}

.info-grid-section {
  padding: clamp(88px, 12vw, 154px) 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(44px, 9vw, 130px);
}

.info-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.info-list li {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.info-list__label {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list__value {
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.info-list__value a:hover {
  color: var(--signal-soft);
}

.faq-stack {
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.faq-stack details {
  border-bottom: 1px solid var(--line);
}

.faq-stack summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 760;
  list-style: none;
}

.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-stack summary::after {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  content: "+";
  color: var(--signal);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-stack details[open] summary::after {
  transform: rotate(45deg);
}

.faq-stack__answer {
  max-width: 530px;
  padding: 0 42px 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-ribbon {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  color: #1a140a;
  background: var(--signal);
  overflow: hidden;
}

.contact-ribbon::before,
.contact-ribbon::after {
  position: absolute;
  width: 48vw;
  height: 48vw;
  max-width: 650px;
  max-height: 650px;
  border: 1px solid rgba(25, 20, 11, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-ribbon::before {
  top: -40%;
  left: -10%;
}

.contact-ribbon::after {
  right: -10%;
  bottom: -52%;
}

.contact-ribbon__inside {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.contact-ribbon .eyebrow {
  color: #44300d;
}

.contact-ribbon__title {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-ribbon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-ribbon .button--primary {
  color: var(--paper);
  background: #171b20;
}

.contact-ribbon .button--primary:hover {
  background: #343a42;
}

.contact-ribbon .button--secondary {
  border-color: rgba(25, 20, 11, 0.42);
  color: #1a140a;
  background: rgba(255, 255, 255, 0.14);
}

.contact-ribbon .button--secondary:hover {
  border-color: #1a140a;
  background: rgba(255, 255, 255, 0.33);
}

.site-footer {
  color: var(--paper-dim);
  background: #090b0e;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(150px, 0.7fr));
  gap: 40px;
  padding: 70px 0 56px;
}

.site-footer .brand {
  color: var(--paper);
}

.site-footer__note {
  max-width: 355px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-title {
  margin: 0 0 15px;
  color: var(--signal-soft);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: var(--paper-dim);
  font-size: 0.84rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--signal-soft);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 23px;
  border-top: 1px solid var(--line);
  color: var(--muted-deep);
  font-size: 0.68rem;
}

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

/* Inner pages */
.inner-hero {
  position: relative;
  padding: clamp(92px, 12vw, 160px) 0 clamp(78px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.inner-hero::after {
  position: absolute;
  top: -280px;
  right: -230px;
  width: min(57vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(238, 158, 40, 0.25);
  border-radius: 50%;
  content: "";
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(270px, 0.58fr);
  align-items: end;
  gap: clamp(44px, 8vw, 126px);
}

.inner-hero__title {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.2vw, 9.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.79;
  text-transform: uppercase;
}

.inner-hero__copy {
  max-width: 420px;
  margin: 0;
  padding-bottom: 8px;
  color: var(--paper-dim);
  font-size: 1.03rem;
}

.inner-hero__signal {
  position: absolute;
  top: 60px;
  right: max(24px, calc((100vw - var(--page-width)) / 2));
  color: var(--signal);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 1;
  opacity: 0.76;
}

.detail-section {
  padding: clamp(85px, 11vw, 150px) 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.67fr) minmax(0, 1.33fr);
  gap: clamp(46px, 10vw, 150px);
}

.side-label {
  color: var(--signal-soft);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-layout__content h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.6vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.89;
  text-transform: uppercase;
}

.detail-layout__content > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--paper-dim);
  font-size: 1.03rem;
}

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

.discipline {
  min-height: 274px;
  padding: 27px 24px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discipline__no {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.discipline h3 {
  margin: 49px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.discipline p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.process-band {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--panel);
}

.process-list {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.process-list li {
  display: grid;
  grid-template-columns: 88px minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
}

.process-list__num {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
}

.process-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.process-list p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.77fr);
  min-height: 530px;
  margin-top: clamp(78px, 11vw, 146px);
  overflow: hidden;
  background: #d9d1c5;
  color: #1c2024;
}

.quote-panel__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(42px, 7vw, 92px);
}

.quote-panel__body p {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.quote-panel__caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  color: #575a5c;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-panel__caption::before {
  width: 29px;
  height: 2px;
  content: "";
  background: var(--signal-deep);
}

.quote-panel__picture {
  position: relative;
  min-height: 340px;
}

.quote-panel__picture::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(238, 158, 40, 0.08));
}

.quote-panel__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.08);
}

/* Contact */
.contact-section {
  padding: clamp(82px, 10vw, 138px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.98fr);
  gap: clamp(40px, 8vw, 115px);
}

.contact-stack {
  border-top: 1px solid var(--line-strong);
}

.contact-stack__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-stack__label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-stack__value {
  color: var(--paper);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 750;
  line-height: 1.28;
}

.contact-stack__value a {
  transition: color 180ms ease;
}

.contact-stack__value a:hover {
  color: var(--signal-soft);
}

.contact-card {
  position: relative;
  min-height: 540px;
  padding: clamp(35px, 5vw, 65px);
  overflow: hidden;
  background: var(--panel);
}

.contact-card::before {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(238, 158, 40, 0.26);
  border-radius: 50%;
  content: "";
}

.contact-card__accent {
  position: absolute;
  top: 43px;
  right: 40px;
  width: 55px;
  height: 55px;
  border: 3px solid var(--signal);
  transform: rotate(45deg);
}

.contact-card h2 {
  position: relative;
  max-width: 440px;
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.4vw, 5.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.87;
  text-transform: uppercase;
}

.contact-card p:not(.eyebrow) {
  position: relative;
  max-width: 445px;
  margin: 24px 0 0;
  color: var(--paper-dim);
}

.contact-card .button {
  position: relative;
  margin-top: 35px;
}

.hours-table {
  width: 100%;
  margin-top: 42px;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.85rem;
}

.hours-table th {
  color: var(--muted);
  font-weight: 650;
}

.hours-table td {
  color: var(--paper);
  font-weight: 750;
  text-align: right;
}

.map-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 66px;
  padding: 26px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.map-panel p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.94rem;
}

.map-panel strong {
  display: block;
  color: var(--paper);
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(45px, 10vw, 145px);
}

.about-grid__body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.about-grid__body p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--paper-dim);
  font-size: 1.03rem;
}

.dial-card {
  position: relative;
  display: grid;
  min-height: 525px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 65%),
    var(--panel);
}

.dial-card::before,
.dial-card::after {
  position: absolute;
  border: 1px solid rgba(238, 158, 40, 0.2);
  border-radius: 50%;
  content: "";
}

.dial-card::before {
  width: min(33vw, 430px);
  aspect-ratio: 1;
}

.dial-card::after {
  width: min(25vw, 330px);
  aspect-ratio: 1;
}

.dial {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(21vw, 260px);
  min-width: 200px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: 50%;
}

.dial::before {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(243, 239, 231, 0.34);
  border-radius: inherit;
  content: "";
  animation: dial-spin 40s linear infinite;
}

.dial::after {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 4px;
  height: 39%;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: rotate(36deg);
  transform-origin: bottom;
  background: var(--signal);
  box-shadow: 0 0 20px rgba(238, 158, 40, 0.6);
}

.dial__inside {
  display: grid;
  gap: 6px;
  text-align: center;
}

.dial__inside span {
  color: var(--signal-soft);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dial__inside strong {
  font-family: var(--font-display);
  font-size: 2.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.8;
}

.dial-card__caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Privacy */
.legal-content {
  max-width: 790px;
  padding: clamp(78px, 10vw, 128px) 0;
}

.legal-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
}

.legal-content > p {
  margin: 29px 0 0;
  color: var(--paper-dim);
  font-size: 1.02rem;
}

.legal-blocks {
  display: grid;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
}

.legal-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.legal-block p,
.legal-block ul {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-block ul {
  padding-left: 20px;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

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

[data-reveal="delay"] {
  transition-delay: 105ms;
}

@keyframes hero-drift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -0.7%, 0); }
}

@keyframes dial-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 940px) {
  :root {
    --page-width: min(100% - 40px, 1180px);
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .site-header__inside {
    min-height: 75px;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px max(20px, calc((100vw - var(--page-width)) / 2)) 20px;
    border-bottom: 1px solid var(--line-strong);
    background: #0d1014;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.33);
  }

  .site-nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .site-nav.is-open a::after {
    right: auto;
    bottom: 0;
    left: 0;
    width: 40px;
  }

  .header-call {
    display: none;
  }

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

  .hero__copy {
    min-height: 660px;
    padding: 88px 0 45px;
  }

  .hero__visual {
    position: absolute;
    z-index: -1;
    inset: 0 calc((100vw - var(--page-width)) / -2) 0 38%;
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.95;
  }

  .hero__visual::before {
    background:
      linear-gradient(90deg, var(--canvas) 0%, rgba(11, 13, 16, 0.72) 34%, rgba(11, 13, 16, 0.18) 80%),
      linear-gradient(0deg, rgba(11, 13, 16, 0.73), transparent 45%);
  }

  .hero__visual-mark {
    display: none;
  }

  .hero__signal {
    top: 42px;
    right: 24px;
    width: 85px;
  }

  .feature-line__item {
    padding-right: 14px;
  }

  .intro__grid,
  .info-grid,
  .about-grid,
  .contact-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .intro__body {
    padding-top: 0;
    border-top: 0;
  }

  .visual-split,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .visual-split__photo {
    min-height: 430px;
  }

  .quote-panel__picture {
    min-height: 420px;
  }

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

  .inner-hero__copy {
    max-width: 570px;
  }

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

  .discipline:last-child {
    grid-column: span 2;
    min-height: 210px;
  }

  .process-list li {
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .process-list p {
    grid-column: 2;
  }

  .dial-card::before {
    width: 450px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-width: min(100% - 32px, 1180px);
  }

  .header-meta__inside {
    justify-content: center;
  }

  .header-meta__inside span:last-child {
    display: none;
  }

  .brand__mark {
    width: 41px;
    height: 40px;
  }

  .brand__name {
    font-size: 1.33rem;
  }

  .hero {
    min-height: 630px;
  }

  .hero__copy {
    min-height: 630px;
    padding-top: 70px;
  }

  .hero__title {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
    line-height: 0.82;
  }

  .hero__lead {
    max-width: 330px;
    margin-top: 23px;
    font-size: 0.95rem;
  }

  .hero__actions {
    display: grid;
    max-width: 295px;
    margin-top: 26px;
  }

  .hero__facts {
    max-width: none;
    margin-top: 35px;
  }

  .hero__fact {
    min-height: 75px;
    padding: 13px 9px 0 0;
  }

  .hero__fact + .hero__fact {
    padding-left: 10px;
  }

  .hero__fact strong {
    font-size: 0.68rem;
  }

  .hero__fact span {
    font-size: 0.59rem;
  }

  .hero__visual {
    left: 22%;
  }

  .hero__signal {
    display: none;
  }

  .feature-line__inside {
    grid-template-columns: 1fr;
  }

  .feature-line__item {
    min-height: 55px;
    padding: 8px 0;
  }

  .feature-line__item + .feature-line__item {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-line__number {
    min-width: 27px;
    font-size: 1.3rem;
  }

  .section-head,
  .contact-ribbon__inside {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-title {
    font-size: clamp(2.65rem, 14vw, 4.25rem);
  }

  .service-row {
    grid-template-columns: 42px 1fr 32px;
    gap: 11px;
    min-height: 0;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-inline: 8px;
  }

  .service-row__number {
    align-self: start;
    font-size: 1.35rem;
  }

  .service-row__title {
    font-size: 2rem;
  }

  .service-row__text {
    grid-column: 2 / 4;
    margin-top: -2px;
    font-size: 0.8rem;
  }

  .service-row__arrow {
    width: 31px;
  }

  .visual-split {
    min-height: 0;
  }

  .visual-split__photo {
    min-height: 320px;
  }

  .visual-split__body {
    padding: 50px 25px 56px;
  }

  .info-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-ribbon {
    padding: 63px 0;
  }

  .contact-ribbon__title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .contact-ribbon__actions {
    display: grid;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 53px 0 40px;
  }

  .site-footer__bottom {
    display: grid;
    padding: 18px 0;
  }

  .inner-hero {
    padding: 80px 0 72px;
  }

  .inner-hero__title {
    font-size: clamp(4rem, 20vw, 6.7rem);
  }

  .inner-hero__signal {
    top: 22px;
    right: 16px;
    font-size: 4rem;
  }

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

  .discipline,
  .discipline:last-child {
    grid-column: auto;
    min-height: 210px;
  }

  .discipline h3 {
    margin-top: 34px;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .process-list__num {
    font-size: 1.65rem;
  }

  .process-list h3 {
    font-size: 1.72rem;
  }

  .quote-panel__body {
    padding: 45px 27px;
  }

  .quote-panel__body p {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .quote-panel__picture {
    min-height: 290px;
  }

  .contact-stack__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-card {
    min-height: 460px;
  }

  .contact-card__accent {
    top: 29px;
    right: 26px;
    width: 42px;
    height: 42px;
  }

  .map-panel {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .dial-card {
    min-height: 390px;
  }

  .dial-card::before {
    width: 360px;
  }

  .dial {
    min-width: 190px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
