/* Megapol Legal Consultancy — design tokens measured from Paksoy DNA, Megapol brand colors. */

:root {
  --navy: #0d1b2a;
  --cream: #faf8f4;
  --surface-2: #f3f1ec;
  --ink: #1b1d1f;
  --black: #000000;
  --white: #ffffff;
  --gray-500: #969696;
  --gray-400: #777777;
  --border: #dddddd;
  --hairline: #eaeaea;
  --hero-bg: #101213;
  --hero-bg-inner: #141618;
  --input-border: #eaeaea;
  --ease: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --duration: 0.2s;
  --container: 1404px;
  --gutter: 36px;
  --gutter-sm: 18px;
  --space-1: 36px;
  --space-2: 72px;
  --space-3: 108px;
  --space-4: 144px;
  --header-h: 90px;
  --header-h-shrink: 66px;
  --font: "Inter", Arial, sans-serif;
  --radius-input: 2px;
  --radius-btn: 8px;
}

@media (max-width: 959px) {
  :root {
    --header-h: 64px;
    --header-h-shrink: 64px;
    --gutter-sm: 16px;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10000;
  background: var(--navy);
  color: var(--cream);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

@media (max-width: 569px) {
  .container {
    padding-inline: var(--gutter-sm);
  }
}

.section {
  padding: var(--space-2) 0;
}

.section--tight {
  padding: var(--space-1) 0;
}

.section--alt {
  background: var(--surface-2);
}

.section--white {
  background: var(--white);
}

/* Typography roles */

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 14px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 18px;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: var(--hairline);
  margin-top: 18px;
}

.section-title--light {
  color: var(--white);
}

.section-title--light::after {
  background: rgba(255, 255, 255, 0.28);
}

.section-title--center {
  text-align: center;
}

.section-title--center::after {
  margin-inline: auto;
}

.lead {
  font-size: 18px;
  line-height: 1.75;
}

.meta {
  font-size: 12px;
  line-height: 1.75;
  color: var(--gray-400);
}

.display {
  font-size: 29px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
}

h1.page-title,
.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--white);
  letter-spacing: normal;
  text-transform: none;
}

@media (max-width: 959px) {
  h1.page-title,
  .hero-title {
    font-size: 26.67px;
    line-height: 32px;
  }
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  margin: 9px 0 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  padding: 13px 31px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  background: var(--navy);
  color: var(--white);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease),
    border-color var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.btn:hover {
  background: #152536;
  color: var(--white);
}

.btn--sm {
  padding: 11px 26px;
  font-size: 10px;
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn__arrow {
  font-size: 14px;
  line-height: 1;
}

.cookie-bar .btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 248, 244, 0.45);
}

.cookie-bar .btn--ghost:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: var(--radius-input);
  background: var(--navy);
  color: var(--white);
  line-height: 16.5px;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  transition: height var(--duration) var(--ease), background var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease), color var(--duration) var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  height: var(--header-h-shrink);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 0 var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  position: relative;
}

@media (min-width: 960px) {
  .nav-primary {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    z-index: 2;
  }

  /* Viewport-pinned header: same left/right inset on every desktop width. */
  .site-header > .container.site-header__inner {
    max-width: none;
    width: 100%;
    padding-inline: 40px;
  }

  .site-header .site-logo svg {
    height: 54px;
  }

  .site-header.is-scrolled .site-logo svg,
  .site-header.is-scrolled .site-logo img,
  .site-header.is-solid .site-logo svg,
  .site-header.is-solid .site-logo img {
    height: 44px;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .nav-primary a {
    padding: 0 9px;
    font-size: 14px;
  }
}

.site-logo-link {
  display: flex;
  align-items: center;
  color: inherit;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
}

.site-logo svg {
  height: 40px;
  width: auto;
  display: block;
  overflow: visible;
}

.site-header.is-scrolled .site-logo,
.site-header.is-solid .site-logo {
  color: var(--navy);
}

.site-header.is-scrolled .site-logo svg,
.site-header.is-scrolled .site-logo img,
.site-header.is-solid .site-logo svg,
.site-header.is-solid .site-logo img {
  height: 32px;
}

.nav-primary {
  display: flex;
  align-items: center;
}

.nav-primary ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary a {
  display: block;
  position: relative;
  padding: 0 14px 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  color: inherit;
}

.nav-primary a:hover {
  color: var(--cream);
}

.nav-primary .current-menu-item > a,
.nav-primary .current_page_item > a,
.nav-primary a[aria-current="page"] {
  color: var(--cream);
}

.nav-primary .current-menu-item > a::after,
.nav-primary .current_page_item > a::after,
.nav-primary a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--cream);
}

