:root {
  --bg: #ffffff;
  --body-bg: #f5f7fb;
  --body-font-family: 'SF Pro', sans-serif;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --header-bg: #ffffff;
  --scrolled-header-bg: #ffffff;
  --text: #1d1d1d;
  --muted: #6b7280;
  --border: rgba(15, 23, 42, 0.08);
  --accent: #efa92f;
  --accent-hover: #f9c816;
  --button-text: #1d1d1d;
  --header-phone: #ffffff;
  --scrolled-header-phone: #1d1d1d;
  --nav-link: #ffffff91;
  --nav-link-bg: transparent;
  --nav-link-hover: #ffffffbd;
  --nav-link-bg-hover: transparent;
  --nav-submenu-bg: #ffffff;
  --scrolled-nav-link: #313030;
  --scrolled-nav-link-bg: transparent;
  --scrolled-nav-link-hover: #1d1d1d;
  --scrolled-nav-link-bg-hover: transparent;
  --scrolled-nav-submenu-bg: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;

  --topbar-height: 42px;
  --mainbar-height: 84px;
  --header-gap: 10px;
  --container: 1300px;
  --logo-width: 58px;

  --h1-font-size: 42px;
  --h1-line-height: 1.1em;
  --h1-font-weight: 700;
  --h1-font-family: 'SF Pro', sans-serif;
  --h1-color: #1f2937;
  --h2-font-size: 36px;
  --h2-line-height: 1.15em;
  --h2-font-weight: 700;
  --h2-font-family: 'SF Pro', sans-serif;
  --h2-color: #1f2937;
  --h3-font-size: 30px;
  --h3-line-height: 1.2em;
  --h3-font-weight: 700;
  --h3-font-family: 'SF Pro', sans-serif;
  --h3-color: #1f2937;
  --h4-font-size: 24px;
  --h4-line-height: 1.25em;
  --h4-font-weight: 600;
  --h4-font-family: 'SF Pro', sans-serif;
  --h4-color: #1f2937;
  --h5-font-size: 20px;
  --h5-line-height: 1.3em;
  --h5-font-weight: 600;
  --h5-font-family: 'SF Pro', sans-serif;
  --h5-color: #1f2937;
  --h6-font-size: 18px;
  --h6-line-height: 1.35em;
  --h6-font-weight: 600;
  --h6-font-family: 'SF Pro', sans-serif;
  --h6-color: #1f2937;

  --accent-font-family: 'Moniqa Black', sans-serif;

  --p-font-size: 18px;
  --p-line-height: 1.35em;
  --p-font-weight: 400;
  --p-font-family: 'SF Pro', sans-serif;
  --p-color: #1f2937;
  --input-font-size: 16px;
  --input-line-height: 1.35em;
  --input-font-weight: 400;
  --input-font-family: 'SF Pro', sans-serif;
  --input-color: #1f2937;
  --textarea-font-size: 16px;
  --textarea-line-height: 1.35em;
  --textarea-font-weight: 400;
  --textarea-font-family: 'SF Pro', sans-serif;
  --textarea-color: #1f2937;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--body-bg);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.35em;
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-font-weight);
  font-family: var(--h1-font-family);
  color: var(--h1-color);
}

h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-font-weight);
  font-family: var(--h2-font-family);
  color: var(--h2-color);
}

h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-font-weight);
  font-family: var(--h3-font-family);
  color: var(--h3-color);
}

h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  font-weight: var(--h4-font-weight);
  font-family: var(--h4-font-family);
  color: var(--h4-color);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  font-weight: var(--h5-font-weight);
  font-family: var(--h5-font-family);
  color: var(--h5-color);
}

h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  font-weight: var(--h6-font-weight);
  font-family: var(--h6-font-family);
  color: var(--h6-color);
}

p {
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  font-weight: var(--p-font-weight);
  font-family: var(--p-font-family);
  color: var(--p-color);
}

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

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

input {
  font-size: var(--input-font-size);
  line-height: var(--input-line-height);
  font-weight: var(--input-font-weight);
  font-family: var(--input-font-family) !important;
  color: var(--input-color);
}

textarea {
  font-size: var(--textarea-font-size);
  line-height: var(--textarea-line-height);
  font-weight: var(--textarea-font-weight);
  font-family: var(--textarea-font-family) !important;
  color: var(--textarea-color);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  padding: 0;
  margin: 0 auto;
}

main .container {
    padding: 40px 12px;
}

main.page .container.first,
main.archive .container.first,
main.single .container.first {
  padding: 200px 12px 60px;
}

main.page .container.first {
  padding: 200px 12px 0px;
}

