:root {
  --surface: #f0f2ef;
  --surface-alt: #d9ddd7;
  --ink: #17191a;
  --ink-soft: #454b4f;
  --muted: #687177;
  --line: rgba(23, 25, 26, 0.16);
  --panel: #ffffff;
  --panel-deep: #20242a;
  --accent: #b85d32;
  --accent-dark: #6f3b27;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 30, 34, 0.16);
  --shadow-strong: 0 34px 90px rgba(22, 28, 32, 0.24);
  --radius: 10px;
  --max: 1180px;
  --header-h: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 93, 50, 0.08), transparent 28rem),
    linear-gradient(90deg, rgba(23, 25, 26, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 26, 0.03) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%),
    linear-gradient(315deg, rgba(23, 25, 26, 0.07) 25%, transparent 25%);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid rgba(183, 86, 50, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(23, 25, 26, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: var(--white);
  border-color: rgba(23, 25, 26, 0.14);
  box-shadow: 0 12px 38px rgba(24, 30, 34, 0.11);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
  transition: height 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  height: 54px;
}

.nav-panel {
  display: none;
}

.mobile-panel-cta {
  display: none;
}

.nav-cta {
  display: none;
}

.menu-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  gap: 0;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  background: var(--white);
  border-color: rgba(23, 25, 26, 0.28);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  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);
}

.nav-panel.is-open {
  position: fixed;
  inset: calc(var(--header-h) + 0.6rem) 1rem auto;
  display: grid;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: menuIn 220ms ease both;
}

.nav-panel.is-open a {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.nav-panel.is-open a:last-child {
  border-bottom: 0;
}

.nav-panel.is-open .mobile-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #d5d8d3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 242, 239, 0.98) 0%, rgba(240, 242, 239, 0.91) 43%, rgba(240, 242, 239, 0.25) 76%, rgba(240, 242, 239, 0.02) 100%),
    linear-gradient(0deg, rgba(23, 25, 26, 0.2), transparent 48%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 28%;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg, transparent 0 42px, rgba(240, 242, 239, 0.12) 42px 43px),
    linear-gradient(180deg, transparent, rgba(23, 25, 26, 0.22));
}

.hero-grid {
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4.6rem, 12vw, 8.5rem) 0 5rem;
}

.hero-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 6.8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  max-width: 760px;
}

.hero-lede {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 14px 34px rgba(23, 25, 26, 0.18);
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 42px rgba(111, 59, 39, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  border-color: rgba(23, 23, 19, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof {
  max-width: 700px;
  gap: 1rem 2rem;
  padding-top: 1.2rem;
  color: var(--ink-soft);
}

.hero-proof span {
  border-left: 2px solid var(--accent);
  padding-left: 0.8rem;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
}

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 760px);
  margin-top: 2rem;
  border: 1px solid rgba(23, 25, 26, 0.14);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 52px rgba(24, 30, 34, 0.1);
}

.hero-capabilities span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  padding: 1rem;
  color: var(--ink-soft);
  border-right: 1px solid rgba(23, 25, 26, 0.12);
  border-bottom: 1px solid rgba(23, 25, 26, 0.12);
}

.hero-capabilities span:nth-child(2n) {
  border-right: 0;
}

.hero-capabilities span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-capabilities strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(1.05);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  width: 1px;
  height: 54px;
  background: rgba(23, 23, 19, 0.25);
  overflow: hidden;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.wide {
  max-width: 960px;
}

.section-heading h2,
.split-heading h2,
.about-copy h2,
.contact-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading h2::after,
.split-heading h2::after,
.about-copy h2::after,
.contact-intro h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 1.15rem;
  background: var(--accent);
}

.section-heading p:last-child,
.contact-intro p,
.final-cta p {
  color: var(--ink-soft);
  max-width: 720px;
  font-size: 1.05rem;
}

.value-layout {
  display: grid;
  gap: 2rem;
  position: relative;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(23, 25, 26, 0.1);
  box-shadow: 0 24px 70px rgba(24, 30, 34, 0.08);
}

.value-layout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.value-statement {
  max-width: 760px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.34;
  margin: 0;
}

.value-points {
  display: grid;
  border-top: 1px solid var(--line);
}

.value-point {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, color 220ms ease;
}

.value-point:hover {
  transform: translateX(6px);
}

.value-point span,
.difference-item span,
.timeline-step span {
  color: var(--accent-dark);
  font-weight: 850;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.value-point h3,
.difference-item h3,
.timeline-step h3,
.service-card h3,
.service-line h3,
.contact-card h3 {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.15;
}

.value-point p,
.difference-item p,
.timeline-step p,
.service-card p,
.service-line p,
.testimonial figcaption,
.contact-card p,
.footer-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.services-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(184, 93, 50, 0.16), transparent 32rem),
    var(--panel-deep);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--surface);
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
}