.site-header.is-scrolled .nav-primary a:hover,
.site-header.is-solid .nav-primary a:hover {
  color: var(--navy);
}

.site-header.is-scrolled .nav-primary .current-menu-item > a,
.site-header.is-scrolled .nav-primary .current_page_item > a,
.site-header.is-scrolled .nav-primary a[aria-current="page"],
.site-header.is-solid .nav-primary .current-menu-item > a,
.site-header.is-solid .nav-primary .current_page_item > a,
.site-header.is-solid .nav-primary a[aria-current="page"] {
  color: var(--navy);
}

.site-header.is-scrolled .nav-primary .current-menu-item > a::after,
.site-header.is-scrolled .nav-primary .current_page_item > a::after,
.site-header.is-scrolled .nav-primary a[aria-current="page"]::after,
.site-header.is-solid .nav-primary .current-menu-item > a::after,
.site-header.is-solid .nav-primary .current_page_item > a::after,
.site-header.is-solid .nav-primary a[aria-current="page"]::after {
  background: var(--navy);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.lang-switch a {
  font-weight: 300;
  color: inherit;
  opacity: 0.85;
}

.lang-switch a.is-active {
  font-weight: 600;
  opacity: 1;
  color: var(--cream);
}

.site-header.is-scrolled .lang-switch a.is-active,
.site-header.is-solid .lang-switch a.is-active {
  color: var(--navy);
}

.search-toggle,
.menu-toggle {
  appearance: none;
  background: none;
  border: 0;
  color: inherit;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.search-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
}

.menu-toggle__box {
  position: relative;
  width: 18px;
  height: 14px;
  display: block;
}

.menu-toggle__box span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease), top var(--duration) var(--ease);
}

.menu-toggle__box span:nth-child(1) {
  top: 0;
}

.menu-toggle__box span:nth-child(2) {
  top: 6px;
}

