:root {
  --color-primary: #030202;
  --color-secondary: #ffffff;
  --color-text: #444444;
  --color-muted: #444444;
  --color-accent: #030202;
  --color-gold: #353535;
  --color-metal: #c19a5b;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-divider: #0302021a;
  --color-darkdivider: #ffffff1a;
  --color-background: #f2f2f2;
  --color-dark-surface: #030202;
  --color-card: #ffffff;
  --color-ondark: #c6c6c6;

  --container: 1480px;
  --container-bleed: calc(var(--container) * 1.2);
  --gutter: 20px;

  --hero-nav-h: 5.25rem;
  --hero-gap: 4rem;

  --radius-section: 20px;
  --radius-card: 20px;
  --radius-pill: 100px;

  --font-size-primary: 48px;
  --font-size-secondary: 22px;
  --font-size-text: 16px;
  --font-size-hero: 72px;
  --line-height-primary: 1.2;
  --line-height-secondary: 1.2;
  --line-height-text: 1.6;

  --font: "Poppins", Sans-serif;
}

@media (max-width: 1024px) {
  :root {
    --font-size-primary: 38px;
    --font-size-secondary: 20px;
    --font-size-hero: 52px;
    --gutter: 28px;
    --hero-nav-h: 6rem;
    --hero-gap: 3.5rem;
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-primary: 26px;
    --font-size-secondary: 18px;
    --font-size-hero: 32px;
    --gutter: 20px;
    --hero-nav-h: 4.75rem;
    --hero-gap: 3rem;
  }
}

@media (min-width: 1025px) {
  :root {
    --hero-nav-h: 6.75rem;
    --hero-gap: 3.5rem;
  }
}

@media (max-width: 1600px) and (min-width: 1025px) {
  :root {
    --gutter: 48px;
  }
}

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

html {
  scroll-behavior: smooth;
  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;
  }
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font);
  font-size: var(--font-size-text);
  font-weight: 400;
  line-height: var(--line-height-text);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

/* Content remains visible while translations load or JavaScript is unavailable. */
html.i18n-pending body,
html.is-i18n-ready body {
  visibility: visible;
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
.heading-xl {
  margin: 0;
  font-family: var(--font);
  color: var(--color-primary);
  font-size: var(--font-size-primary);
  font-weight: 700;
  line-height: var(--line-height-primary);
  letter-spacing: 0;
}

h3,
h4,
.heading-md {
  margin: 0;
  font-family: var(--font);
  color: var(--color-primary);
  font-size: var(--font-size-secondary);
  font-weight: 700;
  line-height: var(--line-height-secondary);
}

p {
  margin: 0;
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
}

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

::selection {
  background: color-mix(in srgb, var(--color-metal) 28%, white);
  color: var(--color-primary);
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}

main {
  flex: 1;
}

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

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

.section-pad {
  padding-block: 36px;
}

.section-pad-sm {
  padding-block: 28px;
}

@media (min-width: 1025px) {
  .section-pad {
    padding-block: 56px;
  }

  .section-pad-sm {
    padding-block: 40px;
  }
}

.text-body {
  font-family: var(--font);
  font-size: var(--font-size-text);
  font-weight: 300;
  line-height: var(--line-height-text);
}

.funfacts-shell,
.footer-shell {
  background-color: #030202;
  background-image: url("../dark-section-bg-image.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.light-shell {
  background-color: #ffffff;
  background-image: url("../bg-section-bg-image.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  margin-bottom: 1rem;
}

.eyebrow.is-center {
  justify-content: center;
}

.eyebrow-glow {
  pointer-events: none;
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(193, 154, 91, 0.55) 50%,
    transparent 75%
  );
  background-size: 220% 100%;
  opacity: 0.45;
  animation: badge-shimmer 2.8s linear infinite;
}

.eyebrow-inner {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border: 1px solid var(--color-divider);
  background: color-mix(in srgb, var(--color-background) 80%, transparent);
  color: var(--color-accent);
}

.eyebrow.is-light .eyebrow-inner {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--color-metal);
  animation: badge-dot-pulse 1.8s ease-in-out infinite;
}

.eyebrow.is-light .eyebrow-dot {
  animation: none;
  background: var(--color-metal);
}

@keyframes badge-shimmer {
  0% {
    background-position: 140% 0;
  }
  100% {
    background-position: -140% 0;
  }
}

@keyframes badge-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  transition: colors 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s,
    transform 0.2s;
  animation: btn-pulse 2.6s ease-in-out infinite;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 66%
  );
  background-size: 220% 100%;
  animation: btn-shine 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 10;
}

.btn-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--color-metal);
  transition: transform 0.3s;
  animation: arrow-nudge 2s ease-in-out infinite;
}

.btn:hover .btn-arrow {
  animation: none;
  transform: rotate(45deg);
}

.btn-gold {
  background: var(--color-gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--color-accent);
}

.btn-gold .btn-arrow {
  background: var(--color-accent);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(3, 2, 2, 0.15);
}

.btn-outline:hover {
  border-color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark .btn-arrow {
  background: var(--color-accent);
}

.btn-cta {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #c19a5b;
  background: transparent;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  transition: background-color 0.2s;
}

.btn-cta:hover {
  background: rgba(193, 154, 91, 0.12);
}

.btn-cta .icon {
  width: 16px;
  height: 16px;
  color: #c19a5b;
}

@keyframes btn-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(118, 50, 53, 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(118, 50, 53, 0);
    transform: translateY(-1px);
  }
}

@keyframes btn-shine {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@keyframes arrow-nudge {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2px, -2px);
  }
}

.site-header {
  z-index: 100;
}

.site-header.is-hero {
  position: absolute;
  inset-inline: 0;
  top: 0;
  padding-top: 1.25rem;
}

.site-header.is-page {
  position: relative;
  padding-top: 1.25rem;
}

@media (min-width: 640px) {
  .site-header.is-hero,
  .site-header.is-page {
    padding-top: 1.875rem;
  }
}

.nav-bar {
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  padding: 8px 12px;
}