.noselect {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Buttons */

.btn {
  background: var(--accent);
  color: var(--button-text);
  padding: 18px 24px;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1.35em;
  border: 0;
  outline: none;
  transform: translateY(0);
  transition: all 0.25s ease-in-out;
  gap: 14px;
}

.btn img {
  width: 14px;
  height: 14px;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--accent-hover);
  color: var(--button-text);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.4);
}

.primary {
  box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.15);
}

/* Archive filter bar */

.archive-blog-bar-band {
  position: relative;
  z-index: 20;
  margin-bottom: 28px;
}

.archive-blog-bar {
  position: sticky;
  top: var(--archive-blog-sticky-offset, 84px);
  z-index: 25;
  width: 100%;
}

.archive-blog-bar-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.archive-blog-bar-container::-webkit-scrollbar {
  display: none;
}

.archive-blog-bar-nav {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
}

.archive-blog-bar__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.72);
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.archive-blog-bar__item:hover,
.archive-blog-bar__item:focus-visible,
.archive-blog-bar__item.is-active {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.04);
}

.archive-blog-bar__label {
  font-size: 14px;
  line-height: 1.35;
}

/* Blog loop cards */

.blog-loop-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-loop-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(18, 18, 18, 0.08);
}

.blog-loop-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.blog-loop-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.blog-loop-card__body {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  transition: border-color 0.25s ease;
}

.blog-loop-card__date {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.58);
}

.blog-loop-card__title {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #171717;
  transition: color 0.25s ease, transform 0.25s ease;
  text-wrap: balance;
}

.blog-loop-card:hover .blog-loop-card__media::after,
.blog-loop-card:focus-visible .blog-loop-card__media::after {
  opacity: 1;
}

.blog-loop-card:hover .blog-loop-card__image,
.blog-loop-card:focus-visible .blog-loop-card__image {
  transform: scale(1.025);
}

.blog-loop-card:hover .blog-loop-card__body,
.blog-loop-card:focus-visible .blog-loop-card__body {
  border-color: rgba(0, 0, 0, 0.28);
}

.blog-loop-card:hover .blog-loop-card__title,
.blog-loop-card:focus-visible .blog-loop-card__title {
  color: #000000;
  transform: translateY(-1px);
}

/* Auth pages */

.auth-page {
  padding: 222px 40px 60px;
}

.auth-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.auth-card h1 {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--accent);
}

.auth-card form p {
  margin-bottom: 16px;
}

.auth-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
}

.auth-card .input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}

.auth-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: translateY(0);
  filter: brightness(1);
  box-shadow: 0 0 20px -10px rgba(0,0,0,0);
}

.auth-card .button-primary {
  background: var(--accent);
  color: var(--button-text);
}

.auth-card .button-primary:hover {
  transform: translateY(-3px);
  background: var(--accent-hover);
  color: var(--button-text);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.4);
}

.auth-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
}

.auth-links a {
  color: var(--muted);
  transition: color 0.25s ease-in-out;
}

.auth-links a:hover {
  color: var(--accent);
}

.auth-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.auth-message--success {
  background: #ecfdf3;
  color: #067647;
}

.auth-message--error {
  background: #fef3f2;
  color: #b42318;
}

/* Breadcrumbs */

.section-breadcrumbs {
  margin: 0;
}

.placeholder-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.4;
}

.placeholder-breadcrumbs.centered {
  justify-content: center;
}

.placeholder-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.placeholder-breadcrumbs a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.25s ease-in-out;
}

.hero .placeholder-breadctumbs a {
  color: var(--accent);
}

.hero.dark .placeholder-breadcrumbs a {
  color: var(--accent);
}

.hero.dark .placeholder-breadcrumbs a:hover {
  color: var(--accent-hover);
}

.hero .placeholder-breadcrumbs a:hover {
  color: var(--text);
}

.placeholder-breadcrumbs a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80%;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease-in-out;
}

.hero .placeholder-breadcrumbs a::after {
  background: var(--text);
}

.hero.dark .placeholder-breadcrumbs a::after {
  background: var(--accent-hover);
}

.placeholder-breadcrumbs a:hover::after {
  width: 100%;
}

.placeholder-breadcrumbs li:last-child span {
  color: var(--muted);
}

.breadcrumb-separator {
    margin: 0 4px;
    color: var(--muted);
    user-select: none;
}

/* Sections */

/* Hero */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero.dark {
  background: #31387a;
}

.hero #wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
  padding: 100px 12px 60px;
  z-index: 2;
}

.hero .hero-split {
  display: grid;
  gap: 40px;
  grid-template-columns: 800px 1fr;
}