.menu-toggle__box span:nth-child(3) {
  top: 12px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__box span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__box span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__box span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-search {
  display: none;
}

.nav-contact {
  display: none;
}

.search-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  padding: 24px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.search-panel.is-open {
  display: block;
}

.search-panel form {
  display: flex;
  gap: 12px;
}

.search-panel input[type="search"] {
  flex: 1;
  height: 41px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  padding: 0 14px;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 959px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .site-logo-link {
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-logo svg {
    height: 28px;
    width: auto;
    max-width: 100%;
  }

  .site-header.is-scrolled .site-logo svg,
  .site-header.is-scrolled .site-logo img,
  .site-header.is-solid .site-logo svg,
  .site-header.is-solid .site-logo img {
    height: 28px;
  }

  .header-tools {
    gap: 6px;
    flex: 0 0 auto;
  }

  .lang-switch {
    gap: 4px;
    font-size: 12px;
  }

  .lang-switch a {
    padding: 10px 4px;
  }

  .search-toggle,
  .search-panel {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header.is-menu-open {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 1px 0 var(--hairline);
  }

  .site-header.is-menu-open .site-logo {
    color: var(--navy);
  }

  .site-header.is-menu-open .lang-switch a.is-active {
    color: var(--navy);
  }

  .nav-primary {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    color: var(--black);
    margin: 0;
    padding: 28px var(--gutter-sm) 40px;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    z-index: 900;
  }

  .nav-primary.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-primary ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-primary a {
    padding: 12px 0;
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
  }

  .nav-primary a:hover,
  .nav-primary .current-menu-item > a,
  .nav-primary a[aria-current="page"] {
    color: var(--navy);
  }

  .nav-primary .current-menu-item > a::after,
  .nav-primary .current_page_item > a::after,
  .nav-primary a[aria-current="page"]::after {
    left: 0;
    right: auto;
    width: 48px;
    bottom: 6px;
    background: var(--navy);
  }

  .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
  }

  .nav-primary .nav-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--navy);
  }

  .nav-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--navy);
    flex: 0 0 auto;
  }

  .nav-primary .nav-contact a::after {
    display: none;
  }

  .nav-primary .nav-contact a:hover {
    color: var(--ink);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .cookie-bar {
    visibility: hidden;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 855px;
  display: flex;
  align-items: flex-end;
  background: var(--hero-bg);
  color: var(--white);
  overflow: hidden;
}

.hero--inner {
  min-height: 380px;
  align-items: flex-end;
  background: var(--hero-bg-inner);
}

.hero--splash {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  align-items: center;
  padding-top: var(--header-h);
  box-sizing: border-box;
}

.hero--splash .hero__content {
  padding: 0 0 180px;
}

.hero--splash .hero__copy p.hero-lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.hero--splash .hero__copy p.hero-slogan {
  font-weight: 500;
  line-height: 1.45;
}

.hero--splash .hero__copy .btn {
  margin-top: 10px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.8;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 72px 108px;
}

.hero--inner .hero__content {
  padding: 0 72px 72px;
}

.hero__copy {
  max-width: 648px;
}

.hero__copy p {
  color: var(--white);
}

.hero-slogan {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 36px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
}

.hero-slogan::before {
  content: "";
  width: 2px;
  align-self: stretch;
  min-height: 42px;
  background: var(--cream);
  flex: 0 0 auto;
}

.hero-slogan--compact {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 18px;
}

.hero--splash .hero-slogan--compact {
  margin-top: 0;
}

.hero-slogan--compact::before {
  width: 1px;
  min-height: 40px;
}

.hero-slogan__br {
  display: none;
}

@media (min-width: 960px) {
  .hero--splash .hero-slogan--compact {
    align-items: center;
  }
}

.breadcrumb {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  opacity: 0.55;
  margin: 0 8px;
}

@media (max-width: 959px) {
  .hero {
    min-height: 0;
  }

  .hero--inner {
    min-height: 240px;
    align-items: flex-end;
  }

  .hero--splash {
    min-height: 100%;
    height: 100%;
    align-items: flex-end;
    padding-top: var(--header-h);
  }

  .hero__content,
  .hero--inner .hero__content {
    padding: 0 0 40px;
  }

  .hero--splash .hero__content {
    padding: 0 0 calc(128px + env(safe-area-inset-bottom, 0px));
  }

  .hero-slogan {
    font-size: 16px;
  }

  .hero-slogan--compact {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .hero-slogan__br {
    display: block;
  }
}

@media (max-width: 569px) {
  .hero--inner {
    min-height: 220px;
  }

  .hero--splash .hero__copy > p.hero-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero--splash .hero__copy > p.hero-lead {
    margin-bottom: 0.85em;
  }

  .hero--splash .hero__content {
    padding: 0 0 calc(120px + env(safe-area-inset-bottom, 0px));
  }

  .hero--splash .hero__copy .btn {
    margin-top: 4px;
  }
}

@media (max-width: 569px) and (max-height: 700px) {
  .hero--splash .hero__copy > p.hero-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-slogan--compact {
    font-size: 13px;
    margin-top: 14px;
  }
}

/* Sibling strip */

.sibling-strip {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.sibling-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 22px 0;
}

.sibling-strip a {
  font-size: 15px;
  font-weight: 500;
}

.sibling-strip a::after {
  content: " ›";
  color: var(--gray-400);
}

.sibling-strip a:hover {
  color: var(--navy);
}

/* Practice grid */

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.practice-card {
  display: block;
  background: transparent;
  color: inherit;
}

.practice-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.practice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.practice-card:hover .practice-card__media img {
  transform: scale(1.04);
}

.practice-card__body {
  padding: 14px 0 0;
  background: transparent;
}

.practice-card .card-title {
  margin: 0 0 6px;
}

.practice-card .meta {
  margin: 0;
}

@media (max-width: 959px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 569px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

/* Intro split (practice / career) */

.intro-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-2);
  align-items: center;
}

.intro-split .lead p {
  max-width: 560px;
}

.intro-split__media {
  overflow: hidden;
  background: var(--surface-2);
  min-height: 420px;
}

.intro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

@media (min-width: 960px) {
  .intro-split--career {
    align-items: start;
  }

  .intro-split--career .intro-split__media {
    min-height: 0;
    background: var(--surface-2);
  }

  .intro-split--career .intro-split__media img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    display: block;
  }
}