@media (min-width: 768px) {
  .nav-bar {
    padding: 12px 24px;
  }
}

.site-header.is-hero .nav-bar,
.site-header.is-scrolled .nav-bar {
  box-shadow: 0 8px 30px rgba(24, 25, 26, 0.08);
}

.nav-logo-wrap {
  display: flex;
  width: 20%;
  flex-shrink: 0;
  align-items: center;
}

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

.nav-logo img {
  height: 28px;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  object-position: left;
}

@media (min-width: 640px) {
  .nav-logo img {
    height: 36px;
    max-width: 12.5rem;
  }
}

@media (min-width: 768px) {
  .nav-logo img {
    height: 40px;
    max-width: 13.75rem;
  }
}

.nav-desktop {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-link,
.nav-drop > button {
  font-family: var(--font);
  cursor: pointer;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  transition: color 0.2s;
  background: none;
  border: 0;
}

.nav-link:hover,
.nav-drop > button:hover {
  color: var(--color-accent);
}

.nav-drop {
  position: relative;
}

.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-drop .icon {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  transition: transform 0.2s;
}

.nav-drop:hover .icon,
.nav-drop.is-open .icon {
  transform: rotate(180deg);
}

.nav-submenu {
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 20;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-drop:hover .nav-submenu,
.nav-drop:focus-within .nav-submenu,
.nav-drop.is-open .nav-submenu {
  visibility: visible;
  opacity: 1;
}

.nav-submenu-inner {
  min-width: 13.75rem;
  border-radius: 20px;
  border: 1px solid rgba(3, 2, 2, 0.1);
  background: #fff;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.nav-submenu a {
  display: block;
  cursor: pointer;
  border-radius: 10px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  transition: background-color 0.2s, color 0.2s;
}

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

.nav-end {
  margin-left: auto;
  display: flex;
  width: 20%;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.lang-switch {
  display: none;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(3, 2, 2, 0.1);
  background: color-mix(in srgb, var(--color-background) 80%, transparent);
  padding: 4px;
}

.lang-switch button {
  cursor: pointer;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary);
  background: none;
  border: 0;
}

.lang-switch button.is-active {
  background: var(--color-primary);
  color: #fff;
}

.nav-burger {
  margin-left: 4px;
  display: grid;
  width: 40px;
  height: 40px;
  cursor: pointer;
  place-items: center;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  transition: background-color 0.2s;
}

.nav-burger:hover {
  background: var(--color-gold);
}

.nav-burger .icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .lang-switch {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-burger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav-logo-wrap,
  .nav-end {
    width: auto;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(3, 2, 2, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  height: 100%;
  width: min(100%, 22rem);
  flex-direction: column;
  background: var(--color-background);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease-out, visibility 0.3s;
}

body.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .nav-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .nav-overlay,
  .nav-drawer {
    display: none;
  }
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(3, 2, 2, 0.08);
  padding: 16px 20px;
}

.nav-drawer-head img {
  height: 32px;
  width: auto;
  max-width: 11.25rem;
  object-fit: contain;
  object-position: left;
}

.nav-drawer-close {
  display: grid;
  width: 38px;
  height: 38px;
  cursor: pointer;
  place-items: center;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
}

.nav-drawer-close .icon {
  width: 20px;
  height: 20px;
}

.nav-drawer-close:hover {
  background: var(--color-gold);
}

.nav-drawer-tagline {
  padding: 16px 20px 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.375;
  color: var(--color-muted);
}

.nav-drawer-nav {
  margin-top: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  padding: 0 12px 16px;
}

.nav-drawer-nav a,
.nav-drawer-toggle {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  background: none;
  border: 0;
}

.nav-drawer-nav a:hover,
.nav-drawer-toggle:hover {
  background: #fff;
}

.nav-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-drawer-toggle .icon {
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  transition: transform 0.2s;
}

.nav-drawer-toggle.is-open .icon {
  transform: rotate(180deg);
}

.nav-drawer-children {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 0 0 4px 8px;
}

.nav-drawer-toggle.is-open + .nav-drawer-children {
  display: flex;
}

.nav-drawer-children a {
  padding: 10px 12px;
  font-size: 15px;
  color: var(--color-muted);
}

.nav-drawer-foot {
  margin-top: auto;
  border-top: 1px solid rgba(3, 2, 2, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
}

.nav-drawer-contact {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: var(--color-background);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.nav-drawer-contact .ico {
  display: grid;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
}

.nav-drawer-contact .ico .icon {
  width: 16px;
  height: 16px;
}

.nav-drawer-contact small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.nav-drawer-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  font-size: 12px;
  color: var(--color-muted);
}

.nav-drawer-lang .lang-switch {
  display: inline-flex;
}

.hero {
  position: relative;
  width: 100%;
  overflow-x: clip;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 3rem;
  }
}

.hero-frame-wrap {
  padding: 12px 16px 0;
}

@media (min-width: 640px) {
  .hero-frame-wrap {
    padding: 15px 24px 0;
  }
}

@media (min-width: 768px) {
  .hero-frame-wrap {
    padding-inline: 32px;
  }
}

.hero-frame {
  position: relative;
  display: flex;
  height: min(67.5rem, calc(100vh - 1.25rem));
  height: min(67.5rem, calc(100svh - 1.25rem));
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  touch-action: pan-y;
}

@media (max-width: 767px) {
  .hero-frame {
    height: calc(100vh - 9.5rem);
    height: calc(100dvh - 9.5rem);
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.hero-slides img.is-active {
  opacity: 1;
}

.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 25, 26, 0.55);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: flex;
  height: 64px;
  width: 40px;
  transform: translateY(-50%);
  cursor: pointer;
  align-items: center;
  color: #fff;
}

.hero-arrow .icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
}

.hero-arrow.is-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 4px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35), transparent);
}

.hero-arrow.is-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 4px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.35), transparent);
}

@media (min-width: 768px) {
  .hero-arrow {
    display: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--hero-nav-h) + 1.25rem);
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .hero-copy {
    padding-bottom: 5rem;
  }
}

