/* ==========================================================================
   AL IKHLAS TOURS & TRAVELS
   Palette derives from the kiswah (black-green silk, gold thread),
   ihram cloth and Haram limestone.
   ========================================================================== */

:root {
  --ink:        #0C1A16;
  --ink-2:      #13251F;
  --ink-3:      #1B332B;
  --green:      #24594A;
  --gold:       #C1A15A;
  --gold-lt:    #E0C88E;
  --limestone:  #EFEBE1;
  --paper:      #FBFAF6;
  --text:       #17211D;
  --muted:      #5E6C66;
  --muted-lt:   #A9B7B0;
  --line:       rgba(193, 161, 90, .28);
  --line-dark:  rgba(23, 33, 29, .14);

  --display: "Amiri", Georgia, "Times New Roman", serif;
  --body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- shared type helpers ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 90px;
  background: var(--line);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  height: 1px; flex: 1; max-width: 90px; background: var(--line);
}

.arabic {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold);
  direction: rtl;
  display: inline-block;
  line-height: 1.9;
}

.lede {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 58ch;
}

.section {
  padding-block: clamp(64px, 9vw, 118px);
}
.section--ink {
  background: var(--ink);
  color: var(--limestone);
}
.section--ink .lede { color: var(--muted-lt); }
.section--stone { background: var(--limestone); }

.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.05rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

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

.btn--ghost { background: transparent; border-color: var(--line); color: var(--limestone); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

.btn--dark { background: var(--ink); color: var(--limestone); }
.btn--dark:hover { background: var(--green); }

.btn--line { background: transparent; border-color: var(--line-dark); color: var(--text); }
.btn--line:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: var(--muted-lt);
  font-size: 12.5px;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 42px; flex-wrap: wrap;
}
.topbar a { text-decoration: none; transition: color .25s; }
.topbar a:hover { color: var(--gold-lt); }
.topbar__phones { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__phones a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__social { display: flex; gap: 16px; align-items: center; }
.topbar__social svg { width: 15px; height: 15px; fill: currentColor; display: block; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 8px 30px rgba(12,26,22,.10); }
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand__text { display: grid; }
.brand__name {
  font-family: var(--display); font-weight: 700; font-size: 1.28rem;
  letter-spacing: .02em; color: var(--ink); line-height: 1.1;
}
.brand__sub {
  font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; white-space: nowrap;
}
.brand img { flex: none; object-fit: contain; max-width: 76px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--text); position: relative; padding-block: 6px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .32s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--green); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
}
.burger span {
  display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px 0;
  transition: transform .3s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 100px 32px 32px;
    transform: translateX(100%); transition: transform .38s var(--ease);
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: var(--limestone); font-size: 15px; padding: 14px 0; width: 100%; }
  .nav a[aria-current="page"] { color: var(--gold-lt); }
  .header-cta .btn { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: grid; align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .42;
  transform: scale(1.06);
  animation: slowpan 22s var(--ease) forwards;
}
@keyframes slowpan { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; transform: none; }
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, var(--ink) 12%, rgba(12,26,22,.72) 48%, rgba(12,26,22,.35) 100%);
}

/* khatam (8-point star) lattice — the one ornamental flourish */
.lattice {
  position: absolute; inset: 0; opacity: .11; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%23C1A15A' stroke-width='1'><rect x='14' y='14' width='44' height='44'/><rect x='14' y='14' width='44' height='44' transform='rotate(45 36 36)'/></g></svg>");
  background-size: 72px 72px;
}

.hero__in { position: relative; z-index: 2; padding-block: 80px; }
.hero__arabic {
  font-family: var(--display); font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold); direction: rtl; display: inline-block; margin: 0 0 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.4vw, 4.5rem);
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold-lt); }
.hero__sub {
  color: rgba(239,235,225,.82);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 52ch; margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(193,161,90,.25);
  background: rgba(12,26,22,.55);
  backdrop-filter: blur(3px);
}
.hero__strip .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.fact { padding: 26px 0; }
.fact + .fact { border-left: 1px solid rgba(193,161,90,.2); padding-left: clamp(20px, 3vw, 38px); }
.fact__k {
  font-family: var(--display); font-size: 1.55rem; color: var(--gold-lt); line-height: 1;
}
.fact__v {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-lt); margin-top: 8px; font-weight: 700;
}
@media (max-width: 720px) {
  .hero__strip .wrap { grid-template-columns: 1fr; }
  .fact { padding-block: 16px; }
  .fact + .fact { border-left: 0; border-top: 1px solid rgba(193,161,90,.18); padding-left: 0; }
}

/* page hero (inner pages) */
.pagehero {
  position: relative; background: var(--ink); overflow: hidden;
  padding-block: clamp(72px, 12vw, 132px);
}
.pagehero__media { position: absolute; inset: 0; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.pagehero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--ink) 18%, rgba(12,26,22,.6) 100%);
}
.pagehero__in { position: relative; z-index: 2; }
.pagehero h1 { color: #fff; font-size: clamp(2.2rem, 5.6vw, 3.8rem); max-width: 18ch; }
.pagehero p { color: rgba(239,235,225,.8); max-width: 56ch; margin-top: 18px; }
.crumb {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 700;
}
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--gold-lt); }

/* ==========================================================================
   SIGNATURE — THE STATIONS RAIL
   Order matters here: the pilgrimage genuinely is a sequence of stations.
   ========================================================================== */
