:root {
  --teal-950: #06353a;
  --teal-800: #0a5c56;
  --teal-600: #0d7a72;
  --teal-100: #d8f0ec;
  --teal-50: #eef8f6;
  --sand-50: #f7f3ec;
  --peach: #e8a06a;
  --peach-soft: #fbc695;
  --ink: #142428;
  --ink-soft: #2f454a;
  --muted: #3f555c;
  --line: rgba(10, 92, 86, 0.14);
  --shadow: 0 24px 60px rgba(6, 53, 58, 0.14);
  --header-h: 76px;
  --bottom-h: 68px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 100% -8%, #cfeae5 0%, transparent 55%),
    radial-gradient(800px 460px at -8% 35%, #f3e8d8 0%, transparent 50%),
    #f3f8f7;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottom-h) + 12px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(6, 53, 58, 0.06);
}
.site-header .row {
  width: min(1180px, calc(100% - 1.5rem)); margin: 0 auto;
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img {
  height: 52px; width: auto; max-width: min(220px, 58vw);
  object-fit: contain; object-position: right center;
}
.nav-desktop { display: none; gap: 4px; align-items: center; }
.nav-desktop > a,
.nav-item > .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: background .2s, color .2s;
}
.nav-desktop > a:hover,
.nav-item > .nav-trigger:hover,
.nav-item.is-open > .nav-trigger,
.nav-desktop > a.is-active {
  background: var(--teal-50); color: var(--teal-800);
}
.nav-item { position: relative; }
.nav-trigger .chev { width: 14px; height: 14px; opacity: .7; transition: transform .2s; }
.nav-item.is-open .chev { transform: rotate(180deg); }
.nav-panel {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 240px;
  margin: 0; padding: 8px; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item.is-open .nav-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.nav-panel a {
  display: block; padding: 11px 13px; border-radius: 11px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
}
.nav-panel a:hover, .nav-panel a.is-current {
  background: var(--teal-50); color: var(--teal-800);
}
.header-cta {
  display: none; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--peach), var(--peach-soft));
  color: var(--teal-950); font-weight: 800; font-size: 13.5px;
  box-shadow: 0 8px 20px rgba(232,160,106,.28);
}
.menu-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--teal-600); color: var(--teal-800);
  display: grid; place-items: center; background: #fff;
}
@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .brand img { height: 58px; max-width: 260px; }
}

.drawer { position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: 0; transition: .25s ease; }
.drawer.open { pointer-events: auto; opacity: 1; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(6,53,58,.45); }
.drawer .panel {
  position: absolute; top: 0; bottom: 0; right: 0; width: min(320px, 88vw);
  background: #fff; padding: 22px 18px; transform: translateX(10%); transition: .28s ease; box-shadow: var(--shadow);
}
.drawer.open .panel { transform: none; }
.drawer a { display: block; padding: 12px 10px; border-radius: 12px; font-weight: 600; border-bottom: 1px solid var(--line); }
.drawer .sub { padding-right: 14px; font-size: 14px; color: var(--ink-soft); border: 0; }

.wrap { width: min(1180px, calc(100% - 1.5rem)); margin: 0 auto; }

.page-hero {
  position: relative; overflow: hidden; color: #fff; isolation: isolate;
  background: var(--teal-950);
}
.page-hero.is-sm .content { padding: 22px 0 26px; }
.page-hero .bg {
  position: absolute; inset: 0; z-index: 0;
  background-repeat: no-repeat; background-size: cover;
  background-position: center 48%;
  transform: scaleX(-1) scale(1.06); transform-origin: center;
}
.page-hero .shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to left, rgba(6,53,58,.9) 0%, rgba(6,53,58,.72) 38%, rgba(6,53,58,.35) 62%, rgba(6,53,58,.18) 100%),
    linear-gradient(180deg, rgba(6,53,58,.15) 0%, transparent 45%, rgba(6,53,58,.4) 100%);
}
.page-hero .content {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto; padding: 28px 0 32px;
}
.page-hero .content-inner { max-width: 42rem; }
.crumb {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78); margin-bottom: 10px;
}
.crumb a { text-decoration: underline; text-underline-offset: 3px; }
.crumb span { opacity: .55; }
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--peach-soft); margin-bottom: 8px;
}
.page-hero .eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--peach-soft); border-radius: 2px;
}
.page-hero h1 {
  margin: 0 0 8px; font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.35; font-weight: 800;
}
.page-hero .lede {
  margin: 0; font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.9); line-height: 1.6;
}