@media (min-width: 768px) {
  .hero-copy {
    padding-top: calc(var(--hero-nav-h) + var(--hero-gap));
    padding-bottom: 7rem;
    transform: translateY(-2rem);
  }
}

@media (min-width: 1024px) {
  .hero-copy {
    padding-bottom: 9rem;
    transform: translateY(-3rem);
  }
}

.hero-grid {
  display: grid;
  width: 100%;
  gap: 16px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    align-items: end;
    column-gap: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    column-gap: 4rem;
  }
}

.hero-title-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 768px) {
  .hero-title-col {
    gap: 20px;
  }
}

.hero-chip {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

@media (min-width: 640px) {
  .hero-chip {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(28px, 6.5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

@media (min-width: 640px) {
  .hero h1 {
    max-width: 18ch;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    max-width: 48.75rem;
  }
}

.hero-desc {
  min-width: 0;
  max-width: 34rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-desc {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .hero-desc {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    font-size: 19px;
  }
}

@media (min-width: 1024px) {
  .hero-desc {
    font-size: 20px;
    line-height: 1.7;
    justify-self: stretch;
    padding-bottom: 6px;
  }
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  height: 6px;
  width: 6px;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  transition: all 0.3s;
}

.hero-dots button.is-active {
  width: 32px;
  background: #fff;
}

.hero-dots-desktop {
  display: none;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero-dots-desktop {
    display: block;
    margin-top: 2.5rem;
  }
}

.hero-dots-mobile {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 20px;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.hero-dots-mobile .hero-dots {
  pointer-events: auto;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

@media (min-width: 768px) {
  .hero-dots-mobile {
    display: none;
  }
}

.hero-media {
  position: relative;
  z-index: 30;
  margin-top: -2.5rem;
  padding: 0 16px 8px;
}

@media (min-width: 640px) {
  .hero-media {
    padding-inline: 24px;
  }
}

@media (min-width: 768px) {
  .hero-media {
    margin-top: -7rem;
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .hero-media {
    margin-top: -10rem;
  }
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 12px;
}

@media (min-width: 640px) {
  .hero-media-grid {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .hero-media-grid {
    grid-template-columns: 1.94fr 1fr;
    gap: 1.875rem;
  }
}

.hero-video,
.hero-still {
  position: relative;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(24, 25, 26, 0.28);
}

@media (min-width: 640px) {
  .hero-video,
  .hero-still {
    border-radius: 20px;
  }
}

.hero-video {
  background: var(--color-primary);
}

.hero-video img,
.hero-still img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-still img {
  object-position: bottom;
}

@media (min-width: 768px) {
  .hero-still {
    aspect-ratio: auto;
    min-height: 0;
    align-self: stretch;
  }
}

.hero-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.play-ring-wrap {
  position: relative;
  display: grid;
  width: clamp(3.5rem, 12vw, 7.5rem);
  height: clamp(3.5rem, 12vw, 7.5rem);
  place-items: center;
}

.hero-play-ring,
.footer-contact-ring {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-play-spin 14s linear infinite;
  transform-origin: 50% 50%;
}

.footer-contact-ring {
  animation-duration: 16s;
}

.play-btn {
  position: relative;
  z-index: 10;
  display: grid;
  width: clamp(2rem, 5.5vw, 3.5rem);
  height: clamp(2rem, 5.5vw, 3.5rem);
  cursor: pointer;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s;
}

.play-btn:hover {
  background: var(--color-gold);
}

.play-btn .icon {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.hero-video-soon {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  place-items: center;
  background: rgba(3, 2, 2, 0.9);
  padding: 16px;
  text-align: center;
  color: #fff;
}

.hero-video-soon.is-on {
  display: grid;
}

.hero-video-soon button {
  margin-top: 12px;
  cursor: pointer;
  border-radius: 100px;
  background: #fff;
  padding: 8px 20px;
  font-size: 16px;
  color: var(--color-primary);
}

@keyframes hero-play-spin {
  to {
    transform: rotate(360deg);
  }
}

.about-home {
  overflow-x: clip;
  padding: 16px 0 40px;
}

@media (min-width: 768px) {
  .about-home {
    padding: 24px 0 56px;
  }
}

@media (min-width: 1024px) {
  .about-home {
    overflow-x: visible;
    padding: 32px 0 64px;
  }
}

.about-home-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about-home-inner {
    flex-direction: row;
    gap: 0;
  }
}

.about-photos {
  position: relative;
  width: 100%;
  overflow-x: clip;
}

@media (min-width: 1024px) {
  .about-photos {
    width: 48%;
    overflow: visible;
  }
}

.about-photos-frame {
  position: relative;
  width: 80%;
  overflow: visible;
  border-radius: 20px;
}

.about-photos-main {
  position: relative;
  aspect-ratio: 494 / 678;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.about-photos-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photos-inset {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  width: 58%;
  max-width: 17.5rem;
  transform: translate(18%, -50%);
}

@media (min-width: 640px) {
  .about-photos-inset {
    transform: translate(25%, -50%);
  }
}

@media (min-width: 1024px) {
  .about-photos-inset {
    transform: translate(50%, -50%);
  }
}

.about-photos-inset-inner {
  overflow: hidden;
  border-radius: 20px;
  border: 6px solid var(--color-background);
}

.about-photos-inset-inner > div {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  background: var(--color-background);
}

.about-photos-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 1024px) {
  .about-copy {
    width: 52%;
    padding-left: 40px;
  }
}

.about-copy h2,
.about-copy .eyebrow,
.about-copy p {
  width: 100%;
}

.about-copy .stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  margin-top: 4px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--color-divider);
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(24, 25, 26, 0.06);
}

@media (min-width: 640px) {
  .feature-card {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .feature-card {
    padding: 28px;
  }
}

.feature-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.feature-item {
  display: flex;
  gap: 16px;
}

.icon-bubble {
  display: grid;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: var(--color-gold);
  color: #fff;
}

.icon-bubble .icon {
  width: 20px;
  height: 20px;
}

.feature-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .feature-item h3 {
    font-size: 20px;
  }
}

.brands-shell {
  overflow: hidden;
  border-radius: 20px;
  padding: 48px 20px;
  color: #fff;
}

@media (min-width: 768px) {
  .brands-shell {
    padding: 64px 40px;
  }
}

@media (min-width: 1024px) {
  .brands-shell {
    padding: 80px 60px;
  }
}

.brands-head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .brands-head {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .brands-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
}

.brands-head-left {
  width: 100%;
}

.brands-head-left h2 {
  margin-top: 4px;
  color: #fff;
}

.brands-head-right {
  width: 100%;
}

.brands-head-right p {
  max-width: 26.25rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
  .brands-head-left {
    width: 50%;
    padding-right: 1.875rem;
  }

  .brands-head-right {
    width: 50%;
    padding-left: 16px;
  }

  html[data-page="home"] .about-copy {
    padding-right: 40px;
  }

  html[data-page="home"] .brands-head-left {
    padding-left: 1.875rem;
  }

  html[data-page="home"] .brands-head-right {
    padding-right: 16px;
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 20px;
}

@media (min-width: 640px) {
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.brand-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 21.25rem;
  cursor: pointer;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #1a1a1a;
  padding: 24px;
  transition: background-color 0.3s, transform 0.3s;
}

.brand-card:hover,
.brand-card.is-hot {
  transform: translateY(-4px);
  background: #242424;
}

@media (min-width: 768px) {
  .brand-card {
    min-height: 22.5rem;
    padding: 28px;
  }
}

.brand-card-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.brand-card-bg-fill {
  position: absolute;
  inset: -38%;
}

.brand-card-bg-fill img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0.14;
  filter: blur(2.5px);
  mix-blend-mode: screen;
  transition: opacity 0.3s, filter 0.3s;
}

.brand-card:hover .brand-card-bg-fill img,
.brand-card.is-hot .brand-card-bg-fill img {
  opacity: 0.28;
  filter: blur(2.5px);
}

.brand-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.4), #1a1a1a);
}

.brand-card-body {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.brand-card-logo {
  display: flex;
  height: 9.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .brand-card-logo {
    height: 10rem;
  }
}

.brand-card-logo span {
  position: relative;
  display: block;
  height: 6.5rem;
  width: 100%;
  max-width: 16.25rem;
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .brand-card-logo span {
    height: 7rem;
    max-width: 17.5rem;
  }
}

.brand-card:hover .brand-card-logo span,
.brand-card.is-hot .brand-card-logo span {
  transform: scale(1.05);
}

.brand-card-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
  transition: filter 0.3s;
}

.brand-card:hover .brand-card-logo img,
.brand-card.is-hot .brand-card-logo img {
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.brand-card-meta {
  margin-top: auto;
  display: flex;
  min-height: 11.25rem;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.brand-card-meta h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.375;
  color: #fff;
}

@media (min-width: 768px) {
  .brand-card-meta h3 {
    font-size: 22px;
  }
}

.brand-card-meta p {
  margin-bottom: 16px;
  flex: 1;
  color: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-card-meta .go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-ondark);
  transition: color 0.2s;
}

.brand-card:hover .brand-card-meta .go,
.brand-card.is-hot .brand-card-meta .go {
  color: #fff;
}

.brand-card-meta .go .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.brand-card:hover .brand-card-meta .go .icon,
.brand-card.is-hot .brand-card-meta .go .icon {
  transform: translate(2px, -2px);
}

.brands-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .brands-trust {
    justify-content: flex-start;
  }
}

.brands-avatars {
  display: flex;
}

.brands-avatars span {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 999px;
  border: 2px solid #030202;
  margin-left: -8px;
}

.brands-avatars span:first-child {
  margin-left: 0;
}

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

.vision-intro {
  margin-inline: auto;
  max-width: 53.75rem;
  text-align: center;
}

.vision-intro h2 {
  margin-bottom: 20px;
}

.vision-intro p {
  margin-bottom: 32px;
}

.vision-grid {
  margin-inline: auto;
  display: grid;
  max-width: 61.25rem;
  gap: 16px;
}

@media (min-width: 768px) {
  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.vision-card {
  border-radius: 20px;
  border: 1px solid var(--color-divider);
  background: #fff;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(24, 25, 26, 0.04);
}

@media (min-width: 768px) {
  .vision-card {
    padding: 24px;
  }
}

.check-bubble {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 999px;
  background: rgba(193, 154, 91, 0.15);
  color: var(--color-metal);
}

.check-bubble .icon {
  width: 16px;
  height: 16px;
}

.vision-card p {
  color: var(--color-primary);
}

.quote {
  margin: 40px auto 0;
  max-width: 45rem;
  text-align: center;
  font-size: 20px;
  line-height: 1.375;
  color: var(--color-accent);
  font-weight: 400;
}

@media (min-width: 768px) {
  .quote {
    font-size: 22px;
  }
}

.quote.is-metal {
  color: #c19a5b;
}

.video-shell {
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 20px;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .video-shell {
    padding: 56px 40px;
  }
}

@media (min-width: 1024px) {
  .video-shell {
    padding: 64px 60px;
  }
}

.video-grid {
  display: grid;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.video-photo {
  position: relative;
  min-height: 17.5rem;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .video-photo {
    min-height: 26.25rem;
  }
}

@media (min-width: 1024px) {
  .video-photo {
    min-height: 30rem;
  }
}

.video-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-top,
.marquee-bottom {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  z-index: 10;
  padding-block: 12px;
}

.marquee-top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
}

.marquee-bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

.brand-logo-stage.is-light .marquee-top {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
}

.brand-logo-stage.is-light .marquee-bottom {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.makam-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.makam-marquee-ltr {
  overflow: hidden;
}

.makam-marquee-rtl {
  overflow: hidden;
}

.makam-marquee-ltr .makam-marquee-track {
  animation: makam-marquee-ltr 28s linear infinite;
}

.makam-marquee-rtl .makam-marquee-track {
  animation: makam-marquee-rtl 28s linear infinite;
}

.marquee-text {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-inline: 4px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.9);
}

.marquee-text.is-dark {
  color: rgba(3, 2, 2, 0.55);
}

@media (min-width: 640px) {
  .marquee-text {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .marquee-text {
    font-size: 13px;
  }
}

@keyframes makam-marquee-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes makam-marquee-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.video-copy h2 {
  margin-bottom: 16px;
}

.video-copy p {
  margin-bottom: 24px;
  color: var(--color-muted);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-primary);
}

.check-mini {
  margin-top: 2px;
  display: grid;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: var(--color-gold);
  color: #fff;
}

.check-mini.is-accent {
  background: var(--color-accent);
}

.check-mini .icon {
  width: 14px;
  height: 14px;
}

.video-stats {
  margin-top: 40px;
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--color-divider);
  padding-top: 40px;
}

@media (min-width: 640px) {
  .video-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

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

@media (min-width: 640px) {
  .stat-block {
    text-align: left;
  }
}

.stat-block .heading-xl {
  margin-bottom: 8px;
}

.stat-block h3 {
  margin-bottom: 8px;
}

.stat-block p {
  color: var(--color-muted);
}

.cta-block {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #121212;
  text-align: center;
  color: #fff;
}

.cta-block > img.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cta-wave {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  left: 0;
  z-index: 1;
  width: 62%;
  max-width: 51.25rem;
  -webkit-mask-image: radial-gradient(120% 100% at 0% 100%, #000 0%, #000 38%, transparent 74%);
  mask-image: radial-gradient(120% 100% at 0% 100%, #000 0%, #000 38%, transparent 74%);
}

.cta-wave .dim {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.7);
}

.cta-wave canvas {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-mark {
  pointer-events: none;
  position: absolute;
  top: 18%;
  right: 6%;
  bottom: 18%;
  z-index: 1;
  display: flex;
  width: 28%;
  max-width: 21.25rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-mark img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.14;
  filter: brightness(0) invert(0.32);
}

.cta-inner {
  position: relative;
  z-index: 10;
  padding: 64px 20px;
}

@media (min-width: 768px) {
  .cta-inner {
    padding: 80px 40px;
  }
}

@media (min-width: 1024px) {
  .cta-inner {
    padding: 96px 64px;
  }
}

.cta-inner-box {
  margin-inline: auto;
  max-width: 43.75rem;
}

.cta-inner h2 {
  color: #fff;
}

.cta-rule {
  display: block;
  margin: 20px auto 24px;
  height: 3px;
  width: 56px;
  background: #c19a5b;
}

.cta-inner p {
  margin: 0 auto 36px;
  max-width: 38.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .cta-actions {
    gap: 16px;
  }
}

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

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 30px;
  }
}

.footer-shell {
  overflow: hidden;
  border-radius: 20px;
  padding-top: 60px;
  color: #fff;
}

@media (min-width: 768px) {
  .footer-shell {
    padding-top: 80px;
  }
}

.footer-pad {
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .footer-pad {
    padding-inline: 40px;
  }
}

@media (min-width: 1024px) {
  .footer-pad {
    padding-inline: 60px;
  }
}

.footer-top {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .footer-top {
    margin-bottom: 48px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
  }
}

.footer-top h2 {
  max-width: 45rem;
  color: #fff;
}

.footer-rings {
  margin-inline: auto;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-rings {
    margin-inline: 0;
    gap: 20px;
  }
}

.footer-ring {
  position: relative;
  display: grid;
  width: 8.75rem;
  height: 8.75rem;
  place-items: center;
}

@media (min-width: 768px) {
  .footer-ring {
    width: 10rem;
    height: 10rem;
  }
}

.footer-ring-btn {
  position: relative;
  z-index: 10;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-primary);
  padding: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: var(--color-primary);
  transition: background-color 0.2s, color 0.2s;
}

@media (min-width: 768px) {
  .footer-ring-btn {
    width: 64px;
    height: 64px;
    padding: 12px;
  }
}

.footer-ring:hover .footer-ring-btn {
  background: var(--color-gold);
}

.footer-ring-btn img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-ring-btn.is-light {
  background: #fff;
}

.footer-ring:hover .footer-ring-btn.is-light {
  background: var(--color-gold);
  color: #fff;
}

.footer-ring-btn .icon {
  width: 24px;
  height: 24px;
}

.footer-cols {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
  }
}

.footer-brand-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

@media (min-width: 768px) {
  .footer-brand-card {
    padding: 28px;
  }
}

.footer-brand-card img {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 16px;
}

.footer-brand-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-follow {
  margin-bottom: 12px;
  font-size: 16px;
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  line-height: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.2s;
}

.socials a:hover {
  background: var(--color-primary);
}

.socials svg {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-cols h3 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-cols li + li {
  margin-top: 12px;
}

.footer-cols a {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-cols a:hover {
  color: var(--color-ondark);
}

.dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--color-ondark);
}

.footer-bar {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 20px;
}

@media (min-width: 768px) {
  .footer-bar {
    margin-top: 48px;
    padding: 20px 40px;
  }
}

@media (min-width: 1024px) {
  .footer-bar {
    padding-inline: 60px;
  }
}

.footer-bar-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-bar-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.footer-bar p,
.footer-bar a,
.footer-bar span {
  font-size: 13px;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bar-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 640px) {
  .footer-bar-contacts {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
  }
}

.footer-bar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bar-contacts a:hover {
  color: var(--color-ondark);
}

.footer-bar-contacts .icon {
  width: 14px;
  height: 14px;
  color: var(--color-ondark);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal nav a:hover {
  color: var(--color-ondark);
}

.footer-legal p {
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 32px rgba(3, 2, 2, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
}

.back-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-top:hover {
  background: var(--color-gold);
}

.back-top .icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .back-top {
    bottom: 32px;
    right: 32px;
  }
}

.page-hero-shell {
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .page-hero-shell {
    padding: 56px 40px;
  }
}

@media (min-width: 1024px) {
  .page-hero-shell {
    padding: 64px 60px;
  }
}

.page-hero-center {
  margin-inline: auto;
  max-width: 45rem;
  text-align: center;
}

.page-hero-center h1 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}

.page-hero-left h1 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.pt-page {
  padding-top: 32px;
}

@media (min-width: 768px) {
  .pt-page {
    padding-top: 40px;
  }
}

.about-intro-grid {
  display: grid;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.about-intro-grid h1 {
  margin-bottom: 20px;
  max-width: 22ch;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
}

.badge-pill {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 100px;
  background: rgba(193, 154, 91, 0.15);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-accent);
}

.media-frame {
  position: relative;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 20px;
}

.media-frame img,
.media-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .media-frame {
    margin-inline: 0;
    max-width: none;
  }
}

.story-grid {
  display: grid;
  align-items: start;
  gap: 40px;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .story-copy {
    order: 2;
  }

  .story-grid .media-frame {
    order: 1;
  }
}

.story-copy .quote,
.story-copy .lead-accent {
  font-size: 20px;
  line-height: 1.375;
  color: var(--color-accent);
}

html[data-page="about"] .story-grid {
  align-items: center;
}

html[data-page="about"] .about-intro-grid > div:first-child,
html[data-page="about"] .story-grid > .story-copy {
  width: calc(100% - 32px);
  min-width: 0;
  margin-inline: auto;
  justify-self: center;
  text-align: left;
}

@media (min-width: 768px) {
  html[data-page="about"] .about-intro-grid > div:first-child,
  html[data-page="about"] .story-grid > .story-copy {
    width: calc(100% - 48px);
  }
}

@media (min-width: 1024px) {
  html[data-page="about"] .about-intro-grid > div:first-child,
  html[data-page="about"] .story-grid > .story-copy {
    width: calc(100% - 64px);
  }
}

html[data-page="about"] .about-intro-grid .text-body,
html[data-page="about"] .story-copy .text-body {
  line-height: 1.65;
}

html[data-page="about"] .story-copy .lead-accent {
  line-height: 1.5;
}

@media (max-width: 1023px) {
  html[data-page="about"] .about-intro-grid,
  html[data-page="about"] .story-grid {
    row-gap: 24px;
  }
}

.production-shell {
  overflow: hidden;
  border-radius: 20px;
  padding: 48px 20px;
  color: #fff;
}

@media (min-width: 768px) {
  .production-shell {
    padding: 64px 40px;
  }
}

@media (min-width: 1024px) {
  .production-shell {
    padding-inline: 60px;
  }
}

.production-intro {
  margin-bottom: 40px;
  max-width: 45rem;
}

.production-intro h2 {
  margin-bottom: 16px;
  color: #fff;
}

.production-intro p {
  color: rgba(255, 255, 255, 0.75);
}

.production-pillars {
  display: grid;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

@media (min-width: 640px) {
  .production-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ico-soft {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c19a5b;
}

.ico-soft .icon {
  width: 20px;
  height: 20px;
}

.production-pillars h3 {
  margin-bottom: 8px;
  color: #fff;
}

.production-pillars p {
  color: rgba(255, 255, 255, 0.7);
}

.production-close {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  font-size: 18px;
  line-height: 1.375;
  color: #c19a5b;
}

@media (min-width: 768px) {
  .production-close {
    font-size: 20px;
  }
}

.mv-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.white-card {
  border-radius: 20px;
  border: 1px solid var(--color-divider);
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(24, 25, 26, 0.05);
}

@media (min-width: 768px) {
  .white-card {
    padding: 32px;
  }
}

.white-card h2 {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.values-head {
  margin-bottom: 32px;
  max-width: 40rem;
}

.values-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  border-radius: 20px;
  border: 1px solid var(--color-divider);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(24, 25, 26, 0.04);
}

.ico-gold {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 999px;
  background: rgba(193, 154, 91, 0.15);
  color: var(--color-metal);
}

.ico-gold .icon {
  width: 20px;
  height: 20px;
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .value-card h3 {
    font-size: 20px;
  }
}

.process-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.process-shell {
  border-radius: 20px;
  padding: 24px;
}

@media (min-width: 768px) {
  .process-shell {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .process-shell {
    padding: 40px;
  }
}

.process-list li {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.process-list li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

.process-num {
  font-size: 18px;
  color: var(--color-metal);
}

.process-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.media-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
}

.about-cta {
  margin-inline: auto;
  max-width: 45rem;
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 16px;
}

.about-cta p {
  margin-bottom: 32px;
}

.about-cta .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-cta .note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-muted);
}

.brand-jump {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid rgba(3, 2, 2, 0.1);
  background: #fff;
  padding: 4px 12px 4px 6px;
  font-size: 14px;
  color: var(--color-primary);
  transition: border-color 0.2s, color 0.2s;
}

.brand-chip:hover {
  border-color: rgba(193, 154, 91, 0.4);
  color: var(--color-accent);
}

.brand-chip > span:first-child {
  position: relative;
  overflow: hidden;
  height: 48px;
  width: 64px;
  flex-shrink: 0;
}

.brand-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: center;
}

@media (min-width: 768px) {
  .brand-jump {
    margin-top: 48px;
  }

  .brand-chip {
    font-size: 15px;
  }

  .brand-chip > span:first-child {
    height: 56px;
    width: 72px;
  }
}

/* Scale only the contents; intrinsic capsule dimensions stay unchanged. */
.brand-chip-label {
  display: inline-block;
  flex: 0 0 auto;
  transform: scale(1.18);
  transform-origin: center;
}

/* Logo-only navigation: retain the original label footprint and capsule sizes.
   Limits compensate for transparent PNG margins; visible artwork fits 70% x 60%. */
html[data-page="brands"] .brand-chip {
  position: relative;
  justify-content: center;
  overflow: hidden;
}
html[data-page="brands"] .brand-chip-label {
  visibility: hidden;
}
html[data-page="brands"] .brand-chip > span:first-child {
  position: static;
  overflow: visible;
}
html[data-page="brands"] .brand-chip img {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: var(--chip-logo-max-width);
  max-height: var(--chip-logo-max-height);
  object-fit: contain;
  transform: translate(var(--chip-logo-x), var(--chip-logo-y));
}
html[data-page="brands"] .brand-chip[href="#promeck"] {
  --chip-logo-max-width: 199.51%;
  --chip-logo-max-height: 72.39%;
  --chip-logo-x: -50.31%;
  --chip-logo-y: -50%;
}
html[data-page="brands"] .brand-chip[href="#prowich"] {
  --chip-logo-max-width: 208.22%;
  --chip-logo-max-height: 67.59%;
  --chip-logo-x: -50.06%;
  --chip-logo-y: -48.66%;
}
html[data-page="brands"] .brand-chip[href="#snapwich"] {
  --chip-logo-max-width: 126.68%;
  --chip-logo-max-height: 88.35%;
  --chip-logo-x: -48.04%;
  --chip-logo-y: -46.26%;
}
html[data-page="brands"] .brand-chip[href="#meckchef"] {
  --chip-logo-max-width: 209.74%;
  --chip-logo-max-height: 60.65%;
  --chip-logo-x: -50.06%;
  --chip-logo-y: -50%;
}

.brand-section {
  scroll-margin-top: 7rem;
}

.brand-panel {
  overflow: hidden;
  border-radius: 20px;
  padding: 48px 20px;
}

.brand-panel.is-dark {
  color: #fff;
}

.brand-panel.is-light {
  border: 1px solid var(--color-divider);
  background: #fff;
  box-shadow: 0 12px 40px rgba(24, 25, 26, 0.05);
}

@media (min-width: 768px) {
  .brand-panel {
    padding: 64px 40px;
  }
}

@media (min-width: 1024px) {
  .brand-panel {
    padding-inline: 60px;
  }
}

.brand-panel-grid {
  display: grid;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .brand-panel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .brand-panel-grid.is-reverse > :first-child {
    order: 2;
  }
}

.brand-logo-stage {
  position: relative;
  display: flex;
  min-height: 17.5rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .brand-logo-stage {
    min-height: 22.5rem;
  }
}

.brand-logo-stage.is-dark {
  background: #1a1a1a;
}

.brand-logo-stage.is-light {
  background: var(--color-background);
}

.brand-logo-stage .ghost {
  pointer-events: none;
  position: absolute;
  inset: -30%;
  opacity: 0.18;
  filter: blur(2px);
}

.brand-logo-stage .ghost img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.brand-logo-stage.is-dark .ghost {
  mix-blend-mode: screen;
}

.brand-logo-stage.is-light .ghost {
  opacity: 0.12;
}

.brand-logo-stage .main-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.brand-logo-stage .main-logo {
  position: relative;
  z-index: 10;
  height: 7rem;
  width: 100%;
  max-width: 17.5rem;
  transition: transform 0.5s;
}

.brand-logo-stage:hover .main-logo {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .brand-logo-stage .main-logo {
    height: 9rem;
    max-width: 22.5rem;
  }
}

.brand-logo-stage .main-logo img {
  filter: none;
  transition: filter 0.3s;
}

.brand-logo-stage.is-dark .main-logo img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
}

.brand-logo-stage:hover .main-logo img {
  filter: none;
}

.brand-panel.is-dark h2 {
  color: #fff;
}

.brand-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.375;
}

