/* ==========================================================================
   AROMIS - Corporate website
   Design system & global stylesheet
   --------------------------------------------------------------------------
   Plain CSS, no build step. Self-contained. Edit tokens in :root to re-skin.
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Brand palette: deep green primary, refined brass accent, warm neutrals */
  --ink:        #0e231a;   /* deep green-black, primary text */
  --navy:       #1f6b4d;   /* alias kept; now resolves to brand green */
  --navy-600:   #185a40;
  --navy-500:   #2a7d5d;
  --navy-soft:  #2a7d5d;
  --gold:       #b7913f;   /* brass accent */
  --gold-600:   #9a7a2f;
  --gold-200:   #e7d6a8;
  --green:      #1f6b4d;   /* brand primary */
  --green-600:  #185a40;
  --green-700:  #124633;

  --bg:         #f5f8f3;   /* soft green-tinted off-white */
  --surface:    #ffffff;
  --surface-2:  #ecf1e9;   /* muted green panel */
  --paper:      #0c2a1e;   /* deep green, dark sections */

  --text:       #16271f;
  --muted:      #56685f;
  --muted-2:    #889a90;
  --line:       #e1e7db;   /* green-tinted hairline */
  --line-dark:  rgba(255,255,255,.12);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / layout */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(10,24,37,.06), 0 1px 3px rgba(10,24,37,.05);
  --shadow:    0 10px 30px -12px rgba(10,24,37,.18);
  --shadow-lg: 0 30px 60px -20px rgba(10,24,37,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --speed: .5s;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

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

/* ------------------------------------------------------------ Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 470; line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }
.display    { font-size: clamp(2.6rem, 6.2vw, 4.6rem); line-height: 1.03; letter-spacing: -.022em; }
h1          { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2          { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3          { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4          { font-size: 1.12rem; font-family: var(--font-sans); font-weight: 650; letter-spacing: 0; }
p { color: var(--muted); }
strong { color: var(--text); font-weight: 650; }

.lead { font-size: clamp(1.12rem, 1.6vw, 1.32rem); line-height: 1.6; color: var(--muted); }
.motto { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--gold-600); }
.hero .motto { color: var(--gold-200); font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-top: 1rem; }
.footer-brand .motto { color: var(--gold-200); font-size: 1.08rem; margin-top: 1rem; margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .76rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600); display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.light { color: var(--gold-200); }

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--alt { background: var(--surface-2); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--paper); color: #d7e0e8; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #9fb1bf; }
.section--dark .feature-list li { color: #9fb1bf; }
.section--dark .feature-list li strong { color: #fff; }
.section--dark .btn-ghost.light:hover { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  border: 1px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-600); border-color: var(--green-600); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #08190f; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-outline.light { color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline.light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-ghost { padding-inline: 0; color: var(--navy); font-weight: 650; gap: .45rem; }
.btn-ghost.light { color: var(--gold-200); }
.btn-ghost::after { content: "→"; transition: transform .25s var(--ease); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ----------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,246,.85); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(10,24,37,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-logo { height: 38px; width: auto; flex-shrink: 0; display: block; }
.brand-name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 500; letter-spacing: .02em; color: var(--ink); line-height: 1; }
.brand-name b { color: var(--gold-600); font-weight: 500; }
.brand-sub { display: block; font-family: var(--font-sans); font-size: .58rem; letter-spacing: .34em; color: var(--muted-2); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: clamp(.5rem, 1.4vw, 1.4rem); }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--text); padding: .4rem 0; position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .75rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: var(--radius); }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 76px 0 auto 0; background: var(--surface);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; gap: 0; padding: 1rem var(--gutter) 1.75rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 1.1rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}
@media (min-width: 1025px) { .nav-menu { display: flex; align-items: center; gap: 2rem; } }

/* ------------------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; background: var(--paper); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(183,145,63,.20), transparent 55%),
    radial-gradient(90% 80% at 10% 110%, rgba(31,107,77,.45), transparent 62%),
    linear-gradient(180deg, #103a29 0%, #08190f 100%);
}
.hero-inner { position: relative; padding-block: clamp(4.5rem, 11vw, 8.5rem); }
.hero .display { color: #fff; max-width: 16ch; }
.hero .lead { color: #b6c5d2; max-width: 56ch; margin-top: 1.5rem; }
.hero .btn-row { margin-top: 2.5rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 2rem 3rem; margin-top: 3.5rem; padding-top: 2.25rem; border-top: 1px solid var(--line-dark); }
.hero-meta div { min-width: 120px; }
.hero-meta .n { font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1; }
.hero-meta .l { font-size: .82rem; color: #93a6b5; margin-top: .4rem; letter-spacing: .02em; }
.hero-scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: #6f8494; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; }

/* page hero (inner pages) */
.page-hero { background: var(--paper); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 120% at 90% -20%, rgba(183,145,63,.16), transparent 55%), radial-gradient(90% 90% at 5% 110%, rgba(31,107,77,.40), transparent 60%), linear-gradient(180deg, #103a29, #08190f); }
.page-hero-inner { position: relative; padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero h1 { color: #fff; margin-top: .9rem; max-width: 20ch; }
.page-hero p { color: #aebecb; margin-top: 1.1rem; max-width: 58ch; }
.breadcrumb { font-size: .82rem; color: #7f93a3; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a:hover { color: var(--gold-200); }
.breadcrumb span { color: var(--gold-200); }

/* --------------------------------------------------------------- Cards */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2rem); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-200); }
.card .ico { width: 48px; height: 48px; border-radius: var(--radius); display: grid; place-items: center; background: var(--surface-2); color: var(--navy); margin-bottom: 1.25rem; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--font-sans); font-size: 1.18rem; font-weight: 650; letter-spacing: 0; margin-bottom: .55rem; }
.card p { font-size: .95rem; }
.card .card-link { margin-top: 1.1rem; display: inline-block; }

.card.numbered { counter-increment: step; }
.card.numbered .ico { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-600); background: var(--surface-2); }
.card.numbered .ico::before { content: counter(step, decimal-leading-zero); }

.feature-list { display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .85rem; align-items: flex-start; color: var(--muted); }
.feature-list li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.feature-list li strong { display: block; color: var(--text); }

/* stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat-band.dark { background: var(--line-dark); border-color: var(--line-dark); }
.stat { background: var(--surface); padding: clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.stat-band.dark .stat { background: var(--paper); }
.stat .n { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--navy); line-height: 1; }
.stat-band.dark .stat .n { color: #fff; }
.stat .n b { color: var(--gold-600); font-weight: inherit; }
.stat .l { font-size: .86rem; color: var(--muted); margin-top: .6rem; }
.stat-band.dark .stat .l { color: #93a6b5; }
@media (max-width: 760px) { .stat-band, .stat-band.dark { grid-template-columns: repeat(2, 1fr); } }

/* logo wall */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.logo-wall .cell { background: var(--surface); aspect-ratio: 5/3; display: grid; place-items: center; color: var(--muted-2); font-weight: 600; letter-spacing: .04em; font-size: .9rem; padding: 1rem; text-align: center; }
.logo-wall.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .logo-wall.cols-4 { grid-template-columns: repeat(2, 1fr); } }

