:root {
  --bg: #07111d;
  --bg-soft: #0d1a2d;
  --panel: rgba(9, 19, 34, 0.88);
  --panel-soft: rgba(12, 25, 43, 0.78);
  --panel-strong: #0e1b2d;
  --text: #eef4fb;
  --muted: #99abc1;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c8aa74;
  --accent-soft: rgba(200, 170, 116, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Public Sans", sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(200, 170, 116, 0.16), transparent 20%),
    radial-gradient(circle at 88% 8%, rgba(57, 90, 140, 0.18), transparent 22%),
    linear-gradient(180deg, #0b1728 0%, var(--bg) 55%, #040a12 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.background-orb {
  position: fixed;
  z-index: 0;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.5;
}

.background-orb-left {
  top: -8rem;
  left: -8rem;
  background: rgba(200, 170, 116, 0.18);
}

.background-orb-right {
  right: -8rem;
  top: 14rem;
  background: rgba(66, 100, 154, 0.18);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.hero,
.section,
.site-footer,
.trust-strip {
  animation: rise 700ms ease both;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(145deg, #d4b57d, #947247);
  color: #101724;
  overflow: hidden;
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.nav a,
.footer-links a,
.contact-details a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover,
.footer-links a:hover,
.contact-details a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-copy,
.hero-card,
.section,
.site-footer,
.trust-strip {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 76px 64px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.18;
}

.hero-persona {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-persona p {
  margin: 0;
  color: #d9e2ef;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-text,
.service-card p,
.principles-list li,
.process-card p,
.focus-card p,
.contact-panel p,
.site-footer p,
.feature-band p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 30px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

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

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

.button-primary {
  background: linear-gradient(145deg, #d3b47a, #eed6a7);
  color: #101827;
  box-shadow: 0 18px 32px rgba(200, 170, 116, 0.18);
}

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

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(200, 170, 116, 0.14), transparent 30%),
    linear-gradient(180deg, #0b1524, #091220);
}

.panel-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 28px;
}

.hero-stat-list {
  display: grid;
  gap: 18px;
}

.hero-stat-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-stat-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stat-list p {
  margin: 0;
  color: #cfdae9;
  line-height: 1.7;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 24px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(7, 17, 29, 0.62);
}

.trust-strip p {
  margin: 0;
  color: #cdd7e5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  margin-bottom: 24px;
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--panel-soft);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.feature-band article,
.service-card,
.principles-card,
.process-card article,
.focus-card,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.feature-band article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-band span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.feature-band h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-band p {
  margin: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.section-header h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

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

.service-card,
.focus-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.service-card h3,
.principles-card h3,
.process-card h3,
.focus-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.about-layout,
.split-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 18px;
}

.about-card,
.experience-list article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.about-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.about-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.about-card p:last-child {
  margin-bottom: 0;
}

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

.experience-list article {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}

.experience-list h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.experience-list p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.experience-list p:last-child {
  margin-bottom: 0;
}

.principles-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.principles-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
}

.principles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(145deg, #d3b47a, #f2ddb0);
  transform: translateY(-50%);
}

.process-card {
  display: grid;
  gap: 14px;
}

.process-card article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.process-card span {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-details a {
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-details p,
.site-footer p {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px;
  border-radius: var(--radius-xl);
  background: rgba(7, 17, 29, 0.72);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-title {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta {
  align-items: flex-end;
  max-width: 34ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.site-footer p:last-child {
  max-width: 48ch;
  text-align: right;
}

.legal-section h1 {
  max-width: none;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-copy {
  max-width: 72ch;
}

.legal-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy a {
  color: var(--text);
  text-decoration: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .feature-band,
  .split-layout,
  .service-grid,
  .focus-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 48px 40px;
  }

  .contact-details {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    padding-top: 14px;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
  }

  .hero-copy,
  .hero-card,
  .section {
    padding: 26px;
  }

  .feature-band {
    padding: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px;
  }

  .footer-meta {
    align-items: flex-start;
    max-width: none;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  h1,
  .section-header h2 {
    max-width: none;
  }
}
