/* ============================================================
   Aseel Group — light edition
   Brand colours sampled from the official logo:
   blue #137DAC · gold #D2A543 · gray #848383
   Clean white corporate design.
   ============================================================ */

:root {
  /* Brand (exact logo colours) */
  --brand: #137dac;
  --brand-600: #0f6d98;
  --brand-700: #0c5a7e;
  --brand-800: #0a4a68;
  --brand-900: #063040;
  --brand-deep: #08384f;
  --brand-tint: #e8f3f9;
  --brand-tint-2: #f2f8fb;

  --gold: #d2a543;
  --gold-600: #bd9134;
  --gold-100: #f7edd6;

  --gray: #848383;

  /* Neutrals */
  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --paper: #ffffff;
  --ink: #16303d;
  --muted: #5d6b73;
  --line: rgba(19, 125, 172, 0.16);
  --line-soft: rgba(19, 125, 172, 0.09);

  --pos: #2f9e6a;

  /* Type */
  --font-serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-hero: clamp(2.5rem, 1.1rem + 5.4vw, 5.6rem);
  --text-h2: clamp(1.9rem, 1.1rem + 2.4vw, 3.1rem);
  --text-h3: clamp(1.15rem, 0.95rem + 0.8vw, 1.5rem);

  --section: clamp(4.5rem, 3rem + 7vw, 8.5rem);
  --radius: 16px;
  --radius-lg: 22px;
  --dur: 320ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 12px rgba(8, 56, 79, 0.06);
  --shadow-md: 0 18px 44px -20px rgba(8, 56, 79, 0.24);
  --shadow-lg: 0 40px 80px -34px rgba(8, 56, 79, 0.32);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::-webkit-scrollbar { width: 0; height: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; margin: 0; color: var(--brand-800); }
p { margin: 0; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }

/* ------------------------------------------------ Buttons */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease), color var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(19, 125, 172, 0.55); }
.btn .arw { transition: transform var(--dur) var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--brand-900); color: #3a2c07; }
.btn--gold:hover { box-shadow: 0 16px 30px -12px rgba(210, 165, 67, 0.6); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--brand-700); border-color: var(--line); }
.btn--outline:hover { background: var(--brand-tint); box-shadow: none; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); box-shadow: none; }
.btn--white { --btn-bg: #fff; --btn-fg: var(--brand-700); }

/* ------------------------------------------------ Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; height: 76px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: height var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.scrolled { height: 64px; box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.96); }

.brand { display: flex; align-items: center; flex: none; }
.brand__logo { height: 40px; width: auto; flex: none; display: block; }
.site-header.scrolled .brand__logo { height: 34px; transition: height var(--dur) var(--ease); }

/* Nav */
.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  position: relative; padding: 0.5rem 0.9rem;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  border-radius: 8px; transition: color var(--dur) var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.32rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav a:hover { color: var(--brand); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-size: 0.72rem; font-weight: 700; }
.lang button {
  padding: 0.42rem 0.7rem; background: transparent; border: 0; color: var(--gray);
  cursor: pointer; font: inherit; letter-spacing: 0.04em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang button.active { background: var(--brand); color: #fff; }
.nav-toggle { display: none; }

/* ------------------------------------------------ Hero (light) */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; background: var(--bg); padding: 128px 0 90px; color: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 60% at 82% 12%, rgba(210,165,67,0.16), transparent 60%),
    radial-gradient(60% 65% at 10% 95%, rgba(19,125,172,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--brand-tint-2) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(19,125,172,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,125,172,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 25%, transparent 75%);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(14px); opacity: 0.55; animation: float 14s ease-in-out infinite; }
.hero__orb.o1 { width: 340px; height: 340px; right: -50px; top: 10%; background: radial-gradient(circle at 30% 30%, rgba(210,165,67,0.35), transparent 65%); }
.hero__orb.o2 { width: 300px; height: 300px; left: 2%; bottom: 6%; background: radial-gradient(circle at 40% 40%, rgba(19,125,172,0.28), transparent 65%); animation-delay: -5s; }
@keyframes float { 0%,100% { transform: none; } 50% { transform: translateY(-26px) translateX(12px); } }

.hero__inner { position: relative; z-index: 2; width: min(1180px, 92vw); margin-inline: auto; }
.hero__lead { max-width: 880px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem; border: 1px solid var(--line);
  border-radius: 999px; background: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); box-shadow: var(--shadow-sm);
}
.hero__kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(210,165,67,0.25); }
.hero h1 { font-size: var(--text-hero); margin: 1.5rem 0 0; letter-spacing: -0.02em; color: var(--brand-800); }
.hero h1 .accent { color: var(--gold-600); font-style: italic; }
.hero__rotator { margin-top: 1.5rem; min-height: 3.2em; font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.4rem); color: var(--muted); max-width: 640px; }
.rot-line { display: none; }
.rot-line.is-active { display: block; animation: rotIn 700ms var(--ease); }
@keyframes rotIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  color: var(--gray); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero__scroll .mouse { width: 22px; height: 34px; border: 1.5px solid var(--line); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; border-radius: 2px; background: var(--gold);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 100% { opacity: 0; top: 16px; } }

