:root {
  --paper: #fdfaf3;
  --paper-2: #f5efe0;
  --paper-3: #eae0c8;
  --green: #0f2a1e;
  --green-2: #1f3a2c;
  --green-soft: #dfe9e1;
  --brass: #b58b4d;
  --brass-soft: #e5d2b0;
  --ink: #161614;
  --ink-2: #3f3d38;
  --ink-3: #76716a;
  --ui: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.9rem clamp(1rem, 4vw, 2.4rem);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--paper-3);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}

.site-nav__play {
  background: var(--green);
  color: var(--paper);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 4.5rem);
  min-height: auto;
  padding: clamp(2.2rem, 6vw, 4rem) clamp(1.1rem, 5vw, 4rem) clamp(2rem, 5vw, 3.4rem);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--green-soft) 45%, transparent), transparent 55%),
    var(--paper);
}

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

.blog-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 8vw, 5.8rem);
  font-weight: 600;
  line-height: 0.93;
}

.blog-hero__lead {
  max-width: 52rem;
  margin: 1.2rem 0 0;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
}

.blog-hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  font-weight: 800;
}

.btn--primary {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 14px 30px -22px var(--green);
}

.btn--ghost {
  border: 1px solid color-mix(in srgb, var(--green) 25%, var(--paper-3));
  background: color-mix(in srgb, var(--paper) 84%, white);
  color: var(--green);
}

.hero-note {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--ink-3);
  font-size: 0.95rem;
}

.phone-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
  align-items: end;
}

.phone-strip figure {
  margin: 0;
}

.phone-strip img {
  width: 100%;
  aspect-ratio: 746 / 1600;
  object-fit: cover;
  border: 8px solid #151513;
  border-radius: 26px;
  box-shadow: 0 30px 70px -44px rgba(15, 42, 30, 0.75);
}

.phone-strip figure:nth-child(2) {
  transform: translateY(-1.6rem);
}

.phone-strip figcaption {
  margin-top: 0.55rem;
  color: var(--ink-3);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--paper-3);
}

.intro-band h2,
.language-section h2,
.faq h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.intro-band p,
.language-section p,
.faq p {
  color: var(--ink-2);
}

.language-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
}

.language-nav a {
  border: 1px solid var(--paper-3);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: white;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.language-section {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  padding: clamp(2.1rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--paper-3);
}

.language-section__meta {
  position: sticky;
  top: 96px;
  align-self: start;
}

.language-section__tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.language-section h3 {
  margin: 1.4rem 0 0.5rem;
  color: var(--green);
  font-size: 1.12rem;
  line-height: 1.25;
}

.language-section ol,
.language-section ul {
  margin: 0.7rem 0 0;
  padding-inline-start: 1.35rem;
}

.language-section li {
  margin: 0.45rem 0;
  color: var(--ink-2);
}

.language-section strong {
  color: var(--green);
}

.inline-cta {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--brass) 45%, var(--paper-3));
  border-radius: 8px;
  background: color-mix(in srgb, var(--brass-soft) 30%, var(--paper) 70%);
}

.inline-cta p {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.faq {
  padding: clamp(2.2rem, 6vw, 4.5rem) 0;
}

.faq details {
  border-top: 1px solid var(--paper-3);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--paper-3);
}

.faq summary {
  cursor: pointer;
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 800;
}

.site-footer {
  padding: 2rem clamp(1rem, 5vw, 4rem) 3rem;
  background: var(--green);
  color: var(--paper);
}

.site-footer p {
  max-width: 58rem;
  margin: 0;
}

.site-footer a {
  color: var(--brass-soft);
  font-weight: 800;
}

[dir="rtl"] {
  text-align: right;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
  }

  .blog-hero,
  .intro-band,
  .language-section {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    min-height: auto;
  }

  .blog-hero h1 {
    max-width: 9ch;
  }

  .phone-strip {
    max-width: 640px;
  }

  .language-section__meta {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand__name {
    display: none;
  }

  .blog-hero {
    padding-top: 1.6rem;
  }

  .phone-strip {
    grid-template-columns: repeat(3, minmax(76px, 1fr));
  }

  .phone-strip img {
    border-width: 5px;
    border-radius: 18px;
  }

  .phone-strip figure:nth-child(2) {
    transform: translateY(-0.9rem);
  }
}
