:root {
  --navy-950: #071121;
  --navy-900: #0b1730;
  --navy-850: #11203b;
  --navy-800: #172641;
  --navy-700: #243451;
  --gold-500: #c6a15a;
  --gold-400: #d4b87e;
  --gold-200: #efe3c9;
  --stone-50: #faf8f4;
  --stone-100: #f4f0ea;
  --stone-200: #ece6dc;
  --ink-900: #1d2433;
  --ink-700: #5f6776;
  --line-light: rgba(16, 25, 43, 0.1);
  --line-dark: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 24px 56px rgba(8, 17, 33, 0.08);
  --shell: 1180px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background: var(--stone-50);
  line-height: 1.65;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

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

.utility-bar {
  background: #04080f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.utility-inner a {
  color: var(--gold-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 23, 48, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand-logo {
  display: block;
  width: 194px;
  height: auto;
}

.brand-word {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-logo-footer {
  width: 216px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.button-outline {
  border: 1px solid rgba(198, 161, 90, 0.5);
  color: var(--gold-400);
}

.button-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.button-dark {
  width: 100%;
  background: var(--navy-900);
  color: var(--gold-400);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-900) 0%, #0a1730 100%);
  background-size: 120px 120px, 120px 120px, auto;
  color: #fff;
  padding: 64px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-company {
  display: block;
  margin-bottom: 16px;
  max-width: 28ch;
  color: var(--gold-400);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.section-kicker-dark {
  color: var(--gold-400);
}

.hero h1,
.section-head h2,
.about-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 span,
.section-head h2 span,
.about-copy h2 span,
.contact-copy h2 span {
  color: var(--gold-500);
  font-style: italic;
}

.hero-text {
  max-width: 50ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong,
.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-500);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  max-width: 17ch;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-side {
  min-height: 100%;
}

.hero-side-frame {
  height: 100%;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.frame-label {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-side-frame ul {
  display: grid;
  gap: 18px;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
}

.hero-side-frame li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: #fff;
}

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

.section-dark {
  background: var(--navy-900);
  color: #fff;
}

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

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  color: var(--navy-900);
  font-size: clamp(2.7rem, 4vw, 4.1rem);
}

.section-head-dark h2 {
  color: #fff;
}

.section-head p,
.about-copy p,
.contact-copy p,
.footer-brand p {
  color: var(--ink-700);
}

.section-head-dark p,
.section-head-dark .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.section-head-centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section-head-centered .section-kicker {
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.about-flow {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.flow-card {
  width: min(100%, 330px);
  padding: 32px 28px;
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.flow-card h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.flow-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.flow-connector {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
  font-size: 1.15rem;
}

.about-copy > p {
  margin-top: 16px;
}

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

.feature-tile {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--line-light);
  background: #fbfaf8;
  color: var(--ink-900);
  font-size: 0.93rem;
  font-weight: 600;
  position: relative;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold-500);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat-card {
  padding: 20px 18px;
  background: var(--navy-900);
  color: #fff;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 30px 28px;
  border: 1px solid rgba(16, 25, 43, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 17, 33, 0.03);
}

.service-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #f3ead8;
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-card h3,
.process-step h3,
.capability-card h3,
.contact-copy h3,
.footer-links h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.service-card p,
.process-step p,
.capability-card p,
.contact-form label span,
.form-note {
  color: var(--ink-700);
}

.service-card ul {
  margin-top: 18px;
  padding-left: 18px;
  color: var(--ink-900);
}

.service-card li {
  margin-top: 8px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.capability-card {
  padding: 28px 22px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
}

.capability-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(198, 161, 90, 0.4);
  color: var(--gold-400);
  border-radius: 50%;
  font-size: 0.88rem;
}

.capability-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.35rem;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 58px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 1px;
  background: var(--stone-200);
}

.process-step {
  position: relative;
  padding-top: 58px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-step p {
  margin-top: 12px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.92fr);
  gap: 70px;
  align-items: start;
}

.contact-copy h3 {
  margin-top: 24px;
  color: var(--navy-900);
}

.contact-copy > p:last-of-type {
  margin-top: 14px;
}

.contact-points {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.contact-point {
  display: flex;
  align-items: start;
  gap: 14px;
}

.contact-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #f0e8d7;
  color: var(--gold-500);
  font-weight: 800;
}

.contact-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label span {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(16, 25, 43, 0.12);
  background: #fff;
  color: var(--ink-900);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  min-height: 24px;
  margin-top: 12px;
  font-size: 0.92rem;
}

.site-footer {
  background: var(--navy-900);
  color: #fff;
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 56px;
  padding-bottom: 28px;
}

.footer-brand p {
  max-width: 42ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links h3 {
  margin-bottom: 4px;
  color: var(--gold-400);
  font-size: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .service-grid,
  .process-grid,
  .about-stats,
  .hero-stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding-top: 66px;
  }

  .step-number {
    left: 0;
    transform: none;
  }

  .process-step {
    text-align: left;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .utility-inner {
    flex-direction: column;
    align-items: start;
  }

  .nav-shell {
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(7, 17, 33, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .hero {
    padding: 46px 0 56px;
  }

  .brand-logo {
    width: 148px;
  }

  .hero-company {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    line-height: 1.55;
  }

  .hero h1,
  .section-head h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 3.2rem;
  }

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

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

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

  .contact-point a,
  .footer-base a,
  .footer-base p {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .hero-side-frame {
    min-height: auto;
  }

  .hero h1,
  .section-head h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.7rem;
  }
}