.hero h1 {
  color: var(--text);
  padding: 0;
  margin: 10px 0 30px;
}

.hero.page-media-hero {
  background-color: #1f1f1f;
  min-height: min(80vh, 700px);
  max-height: min(80vh, 700px);
  overflow: hidden;
  isolation: isolate;
}

.hero.page-media-hero .page-media-hero__media,
.hero.page-media-hero::before {
  position: absolute;
  inset: 0;
}

.hero.page-media-hero .page-media-hero__media {
  z-index: 0;
  background-image: var(--page-hero-image);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.hero.page-media-hero .page-media-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.page-media-hero::before {
  content: "";
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.62) 0%, rgba(10, 16, 28, 0.72) 100%);
}

.hero.page-media-hero .container {
  position: relative;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero.page-media-hero .section-breadcrumbs,
.hero.page-media-hero .section-header {
  position: relative;
  z-index: 2;
}

.hero.page-media-hero .section-header.centered {
  margin-bottom: 0;
}

.hero.page-media-hero .section-title {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.98);
}

.hero.page-media-hero h1 {
  font-size: calc(var(--h1-font-size) + 0.4rem);
}

.hero.page-media-hero .placeholder-breadcrumbs,
.hero.page-media-hero .placeholder-breadcrumbs li {
  color: rgba(255, 255, 255, 0.82);
}

.hero.page-media-hero .placeholder-breadcrumbs a,
.hero.page-media-hero .placeholder-breadcrumbs li:last-child span,
.hero.page-media-hero .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.82);
}

.hero.page-media-hero .placeholder-breadcrumbs a:hover,
.hero.page-media-hero .placeholder-breadcrumbs a:focus-visible {
  color: #ffffff;
}

.hero.dark h1 {
  color: rgba(255, 255, 255, 0.96);
}

.page-head-simple {
  position: relative;
}

.page-head-simple .container {
  padding: 100px 12px 20px;
}

.page-head-simple__header .section-title {
  margin: 10px 0 0;
}

.hero.dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* General */

.section-header {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
}

main.page.page-template .hero .section-header.section-header--vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  grid-template-columns: none;
}

.section-header.centered {
  align-items: center;
  margin: 0 auto 40px;
}

.section-header h2 {
  margin: 8px 0 20px;
}

.section-header.centered .eyebrow,
.section-header.centered h2,
.section-header.centered p {
  text-align: center;
}

.eyebrow {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header.light .section-eyebrow {
  color: #fff;
}

.section-header p {
    color: var(--text);
    margin: 0 auto 30px;
}

.section-header-col {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-header-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 30px;
}

/* Posts */

main.single {
  line-height: 1.65;
  color: var(--text);
}

main.single .entry-content > * + * {
  margin-top: 1.2em;
}

.newspaper-masthead__title {
    font-size: clamp(44px, 7vw, 88px) !important;
    margin: 10px 0 30px !important;
}

.newspaper-masthead__subtitle {
  font-family: inherit !important;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.68);
}

/* Popups and modals */

.open-contact-form {
  cursor: pointer;
}

/* Placeholder Contact Modal */

.placeholder-contact-modal[hidden] {
  display: none !important;
}

.placeholder-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 20px 20px;
}

body.admin-bar .placeholder-contact-modal {
    padding: 120px 20px 20px;
}

.placeholder-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.placeholder-contact-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 530px;
    max-height: calc(100vh - 40px);
    width: 100%;
    background: var(--body-bg);
    border-radius: 24px;
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.placeholder-contact-modal__content {
  padding: 30px;
}

.placeholder-contact-modal__title {
    position: relative;
    display: block;
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.35em;
    font-weight: 500;
    color: #212122;
}

.placeholder-contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.placeholder-contact-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.placeholder-contact-modal__close:active {
  transform: scale(0.96);
}

.placeholder-contact-modal__close img {
  display: block;
  width: 18px;
  height: 18px;
}

.placeholder-contact-modal.is-visible .placeholder-contact-modal__backdrop {
  opacity: 1;
}

.placeholder-contact-modal.is-visible .placeholder-contact-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.placeholder-contact-modal.is-closing .placeholder-contact-modal__backdrop {
  opacity: 0;
}

.placeholder-contact-modal.is-closing .placeholder-contact-modal__dialog {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
}

body.contact-form-popup-open {
  overflow: hidden;
}

/* CTA */

.cta .container {
  padding-top: 36px;
  padding-bottom: 36px;
}

.cta-shell {
  --cta-grid-size: 44px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: var(--cta-grid-size);
  align-items: stretch;
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 12px 6px 12px 0;
}

