:root {
  --navy: #16324f;
  --navy-deep: #0f2439;
  --charcoal: #23272c;
  --slate: #68717b;
  --gold: #b08d57;
  --cream: #f7f5f1;
  --paper: #fffefb;
  --line: rgba(22, 50, 79, 0.12);
  --shadow: 0 24px 60px rgba(22, 50, 79, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 50, 79, 0.08);
  background: rgba(255, 254, 251, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.brand-name {
  letter-spacing: -0.025em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 141, 87, 0.13), transparent 25%),
    linear-gradient(180deg, #fffefb 0%, #f7f5f1 100%);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding: 88px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.approach-grid h2,
.contact-card h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  color: var(--navy-deep);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 6.5vw, 82px);
  font-weight: 600;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
}

.hero-panel {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(22, 50, 79, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    linear-gradient(160deg, #e8edf1, #f5efe7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-orbit {
  position: absolute;
  border: 1px solid rgba(22, 50, 79, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -70px;
}

.orbit-two {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: -60px;
}

.panel-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(22, 50, 79, 0.12);
}

.card-main {
  top: 85px;
  left: 58px;
  right: 58px;
  padding: 32px;
  border-radius: 24px;
}

.card-label {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-main strong {
  display: block;
  color: var(--navy-deep);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.card-small {
  right: 34px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.approach-grid h2,
.contact-card h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.service-card {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.service-number {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 55px 0 14px;
  color: var(--navy-deep);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--slate);
}

.section-soft {
  background: var(--cream);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

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

.approach-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.approach-row > span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.approach-row h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
}

.approach-row p {
  margin: 8px 0 0;
  color: var(--slate);
}

.contact-section {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: end;
  padding: 58px;
  border-radius: 30px;
  background: var(--navy-deep);
  color: white;
  box-shadow: var(--shadow);
}

.eyebrow-light {
  color: #d2b37c;
}

.contact-card h2 {
  color: white;
  max-width: 620px;
}

.contact-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
}

.contact-link span:first-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-link strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.site-footer {
  padding: 40px 0 48px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.footer-wrap strong {
  color: var(--navy);
  font-family: Manrope, Inter, sans-serif;
}

.footer-wrap p {
  margin: 5px 0 0;
  color: var(--slate);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-grid,
  .approach-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
    padding-top: 72px;
  }

  .hero-panel {
    min-height: 390px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 30px;
  }

  .approach-grid {
    gap: 52px;
  }

  .contact-card {
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-name {
    font-size: 14px;
  }

  .nav {
    gap: 16px;
  }

  .nav a:not(:last-child) {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-panel {
    min-height: 330px;
    border-radius: 26px;
  }

  .card-main {
    top: 54px;
    left: 24px;
    right: 24px;
    padding: 24px;
  }

  .card-small {
    right: 18px;
    bottom: 24px;
  }

  .section {
    padding: 80px 0;
  }

  .contact-card {
    padding: 34px 24px;
    border-radius: 24px;
  }

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

  .contact-link span:first-child {
    grid-column: 1 / -1;
  }

  .footer-wrap {
    display: block;
  }

  .footer-wrap > p {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
