:root {
  --navy: #0b1f33;
  --navy-soft: #132b42;
  --sand: #d8c3a5;
  --sand-light: #efe3d0;
  --jade: #1f6f5b;
  --gold: #c8a45d;
  --seal: #a83232;
  --ivory: #f7f3ea;
  --white: #fffdf8;
  --ink: #14202b;
  --muted: #65707a;
  --line: rgba(11, 31, 51, 0.12);
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.14);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 164, 93, 0.16), transparent 28rem),
    radial-gradient(circle at 95% 18%, rgba(31, 111, 91, 0.14), transparent 30rem),
    linear-gradient(135deg, #fffaf0 0%, var(--ivory) 42%, #f1eadb 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(11, 31, 51, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(11, 31, 51, 0.035) 87.5%, rgba(11, 31, 51, 0.035)),
    linear-gradient(150deg, rgba(11, 31, 51, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(11, 31, 51, 0.035) 87.5%, rgba(11, 31, 51, 0.035));
  background-size: 84px 146px;
  opacity: 0.42;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: 0.06;
  z-index: -1;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, 0.78);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 164, 93, 0.55);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(216, 195, 165, 0.45));
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.08);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--jade);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--seal);
  stroke: none;
}

.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  color: rgba(20, 32, 43, 0.75);
}

.nav-menu a {
  transition: color 180ms ease;
}

.nav-menu a:hover {
  color: var(--navy);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
  border-radius: 14px;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 84px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 26px -80px 0 -80px;
  overflow: hidden;
  border-radius: 44px;
  opacity: 0.85;
  pointer-events: none;
}

.route-lines {
  width: 100%;
  height: 100%;
}

.route-lines path {
  fill: none;
  stroke: rgba(11, 31, 51, 0.13);
  stroke-width: 1.4;
  stroke-dasharray: 9 13;
}

.route-lines circle {
  fill: var(--gold);
  opacity: 0.65;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 420px;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 16px;
  color: var(--jade);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 6.6rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.3rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  color: rgba(20, 32, 43, 0.74);
  max-width: 760px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #102f4a);
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(11, 31, 51, 0.12);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(239, 227, 208, 0.74)),
    radial-gradient(circle at top right, rgba(168, 50, 50, 0.08), transparent 16rem);
  border: 1px solid rgba(200, 164, 93, 0.34);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 190px;
  height: 190px;
  background:
    linear-gradient(45deg, transparent 46%, rgba(11, 31, 51, 0.08) 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(11, 31, 51, 0.08) 46% 54%, transparent 54%);
  background-size: 28px 28px;
  border-radius: 50%;
  opacity: 0.7;
}

.seal {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--seal);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 26px;
  box-shadow: 0 12px 30px rgba(168, 50, 50, 0.24);
}

.hero-card h2 {
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.hero-card ul {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(20, 32, 43, 0.72);
}

.hero-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.intro,
.services,
.markets,
.industries,
.why,
.founder,
.contact {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.split p,
.section-copy p,
.why-card p,
.founder-card p,
.contact-panel p {
  margin: 0;
  color: rgba(20, 32, 43, 0.73);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.market-panel,
.why-card,
.founder-card,
.contact-panel {
  border: 1px solid rgba(11, 31, 51, 0.1);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.07);
  backdrop-filter: blur(14px);
}

.service-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.market-panel:hover,
.contact-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(11, 31, 51, 0.12);
}

.service-card,
.market-panel,
.contact-link {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--jade);
  background: rgba(31, 111, 91, 0.1);
  font-weight: 800;
  margin-bottom: 42px;
}

.service-card p {
  margin: 16px 0 0;
  color: rgba(20, 32, 43, 0.68);
}

.ornament-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.ornament-band span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--jade), var(--gold), var(--seal));
  opacity: 0.72;
}

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

.market-panel {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border-radius: var(--radius);
}

.market-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -62px auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(200, 164, 93, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.12), transparent 64%);
}

.market-panel p {
  margin: 18px 0 0;
  color: rgba(20, 32, 43, 0.7);
}

.industry-list {
  display: grid;
  gap: 14px;
}

.industry-list div {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(11, 31, 51, 0.1);
}

.industry-list span {
  display: block;
  color: var(--navy);
  font-weight: 820;
  margin-bottom: 6px;
}

.industry-list p {
  margin: 0;
  color: rgba(20, 32, 43, 0.68);
}

.why-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(34px, 7vw, 74px);
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(19, 43, 66, 0.94)),
    radial-gradient(circle at top right, rgba(200, 164, 93, 0.45), transparent 20rem);
}

.why-card .section-kicker,
.why-card h2,
.why-card p,
.why-card blockquote {
  color: var(--white);
}

.why-card p {
  max-width: 860px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.74);
}

.why-card blockquote {
  max-width: 900px;
  margin: 42px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.18;
}

.founder-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 44px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.founder-monogram {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 253, 248, 0.24), transparent 30%),
    linear-gradient(135deg, var(--jade), var(--navy));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  box-shadow: 0 20px 50px rgba(11, 31, 51, 0.18);
}

.founder-card p {
  margin-top: 20px;
  max-width: 850px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(239, 227, 208, 0.72)),
    radial-gradient(circle at top left, rgba(31, 111, 91, 0.12), transparent 18rem);
}

.contact-panel p {
  margin-top: 20px;
  max-width: 680px;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: block;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(11, 31, 51, 0.1);
  color: var(--navy);
  font-weight: 720;
}

.contact-link span {
  display: block;
  margin-bottom: 5px;
  color: var(--jade);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer {
  padding: 46px 0 54px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(11, 31, 51, 0.12);
  color: rgba(20, 32, 43, 0.66);
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

.copyright {
  text-align: right;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .contact-panel,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .cards-grid,
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .copyright {
    text-align: left;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(11, 31, 51, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 48px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-card {
    padding: 26px;
  }

  .intro,
  .services,
  .markets,
  .industries,
  .why,
  .founder,
  .contact {
    padding: 58px 0;
  }

  .cards-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

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

  .card-number {
    margin-bottom: 28px;
  }

  .founder-monogram {
    width: 120px;
    height: 120px;
    font-size: 2.35rem;
  }
}

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

  .reveal,
  .button,
  .service-card,
  .market-panel,
  .contact-link {
    transition: none;
  }
}