.cta-copy h2,
.cta-copy p {
  margin: 0;
  max-width: none;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 90px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.cta .section-form {
  max-width: none;
  margin: 0;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-grid-overlay__mesh,
.cta-grid-overlay__focus {
  position: absolute;
  inset: 0;
}

.cta-grid-overlay__mesh {
  background:
    linear-gradient(rgba(22, 75, 153, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 75, 153, 0.06) 1px, transparent 1px);
  background-size: var(--cta-grid-size) var(--cta-grid-size);
  mask-image: radial-gradient(circle at 72% 50%, rgba(0, 0, 0, 0.95), transparent 78%);
  opacity: 0.8;
}

.cta-grid-overlay__focus {
  background:
    radial-gradient(circle at 76% 48%, rgba(225, 183, 63, 0.18), transparent 18%),
    radial-gradient(circle at 76% 48%, rgba(22, 75, 153, 0.12), transparent 30%);
  filter: blur(10px);
}

.cta .form-wrapper {
  position: relative;
  isolation: isolate;
  z-index: 2;
}

.cta-form-frame {
  --trace-padding: 6px;
  --trace-angle: -120deg;
  position: relative;
  padding: var(--trace-padding);
  border-radius: 34px;
  overflow: hidden;
}

.cta-form-frame__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter:
    saturate(1.08)
    drop-shadow(0 0 10px rgba(57, 160, 237, 0.18))
    drop-shadow(0 0 18px rgba(225, 183, 63, 0.16));
  -webkit-mask-image:
    conic-gradient(
      from var(--trace-angle),
      rgba(0, 0, 0, 0) 0deg,
      rgba(0, 0, 0, 0) 280deg,
      rgba(0, 0, 0, 0.08) 294deg,
      rgba(0, 0, 0, 0.28) 304deg,
      rgba(0, 0, 0, 0.68) 316deg,
      rgba(0, 0, 0, 0.98) 328deg,
      rgba(0, 0, 0, 0.72) 340deg,
      rgba(0, 0, 0, 0.24) 352deg,
      rgba(0, 0, 0, 0) 360deg
    );
  mask-image:
    conic-gradient(
      from var(--trace-angle),
      rgba(0, 0, 0, 0) 0deg,
      rgba(0, 0, 0, 0) 280deg,
      rgba(0, 0, 0, 0.08) 294deg,
      rgba(0, 0, 0, 0.28) 304deg,
      rgba(0, 0, 0, 0.68) 316deg,
      rgba(0, 0, 0, 0.98) 328deg,
      rgba(0, 0, 0, 0.72) 340deg,
      rgba(0, 0, 0, 0.24) 352deg,
      rgba(0, 0, 0, 0) 360deg
    );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: translateZ(0);
  will-change: opacity;
}

.cta .section-form {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(18, 31, 63, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.72);
}

/* Forms */

.iti {
    display: block !important;
}

/* Running line */

.placeholder-running-line {
    --rl-gap: 0.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.35);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1em;
    font-size: 1.3em;
    font-family: var(--h1-font-family);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1) 250px, rgba(255, 255, 255, 1) calc(100% - 250px), transparent 100%);
}

.placeholder-running-line__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: barebones-running-line-scroll var(--rl-speed, 40s) linear infinite;
}

.placeholder-running-line__inner {
    flex: 0 0 auto;
    white-space: nowrap;
    padding-right: var(--rl-gap);
}

.placeholder-running-line[data-pause="1"]:hover .placeholder-running-line__track {
  animation-play-state: paused;
}

@keyframes barebones-running-line-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .hero .hero-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .cta-shell {
    --cta-grid-size: 20px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .placeholder-breadcrumbs {
    font-size: 13px;
  }

  .archive-blog-bar-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .archive-blog-bar-nav {
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: nowrap;
    padding: 0;
  }

  .archive-blog-bar__item {
    min-width: max-content;
  }

  .placeholder-running-line {
    padding: 12px 0;
  }

  .placeholder-running-line__inner {
    font-size: 14px;
  }

  .hero p.section-description {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .section-header {
    grid-template-columns: 1fr;
  }

  .section-header-col:nth-child(2) {
    align-items: flex-start;
  }

  .placeholder-contact-modal {
    padding: 12px;
  }

  .placeholder-contact-modal__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }

  .placeholder-contact-modal__content {
    padding: 24px 18px 20px;
  }

  .placeholder-contact-modal__title {
    font-size: 22px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .placeholder-contact-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .page-template .container,
  main.archive .container,
  main.single .container {
      padding: 120px 16px 60px;
  }

  main.page .container.first {
      padding: 150px 12px 0px;
  }
}
