:root {
  --bg: #f6f7f6;
  --surface: #ffffff;
  --surface-soft: #caffef;
  --ink: #071c1d;
  --muted: rgba(7, 28, 29, 0.64);
  --line: rgba(7, 28, 29, 0.12);
  --control-grey: #eceeed;
  --control-grey-hover: #e2e5e4;
  --accent: #00c9a2;
  --accent-soft: #caffef;
  --accent-dark: #071c1d;
  --gold: #00c9a2;
  --shadow: 0 20px 52px rgba(7, 28, 29, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Host Grotesk", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

img,
svg {
  max-width: 100%;
}

.icon-sprite {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

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

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--max-width);
  padding: 0.7rem 1rem 0.6rem;
  width: 100%;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 44px;
  flex-direction: column;
  gap: 0.24rem;
  height: 44px;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 18px;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.logo {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 36px;
  text-transform: uppercase;
}

.site-nav {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  flex: 1 1 100%;
  gap: 0.2rem;
  margin-top: 0.45rem;
  min-width: 0;
  padding: 0.45rem;
  width: 100%;
}

.js .site-nav {
  display: none;
}

.js .site-header.nav-open .site-nav {
  display: grid;
}

.site-nav a {
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  justify-content: flex-start;
  letter-spacing: 0.02em;
  min-height: 44px;
  min-width: 0;
  padding: 0.7rem 0.8rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 3.4rem 1rem;
  scroll-margin-top: 7.5rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: 1.75rem;
  padding-bottom: 3.75rem;
  padding-top: 38px;
}

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

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

h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 0.94;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: 2.12rem;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  max-width: 13ch;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 0.8rem;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.button {
  border: 1px solid var(--accent);
  border-radius: 6px;
  display: inline-flex;
  flex: 1 1 8.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.01em;
  min-height: 48px;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.button:focus-visible,
.contact-links a:focus-visible {
  outline-width: 3px;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  border-color: rgba(7, 28, 29, 0.22);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-1px);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: calc(1.1rem - 9px) 1.1rem;
}

.hero-content,
.hero-panel,
.section-split > *,
.card,
.service-item,
.holder-card-copy,
.contact-content,
.contact-links {
  min-width: 0;
}

.profile-photo {
  aspect-ratio: 4 / 3;
  background: var(--control-grey);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 1.1rem;
  overflow: hidden;
  width: 100%;
}

.profile-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.identity-row {
  align-items: center;
  display: flex;
  margin-bottom: 1.1rem;
}

.panel-name,
.panel-role {
  margin: 0;
}

.panel-name {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.panel-role {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.summary-list {
  display: grid;
  gap: 0;
}

.summary-list p {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.12rem;
  margin: 0;
  padding: 0.9rem 0.2rem;
}

.summary-list strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.summary-list span,
.section-copy,
.section-intro,
.brand-category,
.card p,
.brand-website.placeholder,
.brand-socials span,
.service-item p,
.contact-content p,
.site-footer {
  color: var(--muted);
}

.section-split {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2.25rem;
}

.section-copy {
  font-size: 1.06rem;
  line-height: 1.72;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 2.1rem;
  max-width: 50rem;
}

.section-heading h2 {
  max-width: 15ch;
}

.section-intro {
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 36rem;
}

.purpose-section {
  border-top: 1px solid var(--line);
}

.card-grid,
.service-list {
  display: grid;
  gap: 1.15rem;
}

.card,
.service-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.45rem;
}

.card-number {
  color: var(--gold);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.card p,
.service-item p {
  margin-bottom: 0;
}

.purpose-card {
  padding: 1.55rem;
}

.purpose-card .card-number {
  margin-bottom: 0.85rem;
}

.purpose-card h3 {
  font-size: 1.22rem;
  max-width: 28rem;
}

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

.brand-family {
  display: grid;
  gap: 0;
}

.holder-card {
  border-color: rgba(0, 201, 162, 0.36);
  box-shadow: var(--shadow);
  margin-bottom: 0;
}

.holder-card .card-number {
  color: var(--accent);
  margin-bottom: 1rem;
}

.holder-logo-frame {
  height: 6.5rem;
}

.holder-note {
  line-height: 1.68;
  margin-bottom: 1.15rem;
  max-width: 38rem;
}

.holder-card .brand-website {
  margin-top: 0;
}

.holder-card .brand-category {
  margin-bottom: 0.85rem;
  min-height: 0;
}

.child-brand-group {
  padding-top: 1.4rem;
  position: relative;
}

.child-brand-group::before {
  background: var(--line);
  content: "";
  height: 1.4rem;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}

.child-brand-label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.05rem;
  text-transform: uppercase;
}

.child-brand-label::before,
.child-brand-label::after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
}

.brand-logo-frame {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  height: 5.75rem;
  justify-content: center;
  margin-bottom: 1.1rem;
  padding: 0.95rem;
  width: 100%;
}

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

.logo-placeholder {
  border-style: dashed;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.brand-card h3 {
  margin-bottom: 0.3rem;
}

.brand-category {
  font-weight: 600;
  line-height: 1.42;
  margin-bottom: 1.85rem;
  min-height: 3.05em;
}

.brand-website,
.brand-socials a,
.brand-socials span {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 0.62rem 0.72rem;
  text-align: center;
}

.brand-website {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #ffffff;
  margin-bottom: 0.8rem;
  margin-top: 0;
  width: 100%;
}

.brand-website:not(.placeholder):hover {
  background: #113335;
  border-color: #113335;
  color: #ffffff;
}

.brand-website.placeholder {
  background: var(--control-grey);
  border: 1px solid var(--line);
  border-style: dashed;
  font-weight: 600;
}

.brand-socials {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(6.5rem, 1fr));
}

.brand-socials a {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 28, 29, 0.12);
  color: rgba(7, 28, 29, 0.78);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.brand-socials a:hover {
  background: var(--surface);
  border-color: rgba(7, 28, 29, 0.22);
  color: var(--ink);
  transform: translateY(-1px);
}

.brand-socials .social-button {
  gap: 0.45rem;
}

.social-mark {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 1.15rem;
  min-width: 1.15rem;
}

.social-icon {
  border-radius: 4px;
  display: block;
  flex: 0 0 auto;
  height: 1.08rem;
  width: 1.08rem;
}

.brand-socials .social-facebook {
  background: rgba(24, 119, 242, 0.045);
  border-color: rgba(24, 119, 242, 0.2);
}

.brand-socials .social-facebook:hover {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.36);
}

.brand-socials .social-instagram {
  background: rgba(228, 64, 95, 0.045);
  border-color: rgba(228, 64, 95, 0.2);
}

.brand-socials .social-instagram .social-icon {
  background: radial-gradient(
    circle at 30% 105%,
    #feda75 0 28%,
    #fa7e1e 42%,
    #d62976 66%,
    #962fbf 82%,
    #4f5bd5 100%
  );
}

.brand-socials .social-instagram:hover {
  background: rgba(228, 64, 95, 0.08);
  border-color: rgba(228, 64, 95, 0.34);
}

.brand-socials .social-tiktok {
  background: rgba(7, 28, 29, 0.045);
  border-color: rgba(7, 28, 29, 0.16);
}

.brand-socials .social-tiktok:hover {
  background: rgba(7, 28, 29, 0.075);
  border-color: rgba(7, 28, 29, 0.28);
}

.brand-socials span {
  background: var(--control-grey);
  border: 1px solid var(--line);
  border-style: dashed;
  font-weight: 600;
}

.service-item {
  background: linear-gradient(90deg, var(--accent-soft) 0 4px, var(--surface) 4px);
}

.contact-section {
  align-items: start;
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 3.25rem;
  padding-top: 3.25rem;
}

.contact-section .eyebrow {
  color: var(--accent);
}

.contact-section a:focus-visible {
  outline-color: var(--accent);
}

.contact-section h2 {
  max-width: 12ch;
}

.contact-content p {
  color: var(--accent-soft);
  max-width: 35rem;
}

.contact-links {
  display: grid;
  gap: 0.85rem;
}

.contact-links a,
.contact-links span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  display: block;
  font-weight: 600;
  padding: 1rem 1.1rem;
}