/* Marquee */
.marquee { background: var(--brand); color: rgba(255,255,255,0.92); padding: 1.05rem 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 3rem; animation: slide 28s linear infinite; }
.marquee span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "◆"; color: var(--gold); font-size: 0.6rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------ Sections */
section { position: relative; }
.section { padding: var(--section) 0; }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: var(--text-h2); margin: 1rem 0 0; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; }

/* Overview */
.overview { background: var(--bg); }
.overview__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.overview__media {
  position: relative; border-radius: var(--radius-lg); min-height: 420px;
  background: radial-gradient(80% 80% at 20% 10%, rgba(210,165,67,0.22), transparent 60%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-800) 100%);
  overflow: hidden; box-shadow: var(--shadow-lg); display: grid; place-items: center;
}
.overview__media .globe { width: 78%; opacity: 0.95; }
.overview__badge {
  position: absolute; left: 24px; bottom: 24px; background: #fff; border-radius: 14px;
  padding: 1rem 1.2rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.9rem;
}
.overview__badge b { font-family: var(--font-serif); font-size: 1.7rem; color: var(--brand); }
.overview__badge span { font-size: 0.8rem; color: var(--muted); line-height: 1.3; }
.overview__body h2 { font-size: var(--text-h2); margin: 1rem 0 1.2rem; }
.overview__body p { color: var(--muted); margin-bottom: 1.2rem; }
.overview__body p strong { color: var(--brand-800); }
.overview__body .btn { margin-top: 0.8rem; }

/* Stats (brand-blue band) */
.stats { background: linear-gradient(160deg, var(--brand) 0%, var(--brand-800) 100%); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat {
  text-align: center; padding: 2.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0));
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.stat:hover { transform: translateY(-6px); border-color: rgba(210,165,67,0.6); }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.6rem, 1.5rem + 3vw, 4rem); color: var(--gold); line-height: 1; }
.stat__num .plus { font-size: 0.6em; vertical-align: super; }
.stat__label { margin-top: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; color: rgba(255,255,255,0.82); }
.stats__note { text-align: center; margin: 0 auto 3rem; max-width: 620px; color: rgba(255,255,255,0.85); font-size: 1.1rem; }