/* pill / tag */
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .8rem; border-radius: 100px; background: var(--surface-2); color: var(--navy); font-size: .8rem; font-weight: 600; }
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* --------------------------------------------------------------- Media */
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--surface-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.framed { border: 1px solid var(--line); }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-1-1 { aspect-ratio: 1/1; }
.ratio-3-2 { aspect-ratio: 3/2; }

/* image placeholder (no asset yet) */
.imgph { display: grid; place-items: center; text-align: center; gap: .6rem; color: var(--muted-2);
  background:
    linear-gradient(135deg, rgba(31,107,77,.06), rgba(183,145,63,.06)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(31,107,77,.04) 14px, rgba(31,107,77,.04) 15px);
  border: 1px dashed var(--line); }
.imgph svg { width: 34px; height: 34px; opacity: .6; }
.imgph span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.imgph.has-img { border: 0; color: transparent; }
.imgph.has-img svg, .imgph.has-img span { display: none; }

/* --------------------------------------------------------- Placeholders */
/* Marks unverified content that MUST be replaced before go-live. */
[data-ph], .ph {
  background: linear-gradient(0deg, rgba(183,145,63,.14), rgba(183,145,63,.14));
  box-shadow: inset 0 -1px 0 var(--gold);
  border-radius: 2px; padding: 0 .15em; color: var(--gold-600); font-weight: 600;
}
.ph-note { display: inline-flex; align-items: center; gap: .4rem; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-600); background: rgba(183,145,63,.12); border: 1px solid var(--gold-200); border-radius: 100px; padding: .25rem .7rem; }

