/* ==========================================================================
   Abdoun Palm — Brand stylesheet (v2, 2026)
   Palette: Palm Green #1B3D22 · Sand Gold #B8975A · Ivory #F7F4EE
   Type:    Cormorant Garamond (display) · Inter (text) · IBM Plex Sans Arabic
   ========================================================================== */

:root {
  --green: #1B3D22;
  --green-800: #234A2B;
  --green-700: #2E5C37;
  --green-100: #E4EAE2;
  --gold: #B8975A;
  --gold-light: #C9A96E;   /* gold on green */
  --gold-text: #7F6431;    /* gold for small text on ivory */
  --ivory: #F7F4EE;
  --paper: #FFFFFF;
  --ink: #1E1E1E;
  --muted: #5E6D61;
  --line: #E2DCCF;
  --line-dark: rgba(247, 244, 238, 0.16);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Noto Kufi Arabic", Tahoma, sans-serif;

  --radius: 6px;
  --wrap: 1180px;
  --shadow: 0 1px 2px rgba(27, 61, 34, .06), 0 8px 24px rgba(27, 61, 34, .06);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--green-700); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .wrap { padding: 0 16px; } }

.skip { position: absolute; left: 16px; top: 16px; transform: translateY(-200%); background: var(--green); color: var(--ivory); padding: 10px 16px; z-index: 100; }
.skip:focus { transform: none; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--green); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(32px, 4.2vw, 48px); }
h3 { font-size: clamp(24px, 2.6vw, 30px); }
h4 { font-family: var(--font-text); font-size: 15px; font-weight: 600; letter-spacing: .02em; margin: 0 0 .5em; color: var(--green); }
p { margin: 0 0 1em; }
.lead { font-size: clamp(18px, 1.8vw, 21px); color: #33423A; max-width: 44em; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.on-dark .eyebrow { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1.25 var(--font-text); letter-spacing: .01em; text-align: center;
  padding: 15px 24px; border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--green); color: var(--ivory); }
.btn-primary:hover { background: var(--green-700); color: var(--ivory); }
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-light); color: var(--green); }
.btn-ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: var(--ivory); }
.on-dark .btn-ghost { border-color: var(--ivory); color: var(--ivory); }
.on-dark .btn-ghost:hover { background: var(--ivory); color: var(--green); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247, 244, 238, .96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--green); }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--gold); }
.nav .lang { font-family: var(--font-ar); font-weight: 600; }
.nav .btn { padding: 12px 18px; color: var(--ivory); }
.nav .btn:hover { color: var(--ivory); }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; font: 600 14px var(--font-text); color: var(--green); cursor: pointer; }
@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--ivory); border-bottom: 1px solid var(--line); padding: 8px 16px 20px; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { box-shadow: none; color: var(--green); font-weight: 600; }
  .nav .btn { margin-top: 14px; border-bottom: 0; padding: 15px; }
  .brand img { height: 40px; }
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
@media (max-width: 700px) { section { padding: 64px 0; } }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p { color: #3A4A40; font-size: 18px; }
.bg-paper { background: var(--paper); }
.bg-green { background: var(--green); color: var(--ivory); }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: var(--ivory); }
.bg-green p { color: #D8E0D5; }
.bg-tint { background: var(--green-100); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 96px; position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; }
.hero h1 { max-width: 12em; }
.hero-panel { background: var(--green); color: var(--ivory); border-radius: 10px; padding: 34px 32px; box-shadow: var(--shadow); position: relative; }
.hero-panel::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(201, 169, 110, .35); border-radius: 6px; pointer-events: none; }
.hero-panel h4 { color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px; margin-bottom: 18px; }
.q-list { list-style: none; margin: 0; padding: 0; }
.q-list li { display: grid; grid-template-columns: 42px 1fr; gap: 8px; padding: 14px 0; border-top: 1px solid var(--line-dark); }
.q-list li:first-child { border-top: 0; }
.q-list .n { font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--gold-light); }
.q-list strong { display: block; font-weight: 600; color: var(--ivory); font-size: 16px; }
.q-list span { color: #C9D3C6; font-size: 15px; }
.page-hero { padding: 72px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px, 5.2vw, 60px); max-width: 16em; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 56px 0 64px; } }

