:root {
  --ink: #111820;
  --muted: #6d756f;
  --paper: #f4eee3;
  --panel: #fffaf2;
  --graphite: #0d1318;
  --steel: #8aa1a8;
  --amber: #e98b2a;
  --amber-2: #ffb45b;
  --line: rgba(17, 24, 32, 0.14);
  --shadow: 0 28px 90px rgba(13, 19, 24, 0.18);
  --radius: 18px;
  --max: 1180px;
  --font: "Manrope", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--graphite);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  background: rgba(244, 238, 227, 0.92);
  box-shadow: 0 12px 38px rgba(13, 19, 24, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 180, 91, 0.65);
  border-radius: 14px;
  color: var(--graphite);
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
  box-shadow: 0 12px 34px rgba(233, 139, 42, 0.28);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0.72;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.site-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-family: var(--display);
  font-weight: 800;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .language-switch,
body.menu-open .language-switch {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.lang-button {
  min-width: 44px;
  height: 40px;
  border: 0;
  border-radius: 11px;
  color: currentColor;
  background: transparent;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--graphite);
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
}

.site-nav a {
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--amber-2);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 4vw, 64px) 84px;
  color: #fff;
}

.hero-image,
.hero-shade,
.hero-motion {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 19, 24, 0.92) 0%, rgba(13, 19, 24, 0.76) 34%, rgba(13, 19, 24, 0.18) 72%, rgba(13, 19, 24, 0.42) 100%),
    radial-gradient(circle at 28% 64%, rgba(233, 139, 42, 0.28), transparent 30%);
}

.hero-motion {
  pointer-events: none;
}

.route-line,
.route-pulse {
  position: absolute;
  border-radius: 999px;
}

.route-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 180, 91, 0.9), transparent);
  filter: blur(0.5px);
  opacity: 0.72;
  animation: routeSweep 4.6s ease-in-out infinite;
}

.route-line-a {
  --angle: -11deg;
  width: 34vw;
  left: 43vw;
  top: 36%;
  transform: rotate(-11deg);
}

.route-line-b {
  --angle: 7deg;
  width: 28vw;
  left: 54vw;
  top: 66%;
  transform: rotate(7deg);
  animation-delay: 1.8s;
}

.route-pulse {
  width: 11px;
  height: 11px;
  background: var(--amber-2);
  box-shadow: 0 0 0 10px rgba(255, 180, 91, 0.16);
  animation: pulseMove 5.2s ease-in-out infinite;
}

.route-pulse-a {
  left: 58%;
  top: 41%;
}

.route-pulse-b {
  left: 78%;
  top: 64%;
  animation-delay: 1.3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 58vw);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber-2);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.7vw, 5.75rem);
  font-weight: 900;
}

h1 span {
  display: block;
  color: var(--amber-2);
}

h1 b {
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3vw, 3.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.hero-lead {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: var(--graphite);
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
  box-shadow: 0 18px 40px rgba(233, 139, 42, 0.3);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.ghost.dark {
  color: var(--graphite);
  border-color: rgba(17, 24, 32, 0.18);
  background: rgba(17, 24, 32, 0.04);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  bottom: clamp(28px, 5vw, 70px);
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(13, 19, 24, 0.46);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-panel span,
.contact-location span {
  color: var(--amber-2);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero-panel strong,
.contact-location strong {
  display: block;
  margin: 8px 0;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.quick-strip,
.section,
.control,
.contact,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.quick-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  transform: translateY(-34px);
}

.quick-strip article,
.process-card,
.contact-card,
.contact-location {
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
}

.quick-strip article {
  min-height: 116px;
  padding: 20px;
}

.quick-strip span,
.process-card span {
  color: var(--amber);
  font-weight: 900;
}

.quick-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.24;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-head h2 {
  color: var(--graphite);
  line-height: 1.08;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.direction-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  color: #fff;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.direction-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms ease;
}

.direction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(13, 19, 24, 0.2) 42%, rgba(13, 19, 24, 0.88) 100%);
}

.direction-card:hover img {
  transform: scale(1.09);
}

.direction-card div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 38px);
}

.direction-card span {
  color: var(--amber-2);
  font-weight: 900;
}

.direction-card h3 {
  max-width: 620px;
  margin: 10px 0 16px;
}

.direction-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.control {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0;
}

.control-image {
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.control-image img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  transition: transform 800ms ease;
}

.control-image:hover img {
  transform: scale(1.05);
}

.control-copy {
  max-width: 680px;
}

.control-copy h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 2.7vw, 3.5rem);
  line-height: 1.08;
}

.control-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.13rem);
  line-height: 1.72;
}

.control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 24px;
}

.control-list span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: 14px;
  color: var(--graphite);
  background: rgba(255, 250, 242, 0.74);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.22;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  min-height: 250px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(13, 19, 24, 0.09);
}

.process-card h3 {
  margin: 18px 0 14px;
  font-size: 1.32rem;
}

.process-card p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  padding-bottom: clamp(70px, 8vw, 110px);
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
}

.contact-card p:not(.eyebrow) {
  width: min(620px, 100%);
  color: var(--muted);
}

.contact-card h2 {
  max-width: 680px;
  line-height: 1.08;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-links a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.contact-links span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.contact-links strong {
  color: var(--graphite);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-location {
  padding: 26px;
}

.contact-location p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer .brand-mark {
  box-shadow: none;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055) translate3d(-1.5%, 0, 0);
  }
}

@keyframes routeSweep {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-20px) rotate(var(--angle, 0deg));
  }
  50% {
    opacity: 0.82;
    transform: translateX(24px) rotate(var(--angle, 0deg));
  }
}

@keyframes pulseMove {
  0%,
  100% {
    transform: translate3d(-18px, 10px, 0) scale(0.85);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(28px, -8px, 0) scale(1);
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(244, 238, 227, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .quick-strip,
  .direction-grid,
  .control,
  .process-rail,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
  }

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

  .control {
    padding-top: 24px;
  }

  .control-copy {
    max-width: none;
  }

  .control-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px;
  }

  .brand span:not(.brand-mark) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 18px 48px;
  }

  .hero-image {
    object-position: 72% center;
    filter: brightness(1.12) contrast(1.08) saturate(1.05);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 19, 24, 0.94) 0%, rgba(13, 19, 24, 0.74) 42%, rgba(13, 19, 24, 0.12) 100%),
      linear-gradient(180deg, rgba(13, 19, 24, 0.18) 0%, rgba(13, 19, 24, 0.48) 58%, rgba(13, 19, 24, 0.82) 100%),
      radial-gradient(circle at 74% 44%, rgba(255, 180, 91, 0.28), transparent 36%);
  }

  h1 {
    font-size: clamp(2.42rem, 11.2vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.15rem);
  }

  .control-copy h2 {
    font-size: clamp(2rem, 8vw, 2.95rem);
  }

  .control-list {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    transform: none;
    margin-top: 18px;
  }

  .direction-card {
    min-height: 520px;
  }

  .section {
    padding: 70px 0;
  }

  .contact-location {
    padding: 22px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