.contact-links a {
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-links span {
  border-style: dashed;
  color: var(--accent-soft);
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(0, 201, 162, 0.55);
  transform: translateY(-1px);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 1.5rem 1rem 2rem;
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 1.15rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 380px) {
  .section,
  .site-header-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .card,
  .service-item {
    padding: 1.25rem;
  }

  .brand-socials {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 720px) {
  .site-header-inner {
    gap: 1rem 1.25rem;
    padding: 0.9rem 2rem;
  }

  .logo {
    font-size: 1.08rem;
    min-height: 44px;
  }

  .nav-toggle {
    display: none;
  }

  .js .site-nav,
  .site-nav {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex: 1 1 16rem;
    flex-wrap: wrap;
    gap: 0.45rem 1.1rem;
    justify-content: flex-end;
    margin-top: 0;
    padding: 0;
    width: auto;
  }

  .site-nav a {
    border-radius: 0;
    font-size: 0.82rem;
    justify-content: center;
    letter-spacing: 0.03em;
    min-height: 44px;
    min-width: 44px;
    padding: 0.7rem 0.1rem;
  }

  .site-nav a:hover {
    background: transparent;
  }

  .section {
    padding: 5.75rem 2rem;
    scroll-margin-top: 7rem;
  }

  h1 {
    font-size: 5.8rem;
    line-height: 0.9;
  }

  h2 {
    font-size: 3.35rem;
    line-height: 0.98;
  }

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

  .hero {
    grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
    gap: 2.75rem;
    min-height: min(700px, calc(100vh - 72px));
    padding-bottom: 5.25rem;
    padding-top: 38px;
  }

  .profile-photo {
    aspect-ratio: 1;
  }

  .section-split,
  .contact-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .card-grid {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .holder-card {
    align-items: center;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(13rem, 0.42fr) minmax(0, 1fr);
  }

  .holder-card .card-number {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .holder-logo-frame {
    height: 7.25rem;
    margin-bottom: 0;
  }

  .child-brand-group {
    padding-top: 1.55rem;
  }

  .child-brand-group::before {
    height: 1.55rem;
  }

  .child-brand-label {
    margin-bottom: 1.25rem;
  }

  .service-list {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1040px) {
  .site-nav {
    gap: 1.5rem;
  }

  h1 {
    font-size: 8.2rem;
  }

  h2 {
    font-size: 4.4rem;
  }

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

  .hero-panel {
    padding: calc(1.25rem - 9px) 1.25rem;
  }

  .card-grid {
    gap: 1.15rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
