/* ==========================================================================
   Al Wadaani Kuwait — alwadaani.com
   Design language: condensed uppercase display type, hairline 1px grids on a
   warm off-white ground, near-black and amber. Square corners throughout.
   ========================================================================== */

:root {
  --ink: #16181c;
  --ink-deep: #0f1013;
  --ink-soft: #24262b;
  --amber: #f5b60a;
  --amber-dark: #a8710a;
  --paper: #f6f6f4;
  --card: #ffffff;
  --rule: #e3e3de;
  --muted: #5f636a;
  --muted-2: #6b6f76;
  --muted-3: #8b9098;
  --on-dark: #b9bec5;
  --on-dark-2: #a8aeb6;
  --wrap: 1280px;
  --display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --label: 'Barlow Semi Condensed', 'Arial Narrow', system-ui, sans-serif;
  --body: Barlow, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--amber-dark); text-decoration: none; }
a:hover { color: var(--ink); }

::selection { background: var(--amber); color: var(--ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 26px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--amber); color: var(--ink); padding: 10px 16px;
  font-family: var(--label); font-weight: 600; text-transform: uppercase;
}
.skip:focus { left: 0; }

/* --- Utility type ------------------------------------------------------- */

.eyebrow {
  font-family: var(--label);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 12px;
}
.eyebrow--dot { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow--dot::before { content: ''; width: 8px; height: 8px; background: var(--amber); flex: none; }

.kicker {
  font-family: var(--label);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted-3);
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 26px; min-height: 48px; border: 1px solid transparent;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber:hover { background: var(--ink); color: var(--amber); }
.btn--ink { background: var(--ink); color: var(--amber); }
.btn--ink:hover { background: var(--amber); color: var(--ink); }
.btn--ghost { border-color: #43464d; color: #fff; background: transparent; }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--amber); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.arrow-link {
  font-family: var(--label); font-size: 14px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
}

/* --- Top bar + header --------------------------------------------------- */

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 7px 26px;
  background: var(--ink); color: #8f959d;
  font-size: 13px; font-weight: 500;
}
.topbar__strap {
  font-family: var(--label); letter-spacing: 0.05em; text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.topbar__right { display: flex; align-items: center; gap: 18px; flex: none; }
.topbar__hours { font-family: var(--label); letter-spacing: 0.05em; text-transform: uppercase; }
.topbar a { color: var(--amber); font-weight: 600; }
.topbar a:hover { color: #fff; }

.header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: stretch; flex-wrap: wrap;
  background: #fff; border-bottom: 2px solid var(--ink);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 22px; border-right: 1px solid var(--rule); flex: 1;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__logo { width: auto; height: 38px; flex: none; }

.footer__logo { width: auto; height: 34px; margin-bottom: 12px; }

.nav { display: flex; align-items: center; gap: 2px; padding: 0 10px; }
.nav a {
  font-family: var(--label); font-size: 15px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink); padding: 8px 11px;
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--amber-dark); }
.nav a[aria-current='page'] { box-shadow: inset 0 -3px 0 var(--amber); }

.header__cta {
  border: 0; background: var(--amber); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 14px 26px; display: flex; align-items: center;
}
.header__cta:hover { background: var(--ink); color: var(--amber); }

.burger {
  display: none; border: 0; border-left: 1px solid var(--rule);
  background: #fff; color: var(--ink); font-size: 22px;
  width: 56px; min-height: 56px; cursor: pointer;
}

.mobilenav { display: none; background: var(--ink); border-bottom: 2px solid var(--amber); padding: 8px 0 16px; }
.mobilenav.is-open { display: block; }
.mobilenav a {
  display: block; padding: 14px 22px;
  font-family: var(--display); font-weight: 700; font-size: 21px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid var(--ink-soft);
}
.mobilenav a:hover { color: var(--amber); }
.mobilenav__actions { display: grid; gap: 10px; padding: 16px 22px 0; }
.mobilenav__actions .btn { width: 100%; }

/* --- Hero / page head --------------------------------------------------- */