section.block { padding: 40px 0 8px; }
.section-head { margin-bottom: 20px; max-width: 40rem; }
.section-head .eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800;
  color: var(--teal-600); margin-bottom: 6px;
}
.section-head h2 { margin: 0 0 8px; font-size: clamp(1.25rem, 2.8vw, 1.65rem); line-height: 1.4; color: var(--teal-800); }
.section-head p { margin: 0; color: var(--muted); }

.grid { display: grid; gap: 14px; }
@media (min-width: 720px) { .grid { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 14px; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.item {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: center;
  padding: 12px; border-radius: 18px;
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(6,53,58,.06);
  transition: transform .2s, box-shadow .2s;
}
.item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.item img { width: 110px; height: 82px; object-fit: cover; border-radius: 12px; }
.item h3 { margin: 0 0 4px; font-size: 1rem; line-height: 1.45; color: var(--teal-800); }
.item p { margin: 0; font-size: 13px; color: var(--muted); }

.guide-card {
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(6,53,58,.06);
  transition: transform .2s, box-shadow .2s;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.guide-card img { width: 100%; height: 168px; object-fit: cover; }
.guide-card__body { padding: 14px 16px 18px; }
.guide-card .chip {
  display: inline-block; font-size: 11px; font-weight: 800;
  padding: 2px 10px; border-radius: 999px;
  background: var(--teal-100); color: var(--teal-800);
}
.guide-card h3 { margin: 8px 0 6px; font-size: 1rem; line-height: 1.45; color: var(--teal-800); }
.guide-card p { margin: 0; font-size: 13px; color: var(--muted); }

.wound {
  margin-top: 8px; border-radius: 24px; padding: 26px 22px;
  background: linear-gradient(135deg, #fff8f1, #fff);
  border: 1.5px dashed rgba(232,160,106,.55);
  box-shadow: 0 14px 36px rgba(232,160,106,.1);
}
.wound .badge {
  display: inline-block; background: #fff3e8; color: #a85d20;
  font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.wound .item { background: #fff; }

.cta {
  display: inline-flex; align-items: center; margin-top: 16px;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--peach), var(--peach-soft));
  color: var(--teal-950); font-weight: 800; font-size: 14px;
  box-shadow: 0 10px 24px rgba(232,160,106,.3);
}

.site-foot {
  margin-top: 48px;
  background: linear-gradient(180deg, rgba(238,248,246,.55), rgba(6,53,58,.04)), #fff;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13.5px;
}
.site-foot .foot-top {
  width: min(1180px, calc(100% - 1.5rem)); margin: 0 auto;
  padding: 40px 0 28px; display: grid; gap: 28px; grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .site-foot .foot-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
}
.site-foot .brand-col p { margin: 10px 0 0; max-width: 34ch; line-height: 1.8; }
.site-foot strong {
  color: var(--teal-800); display: block; margin-bottom: 12px;
  font-size: 14px; font-weight: 800;
}
.site-foot .foot-top a {
  display: block; padding: 5px 0; color: var(--ink-soft); font-weight: 600;
}
.site-foot .foot-top a:hover { color: var(--teal-600); }
.site-foot .copy {
  border-top: 1px solid var(--line);
  text-align: center; padding: 16px 1rem; font-size: 12.5px;
}

.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  height: var(--bottom-h); background: rgba(255,255,255,.95);
  border-top: 1px solid var(--line); backdrop-filter: blur(12px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav a {
  display: grid; place-items: center; gap: 2px; padding-top: 8px;
  font-size: 11px; font-weight: 700; color: var(--muted);
}
.bottom-nav a.active { color: var(--teal-800); }
.bottom-nav svg { width: 22px; height: 22px; }
@media (min-width: 960px) {
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }
}

@media (max-width: 959px) {
  .section-head p, .item p, .guide-card p, .site-foot, .site-foot .copy {
    color: var(--ink-soft); font-weight: 500;
  }
  .section-head p { font-size: 15px; }
  .item p, .guide-card p { font-size: 14px; }
  .bottom-nav a { color: var(--ink-soft); }
}
