/* ============================================================
   BAHJA — sales site
   Colour and type come from brand/tokens.css. Nothing here is
   per-design; the eight palettes are injected as scoped blocks
   by build.py so the catalogue cards can each carry their own.
   ============================================================ */

:root {
  --ink:        #10312F;
  --ink-soft:   #1C4A47;
  --ink-deep:   #0A211F;
  --gold:       #C9A84C;
  --gold-light: #E3CD8A;
  --gold-dark:  #9A7C2E;
  --ivory:      #FAF6EF;
  --cream:      #F3ECE0;
  --sand:       #E8DCC6;
  --rose:       #C88B7A;
  --text:       #2A2A28;
  --text-soft:  #6B6B66;
  --onink:      #F2EEE4;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Josefin Sans', system-ui, sans-serif;

  --wrap: 1180px;
  --r: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--f-ui);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }

section { padding: 92px 0; }
section.tight { padding: 64px 0; }

.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.eyebrow.on-ink { color: var(--gold-light); }

h2.title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(27px, 4.2vw, 40px); line-height: 1.18;
}
p.sub {
  font-family: var(--f-body); font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6; color: var(--text-soft); max-width: 62ch; margin-top: 12px;
}
.center { text-align: center; }
.center p.sub { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-ui); font-size: 11px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, opacity .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold  { background: var(--gold-dark); color: #fff; }
.btn-gold:hover { opacity: .9; }
.btn-ink   { background: var(--ink); color: var(--onink); }
.btn-ghost { border-color: rgba(16,49,47,.28); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: rgba(16,49,47,.05); }
.btn-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-light:hover { background: rgba(255,255,255,.12); }

/* ---------- header ----------
   Swiped 1:1 from invitio.io, recoloured BAHJA. Cream bar at the top of
   the page; once you scroll it condenses into a floating pill (300ms).
   Desktop: logo | nav (28px gaps, 12px/500 caps) | icon circle + pill CTA.
   Mobile (<=860px): burger | centred logo | icon, nav in a dropdown. */
.site-head {
  position: sticky; top: 0; z-index: 100;
  padding-top: 20px; background: var(--ivory);
  transition: padding .3s cubic-bezier(.4,0,.2,1),
              background-color .3s cubic-bezier(.4,0,.2,1);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 64px;
  border-radius: 999px; border: 1px solid transparent;
  transition: max-width .3s cubic-bezier(.4,0,.2,1),
              background-color .3s cubic-bezier(.4,0,.2,1),
              border-color .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.site-head.scrolled { padding-top: 8px; background: transparent; }
.site-head.scrolled .wrap {
  max-width: calc(var(--wrap) - 128px);
  background: rgba(250,246,239,.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-color: rgba(16,49,47,.08);
  box-shadow: 0 10px 15px -3px rgba(16,49,47,.08), 0 4px 6px -4px rgba(16,49,47,.06);
}
@media (prefers-reduced-motion: no-preference) {
  .site-head { animation: head-in .55s ease both; }
  @keyframes head-in { from { opacity: 0; transform: translateY(-10px); } }
}
.site-head .logo img { width: 34px; height: 34px; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  font-family: var(--f-ui);
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(16,49,47,.75); text-decoration: none; transition: color .2s ease;
}
.site-nav a:hover { color: var(--gold-dark); }
.head-actions { display: flex; align-items: center; gap: 12px; }
.head-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  border: 1px solid rgba(16,49,47,.14); color: var(--gold-dark);
  background: rgba(250,246,239,.6);
  transition: background .2s ease, border-color .2s ease;
}
.head-icon svg { width: 18px; height: 18px; }
.head-icon:hover { background: rgba(16,49,47,.06); }
.head-lang { position: relative; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 170px;
  background: #fff; border: 1px solid rgba(16,49,47,.08); border-radius: 14px;
  padding: 8px; box-shadow: 0 18px 40px -12px rgba(16,49,47,.2); z-index: 20;
}
.lang-title {
  display: block; padding: 6px 10px 8px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-soft);
}
.lang-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px; font-size: 13px; color: var(--text);
}
.lang-item b {
  font-weight: 500; font-size: 10px; letter-spacing: .04em;
  background: var(--cream); color: var(--ink);
  border-radius: 6px; padding: 4px 0; min-width: 30px; text-align: center;
}
.lang-item.current { background: rgba(201,168,76,.16); font-weight: 600; }
.lang-item.soon { opacity: .45; }
.lang-item.soon i {
  margin-left: auto; font-size: 9px; font-style: normal;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft);
}
.head-actions .btn { padding: 9px 18px; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.head-burger { display: none; }
@media (max-width: 860px) {
  .site-head .wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; }
  .head-burger {
    display: inline-flex; align-items: center; justify-content: center;
    order: -1; justify-self: start;
    width: 40px; height: 40px; padding: 0; border: 0; background: none;
    color: var(--ink); cursor: pointer;
  }
  .site-head .logo { justify-self: center; }
  .head-actions { justify-self: end; }
  .head-actions .btn { display: none; }   /* invitio mobile: icon only */
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 16px; right: 16px; top: 100%;
    background: var(--ivory); border: 1px solid rgba(16,49,47,.08);
    border-radius: 22px; padding: 10px;
    box-shadow: 0 18px 40px -12px rgba(16,49,47,.18);
  }
  .site-nav.open a { padding: 13px 16px; border-radius: 14px; }
  .site-nav.open a:hover { background: rgba(16,49,47,.05); }
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink); color: var(--onink);
  padding: 108px 0 118px; text-align: center; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.13), transparent 62%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero .mark { width: 62px; margin: 0 auto 26px; display: block; }
.hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(32px, 6vw, 58px); line-height: 1.14; color: var(--ivory);
}
.hero p.sub { color: rgba(242,238,228,.76); margin: 20px auto 0; }
.hero-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-note {
  margin-top: 20px; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-light);
}

/* ---------- catalogue ---------- */
.filters { display: flex; gap: 9px; justify-content: center; margin: 30px 0 40px; flex-wrap: wrap; }
.filter {
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(16,49,47,.2); background: transparent;
  color: var(--text-soft); cursor: pointer; transition: all .2s ease;
}
.filter:hover { border-color: var(--gold); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--onink); }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(262px, 1fr)); gap: 24px; }
.card {
  border-radius: var(--r); overflow: hidden; background: var(--white, #fff);
  border: 1px solid rgba(16,49,47,.09); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(16,49,47,.14); }
.card[hidden] { display: none; }

.card-media {
  aspect-ratio: 4/5; position: relative;
  background-image: var(--env-motif),
    linear-gradient(158deg, var(--env-paper-1) 0%, var(--env-paper-2) 46%, var(--env-paper-3) 100%);
  /* the theme tile is sized for a full-screen envelope — too coarse here */
  background-size: 64px, cover;
  background-repeat: repeat, no-repeat;
}
.card-media.has-photo { background-size: cover; }
.card-media::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 42%, transparent 30%, rgba(0,0,0,.10) 100%);
}
.card-body {
  padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1;
  background: var(--white, #fff); color: var(--text);
}
.card-tier { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); }
.card-name { font-family: var(--f-display); font-weight: 400; font-size: 23px; margin: 7px 0 6px; }
.card-note { font-family: var(--f-body); font-size: 16.5px; line-height: 1.5; color: var(--text-light, var(--text-soft)); flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.card-price { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light, var(--text-soft)); }
.card-cta {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: var(--gold-dark); padding: 10px 15px; border-radius: 999px;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; margin-top: 46px; }
.step { position: relative; padding-top: 26px; border-top: 1px solid rgba(16,49,47,.15); }
.step .n {
  font-family: var(--f-display); font-size: 34px; color: var(--gold);
  line-height: 1; margin-bottom: 12px;
}
.step h3 { font-family: var(--f-display); font-weight: 400; font-size: 20px; margin-bottom: 7px; }
.step p { font-family: var(--f-body); font-size: 16.5px; line-height: 1.55; color: var(--text-soft); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 22px; margin-top: 46px; }
.feature { padding: 26px 24px; border-radius: var(--r); background: #fff; border: 1px solid rgba(16,49,47,.08); }
.feature .i { font-size: 22px; display: block; margin-bottom: 13px; }
.feature h3 { font-family: var(--f-display); font-weight: 400; font-size: 19px; margin-bottom: 7px; }
.feature p { font-family: var(--f-body); font-size: 16.5px; line-height: 1.55; color: var(--text-soft); }

/* ---------- comparison ---------- */
.compare { background: var(--ink); color: var(--onink); }
.compare .title { color: var(--ivory); }
.compare-table {
  margin-top: 44px; border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(242,238,228,.14);
}
.compare-head, .compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-head > div {
  padding: 16px 22px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(0,0,0,.22);
}
.compare-head > div:last-child { color: var(--gold-light); }
.compare-row > div {
  padding: 17px 22px; font-family: var(--f-body); font-size: 17px; line-height: 1.45;
  border-top: 1px solid rgba(242,238,228,.11);
}
.compare-row > div:first-child { color: rgba(242,238,228,.5); text-decoration: line-through; text-decoration-color: rgba(242,238,228,.28); }
.compare-row > div:last-child { border-left: 1px solid rgba(242,238,228,.11); }
@media (max-width: 620px) { .compare-row > div, .compare-head > div { padding: 13px 15px; font-size: 15.5px; } }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 22px; margin-top: 48px; align-items: start; }
.tier {
  border: 1px solid rgba(16,49,47,.13); border-radius: 18px; padding: 34px 27px;
  background: #fff; display: flex; flex-direction: column; position: relative;
}
.tier.featured { background: var(--ink); color: var(--onink); border-color: transparent; }
.tier .badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 8.5px; letter-spacing: .2em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.tier h3 { font-family: var(--f-display); font-weight: 400; font-size: 25px; }
.tier .tagline { font-family: var(--f-body); font-style: italic; font-size: 16.5px; color: var(--text-soft); margin-top: 3px; }
.tier.featured .tagline { color: var(--gold-light); }
.tier .price { font-family: var(--f-display); font-size: 42px; margin: 20px 0 2px; }
.tier .price small { font-size: 16px; }
.tier .per { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft); }
.tier.featured .per { color: rgba(242,238,228,.55); }
.tier ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tier li { font-family: var(--f-body); font-size: 16.5px; line-height: 1.4; padding-left: 21px; position: relative; }
.tier li::before { content: "✦"; position: absolute; left: 0; top: 3px; color: var(--gold); font-size: 11px; }
.tier .btn { justify-content: center; }