/* Services */
.services { background: var(--bg-alt); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card {
  position: relative; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 2.2rem 2rem 2rem;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 1.5rem;
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__num { position: absolute; top: 1.6rem; right: 1.8rem; font-family: var(--font-serif); font-size: 1.05rem; color: var(--line); }
.svc-card h3 { font-size: var(--text-h3); margin-bottom: 0.8rem; color: var(--brand-800); }
.svc-card p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.svc-card__link { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--brand); font-weight: 600; font-size: 0.92rem; }
.svc-card__link .arw { transition: transform var(--dur) var(--ease); }
.svc-card:hover .svc-card__link .arw { transform: translateX(5px); }

/* Why */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 2.4rem; }
.why-item { padding: 1.6rem 0; border-top: 2px solid var(--line-soft); }
.why-item .n { font-family: var(--font-serif); color: var(--gold-600); font-size: 0.95rem; letter-spacing: 0.05em; }
.why-item h4 { font-size: 1.14rem; margin: 0.6rem 0 0.5rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.01em; color: var(--brand-800); }
.why-item p { color: var(--muted); font-size: 0.95rem; }

/* Values (brand band) */
.values { background: linear-gradient(160deg, var(--brand-700) 0%, var(--brand-deep) 100%); color: #fff; }
.values h2, .values h4 { color: #fff; }
.values__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,1rem+4vw,4.5rem); align-items: start; }
.values__list { display: grid; gap: 0.4rem; }
.value-row { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.value-row .idx { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); flex: none; width: 2.2rem; }
.value-row h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; margin-bottom: 0.35rem; }
.value-row p { color: rgba(255,255,255,0.78); font-size: 0.94rem; }

/* Events */
.events { background: var(--bg-alt); }
.event-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-md); }
.event-card__img {
  min-height: 300px;
  background: radial-gradient(70% 70% at 70% 30%, rgba(210,165,67,0.28), transparent 60%),
    linear-gradient(150deg, var(--brand), var(--brand-800));
  position: relative; display: grid; place-items: center; color: #fff;
}
.event-card__img .pin { text-align: center; }
.event-card__img .pin svg { width: 40px; height: 40px; opacity: 0.9; }
.event-card__body { padding: clamp(1.8rem, 1rem + 2vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.event-card__tag { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 1rem; }
.event-card__body h3 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); margin-bottom: 1rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--muted); margin-bottom: 1.6rem; }
.event-meta span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.event-meta svg { width: 17px; height: 17px; color: var(--gold-600); }

/* News */
.news { background: var(--bg); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.news-card { border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card__img { aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--brand), var(--brand-800)); position: relative; }
.news-card__img::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 30% 20%, rgba(210,165,67,0.32), transparent 60%); }
.news-card__body { padding: 1.6rem; }
.news-card__cat { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.news-card h3 { font-size: 1.3rem; margin: 0.7rem 0 1rem; }
.news-card__date { color: var(--muted); font-size: 0.85rem; display: flex; align-items: center; justify-content: space-between; }
.news-card__date a { color: var(--brand); font-weight: 600; }

/* Expo band */
.expo { background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; overflow: hidden; }
.expo__inner { position: relative; text-align: center; padding: var(--section) 0; }
.expo__glow { position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(210,165,67,0.22), transparent 65%); }
.expo__content { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; }
.expo__content h2 { color: #fff; font-size: var(--text-h2); margin: 1.2rem 0; }
.expo__content p { color: rgba(255,255,255,0.82); font-size: 1.08rem; }
.expo__logo { height: 62px; margin: 1.8rem auto 0.8rem; }
.expo__content .tagline { font-size: 1.15rem; color: #fff; margin-bottom: 2rem; }
.expo .eyebrow { color: var(--gold); }

/* Contact */
.contact { background: var(--bg-alt); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,1rem+3vw,4rem); align-items: stretch; }
.contact__info h2 { font-size: var(--text-h2); margin: 1rem 0 1.4rem; }
.contact__info > p { color: var(--muted); margin-bottom: 2rem; max-width: 42ch; }
.contact-line { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-line .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand); flex: none; }
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line b { display: block; font-family: var(--font-sans); font-size: 1.02rem; color: var(--brand-800); }
.contact-line span { color: var(--muted); font-size: 0.86rem; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; box-shadow: var(--shadow-sm); color: var(--brand);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.socials a:hover { transform: translateY(-4px); background: var(--brand); color: #fff; }
.socials svg { width: 19px; height: 19px; }

.card-form { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.8rem, 1rem + 2vw, 2.8rem); box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.card-form h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-form > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.45rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg-alt); font: inherit; color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(19,125,172,0.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }
.form-success { display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; background: rgba(47,158,106,0.12); color: var(--pos); border-radius: 12px; font-size: 0.9rem; font-weight: 600; }
.form-success.show { display: block; animation: rotIn 500ms var(--ease); }

/* ------------------------------------------------ Footer (brand-deep) */
.site-footer { background: linear-gradient(160deg, var(--brand-800) 0%, var(--brand-deep) 100%); color: rgba(255,255,255,0.78); padding-top: clamp(3.5rem, 2rem + 5vw, 6rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer-brand .footer-logo { height: 44px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.94rem; max-width: 34ch; }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.94rem; padding: 0.35rem 0; color: rgba(255,255,255,0.72); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding: 1.6rem 0; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: var(--gold); }

/* ------------------------------------------------ Sub-page hero (brand band) */
.page-hero { position: relative; color: #fff; overflow: hidden; background: var(--brand-800); padding: 158px 0 78px; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 60% at 82% 12%, rgba(210,165,67,0.22), transparent 60%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; }
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem); margin-bottom: 1rem; }
.page-hero h1 .accent { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; font-size: 1.1rem; margin-bottom: 2rem; }

/* Offer grid */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.offer-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.8rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.offer-card .oc-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand); margin-bottom: 1.1rem; }
.offer-card .oc-ic svg { width: 24px; height: 24px; }
.offer-card h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; margin-bottom: 0.5rem; color: var(--brand-800); }
.offer-card p { color: var(--muted); font-size: 0.94rem; }