.brand-panel .copy p + p {
  margin-top: 16px;
}

.brand-panel.is-dark .copy p {
  color: rgba(255, 255, 255, 0.75);
}

.brand-panel.is-light .copy p {
  color: var(--color-muted);
}

.brand-panel .btn {
  margin-top: 32px;
}

.principles-lead {
  margin: 0 auto 48px;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .principles-lead {
    margin-bottom: 64px;
  }
}

.principles-lead p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .principles-lead p {
    font-size: 20px;
  }

}

.principles-lead .accent {
  display: inline;
  font-weight: 700;
  color: #c19a5b;
}

.principles {
  display: grid;
}

@media (min-width: 768px) {
  .principles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .principles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.principle {
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(3, 2, 2, 0.1);
}

.principle:last-child {
  border-bottom: 0;
}

.principle .icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  color: #c19a5b;
}

.principle h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
}

.principle p {
  font-size: 14px;
  line-height: 1.625;
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .principle {
    padding-inline: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .principle:nth-child(odd) {
    border-right: 1px solid rgba(3, 2, 2, 0.1);
  }

  .principle:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(3, 2, 2, 0.1);
  }

  .principle:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .principle {
    border-bottom: 0;
    border-right: 1px solid rgba(3, 2, 2, 0.1);
    padding-inline: 32px;
  }

  .principle:last-child {
    border-right: 0;
  }

  .principle h3 {
    font-size: 18px;
  }

  .principle p {
    font-size: 15px;
  }
}