.addon {
  margin-top: 26px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 24px 28px; border-radius: var(--r);
  background: var(--cream); border-left: 3px solid var(--gold);
}
.addon .t { font-family: var(--f-display); font-size: 21px; }
.addon .p { font-family: var(--f-display); font-size: 21px; color: var(--gold-dark); }
.addon .d { font-family: var(--f-body); font-size: 17px; line-height: 1.5; color: var(--text-soft); flex: 1; min-width: 240px; }

/* ---------- story ---------- */
.story { background: var(--cream); }
.story .body { max-width: 62ch; margin-top: 18px; }
.story .body p { font-family: var(--f-body); font-size: 19px; line-height: 1.68; color: var(--text-soft); margin-bottom: 15px; }
.story .body strong { color: var(--text); font-weight: 600; }

/* ---------- faq ---------- */
.faq-list { margin-top: 40px; max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(16,49,47,.13); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 21px 40px 21px 0; position: relative;
  font-family: var(--f-display); font-size: 19px; font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 21px; color: var(--gold); transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { font-family: var(--f-body); font-size: 17.5px; line-height: 1.62; color: var(--text-soft); padding: 0 40px 24px 0; }

/* ---------- final cta ---------- */
.final { background: var(--ink); color: var(--onink); text-align: center; }
.final .title { color: var(--ivory); }
.final p.sub { color: rgba(242,238,228,.72); }
.final .actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink-deep); color: rgba(242,238,228,.6); padding: 46px 0 40px; }
.site-foot .wrap { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; align-items: center; }
.site-foot .logo { color: var(--ivory); }
.site-foot .tag { font-family: var(--f-body); font-size: 16.5px; }
.site-foot a { color: inherit; text-decoration: none; }
.site-foot a:hover { color: var(--gold-light); }
.site-foot .links { display: flex; gap: 20px; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; }
.site-foot .rights { width: 100%; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .5; padding-top: 22px; border-top: 1px solid rgba(242,238,228,.1); }