#calisma-alanlari {
  scroll-margin-top: calc(var(--header-h-shrink) + 18px);
}

.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-2);
}

.page-tabs button {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 22px 14px 0;
  margin-right: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
}

.page-tabs button.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.acc {
  border-top: 1px solid var(--hairline);
}

.acc:last-child {
  border-bottom: 1px solid var(--hairline);
}

.acc__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  appearance: none;
  background: none;
  border: 0;
  padding: 22px 0;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  color: var(--black);
  cursor: pointer;
}

.acc__icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform var(--duration) var(--ease);
}

.acc__icon::before {
  left: 0;
  right: 0;
  top: 6px;
  height: 1px;
}

.acc__icon::after {
  top: 0;
  bottom: 0;
  left: 6px;
  width: 1px;
}

.acc.is-open .acc__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.acc__panel {
  display: none;
  padding: 0 0 22px;
  max-width: 720px;
  color: var(--ink);
}

.acc.is-open .acc__panel {
  display: block;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 72px;
  padding-top: var(--space-1);
}

.value-grid h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-grid p {
  color: var(--ink);
  margin: 0;
}

.career-apply {
  max-width: 720px;
}

.form-file__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.form-file__drop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--hairline);
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 400;
}

.form-file__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
}

.form-file__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--gray-400);
}

.form-file__icon svg {
  width: 14px;
  height: 14px;
}

.form-file__hint {
  line-height: 1.4;
}

@media (max-width: 959px) {
  .intro-split,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .intro-split__media,
  .intro-split__media img {
    min-height: 280px;
  }

  .intro-split--career .intro-split__media,
  .intro-split--career .intro-split__media img {
    min-height: 0;
  }

  .intro-split--career .intro-split__media img {
    height: auto;
    object-fit: contain;
  }

  .acc__head {
    font-size: 18px;
  }
}

/* News cards */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding-top: 12px;
}

.news-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
}

@media (max-width: 959px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 569px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 36px;
  align-items: center;
}

.filter-bar button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* Mosaic */

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

.mosaic__cell {
  min-height: 280px;
  overflow: hidden;
}

.mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic__cell--text {
  background: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic__cell--alt {
  background: var(--surface-2);
}

.mosaic__cell--navy {
  background: var(--navy);
  color: var(--cream);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic__cell--navy .section-title {
  color: var(--cream);
}

@media (max-width: 959px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 569px) {
  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic__cell {
    min-height: 220px;
  }
}

/* Split */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}

.split__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 959px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Team accordion */

.team-list {
  border-top: 1px solid var(--border);
}

.team-row {
  border-bottom: 1px solid var(--border);
}

.team-row__head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 28px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.team-row__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
}

