:root {
  --bg: #f4f1ea;
  --ink: #142033;
  --muted: #5f6b7d;
  --line: rgba(20, 32, 51, 0.12);
  --navy: #10233f;
  --navy-deep: #0a1728;
  --gold: #c3a36b;
  --shadow: 0 24px 70px rgba(10, 23, 40, 0.12);
  --radius-md: 20px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(195, 163, 107, 0.16), transparent 28%),
    linear-gradient(180deg, #faf8f3 0%, #f2eee6 100%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(16, 35, 63, 0.06);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(195, 163, 107, 0.18), transparent 32%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #eef4ff;
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.97), rgba(28, 51, 84, 0.94)),
    var(--navy);
  color: #f3f7ff;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.section-dark p,
.section-accent p,
.section-dark .value-card p {
  color: rgba(238, 244, 255, 0.78);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), #b48f57);
  box-shadow: 0 12px 24px rgba(195, 163, 107, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(16, 35, 63, 0.06);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 248, 243, 0.78);
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #1f3555);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark-image {
  padding: 0.35rem;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 12px 28px rgba(10, 23, 40, 0.08);
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: #24324a;
}

.site-nav a:not(.button):hover {
  color: var(--navy);
}

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

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

.hero {
  padding-top: 72px;
}

.hero-grid,
.section-split,
.contact-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-tagline {
  margin: 1.1rem 0 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 62ch;
  margin: 1.1rem 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.brand-positioning {
  margin-top: 1.6rem;
  max-width: 620px;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(10, 23, 40, 0.08);
}

.brand-positioning strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.brand-positioning p {
  margin: 0;
}

.brand-positioning p + p {
  margin-top: 0.45rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-metrics article,
.hero-card,
.service-card,
.value-card,
.process-step,
.industry-card,
.contact-form,
.contact-panel,
.trust-points div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-metrics article,
.hero-card,
.service-card,
.value-card,
.process-step,
.industry-card,
.contact-form,
.contact-panel,
.trust-points div {
  padding: 1.5rem;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.hero-panel {
  display: grid;
  gap: 1.2rem;
}

.hero-logo-panel {
  display: flex;
  justify-content: center;
}

.hero-logo-frame {
  width: min(100%, 320px);
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    radial-gradient(circle at top, rgba(195, 163, 107, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-card-primary {
  background:
    linear-gradient(180deg, rgba(16, 35, 63, 0.96), rgba(24, 44, 71, 0.96)),
    var(--navy);
  color: #ffffff;
  border-color: rgba(195, 163, 107, 0.16);
}

.hero-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.card-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(195, 163, 107, 0.16);
  color: #f2ddba;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--navy);
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(195, 163, 107, 0.14);
}

.signal-list {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.section-copy p + p {
  margin-top: 1rem;
}

.mission-panel,
.about-points article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.mission-panel {
  margin-top: 1.5rem;
  padding: 1.4rem;
}

.mission-panel h3,
.about-points h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.advocates-panel {
  margin-top: 1rem;
}

.leader-profile {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 18px;
  background: rgba(248, 246, 241, 0.9);
}

.leader-profile img {
  width: 140px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 63, 0.1);
}

.leader-copy strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
}

.leader-copy span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.advocates-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.advocates-list li + li {
  margin-top: 0.45rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-points article {
  padding: 1.3rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading.light h2,
.section-heading.light p {
  color: #eef4ff;
}

.section-heading h2,
.section-split h2,
.trust-grid h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.services-grid,
.value-grid,
.process-grid,
.industries-grid,
.division-grid,
.trust-points,
.footer-grid,
.form-grid,
.addon-grid,
.associate-grid {
  display: grid;
  gap: 1.25rem;
}

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

.value-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

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

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.7fr;
}

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

.service-card,
.value-card,
.process-step,
.industry-card,
.trust-points div {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.services-subhead {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.services-subhead h3 {
  font-size: 1.5rem;
  color: var(--navy);
}

.associate-section {
  margin-top: 3rem;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.client-card:hover {
  transform: translateY(-4px);
}

.client-card img {
  width: 100%;
  max-width: 150px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.client-card span {
  margin-top: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}

.section-dark .value-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.service-card:hover,
.value-card:hover,
.process-step:hover,
.industry-card:hover,
.trust-points div:hover {
  transform: translateY(-4px);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #223b60);
  color: var(--gold);
  font-weight: 800;
}

.service-card h3,
.value-card h3,
.process-step h3,
.industry-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.process-step span {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.trust-points strong {
  display: block;
  margin-bottom: 0.55rem;
}

.trust-points span {
  color: rgba(243, 247, 255, 0.78);
  line-height: 1.65;
}

.contact-panel {
  margin: 1.6rem 0;
}

.contact-panel a,
.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"],
.site-footer a[href^="https://maps.google.com"] {
  color: var(--navy);
  font-weight: 700;
}

.contact-panel a:hover,
.site-footer a[href^="tel:"]:hover,
.site-footer a[href^="mailto:"]:hover,
.site-footer a[href^="https://maps.google.com"]:hover {
  color: var(--gold);
}

.cta-line {
  color: var(--navy);
  font-weight: 700;
}

.contact-form span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 14px;
  background: #fcfbf8;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(195, 163, 107, 0.8);
  box-shadow: 0 0 0 4px rgba(195, 163, 107, 0.15);
}

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

.button-submit {
  margin-top: 1rem;
  width: 100%;
}

.site-footer {
  padding: 2rem 0 1rem;
  background: #0a1728;
  color: #eef4ff;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer a {
  color: rgba(238, 244, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
}

.footer-bottom {
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1faa59, #128c49);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(18, 140, 73, 0.28);
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .section-split,
  .contact-grid,
  .trust-grid,
  .services-grid,
  .value-grid,
  .process-grid,
  .industries-grid,
  .division-grid,
  .footer-grid,
  .about-points,
  .addon-grid,
  .associate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics,
  .trust-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .section-split,
  .contact-grid,
  .trust-grid,
  .services-grid,
  .value-grid,
  .process-grid,
  .industries-grid,
  .division-grid,
  .footer-grid,
  .form-grid,
  .trust-points,
  .about-points,
  .addon-grid,
  .associate-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .leader-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-profile img {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 116px;
    min-height: 48px;
    padding: 0 1rem;
  }
}
