:root {
  --navy: #0f171e;
  --navy-2: #15232b;
  --ink: #16202a;
  --muted: #687580;
  --line: #dfe5e8;
  --paper: #ffffff;
  --soft: #f4f0e8;
  --soft-2: #eef4f1;
  --gold: #c7a86a;
  --gold-2: #a88743;
  --teal: #4f8582;
  --shadow: 0 24px 70px rgba(15, 23, 30, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: var(--paper);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(15, 23, 30, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(199, 168, 106, 0.68);
  background: #050609;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: 135%;
  height: 135%;
  object-fit: cover;
  object-position: center 24%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 168, 106, 0.5);
  background: transparent;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 30, 0.98) 0%, rgba(15, 23, 30, 0.92) 46%, rgba(15, 23, 30, 0.72) 100%),
    radial-gradient(circle at 76% 22%, rgba(199, 168, 106, 0.24), transparent 30%),
    radial-gradient(circle at 85% 82%, rgba(79, 133, 130, 0.32), transparent 34%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 76px 76px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(300px, 380px);
  gap: 72px;
  align-items: center;
  padding: 150px 0 86px;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 5.15rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 3.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  color: #efe5d0;
  font-size: 1.17rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.13rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--gold);
}

.btn-primary:hover {
  background: #d8bb7b;
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-panel {
  width: 100%;
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-logo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 168, 106, 0.28);
  border-radius: var(--radius);
  background: #050609;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-lines {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-lines span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.panel-lines strong {
  text-align: right;
}

.trust-band {
  padding: 28px 0;
  color: var(--paper);
  background: #0a1016;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.trust-grid div {
  padding: 22px;
  background: #101a22;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.section {
  padding: 106px 0;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  max-width: 760px;
  margin: -24px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

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

.service-card,
.outcome-grid article {
  min-height: 232px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 30, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(15, 23, 30, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.lead,
.approach-box p,
.contact-copy p,
.outcome-grid p,
.principles p,
.faq-list p,
.process-list p {
  color: var(--muted);
}

.section-situations {
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 58%, var(--soft-2) 58%, var(--soft-2) 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.lead {
  max-width: 620px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(15, 23, 30, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(15, 23, 30, 0.06);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, var(--paper) 45% 56%, transparent 57%),
    var(--teal);
}

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

.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
}

.outcome-grid article {
  min-height: 220px;
  background: linear-gradient(180deg, #fff, #fbfcfc);
}

.outcome-grid strong {
  display: block;
  margin-bottom: 40px;
  color: var(--ink);
  font-size: 1.14rem;
}

.section-dark {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(15, 23, 30, 0.98), rgba(15, 23, 30, 0.94)),
    linear-gradient(90deg, var(--navy), var(--navy-2));
}

.collab-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.collab-card.featured {
  background: linear-gradient(160deg, rgba(199, 168, 106, 0.22), rgba(255, 255, 255, 0.07));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.collab-label {
  width: fit-content;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(199, 168, 106, 0.62);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.collab-card p:not(.collab-label) {
  color: rgba(255, 255, 255, 0.74);
}

.scope-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.scope-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.collab-card div {
  margin-top: auto;
  padding-top: 26px;
}

.collab-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collab-card strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  line-height: 1.4;
}

.collab-card small {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #efe5d0;
  font-weight: 900;
}

.collab-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 0.55fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-list strong {
  font-size: 1.16rem;
  line-height: 1.35;
}

.process-list p {
  margin-bottom: 0;
}

.approach-section {
  background: linear-gradient(135deg, var(--soft-2), var(--soft));
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  align-items: stretch;
}

.approach-box,
.principles {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.approach-box {
  padding: 62px;
}

.approach-box p {
  max-width: 780px;
  font-size: 1.22rem;
}

.principles {
  display: grid;
  align-content: stretch;
}

.principles div {
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.principles div:last-child {
  border-bottom: 0;
}

.principles span {
  color: var(--gold-2);
  font-weight: 900;
}

.principles strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.14rem;
}

.principles p {
  margin-bottom: 0;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
}

.faq-list p {
  margin-bottom: 0;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 58px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card strong {
  font-size: 1.2rem;
}

.contact-card a,
.contact-card span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

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

.contact-form .hidden-field {
  display: none;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcfc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 168, 106, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.contact-form .btn-primary {
  width: 100%;
  border: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0a1016;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1200px) {
  .hero-panel {
    display: none;
  }

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

  .hero-content {
    display: block;
    max-width: 760px;
  }

  h1 {
    font-size: 4.85rem;
  }
}

@media (max-width: 940px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(15, 23, 30, 0.08);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(15, 23, 30, 0.98) 0%, rgba(15, 23, 30, 0.92) 60%, rgba(15, 23, 30, 0.82) 100%),
      radial-gradient(circle at 76% 24%, rgba(199, 168, 106, 0.18), transparent 30%),
      radial-gradient(circle at 82% 82%, rgba(79, 133, 130, 0.24), transparent 34%);
  }

  .hero-content {
    padding: 138px 0 76px;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .trust-grid,
  .service-grid,
  .collab-grid,
  .outcome-grid,
  .split-layout,
  .approach-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .process-list li {
    grid-template-columns: 54px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

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

  .section {
    padding: 76px 0;
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 3.08rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.14rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .trust-grid div,
  .service-card,
  .collab-card,
  .outcome-grid article,
  .faq-list article {
    min-height: auto;
    padding: 22px;
  }

  .approach-box {
    padding: 32px;
  }

  .approach-box p {
    font-size: 1.06rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .full {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