/* ============================================================
   DESIGN DETAIL PAGE
   ============================================================ */
.d-hero { padding: 56px 0 0; }
.d-back {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-soft); text-decoration: none;
}
.d-back:hover { color: var(--ink); }
.d-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 52px; align-items: center; margin-top: 30px; }
@media (max-width: 900px) { .d-grid { grid-template-columns: 1fr; gap: 34px; } }

.d-preview {
  aspect-ratio: 9/16; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(16,49,47,.12); box-shadow: 0 26px 60px rgba(16,49,47,.16);
  max-height: 720px; margin: 0 auto; width: 100%;
}
.d-preview iframe { width: 100%; height: 100%; border: 0; display: block; background: #fff; }

.d-tier { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); }
.d-name { font-family: var(--f-display); font-weight: 400; font-size: clamp(34px, 6vw, 52px); margin: 10px 0 14px; }
.d-long { font-family: var(--f-body); font-size: 19px; line-height: 1.65; color: var(--text-soft); }
.d-mood { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0 26px; }
.d-mood span {
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; background: var(--cream); color: var(--text-soft);
}
.d-price { font-family: var(--f-display); font-size: 32px; margin-bottom: 20px; }
.d-price small { font-size: 14px; color: var(--text-soft); }
.d-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.d-others { background: var(--cream); }

/* ============================================================
   ORDER FORM
   ============================================================ */
.order-form { margin-top: 38px; display: flex; flex-direction: column; gap: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .f-row { grid-template-columns: 1fr; } }

.f { display: flex; flex-direction: column; gap: 8px; }
.f > span {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft);
}
.f input, .f select, .f textarea {
  font-family: var(--f-body); font-size: 18px; color: var(--text);
  padding: 13px 15px; border: 1px solid rgba(16,49,47,.2); border-radius: 11px;
  background: #fff; width: 100%; transition: border-color .2s ease;
}
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--gold);
}
.f textarea { resize: vertical; }
.f select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' fill='none' stroke='%239A7C2E' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }

.f-checks { display: flex; gap: 18px; flex-wrap: wrap; }
.f-checks label, .f-check-single {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 17.5px; cursor: pointer;
}
.f-check-single {
  padding: 15px 17px; border: 1px solid rgba(16,49,47,.2); border-radius: 11px; background: #fff;
}
.f-check-single input { width: 17px; height: 17px; accent-color: var(--gold-dark); }
.f-checks input { width: 16px; height: 16px; accent-color: var(--gold-dark); }

.order-form .btn { align-self: flex-start; }
.f-note {
  font-family: var(--f-body); font-size: 16.5px; line-height: 1.55; color: var(--text-soft);
  padding-left: 15px; border-left: 2px solid var(--gold);
}
.order-done { margin-top: 46px; }
.order-done a { color: var(--gold-dark); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 42px; }
.review {
  background: #fff; border: 1px solid rgba(16,49,47,.08);
  border-radius: var(--r); padding: 26px 24px;
}
.review .stars { color: var(--gold); letter-spacing: .18em; font-size: 13px; }
.review p { font-family: var(--f-body); font-size: 17.5px; line-height: 1.6; margin: 13px 0 16px; }
.review .who { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); }
.review-empty {
  margin-top: 38px; padding: 34px 30px; border-radius: var(--r);
  border: 1px dashed rgba(16,49,47,.22); text-align: center;
  font-family: var(--f-body); font-size: 18px; line-height: 1.6; color: var(--text-soft);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { max-width: 760px; }
.legal-updated { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin-top: 10px; }
.legal-body { margin-top: 34px; }
.legal-body h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 21px;
  margin: 32px 0 10px; color: var(--ink);
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { font-family: var(--f-body); font-size: 18px; line-height: 1.68; color: var(--text-soft); margin-bottom: 13px; }
.legal-contact { font-family: var(--f-body); font-size: 17.5px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(16,49,47,.12); color: var(--text-soft); }
.legal-contact a { color: var(--gold-dark); }

/* ---- order: what happens next ---- */
.next-title {
  font-family: var(--f-display); font-weight: 400; font-size: 22px;
  margin: 44px 0 22px; padding-top: 30px;
  border-top: 1px solid rgba(16,49,47,.13);
}
.next-steps { list-style: none; counter-reset: none; display: flex; flex-direction: column; gap: 20px; }
.next-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; }
.next-steps .n {
  font-family: var(--f-display); font-size: 19px; color: var(--gold);
  line-height: 1.25;
}
.next-steps strong {
  display: block; font-family: var(--f-display); font-weight: 400;
  font-size: 18px; margin-bottom: 3px;
}
.next-steps p { font-family: var(--f-body); font-size: 17px; line-height: 1.55; color: var(--text-soft); }
.order-done .btn { margin-top: 26px; }