.team-row__role {
  font-size: 13px;
  color: var(--gray-400);
  text-align: right;
}

.team-row__icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.team-row__icon::before,
.team-row__icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.team-row__icon::before {
  left: 3px;
  right: 3px;
  height: 1px;
  top: 10px;
}

.team-row__icon::after {
  top: 3px;
  bottom: 3px;
  width: 1px;
  left: 10px;
}

.team-row.is-open .team-row__icon::after {
  opacity: 0;
}

.team-row__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.team-row.is-open .team-row__panel {
  grid-template-rows: 1fr;
}

.team-row__inner {
  overflow: hidden;
}

.team-row__detail {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  padding: 0 0 36px;
}

.team-row__photo {
  width: 180px;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.team-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-row__bio {
  font-size: 15px;
}

.team-row__meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray-400);
}

@media (max-width: 769px) {
  .team-row__head {
    grid-template-columns: 1fr 28px;
  }

  .team-row__role {
    grid-column: 1;
    text-align: left;
    margin-top: -12px;
    padding-bottom: 8px;
  }

  .team-row__detail {
    grid-template-columns: 1fr;
  }

  .team-row__photo {
    width: 140px;
  }
}

/* Forms */

.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.form .req {
  color: #8d2420;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="file"],
.form select,
.form textarea {
  width: 100%;
  height: 41px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  padding: 0 12px;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}

.form textarea {
  height: 96px;
  padding: 10px 12px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}

.form-check input {
  margin-top: 4px;
}

.form-status {
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid var(--hairline);
  background: var(--surface-2);
}

.form-status--ok {
  border-color: var(--navy);
}

.form-status--err {
  border-color: #8d2420;
  color: #8d2420;
}

@media (max-width: 569px) {
  .form-row--2 {
    grid-template-columns: 1fr;
  }
}

/* Contact layout */

.contact-head {
  max-width: 720px;
  margin-bottom: var(--space-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  align-items: start;
}

.contact-facts .section-title,
.contact-form-col .section-title {
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-dl {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.contact-dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
}

.contact-dl dt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding-top: 3px;
}

.contact-dl dd {
  margin: 0;
}

.contact-dl__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map {
  background: var(--surface-2);
}

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.45) contrast(1.04);
}

@media (max-width: 959px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-embed {
    height: 320px;
  }
}

/* Clients */

