:root {
  --ink: #14191e;
  --steel: #3a4652;
  --paper: #e6eaee;
  --amber: #d4920a;
  --amber-deep: #b47808;
  --white: #f4f6f8;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100%;
  z-index: 100;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 0.75rem;
}

/* ——— SITE HEADER ——— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(20, 25, 30, 0.72), transparent);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.site-header__nav a {
  text-decoration: none;
  color: rgba(244, 246, 248, 0.88);
  transition: color 0.2s ease;
}

.site-header__nav a:hover {
  color: var(--white);
}

.site-header__phone {
  color: var(--ink) !important;
  background: var(--amber);
  padding: 0.55rem 0.9rem;
}

.site-header__phone:hover {
  background: var(--amber-deep);
  color: var(--ink) !important;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--ink);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.08);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      105deg,
      rgba(20, 25, 30, 0.9) 0%,
      rgba(20, 25, 30, 0.58) 48%,
      rgba(20, 25, 30, 0.38) 100%
    ),
    linear-gradient(to top, rgba(20, 25, 30, 0.78) 0%, transparent 48%);
}

.hero__inner {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: 7rem 0 4rem;
}

@media (max-width: 560px) {
  .site-header__brand {
    font-size: 0.95rem;
  }

  .site-header__nav {
    gap: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .site-header__phone {
    padding: 0.45rem 0.7rem;
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 12ch;
  animation: rise 0.9s ease both;
}

.hero__brand-domain {
  display: block;
  color: var(--amber);
  font-size: 0.38em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  margin-top: 1.35rem;
  max-width: 22ch;
  animation: rise 0.9s ease 0.12s both;
}

.hero__support {
  margin-top: 0.85rem;
  max-width: 36ch;
  font-size: 1.05rem;
  color: rgba(244, 246, 248, 0.88);
  animation: rise 0.9s ease 0.22s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  animation: rise 0.9s ease 0.32s both;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.9rem 1.35rem;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--amber {
  background: var(--amber);
  color: var(--ink);
}

.btn--amber:hover {
  background: var(--amber-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(244, 246, 248, 0.55);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(244, 246, 248, 0.08);
}

/* ——— ABOUT ——— */
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 70vh;
  background: var(--white);
}

.about__copy {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
}

.about__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 5px;
  background: var(--amber);
}

.about__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.about h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 14ch;
}

.about__text {
  max-width: 38ch;
  color: var(--steel);
  font-size: 1.08rem;
}

.about__meta {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.about__meta a {
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  width: fit-content;
  padding-bottom: 0.1rem;
}

.about__meta a:hover {
  color: var(--amber-deep);
}

.about__visual {
  position: relative;
  min-height: 320px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--ink);
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 40%, rgba(20, 25, 30, 0.18));
  pointer-events: none;
}

/* ——— SERVICES ——— */
.services {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 146, 10, 0.12), transparent 45%),
    linear-gradient(160deg, #1a2128 0%, #14191e 55%, #222b33 100%);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}

.services__wrap {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

.services__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 246, 248, 0.18);
}

.services__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  max-width: 12ch;
  line-height: 1.05;
}

.services__head p {
  max-width: 28ch;
  color: rgba(244, 246, 248, 0.72);
  font-size: 1.02rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.service-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(244, 246, 248, 0.12);
  transition:
    transform 0.25s ease,
    padding-left 0.25s ease;
}

.service-list li:nth-child(even) {
  padding-left: clamp(0rem, 4vw, 3rem);
}

.service-list li:hover {
  transform: translateX(6px);
}

.service-list .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.service-list h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.service-list p {
  margin-top: 0.35rem;
  color: rgba(244, 246, 248, 0.68);
  max-width: 48ch;
  font-size: 0.98rem;
}

.services__foot {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.services__foot small {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(244, 246, 248, 0.55);
  letter-spacing: 0.04em;
}

.site-footer {
  background: #0f1317;
  color: rgba(244, 246, 248, 0.55);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 1.25rem var(--gutter);
  text-align: center;
}

.site-footer a {
  color: rgba(244, 246, 248, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@media (max-width: 820px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 240px;
    clip-path: none;
    order: -1;
  }

  .about__copy::before {
    top: 0;
    bottom: auto;
    width: 3.5rem;
    height: 4px;
    left: clamp(1.5rem, 5vw, 4.5rem);
  }

  .service-list li:nth-child(even) {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    animation: none;
    transform: none;
  }

  .hero__brand,
  .hero__headline,
  .hero__support,
  .hero__cta {
    animation: none;
  }

  .service-list li,
  .btn {
    transition: none;
  }

  .service-list li:hover,
  .btn:hover {
    transform: none;
  }
}
