:root {
  --gold: #d4a72c;
  --yellow: #f4d66d;
  --ink: #211b12;
  --paper: #ffffff;
  --ink-soft: color-mix(in srgb, var(--ink) 84%, var(--paper));
  --muted: color-mix(in srgb, var(--ink) 68%, var(--paper));
  --line: color-mix(in srgb, var(--ink) 20%, var(--paper));
  --gold-dark: color-mix(in srgb, var(--gold) 62%, var(--ink));
  --focus: var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 0;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
:target { scroll-margin-top: 90px; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.065em;
  text-decoration: none;
}
.wordmark--footer { color: #ffffff; }
.nav-list,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-list a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-list a { font-size: 0.92rem; font-weight: 650; text-decoration: none; }
.nav-list a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; }
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--yellow);
  background-image: url('/meyala-hero-golden.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  gap: 20px;
}
.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 88px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--yellow); }
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 7.2vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 760;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
h3 { margin-bottom: 10px; font-size: 1.2rem; letter-spacing: -.025em; }
.hero__lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}
.button--primary { background: var(--ink); color: var(--paper); }
.button--primary:hover { background: var(--ink-soft); }
.button--quiet { background: transparent; }
.button--quiet:hover { background: var(--paper); }
.hero__portrait {
  min-height: 650px;
  margin-right: calc((100vw - min(1120px, calc(100vw - 40px))) / -2);
}
.section { padding-block: 110px; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 660px; color: var(--muted); font-size: 1.1rem; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principle { padding: 30px 28px 10px 0; }
.principle + .principle { padding-left: 28px; border-left: 1px solid var(--line); }
.principle__number { display: block; margin-bottom: 54px; color: var(--gold-dark); font-size: .76rem; font-weight: 800; }
.principle p { color: var(--muted); }
.section--ink { background: #000000; color: #ffffff; }
.company-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: end; }
.company-copy { max-width: 560px; color: #ffffff; font-size: 1.15rem; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 28px;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background: #000000;
  color: #ffffff;
  font-style: normal;
}
.contact-card__label { margin-bottom: 6px; color: var(--yellow); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card p:last-child { margin: 10px 0 0; color: #ffffff; }
.contact-card a,
.prose a { overflow-wrap: anywhere; }
.site-footer {
  padding-block: 70px 34px;
  background: #000000;
  color: #ffffff;
  border-top: 1px solid color-mix(in srgb, var(--paper) 22%, var(--ink));
}
.site-footer__grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; }
.site-footer__grid p { margin: 8px 0 0; }
.footer-links { flex-wrap: wrap; justify-content: flex-end; }
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--paper) 22%, var(--ink));
  font-size: .82rem;
}
.site-footer__legal p { margin: 0; }
.legal-hero { padding-block: 86px 56px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 850px; margin-bottom: 18px; font-size: clamp(2.8rem, 6vw, 5.3rem); }
.legal-hero p { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 720px); gap: 72px; padding-block: 72px 110px; }
.legal-meta { position: sticky; top: 112px; align-self: start; color: var(--muted); font-size: .84rem; }
.legal-meta strong { display: block; color: var(--ink); }
.prose h2 { margin: 48px 0 12px; font-size: 1.6rem; letter-spacing: -.035em; }
.prose h2:first-child { margin-top: 0; }
.prose p,
.prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: 9px; }
.notice { margin: 30px 0; padding: 20px 22px; border-left: 4px solid var(--gold); background: color-mix(in srgb, var(--yellow) 32%, var(--paper)); }
.contact-panel { margin-top: 36px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.contact-panel address { font-style: normal; }

.section--ink :focus-visible,
.site-footer :focus-visible { outline-color: var(--yellow); }

@media (max-width: 800px) {
  .shell { width: min(100% - 28px, 1120px); }
  .site-header__inner { min-height: 68px; }
  .nav-list { gap: 14px; }
  .nav-list a { font-size: .84rem; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .hero__copy { padding-block: 60px; background-color: #f8cd64; }
  .hero { background-image: none; }
  .hero__portrait {
    min-height: 360px;
    margin-inline: -14px;
    background-image: url('/meyala-hero-golden.png');
    background-position: 66% center;
    background-repeat: no-repeat;
    background-size: cover;
    order: -1;
  }
  .principles { grid-template-columns: 1fr; }
  .principle { padding: 26px 0; }
  .principle + .principle { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .principle__number { margin-bottom: 22px; }
  .company-grid,
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-meta { position: static; }
  .site-footer__grid,
  .site-footer__legal { flex-direction: column; }
  .footer-links { justify-content: flex-start; gap: 16px; }
}

@media (max-width: 520px) {
  .site-header__inner { flex-wrap: wrap; padding-block: 10px; gap: 0 16px; }
  .site-header nav { width: 100%; }
  .nav-list { justify-content: space-between; }
  .wordmark { font-size: 1.4rem; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  .section { padding-block: 76px; }
}

@media (max-width: 340px) {
  .nav-list { gap: 8px; }
  .nav-list a { font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media (forced-colors: active) {
  .button,
  .contact-card { border: 2px solid CanvasText; }
}