/* ---------- Stats ---------- */
.stats { background: var(--green); color: var(--ivory); padding: 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 24px; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; }
.stat .v { font-family: var(--font-display); font-size: clamp(44px, 5vw, 60px); font-weight: 600; line-height: 1; color: var(--gold-light); }
.stat .l { margin-top: 10px; font-size: 14.5px; color: #D8E0D5; }
@media (max-width: 800px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(3) { border-left: 0; } .stat { border-top: 1px solid var(--line-dark); padding: 28px 16px; } .stat:nth-child(-n+2) { border-top: 0; } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .g4, .g5 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; } }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; }
.card h3 { font-size: 26px; }
.card .num { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--gold); margin-bottom: 18px; display: block; }
.card .tag { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); display: block; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.bg-green .card { background: rgba(255, 255, 255, .04); border-color: var(--line-dark); }
.bg-green .card .tag { color: var(--gold-light); }
.card-link { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 15px; text-decoration: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split > * { min-width: 0; }
.split-wide { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 900px) { .split, .split-wide { grid-template-columns: 1fr; gap: 36px; } }
.photo { border-radius: 8px; overflow: hidden; background: var(--green-100); aspect-ratio: 4 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.caption { font-size: 14px; color: var(--muted); margin-top: 10px; }

/* Value-leak list */
.leak { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.leak > div { padding: 30px 24px 10px 0; border-right: 1px solid var(--line); padding-left: 24px; }
.leak > div:first-child { padding-left: 0; }
.leak > div:last-child { border-right: 0; }
.leak h3 { font-size: 18px; line-height: 1.35; font-family: var(--font-text); font-weight: 600; letter-spacing: 0; }
@media (max-width: 900px) { .leak { grid-template-columns: 1fr 1fr; } .leak > div { padding: 24px 16px 8px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); } }
@media (max-width: 560px) { .leak { grid-template-columns: 1fr; } }

/* Checklist */
.checks { list-style: none; margin: 0; padding: 0; }
.checks li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); font-size: 15.5px; }
.checks li:first-child { border-top: 0; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 10px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.bg-green .checks li { border-color: var(--line-dark); color: #E3E9E0; }

/* Scope block */
.scope { margin-top: 28px; }
.scope-meta { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--green); background: var(--green-100); padding: 7px 12px; border-radius: 4px; margin-bottom: 22px; }
.tier { padding: 72px 0; border-top: 1px solid var(--line); }
.tier:first-of-type { border-top: 0; }
.tier-label { font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 8px; }

/* Markets */
.markets { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.office { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; margin-bottom: 28px; }
.office strong { display: block; color: var(--green); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.market-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; list-style: none; padding: 0; margin: 0; }
.market-list li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; font-weight: 500; }
.market-list li span { color: var(--muted); font-weight: 400; font-size: 14px; text-align: right; }
.market-list li.priority { color: var(--green); font-weight: 600; }
.market-list li.priority span { color: var(--gold-text); font-weight: 600; }
@media (max-width: 900px) { .markets { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 520px) { .market-list { grid-template-columns: 1fr; } }

/* Saudi band */
.ksa { background: var(--green); color: var(--ivory); position: relative; overflow: hidden; }
.ksa::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border: 1px solid rgba(201, 169, 110, .25); border-radius: 50%; }
.ksa::after { content: ""; position: absolute; right: -40px; top: -40px; width: 260px; height: 260px; border: 1px solid rgba(201, 169, 110, .18); border-radius: 50%; }
.ksa .wrap { position: relative; z-index: 1; }
.cities { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 34px; }
.cities span { border: 1px solid rgba(201, 169, 110, .5); color: var(--gold-light); border-radius: 999px; padding: 7px 16px; font-size: 14px; font-weight: 500; }
.cities span.first { background: var(--gold); color: var(--green); border-color: var(--gold); font-weight: 600; }

/* Brands */
.brands { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brands div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 18px; background: var(--paper); }
.brands strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--green); line-height: 1.15; }
.brands span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .brands { grid-template-columns: repeat(2, 1fr); } }
.disclaimer { font-size: 13.5px; color: var(--muted); margin-top: 20px; max-width: 60em; }