.contact-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
  }
}

.contact-info {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .contact-info {
    padding: 48px 32px;
  }
}

@media (min-width: 1024px) {
  .contact-info {
    padding-inline: 40px;
  }
}

.contact-info h2 {
  margin-bottom: 32px;
  font-size: clamp(24px, 2.6vw, 32px);
  color: #fff;
}

.contact-info li + li {
  margin-top: 20px;
}

.contact-row {
  display: flex;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  transition: background-color 0.2s;
}

a.contact-row:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-row .ico {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: var(--color-gold);
  color: #fff;
}

.contact-row .ico .icon {
  width: 20px;
  height: 20px;
}

.contact-row small {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-row span {
  display: block;
  font-size: 17px;
  color: #fff;
}

.contact-note {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-logo {
  margin-top: 32px;
  display: flex;
  min-height: 10rem;
  flex: 1;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-logo {
    margin-top: 40px;
    min-height: 12.5rem;
  }
}

.contact-logo img {
  width: 85%;
  max-width: 22.5rem;
  height: auto;
  object-fit: contain;
  animation: makam-logo-float 5s ease-in-out infinite;
}

@keyframes makam-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.contact-form-card h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 32px);
}

.contact-form-card .lead {
  margin-bottom: 32px;
  color: var(--color-muted);
}