.services-section .section-heading p {
  color: rgba(244, 241, 234, 0.72);
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1d2126;
  box-shadow: 0 28px 70px rgba(7, 10, 12, 0.2);
  transform: translateZ(0);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.16), transparent 18rem);
  opacity: 0.98;
  transition: opacity 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.service-card:hover img {
  transform: scale(1.055);
  filter: saturate(0.98) contrast(1.08);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card div {
  position: relative;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.service-card h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.service-card p {
  color: rgba(244, 241, 234, 0.82);
}

.service-line {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(184, 93, 50, 0.14), transparent 14rem),
    rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-line::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--accent);
}

.service-line:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 241, 234, 0.34);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(184, 93, 50, 0.2), transparent 14rem),
    rgba(255, 255, 255, 0.05);
}

.service-line p {
  color: rgba(244, 241, 234, 0.72);
}

.differentiators {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #191d21;
  background-size: 34px 34px;
  color: var(--surface);
}

.split-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.split-heading p {
  color: rgba(244, 241, 234, 0.72);
  margin: 0;
  max-width: 620px;
}

.difference-board {
  display: grid;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
}

.difference-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.18);
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.08), transparent 14rem);
  transition: padding-left 220ms ease, background 220ms ease;
}

.difference-item:hover {
  padding-left: 0.7rem;
}

.difference-item p {
  color: rgba(244, 241, 234, 0.72);
}

.field-note {
  display: grid;
  gap: 0;
  margin-top: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(244, 241, 234, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.field-note img {
  height: 280px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.field-note p {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--surface);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.about-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 420px;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  box-shadow: var(--shadow-strong);
}

.about-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-facts {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.about-facts span,
.contact-data span {
  display: grid;
  gap: 0.15rem;
  color: var(--ink-soft);
}

.about-facts strong,
.contact-data strong {
  color: var(--ink);
}

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

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
  transform: scaleY(var(--timeline-progress, 0));
  transform-origin: top;
  transition: transform 260ms ease;
}

.timeline-step {
  position: relative;
  padding: 0 0 1.5rem 3rem;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: 0.12rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px var(--surface);
}

.sector-strip {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.sector-strip span {
  position: relative;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.08rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  transition: padding-left 180ms ease, color 180ms ease;
}

.sector-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: width 180ms ease;
}

.sector-strip span:hover {
  padding-left: 1.4rem;
  color: var(--accent-dark);
}

.sector-strip span:hover::before {
  width: 0.9rem;
}

.sector-image-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sector-image-row img {
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(24, 30, 34, 0.13);
}

.testimonials {
  padding-top: 0;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(184, 93, 50, 0.12), transparent 13rem),
    rgba(255, 255, 255, 0.44);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 25, 26, 0.24);
  box-shadow: 0 22px 60px rgba(24, 30, 34, 0.11);
}

.testimonial blockquote {
  margin: 0 0 1.4rem;
  font-size: 1.08rem;
  line-height: 1.45;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--surface);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 24, 27, 0.84) 0%, rgba(20, 24, 27, 0.58) 48%, rgba(20, 24, 27, 0.15) 100%),
    linear-gradient(180deg, rgba(20, 24, 27, 0.08), rgba(20, 24, 27, 0.74));
}

.final-cta-media {
  position: absolute;
  inset: -8% 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.final-cta-media img {
  height: 100%;
  object-fit: cover;
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
  max-width: var(--max);
}

.final-cta-copy h2,
.final-cta-copy p {
  max-width: 650px;
}

.final-cta p {
  color: rgba(244, 241, 234, 0.78);
}

.contact-section {
  display: grid;
  gap: 2rem;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(24, 30, 34, 0.1);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 750;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 19, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem;
  min-height: 48px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 86, 50, 0.13);
  outline: none;
}

.form-error {
  display: none;
  color: #8f2d1c;
}

.form-row.is-invalid .form-error {
  display: block;
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: #8f2d1c;
}

.form-status {
  min-height: 1.5rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-card {
  padding: 1.25rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 93, 50, 0.18), transparent 16rem),
    var(--panel-deep);
  color: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.contact-card p,
.contact-card .contact-data span {
  color: rgba(244, 241, 234, 0.72);
}

.contact-card .contact-data strong {
  color: var(--surface);
}

.contact-data {
  display: grid;
  gap: 1rem;
  margin: 1.3rem 0;
}