/* Metrics table */
.metrics { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; font-size: 15.5px; }
.metrics th, .metrics td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.metrics th { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: #FBF9F5; }
.metrics td.gap { color: #9A3B2E; font-weight: 600; }
.metrics tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; }

/* FAQ */
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 18px; color: var(--green); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 28px; line-height: .8; color: var(--gold); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: #3A4A40; }

/* Phases */
.phase { border-top: 2px solid var(--gold); padding-top: 22px; }
.phase .tag { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); }
.phase em { display: block; margin-top: 12px; font-style: normal; font-size: 14px; font-weight: 600; color: var(--green); }

/* CTA band */
.cta { background: var(--green); color: var(--ivory); text-align: center; padding: 88px 0; }
.cta h2 { color: var(--ivory); max-width: 18em; margin: 0 auto .4em; }
.cta p { color: #D8E0D5; max-width: 38em; margin: 0 auto; }
.cta .btn-row { justify-content: center; }
.cta .mark { width: 44px; margin: 0 auto 22px; opacity: .9; }

/* Forms */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 6px; }
.form input, .form select, .form textarea { width: 100%; font: 16px var(--font-text); color: var(--ink); background: var(--paper); border: 1px solid #CFC7B6; border-radius: var(--radius); padding: 13px 14px; }
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }
.form .note { font-size: 13.5px; color: var(--muted); }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }
.contact-line { display: flex; gap: 14px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-line strong { min-width: 96px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: #142E1A; color: #C9D3C6; padding: 72px 0 28px; font-size: 15px; }
.site-footer a { color: #E6ECE3; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; }
.foot-grid img { height: 52px; width: auto; margin-bottom: 18px; }
.foot-grid h5 { font: 600 12.5px var(--font-text); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 16px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 9px; }
.foot-tag { font-family: var(--font-display); font-size: 21px; color: var(--ivory); line-height: 1.3; }
.foot-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #9FB0A0; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 40; background: var(--green); color: var(--ivory); border: 1px solid var(--gold); border-radius: 999px; padding: 12px 18px; font-size: 14px; font-weight: 600; text-decoration: none; box-shadow: var(--shadow); }
.wa-float:hover { background: var(--green-700); color: var(--ivory); }

/* ---------- Arabic (RTL) ---------- */
html[dir="rtl"] body { font-family: var(--font-ar); font-size: 17.5px; line-height: 1.85; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { font-family: var(--font-ar); font-weight: 700; letter-spacing: 0; line-height: 1.3; }
html[dir="rtl"] h1 { font-size: clamp(34px, 5vw, 56px); }
html[dir="rtl"] h2 { font-size: clamp(28px, 3.6vw, 40px); }
html[dir="rtl"] h3 { font-size: clamp(21px, 2.2vw, 26px); }
html[dir="rtl"] h4, html[dir="rtl"] .btn, html[dir="rtl"] .nav a, html[dir="rtl"] .form input, html[dir="rtl"] .form textarea { font-family: var(--font-ar); }
html[dir="rtl"] .eyebrow, html[dir="rtl"] .tag, html[dir="rtl"] .tier-label, html[dir="rtl"] .foot-grid h5, html[dir="rtl"] .hero-panel h4, html[dir="rtl"] .office strong { letter-spacing: 0; text-transform: none; font-size: 14px; font-family: var(--font-ar); }
html[dir="rtl"] .nav .lang { font-family: var(--font-text); }
html[dir="rtl"] .checks li { padding: 9px 26px 9px 0; }
html[dir="rtl"] .checks li::before { left: auto; right: 2px; }
html[dir="rtl"] .stat { border-left: 0; border-right: 1px solid var(--line-dark); }
html[dir="rtl"] .stat:first-child { border-right: 0; }
html[dir="rtl"] .office { border-left: 0; border-right: 3px solid var(--gold); padding: 4px 20px 4px 0; }
html[dir="rtl"] .market-list li span { text-align: left; }
html[dir="rtl"] .leak > div { border-right: 0; border-left: 1px solid var(--line); padding: 30px 0 10px 24px; padding-right: 24px; }
html[dir="rtl"] .leak > div:first-child { padding-right: 0; }
html[dir="rtl"] .leak > div:last-child { border-left: 0; }
html[dir="rtl"] .wa-float { right: auto; left: 18px; }
html[dir="rtl"] .brands { border-left: 0; border-right: 1px solid var(--line); }
html[dir="rtl"] .brands div { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .brands strong { font-family: var(--font-display); }
@media (max-width: 800px) { html[dir="rtl"] .stat:nth-child(3) { border-right: 0; } }

/* ---------- Owner reporting dashboard ---------- */
.dash { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.dash-top { background: var(--green); color: var(--ivory); padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.dash-top .dt-l { display: flex; align-items: center; gap: 14px; }
.dash-top img { width: 36px; height: 36px; }
.dash-top .dt-k { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.dash-top .dt-t { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ivory); line-height: 1.2; }
.seg-ctl { display: inline-flex; background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); border-radius: 8px; padding: 3px; gap: 2px; flex-wrap: wrap; }
.seg-ctl button { font: 600 13.5px var(--font-text); color: #D8E0D5; background: transparent; border: 0; border-radius: 6px; padding: 9px 14px; cursor: pointer; }
.seg-ctl button[aria-pressed="true"] { background: var(--gold); color: var(--green); }
.seg-ctl button:hover:not([aria-pressed="true"]) { color: var(--ivory); background: rgba(255,255,255,.06); }
.dash-ctl { display: flex; flex-wrap: wrap; gap: 10px; }
.dash-body { padding: 24px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.kpi { border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; background: #FCFBF8; }
.kpi-l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.kpi-v { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--green); line-height: 1.1; margin-top: 6px; }
.kpi-b { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.kpi-d { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.kpi-d.bad { background: #F6E7E4; color: #9A3B2E; }
.kpi-d.ok { background: #E3EFE6; color: #2E6B45; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.dash-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 18px; }
.panel { border: 1px solid var(--line); border-radius: 8px; padding: 18px 18px 14px; min-width: 0; }
.panel h4 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.panel .p-title { font-family: var(--font-display); font-size: 22px; color: var(--green); font-weight: 600; margin: 0 0 10px; line-height: 1.2; }
.legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: #33423A; margin-bottom: 6px; }
.legend i { display: inline-block; vertical-align: middle; margin-right: 6px; }
.legend .lb { width: 12px; height: 12px; border-radius: 2px; background: #2E5C37; }
.legend .ll { width: 18px; border-top: 2px dashed #B8975A; }
[data-revpar] svg { width: 100%; height: auto; display: block; }
[data-revpar] .ax { font-size: 12px; fill: #5E6D61; font-family: var(--font-text); }
[data-revpar] .bar { transition: opacity .15s; }
.insight { margin: 10px 0 0; padding: 12px 14px; background: var(--green-100); border-left: 3px solid var(--gold); border-radius: 4px; font-size: 14.5px; color: #24352A; }
.insight strong { color: var(--green); }
.tbl-toggle { margin-top: 10px; font-size: 13.5px; }
.tbl-toggle summary { cursor: pointer; color: var(--green); font-weight: 600; }
.tbl-toggle .metrics { margin-top: 10px; font-size: 14px; }
.tbl-toggle .metrics th, .tbl-toggle .metrics td { padding: 8px 12px; }
.val-big { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--green); line-height: 1; }
.val-big span { font-family: var(--font-text); font-size: 15px; color: var(--muted); font-weight: 500; margin-left: 6px; }
.val-sub { font-size: 14px; color: var(--muted); margin: 6px 0 16px; }
.val-bar { display: flex; gap: 2px; height: 14px; border-radius: 4px; overflow: hidden; }
.val-bar .seg { display: block; height: 100%; cursor: default; }
.val-legend { list-style: none; margin: 14px 0 0; padding: 0; font-size: 14.5px; }
.val-legend li { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid var(--line); }
.val-legend li:first-child { border-top: 0; }
.val-legend strong { margin-left: auto; color: var(--ink); }
.sw { display: inline-block; width: 11px; height: 11px; border-radius: 2px; vertical-align: -1px; margin-right: 6px; }
.captured { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); }
.cap-l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cap-v { font-size: 20px; font-weight: 600; color: var(--green); margin: 4px 0 8px; }
.cap-v .muted { font-size: 14px; font-weight: 500; }
.cap-track { height: 8px; background: var(--green-100); border-radius: 999px; overflow: hidden; }
.cap-track span { display: block; height: 100%; background: var(--green-700); border-radius: 999px; transition: width .4s; }
.cap-p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.cost-row { display: grid; grid-template-columns: 170px 1fr 190px; gap: 16px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); outline-offset: 2px; }
.cost-row:first-child { border-top: 0; }
.cost-n { display: block; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.cost-u { display: block; font-size: 12.5px; color: var(--muted); }
.cost-track { position: relative; height: 22px; }
.cost-track::before { content: ""; position: absolute; left: 0; right: 0; top: 10px; height: 2px; background: #EEE9DE; border-radius: 2px; }
.cost-gap { position: absolute; top: 9px; height: 4px; background: #BFCBBE; border-radius: 2px; }
.cost-gap.bad { background: #E4B9B1; }
.cost-b { position: absolute; top: 3px; width: 3px; height: 16px; margin-left: -1.5px; background: var(--gold); border-radius: 2px; }
.cost-v { position: absolute; top: 4px; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: var(--green-700); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--green-700); transition: left .4s; }
.cost-v.bad { background: #9A3B2E; box-shadow: 0 0 0 1px #9A3B2E; }
.cost-num { font-size: 14px; text-align: right; }
.flag { display: inline-block; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.flag.bad { background: #F6E7E4; color: #9A3B2E; }
.flag.ok { background: #E3EFE6; color: #2E6B45; }
.cost-key { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin: 2px 0 8px; }
.cost-key i { display: inline-block; vertical-align: middle; margin-right: 6px; }
.cost-key .kd { width: 12px; height: 12px; border-radius: 50%; background: var(--green-700); }
.cost-key .kb { width: 3px; height: 14px; background: var(--gold); border-radius: 2px; }
.prio { list-style: none; margin: 0; padding: 0; }
.prio li { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.prio li:first-child { border-top: 0; }
.p-n { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.p-t { font-weight: 600; font-size: 14.5px; color: var(--ink); line-height: 1.35; }
.p-t span { display: block; font-weight: 500; font-size: 13px; color: var(--muted); }
.st { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.st-new { background: #F3EBDD; color: #7F6431; }
.st-prog { background: #E6ECF1; color: #3F5E73; }
.st-done { background: #E3EFE6; color: #2E6B45; }
.dash-foot { padding: 14px 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); background: #FBF9F5; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.dash-tip { position: fixed; z-index: 90; display: none; pointer-events: none; background: #13261A; color: #EEF2EC; font-size: 13px; line-height: 1.5; padding: 10px 12px; border-radius: 6px; box-shadow: 0 6px 20px rgba(0,0,0,.18); max-width: 260px; }
.dash-tip strong { color: #fff; }
.dash-tip .sw { width: 9px; height: 9px; }
.dash-tip .sw.ln { background: none; border-top: 2px dashed #C9A96E; width: 12px; height: 0; vertical-align: 3px; border-radius: 0; }
.dash-tip .neg { color: #F0B3A8; font-weight: 600; }
.dash-tip .pos { color: #A9D8B6; font-weight: 600; }
@media (max-width: 1000px) { .dash-grid { grid-template-columns: 1fr; } .kpis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .dash-body { padding: 16px; } .dash-top { padding: 16px; }
  .kpi-v { font-size: 28px; }
  .cost-row { grid-template-columns: 1fr; gap: 6px; }
  .cost-num { text-align: left; }
  .seg-ctl button { padding: 8px 10px; font-size: 13px; }
}

/* ---------- Photography (v7) ---------- */
.hero-photo { background-color: #112817; background-size: cover; background-position: center right; color: var(--ivory); padding: 104px 0 112px; }
.hero-photo h1 { color: #FFFFFF; }
.hero-photo .lead { color: #DCE4D8; }
.hero-photo .eyebrow { color: var(--gold-light); }
.hero-photo .btn-ghost { border-color: rgba(247,244,238,.7); color: var(--ivory); }
.hero-photo .btn-ghost:hover { background: var(--ivory); color: var(--green); }
.hero-photo .wrap { grid-template-columns: 1.05fr 1fr; gap: 56px; }
.hero-dash { display: block; position: relative; text-decoration: none; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(201,169,110,.35); transform: perspective(1400px) rotateY(-6deg) rotateX(2deg); transition: transform .4s; }
.hero-dash:hover { transform: none; }
.hero-dash img { width: 100%; height: auto; display: block; }
.hero-dash-cap { position: absolute; left: 12px; bottom: 12px; background: rgba(17,40,23,.88); color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: 4px; }
@media (max-width: 900px) { .hero-photo { padding: 64px 0 72px; background-position: center; } .hero-dash { transform: none; } }

.photo-tall { aspect-ratio: 4 / 5; }
.photo-wide { aspect-ratio: 21 / 8; border-radius: 10px; }
@media (max-width: 700px) { .photo-wide { aspect-ratio: 16 / 9; } .photo-tall { aspect-ratio: 4 / 3; } }

.q-light { margin: 18px 0 8px; }
.q-light li { border-top: 1px solid var(--line); }
.q-light .n { color: var(--gold); }
.q-light strong { color: var(--green); }
.q-light span { color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill-row span { font-size: 13px; font-weight: 600; color: var(--green); background: var(--green-100); border-radius: 999px; padding: 6px 14px; }

.ksa-photo { background-size: cover; background-position: center top; }
.ksa-photo::before, .ksa-photo::after { display: none; }
.ksa-photo .card { background: rgba(17,40,23,.55); backdrop-filter: blur(2px); }

a.card.svc { text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s, transform .2s; }
a.card.svc:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
a.card.svc p { color: #3A4A40; flex: 1; }
.kpi-terms { display: block; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--gold-text); }

.page-hero.photo-head { background-color: #112817; background-size: cover; background-position: center; border-bottom: 0; padding: 96px 0 88px; }
.page-hero.photo-head h1 { color: #fff; }
.page-hero.photo-head .lead { color: #DCE4D8; }
.page-hero.photo-head .eyebrow { color: var(--gold-light); }
.page-hero.photo-head .crumbs, .page-hero.photo-head .crumbs a { color: #B9C6B6; }
.page-hero.photo-head .btn-primary { background: var(--gold); color: var(--green); }
.page-hero.photo-head .btn-primary:hover { background: var(--gold-light); color: var(--green); }
.page-hero.photo-head .photo { display: none; }
.page-hero.photo-head.split-hero .wrap { display: block; }

.cta.cta-photo { background-size: cover; background-position: center; }

html[dir="rtl"] .hero-photo { background-position: center left; }
html[dir="rtl"] .hero-dash { transform: perspective(1400px) rotateY(6deg) rotateX(2deg); }
html[dir="rtl"] .hero-dash-cap { left: auto; right: 12px; }
@media (max-width: 900px) { html[dir="rtl"] .hero-dash { transform: none; } }
.ksa-photo { background-position: center top; background-size: 100% auto; background-repeat: no-repeat; background-color: #0F2415; padding-top: 250px; }
.hero-photo h1, .hero-photo .lead, .page-hero.photo-head h1, .page-hero.photo-head .lead { text-shadow: 0 1px 18px rgba(0,0,0,.35); }
@media (max-width: 900px) { .ksa-photo { padding-top: 180px; background-size: 180% auto; } }