.form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-grid.is-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(3, 2, 2, 0.1);
  background: var(--color-background);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--color-primary);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(193, 154, 91, 0.5);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.field-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-muted);
}

.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.375;
  color: var(--color-muted);
}

.kvkk-check input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-metal);
}

.kvkk-check a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(3, 2, 2, 0.25);
}

.kvkk-check a:hover {
  color: var(--color-accent);
}

.form-submit {
  padding-top: 8px;
}

.form-submit button {
  width: 100%;
  cursor: pointer;
  border-radius: 100px;
  background: var(--color-gold);
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .form-submit button {
    width: auto;
  }
}

.form-submit button:hover {
  background: var(--color-accent);
}

.form-hint {
  display: none;
  font-size: 14px;
  color: var(--color-muted);
}

.form-hint.is-on {
  display: block;
}

.closing-band {
  margin-inline: auto;
  max-width: 50rem;
  text-align: center;
}

.closing-band p {
  font-size: 20px;
  line-height: 1.375;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .closing-band p {
    font-size: 24px;
  }
}

.cards-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.doc-card {
  display: flex;
  height: 100%;
  width: 100%;
  cursor: pointer;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--color-divider);
  background: #fff;
  text-align: left;
  box-shadow: 0 12px 36px rgba(24, 25, 26, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(24, 25, 26, 0.1);
}