.rail { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px; }
.station {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  padding-block: clamp(26px, 3.5vw, 40px);
  border-top: 1px solid rgba(193,161,90,.22);
  align-items: start;
}
.station:last-child { border-bottom: 1px solid rgba(193,161,90,.22); }
.station__num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold);
  line-height: 1;
  direction: rtl;
  position: relative;
  padding-top: 4px;
}
.station__body h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: #fff;
  margin-bottom: 6px;
}
.station__ar {
  font-family: var(--display); direction: rtl; display: inline-block;
  color: var(--gold-lt); font-size: 1.05rem; margin-bottom: 10px;
}
.station__body p { color: var(--muted-lt); max-width: 62ch; }
.station__meta { justify-self: end; padding-top: 6px; }
.station__tag {
  display: inline-block; white-space: nowrap;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: var(--gold); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px;
}
@media (max-width: 980px) {
  .station { grid-template-columns: 92px minmax(0, 1fr); }
  .station__meta { grid-column: 2; justify-self: start; padding-top: 0; margin-top: -14px; }
}
@media (max-width: 600px) {
  .station { grid-template-columns: 54px minmax(0, 1fr); gap: 16px; }
}

/* ==========================================================================
   PACKAGE CARDS
   ========================================================================== */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}
.card {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -20px rgba(12,26,22,.35);
  border-color: var(--gold);
}
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__flag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--gold-lt);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  padding: 6px 12px;
}
.card__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.55rem; margin-bottom: 4px; }
.card__ar { font-family: var(--display); direction: rtl; display: inline-block; color: var(--gold); margin-bottom: 12px; }
.card__body p { color: var(--muted); font-size: .97rem; }
.card__list {
  list-style: none; margin: 0 0 22px; padding: 18px 0 0; border-top: 1px solid var(--line-dark);
  display: grid; gap: 9px; font-size: .93rem; color: var(--muted);
}
.card__list li { display: flex; gap: 10px; align-items: flex-start; }
.card__list li::before {
  content: "◆"; color: var(--gold); font-size: 8px; line-height: 1.9; flex: none;
}
.card .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.cell { background: var(--paper); padding: clamp(26px, 3vw, 38px); }
.section--stone .cell { background: var(--limestone); }
.cell__icon {
  width: 34px; height: 34px; color: var(--green); margin-bottom: 18px;
}
.cell__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
.cell h3 { font-size: 1.18rem; margin-bottom: 8px; }
.cell p { font-size: .95rem; color: var(--muted); }

/* ==========================================================================
   SPLIT / ABOUT
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; z-index: 0; }
.split__media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; border-radius: var(--radius); }
.split__media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); z-index: -1; border-radius: var(--radius);
}
.split__body h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 18px; }
.checklist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.checklist li::before {
  content: "✓"; color: var(--gold); font-weight: 700; flex: none;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.quote {
  border: 1px solid rgba(193,161,90,.25);
  padding: 32px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.quote__mark { font-family: var(--display); font-size: 3rem; color: var(--gold); line-height: .6; display: block; margin-bottom: 14px; }
.quote p { color: var(--limestone); font-size: 1rem; }
.quote__by {
  margin-top: 18px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-lt); font-weight: 700;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; margin-bottom: 12px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: start; }
.info-list svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.4; margin-top: 3px; }
.info-list h4 {
  font-family: var(--body); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px; font-weight: 700;
}
.info-list a { text-decoration: none; }
.info-list a:hover { color: var(--gold-lt); }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-lt); font-weight: 700;
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15px; color: var(--limestone);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(193,161,90,.28);
  border-radius: var(--radius);
  padding: 13px 15px; width: 100%;
  transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); outline: none;
}
.field select option { background: var(--ink); }
.form__note { font-size: 12.5px; color: var(--muted-lt); }

/* ==========================================================================
   FLOATING RAIL + FOOTER
   ========================================================================== */
.floats {
  position: fixed; right: 16px; bottom: 20px; z-index: 90;
  display: grid; gap: 10px;
}
.floats a {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: var(--gold-lt);
  box-shadow: 0 8px 22px rgba(12,26,22,.28);
  transition: transform .28s var(--ease), background .28s;
}
.floats a:hover { transform: scale(1.09); background: var(--green); color: #fff; }
.floats a.is-whatsapp { background: #1EA952; color: #fff; }
.floats a.is-whatsapp:hover { background: #17903F; }
.floats svg { width: 21px; height: 21px; fill: currentColor; }
@media (max-width: 600px) { .floats a { width: 42px; height: 42px; } }

.site-footer { background: var(--ink); color: var(--muted-lt); padding-top: clamp(56px, 7vw, 86px); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 52px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--body); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 700;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .93rem; }
.site-footer a { text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: var(--gold-lt); }
.footer-brand img { height: 62px; margin-bottom: 18px; }
.footer-brand p { font-size: .93rem; max-width: 34ch; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(193,161,90,.3);
  display: grid; place-items: center; border-radius: 50%;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(193,161,90,.12); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-bottom ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .card:hover, .btn:hover, .floats a:hover { transform: none; }
}

/* ==========================================================================
   PHP ADDITIONS — form states, notices, honeypot
   ========================================================================== */
.hp {
  position: absolute !important;
  left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.form__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.notice {
  border: 1px solid var(--line);
  border-left-width: 3px;
  padding: 18px 22px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  font-size: .95rem;
}
.notice strong { display: block; font-family: var(--display); font-size: 1.15rem; margin-bottom: 6px; }
.notice p, .notice ul { margin: 0; }
.notice ul { padding-left: 18px; }
.notice--ok  { border-color: var(--gold); color: var(--limestone); }
.notice--ok strong { color: var(--gold-lt); }
.notice--ok a { color: var(--gold-lt); }
.notice--err { border-color: #C46A5A; color: var(--limestone); }
.notice--err strong { color: #E39182; }

.checklist--steps li::before { content: ""; display: none; }
.checklist--steps li { display: block; }
.checklist--steps strong { color: var(--gold); font-weight: 700; }
.section--stone .checklist--steps strong { color: var(--green); }

/* legal pages */
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 20px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