.hero { background: var(--ink); color: #fff; display: grid; grid-template-columns: 1.35fr 1fr; }
.hero__body { padding: 66px 26px 58px; max-width: 780px; margin-left: auto; width: 100%; }
.hero h1 {
  font-size: clamp(40px, 5vw, 74px); line-height: 0.94;
  letter-spacing: -0.01em; margin: 0 0 22px;
}
.hero h1 .accent { color: var(--amber); }
.hero__lead { font-size: 18px; line-height: 1.55; color: var(--on-dark); max-width: 560px; margin: 0 0 32px; }
.hero__lead strong { color: #fff; }
.hero__panel {
  background: #1e2126 repeating-linear-gradient(135deg, transparent 0 14px, rgba(245, 182, 10, .055) 14px 28px);
  border-left: 1px solid #2a2d33;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 26px; min-height: 260px;
}
.hero__panel img { width: 100%; height: 100%; object-fit: cover; }

.pagehead { background: var(--ink); color: #fff; padding: 46px 0 42px; }
.pagehead h1 { font-size: clamp(34px, 4.2vw, 56px); line-height: 0.98; margin: 0; max-width: 900px; }
.pagehead__lead { font-size: 17px; line-height: 1.55; color: var(--on-dark); max-width: 780px; margin: 16px 0 0; }
.pagehead__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }

.crumbs { background: #fff; border-bottom: 1px solid var(--rule); padding: 12px 0; }
.crumbs .wrap {
  font-family: var(--label); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-3);
}
.crumbs a { color: var(--muted-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: #c6c8c3; margin: 0 6px; }
.crumbs .here { color: var(--ink); }

/* --- Stat strip --------------------------------------------------------- */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  background: #fff; border-bottom: 1px solid var(--rule);
}
.stats > div { padding: 22px 24px; border-right: 1px solid var(--rule); }
.stats > div:last-child { border-right: 0; }
.stats b { display: block; font-family: var(--display); font-weight: 700; font-size: 32px; line-height: 1; }
.stats span {
  display: block; font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px;
}

/* --- Sections ----------------------------------------------------------- */

.section { padding: 56px 0 60px; }
.section--tight { padding: 34px 0 60px; }
.section--white { background: #fff; }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 2px solid var(--ink); padding-bottom: 14px; margin-bottom: 28px;
}
.section__head h2 { font-size: 38px; line-height: 1; margin: 0; }
.section__sub { font-size: 17px; line-height: 1.6; color: var(--muted); margin: -14px 0 28px; max-width: 780px; }

/* --- Hairline grid of cards --------------------------------------------- */

.grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--wide { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.tile { display: block; background: #fff; padding: 24px 22px 22px; color: var(--ink); }
a.tile:hover { background: #fffdf5; color: var(--ink); }
.tile__num { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--amber-dark); }
.tile h3 { font-size: 25px; line-height: 1.05; margin: 8px 0 10px; }
.tile p { font-size: 15px; line-height: 1.5; color: var(--muted); margin: 0; }
.tile__cta {
  display: inline-block; margin-top: 14px;
  font-family: var(--label); font-size: 13px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--amber-dark);
}
.tile__icon { font-size: 22px; line-height: 1; margin-bottom: 12px; }

.tile--dark { background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
a.tile--dark:hover { background: #26292f; color: #fff; }
.tile--dark .tile__num { color: var(--amber); }
.tile--dark h3 { color: #fff; }
.tile--dark p { color: var(--on-dark-2); }
.tile--dark .tile__cta { color: var(--amber); }

/* --- Brand logo strip --------------------------------------------------- */

.brandstrip { background: #fff; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 28px 0; }
.brandstrip__row {
  display: flex; flex-wrap: wrap; gap: 14px 44px; align-items: center;
  font-family: var(--display); font-weight: 700; font-size: 23px;
  text-transform: uppercase; color: #9ba0a8;
}

.logos { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.logos figure { margin: 0; background: #fff; padding: 18px; display: flex; align-items: center; justify-content: center; min-height: 104px; }
.logos img { max-height: 66px; width: auto; object-fit: contain; }

/* --- Long-form article body --------------------------------------------- */

.prose { font-size: 16.5px; line-height: 1.7; color: #2c2f35; max-width: 78ch; }
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose h2, .prose h3, .prose h4 { color: var(--ink); margin: 30px 0 12px; }
.prose h3 { font-size: 26px; }
.prose h4 { font-size: 21px; }
.prose img { margin: 18px 0; border: 1px solid var(--rule); }

.blockhead { font-size: 30px; line-height: 1.05; margin: 34px 0 16px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.blockhead:first-child { margin-top: 0; }

.figure { margin: 22px 0; border: 1px solid var(--rule); background: #fff; padding: 12px; }
.figure img { margin: 0 auto; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 22px 0; }
.gallery figure { margin: 0; background: #fff; padding: 12px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }

.imgrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 22px 0; }
.imgrow figure { margin: 0; background: #fff; padding: 14px; }
.imgrow img { width: 100%; aspect-ratio: 1; object-fit: contain; }

.videoframe { position: relative; aspect-ratio: 16 / 9; margin: 22px 0; border: 1px solid var(--rule); background: #000; }
.videoframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.pdfframe { width: 100%; height: min(80vh, 900px); border: 1px solid var(--rule); background: #fff; }

/* --- Two-column page layout --------------------------------------------- */

.split { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.split--even { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.factlist { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.factlist > div { background: #fff; padding: 20px 22px; }
.factlist b { display: block; font-family: var(--display); font-weight: 700; font-size: 30px; line-height: 1; }
.factlist span {
  display: block; font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px;
}

.infocards { display: grid; gap: 1px; background: #2a2d33; border: 1px solid var(--ink); }
.infocards > div { background: var(--ink); color: #fff; padding: 24px; }
.infocards h3 { font-size: 22px; margin: 0 0 8px; color: #fff; }
.infocards a { color: var(--amber); font-family: var(--display); font-weight: 700; font-size: 22px; }
.infocards a:hover { color: #fff; }
.infocards p { font-size: 15px; color: var(--on-dark-2); margin: 8px 0 0; }
.infocards .infocards__label {
  font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
}

.whygrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.whygrid > div { background: #fff; padding: 22px; }
.whygrid h4 { font-size: 20px; margin: 0 0 7px; }
.whygrid p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }
.whygrid .check { color: var(--amber-dark); font-weight: 700; }

/* --- Amber call-to-action band ------------------------------------------ */

.cta { background: var(--amber); padding: 44px 0; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta h2 { font-size: 40px; line-height: 1; margin: 0 0 8px; }
.cta p { font-size: 17px; color: #4a3c0d; margin: 0; max-width: 620px; }

.panel { background: #fff; border: 1px solid var(--rule); padding: 28px; }
.panel h2 { font-size: 26px; margin: 0 0 6px; }
.panel__sub { font-size: 15px; color: var(--muted-2); margin: 0 0 22px; }

.steps { display: grid; gap: 14px; }
.steps > div { display: grid; grid-template-columns: 26px 1fr; gap: 12px; }
.steps b { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--amber-dark); }
.steps p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); }

/* --- Forms -------------------------------------------------------------- */

.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.field { display: block; }
.field > span {
  display: block; font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 15px; line-height: 1.5;
  padding: 11px 12px; border: 1px solid #d6d6d0; background: #fbfbf9; color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select[multiple] { min-height: 150px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); outline: 2px solid var(--amber); outline-offset: -1px; }
.field--full { grid-column: 1 / -1; }
.field input[type='file'] { padding: 9px 10px; background: #fbfbf9; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formnote { font-size: 14px; color: var(--muted-3); margin: 12px 0 0; }

.notice { padding: 14px 16px; border-left: 4px solid var(--amber); background: #fffbe9; font-size: 15px; margin: 0 0 20px; }
.notice--ok { border-left-color: #2e7d32; background: #eef7ee; }
.notice--err { border-left-color: #c62828; background: #fdeeee; }

/* --- News --------------------------------------------------------------- */

.posts { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.posts a { display: grid; grid-template-columns: 150px 1fr; gap: 22px; background: #fff; padding: 24px; color: var(--ink); }
.posts a:hover { background: #fffdf5; }
.posts .date { font-family: var(--label); font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted-3); }
.posts h3 { font-size: 26px; line-height: 1.08; margin: 0 0 8px; }
.posts p { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 720px; }

/* --- Footer ------------------------------------------------------------- */

.footer { background: var(--ink-deep); color: #8f959d; padding: 44px 0 30px; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--ink-soft); }
.footer h2 { font-size: 22px; color: #fff; margin: 0 0 8px; }
.footer p { font-size: 15px; line-height: 1.55; margin: 0; }
.footer__label { font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
.footer__links { display: grid; gap: 7px; font-size: 15px; }
.footer__links a { color: #c8ccd1; }
.footer__links a:hover { color: var(--amber); }
.footer__contact a { color: var(--amber); }
.footer__contact a:hover { color: #fff; }
.footer__base {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px 24px; flex-wrap: wrap; padding-top: 20px;
  font-family: var(--label); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
}
.footer__credit { order: 3; flex-basis: 100%; text-align: center; padding-top: 14px; border-top: 1px solid var(--ink-soft); }
.footer__credit a { color: #c8ccd1; font-weight: 600; }
.footer__credit a:hover { color: var(--amber); }

@media (min-width: 900px) {
  .footer__credit { order: 0; flex-basis: auto; text-align: right; padding-top: 0; border-top: 0; }
}

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 1080px) {
  .nav a { padding: 8px 8px; font-size: 14px; }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .brand { border-right: 0; }
  .hero { grid-template-columns: 1fr; }
  .hero__body { padding: 48px 26px 44px; margin-left: 0; }
  .hero__panel { min-height: 180px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .posts a { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 620px) {
  .wrap { padding-inline: 20px; }
  .brand { padding: 12px 18px; gap: 10px; }
  .brand__logo { height: 32px; }
  .topbar { font-size: 12px; padding: 7px 20px; }
  .topbar__hours { display: none; }
  .topbar__strap { font-size: 11px; }
  .section { padding: 40px 0 44px; }
  .section__head h2 { font-size: 30px; }
  .cta h2 { font-size: 30px; }
  .hero__body { padding: 40px 20px 36px; }
  .btn { width: 100%; }
  .btn-row { display: grid; }
  .stats > div { border-right: 0; border-bottom: 1px solid var(--rule); }
}

@media print {
  .header, .topbar, .mobilenav, .cta, .footer { display: none; }
  body { background: #fff; }
}