.doc-card-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-background);
}

.doc-card-media.is-policy {
  aspect-ratio: 1839 / 2560;
}

.doc-card-media.is-cert {
  aspect-ratio: 3 / 4;
  background: #f7f7f7;
}

.doc-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

.doc-card-media.is-cert img {
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

@media (min-width: 768px) {
  .doc-card-media.is-cert img {
    padding: 16px;
  }
}

.doc-card:hover .doc-card-media img {
  transform: scale(1.02);
}

.doc-card-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--color-divider);
  padding: 16px 20px;
}

@media (min-width: 768px) {
  .doc-card-meta {
    padding: 20px 24px;
  }
}

.doc-card-meta strong {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.375;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .doc-card-meta strong {
    font-size: 20px;
  }
}

.doc-card-meta span {
  font-size: 14px;
  color: var(--color-muted);
}

.legal-list {
  margin-inline: auto;
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .legal-list {
    gap: 40px;
  }
}

.legal-article h2 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 24px);
}

.legal-article p {
  white-space: pre-line;
  color: var(--color-muted);
}

.legal-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-muted);
}

.page-hero-left .meta {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  background: rgba(3, 2, 2, 0.8);
  padding: 16px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.lightbox.is-on {
  display: flex;
}

.lightbox-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--color-gold);
  color: #fff;
}

