:root {
  --ink: #121416;
  --graphite: #20252a;
  --muted: #65717b;
  --line: #dce4e6;
  --paper: #f8faf7;
  --white: #ffffff;
  --teal: #006c67;
  --teal-soft: #dff0ed;
  --gold: #c89a3b;
  --gold-soft: #f6ead0;
  --coral: #dd6b57;
  --shadow: 0 24px 70px rgba(18, 20, 22, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: #111416;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 19, 22, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #111416;
  background: linear-gradient(145deg, #d6a84a, #f3d686);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  max-width: 190px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 32px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(16, 19, 22, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.site-nav a {
  padding: 8px 2px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 19, 22, 0.72);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 54px;
  color: var(--white);
  background: #111416;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.96) 0%, rgba(10, 13, 16, 0.9) 36%, rgba(10, 13, 16, 0.48) 68%, rgba(10, 13, 16, 0.1) 100%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.16) 0%, rgba(10, 13, 16, 0.2) 56%, rgba(10, 13, 16, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-logo {
  width: min(172px, 42vw);
  margin-bottom: 26px;
  padding: 0;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.42));
}

.hero-logo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

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

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 6.2vw, 5.7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 span {
  color: var(--gold);
  font-style: italic;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(200, 154, 59, 0.35);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 20, 22, 0.14);
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #e4b24d, #f5d98b);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip div {
  min-height: 132px;
  padding: clamp(22px, 3vw, 34px);
  background: #15191d;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.section,
.method-section,
.insights-section,
.contact-section {
  padding: clamp(68px, 9vw, 122px) clamp(18px, 5vw, 72px);
}

.section-kicker,
.section-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.55fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
}

.section-kicker .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p,
.story-copy p,
.method-intro p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.audience-grid article,
.service-card,
.insight-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 20, 22, 0.05);
}

.audience-grid article {
  min-height: 280px;
  padding: 24px;
}

.audience-grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 900;
}

.audience-grid p,
.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.statement-band {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 7vw, 112px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 108, 103, 0.98), rgba(32, 37, 42, 0.98)),
    var(--teal);
}

.statement-band p {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.statement-band h2 {
  width: min(980px, 100%);
  margin-bottom: 0;
}

.solutions-section {
  background: #eef5f3;
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 108, 103, 0.18);
  border-radius: 999px;
  color: var(--teal);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.tab.is-active {
  color: var(--white);
  background: var(--teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 205px;
  padding: 22px;
  transition: opacity 150ms ease, transform 150ms ease;
}

.service-card.is-hidden {
  display: none;
}

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

.method-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 96px);
  color: var(--white);
  background: var(--graphite);
}

.method-intro {
  max-width: 520px;
}

.method-intro p {
  color: rgba(255, 255, 255, 0.74);
}

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

.method-steps article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.method-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.method-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 0.8fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
  background: var(--white);
}

.story-card {
  max-width: 440px;
  margin-inline: auto;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: #151c22;
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.story-copy {
  max-width: 720px;
}

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

.section-heading.compact {
  display: block;
}

.section-heading.compact h2 {
  max-width: 760px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.insight-grid article {
  min-height: 210px;
  padding: 24px;
}

.insight-grid span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  color: var(--white);
  background: #121416;
}

.contact-copy,
.contact-form {
  width: min(100%, 620px);
}

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

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(200, 154, 59, 0.2);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 800;
  line-height: 1.45;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #168c4a;
  box-shadow: 0 16px 38px rgba(18, 20, 22, 0.26);
  font-size: 0.9rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #0d0f11;
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .section-kicker,
  .section-heading,
  .method-section,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-kicker .eyebrow,
  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .contact-copy,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .nav-toggle {
    position: fixed;
    top: 12px;
    right: 14px;
  }

  .brand small {
    max-width: 155px;
  }

  .hero {
    max-width: 100vw;
    min-height: 88svh;
    padding: 96px 18px 54px;
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 13, 16, 0.96) 0%, rgba(10, 13, 16, 0.84) 62%, rgba(10, 13, 16, 0.36) 100%),
      linear-gradient(180deg, rgba(10, 13, 16, 0.22) 0%, rgba(10, 13, 16, 0.24) 48%, rgba(10, 13, 16, 0.92) 100%);
  }

  .hero-logo {
    width: 118px;
    margin-bottom: 18px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
    line-height: 0.95;
    word-break: normal;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
    font-size: 1rem;
  }

  .hero-points {
    gap: 7px;
  }

  .hero-points span {
    min-height: 31px;
    font-size: 0.76rem;
  }

  .proof-strip span,
  .audience-grid p,
  .service-card p {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .audience-grid,
  .services-grid,
  .method-steps,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .audience-grid article,
  .service-card,
  .method-steps article,
  .insight-grid article {
    min-height: auto;
  }

  .audience-grid span,
  .insight-grid span {
    margin-bottom: 30px;
  }

  .floating-whatsapp {
    display: none;
  }

  .site-footer {
    padding-bottom: 82px;
  }
}