/* Steps */
.steps { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.4rem; }
.step { position: relative; padding: 1.8rem; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid var(--line-soft); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.step .step-n { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.3rem; color: #fff; background: linear-gradient(150deg, var(--brand), var(--brand-800)); margin-bottom: 1rem; }
.step h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; color: var(--brand-800); }

/* Chips */
.chip-wrap { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip { padding: 0.6rem 1.1rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 0.92rem; font-weight: 500; color: var(--ink); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease); }
.chip:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand); background: var(--brand-tint); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,1rem+4vw,4rem); align-items: start; }

.cta-band { background: linear-gradient(150deg, var(--brand-700), var(--brand-deep)); color: #fff; }
.cta-band__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; font-size: var(--text-h2); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.08rem; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 90ms; }
[data-reveal][data-delay="2"] { transition-delay: 180ms; }
[data-reveal][data-delay="3"] { transition-delay: 270ms; }

/* ------------------------------------------------ Responsive */
@media (max-width: 980px) {
  .overview__grid, .values__grid, .contact__grid, .event-card, .two-col { grid-template-columns: 1fr; }
  .svc-grid, .news-grid, .offer-grid, .steps-grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .event-card__img { min-height: 220px; }
  .overview__media { min-height: 320px; }
}
@media (max-width: 680px) {
  .nav, .header-actions .lang { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: transparent; border: 1px solid var(--line); cursor: pointer; color: var(--brand-800); }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-nav { position: fixed; inset: 0; z-index: 99; background: linear-gradient(160deg, var(--brand-700), var(--brand-deep)); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; padding: 2rem; transform: translateY(-100%); transition: transform 420ms var(--ease); }
  .mobile-nav.open { transform: none; }
  .mobile-nav a { font-family: var(--font-serif); font-size: 1.8rem; color: #fff; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .mobile-nav .close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; }
  .svc-grid, .news-grid, .offer-grid, .steps-grid, .stats__grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 130px 0 80px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (min-width: 681px) { .mobile-nav { display: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } [data-reveal] { opacity: 1 !important; transform: none !important; } }