.lightbox-close .icon {
  width: 20px;
  height: 20px;
}

.lightbox-img {
  position: relative;
  height: min(88svh, 920px);
  width: 100%;
  max-width: 50rem;
}

.lightbox-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .lightbox {
    padding: 32px;
  }

  .lightbox-close {
    right: 32px;
    top: 32px;
  }
}

/* Reveal hooks retain their layout, but never gate content visibility. */
.reveal {
  opacity: 1;
  transform: none;
}

.text-reveal-word {
  display: inline-block;
  white-space: nowrap;
}

.text-reveal-inner {
  display: inline;
}

.text-reveal-unit {
  display: inline-block;
  opacity: 1;
}

/* Prose only: keep centered CTA lead-ins and short trust slogans unchanged. */
p.text-body:not([data-i18n$="ctaText"]):not([data-i18n="discover.text"]):not([data-i18n="services.trust"]),
p.hero-desc,
.story-copy p.lead-accent,
.closing-band > p,
.principles-lead > p,
.principle > p,
p.legal-note,
.white-card .check-list .text-body {
  text-align: justify;
  text-align-last: left;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.legal-article .text-body {
  white-space: pre-line;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .page-enter,
  body.page-enter {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .text-reveal-unit {
    opacity: 1;
    animation: none !important;
  }

  .badge-glow,
  .eyebrow-dot,
  .eyebrow-glow,
  .btn,
  .btn::before,
  .btn-arrow,
  .hero-play-ring,
  .footer-contact-ring,
  .makam-marquee-ltr .makam-marquee-track,
  .makam-marquee-rtl .makam-marquee-track,
  .contact-logo img {
    animation: none !important;
  }
}

/* Blog */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--color-muted);
}

.page-hero-center .breadcrumb {
  justify-content: center;
}

.breadcrumb a {
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.breadcrumb-current {
  color: var(--color-primary);
}

.breadcrumb-sep {
  opacity: 0.5;
}

.blog-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-divider);
  background: #fff;
  box-shadow: 0 12px 36px rgba(24, 25, 26, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(24, 25, 26, 0.1);
}

.blog-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-background);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-tag {
  margin-bottom: 0;
  font-size: 12px;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

@media (min-width: 768px) {
  .blog-card-body {
    padding: 24px;
  }
}

.blog-card-title {
  font-size: 19px;
  line-height: 1.3;
}

.blog-card-title a {
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  flex: 1;
  margin: 0;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  margin-top: auto;
  padding-top: 4px;
}

.blog-card-date {
  font-size: 13px;
  color: var(--color-muted);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  transition: color 0.2s;
  white-space: nowrap;
}

.blog-card-link .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.blog-card-link:hover {
  color: var(--color-accent);
}

.blog-card-link:hover .icon {
  transform: translate(2px, -2px);
}

.blog-cover {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 40px rgba(24, 25, 26, 0.08);
}

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

.blog-article-body {
  margin-inline: auto;
  max-width: 50rem;
}

.blog-article-body .legal-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-article-body .legal-article h2 {
  margin-bottom: 0;
}

.blog-article-body .legal-article p {
  white-space: normal;
}

.blog-article-body .check-list {
  margin: 4px 0;
}

.blog-pager {
  margin-inline: auto;
  max-width: 50rem;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.blog-pager .btn-outline {
  flex: 1 1 auto;
  justify-content: center;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--color-muted);
  transition: color 0.2s;
}

.blog-back .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.blog-back:hover {
  color: var(--color-accent);
}

.blog-back:hover .icon {
  transform: translateX(-2px);
}