.map-placeholder {
  display: block;
  min-height: 240px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  min-height: 240px;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.site-footer {
  background: var(--ink);
  color: var(--surface);
  padding: 3rem 0;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-grid p {
  color: rgba(244, 241, 234, 0.68);
}

.footer-brand .brand-logo {
  height: 78px;
  background: var(--white);
  padding: 0.4rem;
}

.footer-grid .footer-brand {
  display: inline-flex;
  margin: 0 0 1rem;
}

.footer-grid h2 {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-link {
  display: block;
  width: fit-content;
  margin: 0.45rem 0;
  color: rgba(244, 241, 234, 0.78);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-link:hover {
  color: var(--surface);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(12, 12, 10, 0.62);
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal.is-open {
  display: flex;
}

.modal.is-visible {
  opacity: 1;
}

.modal-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(80dvh, 720px);
  overflow: auto;
  background: var(--panel);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  transition: transform 180ms ease;
}

.modal.is-visible .modal-panel {
  transform: translateY(0);
}

.modal-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.modal-panel p {
  color: var(--ink-soft);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reveal,
.reveal-up,
.reveal-image {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease, clip-path 800ms ease;
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-image {
  clip-path: inset(10% 0 10% 0);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-image.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

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

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

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

.hero-copy .reveal-up:nth-child(5) {
  transition-delay: 320ms;
}

@media (min-width: 720px) {
  .hero-capabilities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-capabilities span,
  .hero-capabilities span:nth-child(2n),
  .hero-capabilities span:nth-last-child(-n + 2) {
    border-right: 1px solid rgba(23, 25, 26, 0.12);
    border-bottom: 0;
  }

  .hero-capabilities span:last-child {
    border-right: 0;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.25rem;
  }

  .form-wide,
  .form-status {
    grid-column: 1 / -1;
  }

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

  .service-large {
    grid-column: span 2;
  }

  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-image-row {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel,
  .nav-panel.is-open {
    position: static;
    inset: auto;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 1.45rem;
    width: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    animation: none;
    color: var(--ink-soft);
    font-size: 0.92rem;
  }

  .nav-panel a,
  .nav-panel.is-open a {
    position: relative;
    padding: 0;
    border: 0;
    color: var(--ink-soft);
    font-weight: 650;
  }

  .nav-panel a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .nav-panel a:hover::after {
    transform: scaleX(1);
  }

  .nav-panel .mobile-panel-cta,
  .nav-panel.is-open .mobile-panel-cta {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.58);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    background: var(--white);
    border-color: rgba(23, 25, 26, 0.28);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(240, 242, 239, 0.98) 0%, rgba(240, 242, 239, 0.92) 38%, rgba(240, 242, 239, 0.18) 78%, rgba(240, 242, 239, 0.02) 100%),
      linear-gradient(0deg, rgba(23, 25, 26, 0.12), transparent 55%);
  }

  .hero-copy {
    padding-top: clamp(5.4rem, 9vw, 8.5rem);
  }

  .value-layout,
  .about-section,
  .contact-layout,
  .split-heading {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .value-points {
    margin-top: 0.5rem;
  }

  .services-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: minmax(230px, auto);
  }

  .service-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 560px;
  }

  .service-card:not(.service-large) {
    min-height: 272px;
  }

  .difference-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid rgba(244, 241, 234, 0.18);
  }

  .difference-item {
    min-height: 340px;
    padding: 1.5rem;
    border-right: 1px solid rgba(244, 241, 234, 0.18);
    border-bottom: 1px solid rgba(244, 241, 234, 0.18);
    display: grid;
    align-content: space-between;
  }

  .difference-item:hover {
    padding-left: 1.9rem;
  }

  .field-note {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }

  .field-note img {
    height: 100%;
    min-height: 340px;
  }

  .about-section {
    gap: 4rem;
  }

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

  .timeline {
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    overflow-x: auto;
    padding-top: 2.4rem;
  }

  .timeline::before {
    left: 0;
    right: 0;
    top: 0.72rem;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: scaleX(var(--timeline-progress, 0));
    transform-origin: left;
  }

  .timeline-step {
    min-width: 180px;
    padding: 0;
  }

  .timeline-step::before {
    left: 0;
    top: -2.08rem;
  }

  .sector-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .sector-strip span {
    padding: 1.3rem;
    border-right: 1px solid var(--line);
  }

  .sector-strip span:hover {
    padding-left: 2.4rem;
  }

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

  .contact-layout {
    align-items: start;
  }

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

@media (max-width: 520px) {
  .brand-logo {
    height: 56px;
  }

  .site-header.is-scrolled .brand-logo {
    height: 48px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .section {
    width: min(100% - 1.2rem, var(--max));
  }
}

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

  .reveal,
  .reveal-up,
  .reveal-image {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