/* ============================================================
   LOGO — بهجة · sceau · Bahja
   Arabic reads right-to-left and Latin left-to-right, so with the
   Arabic on the left both names begin at the seal and read outward.
   ============================================================ */
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.logo img { width: 30px; height: 30px; display: block; flex: none; }
.logo .lg-lat {
  font-family: var(--f-body); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1; letter-spacing: .005em;
}
.logo .lg-lat span { font-size: 1.34em; line-height: 0; position: relative; top: .06em; }
.logo .lg-ar {
  font-family: 'Amiri', serif; font-size: 26px; line-height: 1;
  direction: rtl; position: relative; top: -2px;
}
.site-foot .logo { color: var(--ivory); }

/* The bilingual lockup is wide. On a phone the header keeps the seal and
   the Latin only — the Arabic returns everywhere there is room. */
@media (max-width: 560px) {
  .site-head .logo .lg-ar { display: none; }
}

/* hero: the full lockup, large */
.hero .lockup { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 26px; }
.hero .lockup img { width: 74px; height: 74px; }
.hero .lockup .lg-lat {
  font-family: var(--f-body); font-style: italic; font-weight: 400;
  font-size: clamp(46px, 8vw, 66px); line-height: 1; color: var(--ivory);
}
.hero .lockup .lg-lat span { font-size: 1.34em; line-height: 0; position: relative; top: .06em; }
.hero .lockup .lg-ar {
  font-family: 'Amiri', serif; font-size: clamp(42px, 7.4vw, 62px);
  line-height: 1; direction: rtl; color: var(--ivory); position: relative; top: -4px;
}

/* The old header rule still applied uppercase + wide tracking to <b>.
   The wordmark is mixed-case italic now, so both have to be cancelled. */
.logo .lg-lat, .hero .lockup .lg-lat {
  text-transform: none;
  letter-spacing: .005em;
  font-weight: 400;
}

/* Amiri sits small and low against Cormorant at the same px size —
   size it up and lift it so both scripts share an optical centre line. */
.logo .lg-ar { font-size: 33px; top: -1px; }
.hero .lockup .lg-ar { font-size: clamp(52px, 9.2vw, 78px); top: -6px; }
@media (max-width: 560px) { .logo img { width: 26px; height: 26px; } .logo .lg-lat { font-size: 25px; } }


/* Logo Arabic: Lalezar — the bold display calligraphy the brand uses for
   بهجة. Amiri remains for running Arabic text inside invitations. */
.logo .lg-ar, .hero .lockup .lg-ar { font-family: 'Lalezar', 'Amiri', serif; font-weight: 400; }
.logo .lg-ar { font-size: 27px; top: 1px; }
.hero .lockup .lg-ar { font-size: clamp(40px, 7vw, 58px); top: -2px; }


/* Logo Arabic, final: Amiri Slanted — the designed oblique cut, leaning with
   the Latin italic. Supersedes the Lalezar block above (cascade order). */
.logo .lg-ar, .hero .lockup .lg-ar {
  font-family: 'Amiri', serif; font-style: italic; font-weight: 400;
}
.logo .lg-ar { font-size: 33px; top: -1px; }
.hero .lockup .lg-ar { font-size: clamp(52px, 9.2vw, 78px); top: -6px; }
