:root {
  --yellow: #ffd400;
  --yellow-light: #fff4b6;
  --black: #111111;
  --ink: #20211f;
  --muted: #686a65;
  --line: #dedfd9;
  --surface: #f4f4ef;
  --white: #ffffff;
  --display: "Manrope", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--surface);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  min-height: 96px;
  margin: auto;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.main-nav a {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav .nav-access {
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 12px;
}
.main-nav .nav-access:hover { color: var(--black); background: #ffde35; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 23%, rgba(255,212,0,.2), transparent 21%),
    linear-gradient(145deg, #0b0b0b, #181818 72%, #262300);
}
.hero::after {
  position: absolute;
  right: -180px;
  bottom: -310px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(255,212,0,.14);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  width: min(calc(100% - 48px), var(--container));
  min-height: 820px;
  margin: auto;
  padding: 155px 0 95px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #777973;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--yellow);
}
.hero .eyebrow { color: var(--yellow); }
.hero-copy h1 {
  max-width: 750px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.25vw, 96px);
  line-height: .97;
  letter-spacing: -.06em;
}
.hero-copy h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #b7b8b3;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--black); background: var(--yellow); }
.button-primary:hover { background: #ffdf3f; }
.button-ghost { color: var(--white); border-color: #42433f; background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: #777872; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 44px;
  color: #858681;
  font-size: 12px;
}
.hero-trust span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px 0;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
}
.hero-image {
  overflow: hidden;
  aspect-ratio: .85;
  border-radius: 180px 180px 28px 28px;
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08);
  transform: scale(1.02);
}
.route-card {
  position: absolute;
  right: -36px;
  bottom: 54px;
  width: min(320px, 75%);
  padding: 22px 24px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.route-card p { margin: 0 0 6px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.route-card strong { font-family: var(--display); font-size: 16px; }
.route-line { display: grid; grid-template-columns: auto 1fr auto; align-items: center; margin-top: 20px; }
.route-line span { width: 9px; height: 9px; border: 2px solid var(--black); border-radius: 50%; }
.route-line i { height: 1px; background: repeating-linear-gradient(90deg, #989a94 0 4px, transparent 4px 8px); }
.route-labels { display: flex; justify-content: space-between; margin-top: 7px; color: #8a8b86; font-size: 10px; }
.visual-badge {
  position: absolute;
  top: 24%;
  left: -45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
}
.visual-badge strong { font-family: var(--display); font-size: 25px; }
.visual-badge span { font-size: 10px; line-height: 1.35; text-transform: uppercase; }

.service-strip { color: var(--black); background: var(--yellow); }
.service-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 48px), var(--container));
  min-height: 96px;
  margin: auto;
}
.service-strip-inner > p { margin: 0; font-family: var(--display); font-weight: 800; }
.strip-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 30px; }
.strip-items span { font-size: 13px; font-weight: 600; }
.strip-items span::before { content: "•"; margin-right: 10px; }

.section {
  width: min(calc(100% - 48px), var(--container));
  margin: auto;
  padding: 130px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  align-items: end;
  gap: 90px;
}
.section h2,
.business h2,
.cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}
.service-card {
  position: relative;
  min-height: 440px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.52);
}
.service-card-featured { color: var(--white); border-color: var(--black); background: var(--black); }
.service-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #a1a29d;
  font-size: 12px;
  letter-spacing: .12em;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  font-family: var(--display);
  font-weight: 800;
  border-radius: 18px;
  background: var(--yellow);
}
.service-card h3 { margin: 70px 0 16px; font-family: var(--display); font-size: 25px; letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-card-featured p { color: #aeb0aa; }
.service-card a {
  position: absolute;
  bottom: 34px;
  left: 34px;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.service-card a span { margin-left: 8px; }

.business { color: var(--white); background: var(--black); }
.business-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  width: min(calc(100% - 48px), var(--container));
  margin: auto;
  padding: 130px 0;
}
.business-image { position: relative; }
.business-image > img {
  width: 100%;
  aspect-ratio: .88;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  border-radius: 28px;
}
.image-caption {
  position: absolute;
  right: -35px;
  bottom: 35px;
  max-width: 290px;
  padding: 22px 25px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 17px;
}
.image-caption span { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.image-caption strong { font-family: var(--display); font-size: 18px; }
.business-copy .eyebrow { color: var(--yellow); }
.business-lead { max-width: 620px; margin: 27px 0 0; color: #a9aaa5; font-size: 18px; line-height: 1.7; }
.benefit-list { display: grid; gap: 0; margin: 45px 0 34px; padding: 0; list-style: none; }
.benefit-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #30312e;
}
.benefit-list li:last-child { border-bottom: 1px solid #30312e; }
.benefit-list li > span { color: var(--yellow); font-size: 12px; }
.benefit-list strong { font-family: var(--display); font-size: 17px; }
.benefit-list p { margin: 6px 0 0; color: #969792; font-size: 14px; line-height: 1.5; }
.text-link { color: var(--yellow); font-weight: 700; text-underline-offset: 6px; }
.text-link span { margin-left: 8px; }

.advantage-intro { max-width: 900px; }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 75px;
  border-top: 1px solid var(--line);
}
.advantage-grid article {
  min-height: 300px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.advantage-grid article:first-child { padding-left: 0; }
.advantage-grid article:last-child { border-right: 0; }
.advantage-mark { color: #8c8e88; font-size: 12px; }
.advantage-grid h3 { margin: 85px 0 14px; font-family: var(--display); font-size: 20px; }
.advantage-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.cta { padding: 0 24px 24px; background: var(--surface); }
.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  width: min(100%, 1400px);
  min-height: 390px;
  margin: auto;
  padding: 70px clamp(28px, 6vw, 90px);
  background: var(--yellow);
  border-radius: 30px;
}
.cta .eyebrow { color: #625400; }
.cta h2 { color: var(--black); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.button-dark { color: var(--white); background: var(--black); }
.button-dark:hover { background: #2a2a27; }
.cta-email { color: #514600; font-size: 13px; font-weight: 700; }

.site-footer { padding: 80px max(24px, calc((100% - var(--container)) / 2)); color: var(--white); background: var(--black); }
.footer-main { display: grid; grid-template-columns: .8fr 1fr .7fr; align-items: start; gap: 50px; padding-bottom: 70px; }
.footer-brand img { width: 48px; height: 48px; }
.footer-main > p { max-width: 430px; margin: 8px 0 0; color: #949590; line-height: 1.7; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 25px; }
.footer-main nav a { color: #b8b9b4; font-size: 13px; text-decoration: none; }
.footer-main nav a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; color: #73746f; border-top: 1px solid #2e2f2c; font-size: 12px; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr .78fr; }
  .route-card { right: -10px; }
  .visual-badge { left: -20px; }
  .section-heading { gap: 45px; }
  .business-grid { gap: 65px; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid article:nth-child(2) { border-right: 0; }
  .advantage-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 78px; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    background: transparent;
  }
  .menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--white); }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: none;
    align-items: stretch;
    padding: 18px;
    color: var(--white);
    background: #1d1d1b;
    border: 1px solid #393a36;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
  }
  .main-nav.is-open { display: grid; gap: 5px; }
  .main-nav a { padding: 12px; }
  .main-nav .nav-access { margin-top: 6px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(88%, 530px); margin: 20px auto 0; }
  .service-strip-inner { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .strip-items { justify-content: flex-start; }
  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 620px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; }
  .business-grid { grid-template-columns: 1fr; padding: 90px 0; }
  .business-image { width: min(85%, 560px); }
  .image-caption { right: -25px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .nav-wrap,
  .hero-grid,
  .service-strip-inner,
  .section,
  .business-grid { width: min(calc(100% - 32px), var(--container)); }
  .brand span { font-size: 15px; }
  .brand img { width: 40px; height: 40px; border-radius: 11px; }
  .hero-grid { min-height: auto; padding: 125px 0 65px; }
  .hero-copy h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-trust { flex-direction: column; }
  .hero-visual { width: 92%; margin-top: 12px; }
  .route-card { right: -10px; bottom: 25px; }
  .visual-badge { top: 13%; left: -12px; }
  .service-strip-inner { gap: 15px; }
  .strip-items { display: grid; gap: 9px; }
  .section h2, .business h2, .cta h2 { font-size: clamp(38px, 11vw, 52px); }
  .service-grid { margin-top: 45px; }
  .service-card { min-height: 390px; padding: 28px; }
  .service-card a { left: 28px; bottom: 28px; }
  .business-image { width: 92%; }
  .image-caption { right: -12px; bottom: 20px; }
  .advantage-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .advantage-grid article,
  .advantage-grid article:first-child { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .advantage-grid h3 { margin-top: 40px; }
  .cta { padding: 0 12px 12px; }
  .cta-inner { min-height: 440px; padding: 42px 24px; border-radius: 22px; }
  .cta-email { overflow-wrap: anywhere; }
  .site-footer { padding: 60px 24px 35px; }
  .footer-main { padding-bottom: 45px; }
  .footer-main nav { flex-direction: column; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

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