/* --------------------------------------------------------------- CTA band */
.cta { background: var(--paper); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0, rgba(183,145,63,.25), transparent 50%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; max-width: 22ch; margin: 0 auto; }
.cta p { color: #aebecb; max-width: 52ch; margin: 1rem auto 0; }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------- Accordion / FAQ */
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 1.3rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.5rem; color: var(--gold-600); transition: transform .25s; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .panel { padding-bottom: 1.4rem; color: var(--muted); max-width: 70ch; }

/* --------------------------------------------------------------- Timeline */
.timeline { display: grid; gap: 0; }
.timeline .row { display: grid; grid-template-columns: 140px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.timeline .yr { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-600); }
.timeline h4 { margin-bottom: .35rem; }
@media (max-width: 600px) { .timeline .row { grid-template-columns: 1fr; gap: .4rem; } }

/* ------------------------------------------------------------------ Forms */
.form { display: grid; gap: 1.1rem; }
.form .field { display: grid; gap: .45rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form input, .form textarea, .form select {
  width: 100%; padding: .8rem .95rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183,145,63,.15); outline: none; }
.form textarea { min-height: 140px; resize: vertical; }
.form .consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.form .consent input { width: auto; margin-top: .25rem; }

/* contact info list */
.contact-list { display: grid; gap: 1.5rem; }
.contact-list .item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico { width: 44px; height: 44px; border-radius: var(--radius); background: var(--surface-2); display: grid; place-items: center; color: var(--navy); flex-shrink: 0; }
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list .item h4 { margin-bottom: .2rem; }
.contact-list .item p, .contact-list .item a { font-size: .96rem; color: var(--muted); }
.contact-list .item a:hover { color: var(--navy); }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--ink); color: #9fb1bf; padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .92rem; margin-top: 1.1rem; max-width: 34ch; color: #8497a5; }
.footer-col h5 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .93rem; color: #9fb1bf; transition: color .2s; }
.footer-col a:hover { color: var(--gold-200); }
.footer-col address { font-style: normal; font-size: .93rem; line-height: 1.7; color: #9fb1bf; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.75rem; font-size: .82rem; color: #6f8494; }
.footer-bottom .legal-entity { max-width: 60ch; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: var(--radius); display: grid; place-items: center; transition: .2s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #1a1405; }
.footer-social svg { width: 17px; height: 17px; }

/* ------------------------------------------------------------ Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.maxw { max-width: 60ch; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2.5rem,5vw,4rem); }

/* prose (long-form policy/article pages) */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; font-family: var(--font-sans); font-weight: 650; font-size: 1.25rem; }
.prose ul { display: grid; gap: .6rem; padding-left: 1.1rem; list-style: disc; }
.prose ul li { color: var(--muted); padding-left: .3rem; }
.prose p { color: var(--muted); }
.prose a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------- Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ----------------------------------------- UAE community support banner */
.support-banner { background: #0b2018; color: #d7e0d9; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.support-banner-inner { display: flex; align-items: center; gap: 1rem; padding-block: .55rem; }
.support-banner .support-flag { width: 24px; height: 15px; border-radius: 2px; flex-shrink: 0;
  background:
    linear-gradient(90deg, #ce1126 0 25%, transparent 25%),
    linear-gradient(180deg, #00843d 0 33.34%, #ffffff 33.34% 66.67%, #000000 66.67%); }
.support-banner p { margin: 0; flex: 1; text-align: center; color: #cdd8cf; }
.support-banner a { color: var(--gold-200); text-decoration: underline; text-underline-offset: 2px; }
.support-banner a:hover { color: #fff; }
.support-close { background: none; border: 0; color: #8aa093; font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 .25rem; transition: color .2s; }
.support-close:hover { color: #fff; }
@media (max-width: 640px) { .support-banner p { text-align: left; font-size: .8rem; } .support-banner .support-flag { display: none; } }
