:root {
  --ib-ink: #070706;
  --ib-ink-soft: #1a1917;
  --ib-ember: #fea52b;
  --ib-ember-deep: #d88212;
  --ib-ash: #585855;
  --ib-sand: #f4f1ed;
  --ib-mist: #fcfaf7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ib-ink);
  background: radial-gradient(circle at top, #fff3dd 0%, #f6f0e8 35%, #fefaf5 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7, 7, 6, 0.08);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--ib-ember);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--ib-ink);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(7, 7, 6, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(7, 7, 6, 0.2);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: #fff;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ib-ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-drawer {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.75rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  width: min(260px, 80vw);
  box-shadow: 0 18px 34px rgba(7, 7, 6, 0.18);
  display: grid;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 30;
}

.nav-drawer a {
  font-weight: 600;
}

.nav-drawer .drawer-cta {
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ib-ink);
  color: #fff;
}

.nav-toggle:checked ~ .nav-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(7, 7, 6, 0.28);
}

.ghost {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 7, 6, 0.2);
  background: #fff;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(254, 165, 43, 0.25), transparent 60%);
  pointer-events: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 165, 43, 0.45), transparent 70%);
  filter: blur(10px);
  opacity: 0.8;
  animation: float 10s ease-in-out infinite;
}

.hero::before {
  top: -80px;
  left: -120px;
}

.hero::after {
  bottom: -120px;
  right: -140px;
  animation-delay: 2s;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ib-ash);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--ib-ink-soft);
  margin-bottom: 1.8rem;
}

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

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

.hero-metrics span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ib-ember-deep);
}

.hero-metrics p {
  font-size: 0.85rem;
  color: var(--ib-ash);
}

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

.panel-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(7, 7, 6, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(7, 7, 6, 0.1);
  animation: rise 1s ease forwards;
}

.panel-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ib-ash);
}

.panel-card.highlight {
  background: linear-gradient(135deg, rgba(254, 165, 43, 0.16), #fff);
}

section {
  padding: 4.5rem 0;
}

.section-title {
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.section-title h2 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-family: "Playfair Display", "Times New Roman", serif;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-grid article {
  padding: 1.75rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(7, 7, 6, 0.08);
  box-shadow: 0 12px 22px rgba(7, 7, 6, 0.05);
  transition: transform 0.3s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
}

.service-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.capabilities {
  background: var(--ib-mist);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.cap-card {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  background: var(--ib-ink);
  color: #fff;
  overflow: hidden;
}

.cap-card span {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(254, 165, 43, 0.7);
}

.clients {
  background: linear-gradient(145deg, #ffffff 0%, #fff6e6 100%);
}

.client-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(7, 7, 6, 0.12);
  border-bottom: 1px solid rgba(7, 7, 6, 0.12);
  padding: 1.5rem 0;
}

.client-row {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-weight: 600;
  color: var(--ib-ink-soft);
}

.client-row span {
  background: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(7, 7, 6, 0.08);
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.presence-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 20px 36px rgba(7, 7, 6, 0.08);
}

.contact {
  background: var(--ib-ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card a {
  color: var(--ib-ember);
  font-weight: 600;
}

.contact-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.site-footer img {
  margin: 0 auto;
  height: 46px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(24px);
  }
}

@keyframes rise {
  0% {
    transform: translateY(16px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero-grid,
  .presence-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }
}

@media (max-width: 720px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-row {
    animation-duration: 24s;
  }
}