.client-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.client-logo {
  margin: 0;
  min-height: 140px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  background: var(--white);
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo img {
  max-width: 180px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo span {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

@media (max-width: 769px) {
  .client-row {
    grid-template-columns: 1fr 1fr;
  }

  .client-logo:nth-child(2) {
    border-right: 0;
  }

  .client-logo:nth-child(1),
  .client-logo:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

/* Article */

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 36px 0 12px;
}

.article ul {
  padding-left: 1.2em;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-block {
  background: var(--navy);
  color: var(--cream);
  padding: 36px;
  margin: 36px 0;
  font-size: 18px;
  line-height: 1.6;
}

/* Footer */

.site-footer {
  background: var(--surface-2);
  padding-top: var(--space-2);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: var(--space-2);
}

.footer-brand .site-logo {
  color: var(--navy);
  margin-bottom: 18px;
}

.footer-brand .site-logo svg,
.footer-brand .site-logo img {
  height: 36px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--ink);
  max-width: 280px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  display: inline-block;
  font-size: 15px;
  padding: 5px 0;
}

.footer-col a::before {
  content: "› ";
  color: var(--gray-400);
}

.footer-col a:hover {
  color: var(--navy);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray-400);
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  margin-left: auto;
  text-align: right;
}

html.home-lock,
html.home-lock body {
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

html.home-lock .home-splash {
  height: 100%;
}

@media (max-width: 959px) {
  html.home-lock {
    --splash-footer-h: 64px;
  }

  html.home-lock,
  html.home-lock body {
    height: var(--app-height, 100dvh);
    min-height: 100svh;
    min-height: -webkit-fill-available;
    min-height: var(--app-height, 100dvh);
    max-height: none;
    background: var(--hero-bg);
  }

  html.home-lock .home-splash,
  html.home-lock .hero--splash {
    height: 100%;
    min-height: 100%;
    max-height: none;
  }

  html.home-lock .site-footer--splash {
    background: var(--hero-bg);
  }
}

.site-footer--splash {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: transparent;
  padding: 0;
  color: var(--white);
}

html.home-lock body.has-cookie-bar .site-footer--splash {
  bottom: var(--cookie-stack, 0px);
}

html.home-lock body.has-cookie-bar .hero--splash .hero__content {
  padding-bottom: calc(168px + var(--cookie-stack, 0px));
}

@media (max-width: 959px) {
  html.home-lock body.has-cookie-bar .hero--splash .hero__content {
    padding-bottom: 0;
  }

  .site-footer--splash .splash-legal {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    border-top: 0;
    padding: 2px 12px 0;
    white-space: nowrap;
  }

  .site-footer--splash .splash-legal a {
    display: inline;
    padding: 2px 0;
    font-size: clamp(8px, 2.5vw, 10px);
    letter-spacing: 0.02em;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.48);
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .site-footer--splash .splash-legal__dot {
    display: inline;
    flex: 0 0 auto;
    font-size: clamp(8px, 2.5vw, 10px);
    line-height: 1;
    color: rgba(255, 255, 255, 0.32);
  }

  .site-footer--splash .splash-meta {
    min-height: 32px;
    padding: 4px 16px;
    padding-bottom: max(4px, env(safe-area-inset-bottom, 4px));
  }

  .site-footer--splash .splash-meta__copy {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.42);
  }

  .site-footer--splash .splash-meta__logo .site-logo svg {
    height: 14px;
    opacity: 0.75;
  }
}

.splash-legal {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.splash-legal a {
  display: block;
  text-align: center;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  text-shadow: none;
}

.splash-legal a:hover {
  color: var(--cream);
}

.splash-legal__dot {
  display: none;
}

.splash-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 10px 18px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
}

.splash-meta__logo {
  position: relative;
  z-index: 1;
  color: var(--white);
  flex: 0 0 auto;
}

.splash-meta__logo .site-logo svg {
  height: 22px;
  width: auto;
}

.splash-meta__copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.splash-meta__spacer {
  width: 72px;
  flex: 0 0 auto;
}

.splash-linkedin {
  display: none;
}

.splash-linkedin svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@media (min-width: 960px) {
  .hero--splash .hero__content {
    padding: 0 0 92px;
  }

  html.home-lock body.has-cookie-bar .hero--splash .hero__content {
    padding-bottom: calc(84px + var(--cookie-stack, 0px));
  }

  .site-footer--splash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 36px 20px;
    min-height: 72px;
  }

  .splash-legal {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 28px;
    border: 0;
    flex: 1 1 0;
  }

  .splash-legal a {
    display: inline;
    text-align: left;
    padding: 0;
    border: 0;
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .splash-meta {
    display: contents;
  }

  .splash-meta__logo {
    order: 2;
    flex: 0 0 auto;
    visibility: visible;
    width: auto;
    overflow: visible;
  }

  .splash-meta__logo .site-logo svg {
    height: 36px;
  }

  .splash-meta__copy {
    position: static;
    transform: none;
    left: auto;
    margin: 0;
  }

  .splash-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex: 0 0 auto;
  }

  .splash-meta__copy,
  .splash-linkedin {
    order: 3;
  }

  .site-footer--splash .splash-meta__copy {
    margin-left: auto;
  }

  .site-footer--splash {
    /* legal | logo | copy+in — logo centered via absolute */
    position: fixed;
  }

  .splash-meta__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .site-footer--splash .splash-legal {
    position: relative;
    z-index: 2;
  }

  .site-footer--splash .splash-meta__copy,
  .site-footer--splash .splash-linkedin {
    position: relative;
    z-index: 2;
  }

  .site-footer--splash .splash-linkedin {
    margin-left: 16px;
  }
}

@media (max-width: 959px) {
  html.home-lock .hero--splash {
    align-items: stretch;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  html.home-lock .hero--splash .hero__content {
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    bottom: calc(var(--splash-footer-h, 72px) + var(--cookie-stack, 0px));
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
  }

  html.home-lock .hero--splash .hero__content .container {
    width: 100%;
  }

  html.home-lock .hero--splash .hero-slogan--compact {
    margin-top: 0;
  }

  html.home-lock .site-footer--splash .splash-legal {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    border: 0;
    padding: 2px 12px 0;
    white-space: nowrap;
  }

  html.home-lock .site-footer--splash .splash-legal a {
    display: inline;
    padding: 2px 0;
    font-size: clamp(8px, 2.5vw, 10px);
    letter-spacing: 0.02em;
    border: 0;
    color: rgba(255, 255, 255, 0.48);
    white-space: nowrap;
    flex: 0 0 auto;
  }

  html.home-lock .site-footer--splash .splash-legal__dot {
    display: inline;
    flex: 0 0 auto;
    font-size: clamp(8px, 2.5vw, 10px);
    line-height: 1;
    color: rgba(255, 255, 255, 0.32);
  }
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  width: 100%;
  max-width: none;
  padding: 12px 24px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.cookie-bar[hidden] {
  display: none !important;
}

.cookie-bar p {
  margin: 0;
  max-width: none;
  flex: 1 1 220px;
}

.cookie-bar__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: auto;
  margin-left: auto;
}

.cookie-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-right: 8px;
  font-size: 12px;
}

.cookie-bar .btn--sm {
  padding: 8px 16px;
}

.cookie-bar .btn:not(.btn--ghost) {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.cookie-bar .btn:not(.btn--ghost):hover {
  background: var(--white);
  color: var(--navy);
}

body.has-cookie-bar .site-footer:not(.site-footer--splash) {
  padding-bottom: 24px;
}

html.home-lock .cookie-bar {
  background: rgba(13, 27, 42, 0.96);
}

@media (max-width: 769px) {
  .cookie-bar {
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  }

  .splash-meta__logo .site-logo svg {
    height: 18px;
  }

  .splash-meta__spacer {
    width: 48px;
  }
}

@media (max-width: 400px) {
  .splash-meta__logo,
  .splash-meta__spacer {
    visibility: hidden;
    width: 0;
    overflow: hidden;
  }
}

@media (max-width: 959px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 569px) {
  .eyebrow {
    letter-spacing: 3px;
    font-size: 11px;
  }

  .sibling-strip ul {
    gap: 8px 16px;
    padding: 16px 0;
  }

  .sibling-strip a {
    font-size: 14px;
  }

  .page-tabs button {
    padding: 12px 12px 12px 0;
    margin-right: 16px;
    font-size: 14px;
  }

  .mosaic__cell--text,
  .mosaic__cell--navy {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    margin-left: 0;
    text-align: left;
  }

  .quote-block {
    padding: 24px 20px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Empty / 404 */

.empty-state {
  padding: var(--space-3) 0;
  text-align: left;
}

/* Admin bar offset */

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  html.admin-bar .nav-primary {
    top: calc(var(--header-h) + 46px);
  }
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.55s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.js .reveal {
  animation: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Alignments */

.stack-36 > * + * {
  margin-top: 36px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mb-72 {
  margin-bottom: 72px;
}

.mt-36 {
  margin-top: 36px;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.home .site-main,
body:not(.home) .site-main {
  padding-top: 0;
}
