/* =========================================================
   AJWA GROUP — style.css
   Premium holding-company design system
   ========================================================= */

:root {
  --primary: #12261f;
  --primary-deep: #081510;
  --secondary: #b79a62;
  --accent: #d4b878;
  --cream: #f1eee6;
  --white: #ffffff;
  --black: #101210;
  --text-dark: #151915;
  --text-light: #f5f4ef;
  --muted-dark: #666c67;
  --muted-light: #b8beb9;
  --border-dark: rgba(255, 255, 255, 0.18);
  --border-light: rgba(15, 20, 16, 0.15);

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: min(1280px, calc(100% - 48px));
  --section-y: clamp(70px, 12vw, 160px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--primary-deep);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--secondary); color: var(--text-light); }

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

/* ---------- Container ---------- */
.container { width: var(--container); margin-inline: auto; }

/* ---------- Typography ---------- */
.hero-title {
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.section-title {
  font-size: clamp(2.4rem, 6vw, 6.8rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.statement-title {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.body-large {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.55;
  color: var(--muted-dark);
}
.body-base { font-size: 1rem; line-height: 1.6; color: var(--muted-dark); }

.label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.label--light { color: var(--accent); }
.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- Line reveal wrappers ---------- */
.line-wrap { display: block; overflow: hidden; padding-bottom: 0.22em; }
.line-inner {
  display: block;
  will-change: transform, opacity;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 1.05em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  min-height: 48px;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

.btn--gold { background: var(--secondary); color: var(--text-light); }
.btn--gold:hover { background: var(--accent); color: var(--text-dark); transform: translateY(-2px); }

.btn--green { background: var(--primary); color: var(--text-light); }
.btn--green:hover { background: var(--primary-deep); transform: translateY(-2px); }

.btn--outline { border-color: var(--border-light); color: var(--text-dark); }
.btn--outline:hover { border-color: var(--primary); transform: translateY(-2px); }

.btn--outline-light { border-color: var(--border-dark); color: var(--text-light); }
.btn--outline-light:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Company website CTA (company pages) ---------- */
/* Compact outlined chip with a gold icon badge. */
.company-website__btn {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
  gap: 0.55em;
  padding: 0.55em 1.1em 0.55em 0.55em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  min-height: 40px;
  background: var(--text-light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 14px -10px rgba(8, 21, 16, 0.5);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.company-website__btn svg {
  order: -1;
  width: 16px;
  height: 16px;
  padding: 0.5em;
  box-sizing: content-box;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary-deep);
  stroke: var(--primary-deep);
  transition: transform 0.4s var(--ease);
}
.company-website__btn:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 8px 18px -10px rgba(183, 154, 98, 0.6);
}
.company-website__btn:hover svg { transform: rotate(0) translate(2px, -2px); }

/* Placeholder state — official link yet to be provided. */
.company-website__btn[aria-disabled="true"] {
  background: var(--text-light);
  color: #6b7269;
  border-color: var(--border-light);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.85;
}
.company-website__btn[aria-disabled="true"]:hover {
  transform: none;
  border-color: var(--border-light);
  box-shadow: none;
}
.company-website__btn[aria-disabled="true"] svg {
  background: var(--border-light);
  color: #8a8f88;
  stroke: #8a8f88;
}

.company-website__soon {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: #6b7269;
}

/* Text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }
.text-link svg { transition: transform 0.4s var(--ease); }
.text-link:hover svg { transform: translate(3px, -3px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -120px;
  left: 1rem;
  z-index: 9999;
  background: var(--secondary);
  color: var(--text-light);
  padding: 0.8em 1.3em;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--primary-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--text-light);
}
.page-loader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderLogoIn 0.9s var(--ease) both;
}
.page-loader__logo-img {
  width: clamp(96px, 18vw, 150px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(212, 184, 120, 0.28));
}
@keyframes loaderLogoIn {
  from { opacity: 0; transform: translateY(16px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.page-loader__counter {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--muted-light);
}
.page-loader__bar {
  width: min(280px, 70vw);
  height: 1px;
  background: var(--border-dark);
  overflow: hidden;
}
.page-loader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transform-origin: left;
}

/* ---------- Page transition overlay ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--primary-deep);
  transform: translateY(100%);
  pointer-events: none;
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border: 1px solid rgba(212, 184, 120, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  padding: 0.45em 0.85em;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.cursor-label.is-visible { transform: translate(-50%, -50%) scale(1); opacity: 1; }

body.cursor-ready { cursor: none; }
body.cursor-ready a, body.cursor-ready button { cursor: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(8, 21, 16, 0.62) 0%, rgba(8, 21, 16, 0.30) 60%, rgba(8, 21, 16, 0) 100%);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-hidden { transform: translateY(0); }
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 184, 120, 0.25), transparent);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.site-header.is-scrolled::after { opacity: 1; }

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.1rem, 3vw, 2rem);
  transition: padding 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 21, 16, 0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled .header-inner { padding-block: 0.8rem; }

/* Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--text-light);
  transition: color 0.4s var(--ease);
}
.brand-logo__mark { display: inline-flex; color: var(--accent); }
.brand-logo__name { display: inline-flex; gap: 0.04em; }
.brand-logo__name span { display: inline-block; }

.brand-logo__img {
  display: block;
  height: 58px;
  width: auto;
  border-radius: 10px;
  background: transparent;
  padding: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), filter 0.5s var(--ease);
  will-change: transform;
}
.brand-logo:hover .brand-logo__img {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(212, 184, 120, 0.30);
  filter: brightness(1.08);
}
.site-header.is-scrolled .brand-logo__img { height: 50px; }
@media (max-width: 720px) {
  .brand-logo__img { height: 46px; }
  .site-header.is-scrolled .brand-logo__img { height: 42px; }
}

/* Menu button */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5em 0.2em;
  position: relative;
}
.menu-btn__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.menu-btn__icon span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.menu-btn:hover .menu-btn__icon span:nth-child(1) { transform: translateX(4px); }
.menu-btn:hover .menu-btn__icon span:nth-child(2) { transform: translateX(-4px); }
.menu-btn.is-open .menu-btn__icon span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-btn.is-open .menu-btn__icon span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.header-contact {
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.header-contact:hover { opacity: 1; color: var(--accent); }

/* Header right cluster */
.header-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

/* Inline desktop navigation */
.header-nav {
  display: none; /* shown on desktop via media query below */
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5em 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.header-nav a::before {
  content: ""; position: absolute; left: 50%; top: -2px; width: 4px; height: 4px;
  border-radius: 50%; background: var(--accent);
  transform: translateX(-50%) scale(0);
  transition: transform 0.35s var(--ease);
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.header-nav a:hover { color: var(--accent); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a[aria-current="page"] { color: var(--accent); }
.header-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-nav a[aria-current="page"]::before { transform: translateX(-50%) scale(1); }

/* Show inline nav on desktop only; hide the hamburger on desktop */
@media (min-width: 1025px) {
  .header-nav { display: flex; }
  .menu-btn { display: none; }
}

/* ---------- Fullscreen menu ---------- */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--primary-deep);
  clip-path: inset(0 0 100% 0);
  display: grid;
  grid-template-rows: auto 1fr auto;
  visibility: hidden;
}
.fullscreen-menu.is-open { visibility: visible; }

.fm-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.fm-bg::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(circle at 78% 22%, rgba(183, 154, 98, 0.18), transparent 55%),
    radial-gradient(circle at 18% 80%, rgba(47, 125, 111, 0.16), transparent 50%),
    linear-gradient(160deg, var(--primary-deep), var(--primary));
  transform: scale(1.08);
}
.fm-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.fm-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.5rem;
}
.fm-close {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.fm-close__icon {
  width: 30px; height: 30px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.fm-close:hover .fm-close__icon { transform: rotate(90deg); border-color: var(--accent); color: var(--accent); }

.fm-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}
.fm-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.fm-nav a {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-light);
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 0.06em 0;
}
.fm-nav a span { display: inline-block; transition: transform 0.5s var(--ease), color 0.3s var(--ease); }
.fm-nav a:hover span { transform: translateX(18px); color: var(--accent); }
.fm-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.1em;
  width: 100%; height: 1px;
  background: var(--border-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.fm-nav a:hover::after { transform: scaleX(1); }
.fm-nav a[aria-current="page"] span { color: var(--accent); }
.fm-nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--accent); }

.fm-aside { color: var(--muted-light); display: flex; flex-direction: column; gap: 2.2rem; }
.fm-aside h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.fm-subs { display: flex; flex-direction: column; gap: 0.5rem; }
.fm-subs a {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.fm-subs a:hover { color: var(--accent); }
.fm-contact { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.95rem; }
.fm-contact a { color: var(--text-light); }
.fm-contact a:hover { color: var(--accent); }
.fm-social { display: flex; gap: 1.2rem; }
.fm-social a { color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.05em; }
.fm-social a:hover { color: var(--accent); }

.fm-foot {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-light);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border-dark);
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding-block: var(--section-y); }

.divider {
  height: 1px;
  background: var(--border-light);
  transform: scaleX(0);
  transform-origin: left;
}
.divider--light { background: var(--border-dark); }

/* ---------- Hero (home + inner pages) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
  overflow: hidden;
  background: var(--primary-deep);
  padding-top: 6rem;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media .ph {
  position: absolute;
  inset: -6%;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,21,16,0.55) 0%, rgba(8,21,16,0.35) 40%, rgba(8,21,16,0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: max(1.25rem, calc((100vw - 1280px) / 2));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.hero__label { margin-bottom: 1.6rem; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero__eyebrow-rule {
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: var(--accent);
  transform-origin: left center;
}
.hero__eyebrow-sep {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(212, 184, 120, 0.55);
}
.hero__title { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.hero__title .line-wrap,
.hero__title .line-inner { display: block; }
.hero__title .accent { color: var(--accent); }
.hero__title--gold {
  background: linear-gradient(100deg, #f3d68a 0%, var(--accent) 48%, #b8924e 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
.hero__copy {
  max-width: 46ch;
  margin-top: 1.8rem;
  margin-right: auto;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  text-align: left;
}
.hero__sectors {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding: 0;
}
.hero__sectors li {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(245, 244, 239, 0.22);
  border-radius: 999px;
  background: rgba(8, 21, 16, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero__sectors li:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; align-items: center; }

.hero__bottom {
  position: absolute;
  left: 0; right: 0; bottom: 1.8rem;
  z-index: 2;
  padding-inline: 1.5rem;
}
.hero__bottom-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.scroll-indicator { display: inline-flex; align-items: center; gap: 0.9em; color: var(--muted-light); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-indicator__line { width: 1px; height: 50px; background: var(--border-dark); position: relative; overflow: hidden; }
.scroll-indicator__line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  transform: translateY(-100%); animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }
.hero__index { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted-light); }

/* ---------- Image placeholders (CSS-generated) ---------- */
.ph { width: 100%; height: 100%; }
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 1rem; bottom: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,244,239,0.55);
  background: rgba(8,21,16,0.5);
  padding: 0.4em 0.7em;
  border-radius: 4px;
  pointer-events: none;
}

/* Hero cinematic placeholder */
.ph-hero {
  background:
    radial-gradient(circle at 30% 40%, rgba(183,154,98,0.20), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(47,125,111,0.18), transparent 55%),
    linear-gradient(135deg, #0c2018 0%, #12261f 50%, #081510 100%);
}
.ph-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,184,120,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,184,120,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Subsidiary image placeholders */
.ph-detergents { background: linear-gradient(150deg, #cfeaea 0%, #1f8a8a 60%, #0c3a3a 100%); }
.ph-karak { background: linear-gradient(150deg, #e9d3a8 0%, #b07d45 55%, #5a3a1c 100%); }
.ph-realestate { background: linear-gradient(150deg, #d9d2c2 0%, #6b6f6a 55%, #2a2e2b 100%); }
.ph-chemicals { background: linear-gradient(150deg, #cdeae6 0%, #2f7d6f 55%, #10303a 100%); }
.ph-expertgate { background: linear-gradient(150deg, #c3c9e6 0%, #2a356b 55%, #0c1430 100%); }

/* Generic neutral placeholders */
.ph-green { background: linear-gradient(150deg, #1c3a2e 0%, #12261f 60%, #081510 100%); }
.ph-cream { background: linear-gradient(150deg, #f6f3ec 0%, #d8d0bd 100%); }
.ph-stone { background: linear-gradient(150deg, #e4e0d6 0%, #8d8778 100%); }

/* ---------- Section: group introduction ---------- */
.intro {
  padding-block: var(--section-y);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 70% at 12% 0%, rgba(212, 184, 120, 0.10), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #ece6d8 100%);
}
/* Hairline at the top, container-aligned, mirrors the divider language
   used elsewhere (.purpose__list, .label::before). */
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(calc((100% - var(--container)) / 2), 24px);
  right: max(calc((100% - var(--container)) / 2), 24px);
  height: 1px;
  background: var(--border-light);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(150px, 20%) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

/* Label rail with a large serif index mark — an editorial anchor that
   gives the section a confident, premium feel. */
.intro__label-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  padding-top: 0.7rem;
}
.intro__label-col .label { color: var(--secondary); }
.intro__index {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--secondary);
  text-stroke: 1.5px var(--secondary);
  opacity: 0.85;
}

.intro__body { padding-top: 0.2rem; }
.intro__heading {
  position: relative;
  max-width: 20ch;
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
}
/* Short gold accent under the heading — a small premium touch. */
.intro__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(48px, 6vw, 84px);
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.intro__copy { max-width: 52ch; }
.intro__link { margin-top: 2.4rem; display: inline-flex; }

/* Stats strip — a quiet, scannable summary of the Group's footprint. */
.intro__stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.intro__stat dt {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.7rem;
}
.intro__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
}

@media (max-width: 760px) {
  .intro__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .intro__label-col { flex-direction: row; align-items: center; gap: 1.2rem; padding-top: 0; }
  .intro__index { font-size: clamp(3rem, 14vw, 4rem); }
  .intro__stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.2rem; }
}

/* ---------- Section: companies (Observer showcase) ---------- */
.companies { background: var(--primary-deep); color: var(--text-light); position: relative; }
.companies__head {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.companies__head .label { color: var(--accent); justify-content: center; }
.companies__head .label::before { background: var(--accent); }
.companies__head h2 { margin-top: 1.4rem; max-width: 16ch; margin-inline: auto; color: var(--text-light); }

/* Observer stage */
.observer-stage { display: none; } /* Observer one-at-a-time showcase retired; all companies shown in the grid below */
.observer-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.observer-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
  will-change: transform, opacity;
}
.observer-panel__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 78vh;
  overflow: hidden;
  border-radius: 4px;
}
.observer-panel__media .ph { position: absolute; inset: 0; }
.observer-panel__num {
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.observer-panel__industry {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
}
.observer-panel__name {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.observer-panel__desc { max-width: 42ch; color: var(--muted-light); font-size: 1.05rem; line-height: 1.55; margin-bottom: 1.8rem; }
.observer-panel__link { display: inline-flex; color: var(--text-light); }
.observer-panel__link:hover { color: var(--accent); }

.observer-progress {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}
.observer-progress__item {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted-light);
  opacity: 0.4;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}
.observer-progress__item.is-active { opacity: 1; color: var(--accent); }
.observer-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  text-align: center;
}

/* Stacked fallback (mobile / reduced motion) */
.companies-stack { display: block; padding: 0 0 clamp(4rem, 8vw, 7rem); }
.companies-stack > .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.company-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 0;
  border-bottom: none;
  align-items: start;
}
a.company-card { text-decoration: none; color: inherit; transition: transform 0.3s ease; }
a.company-card:hover .company-card__link { letter-spacing: 0.02em; }
.company-card__media { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; }
.company-card__media .ph { height: 100%; }
.company-card__num { font-size: 2.4rem; font-weight: 700; color: var(--accent); line-height: 1; }
.company-card__industry { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); margin: 0.8rem 0 0.6rem; }
.company-card__name { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; letter-spacing: -0.03em; margin-bottom: 0.8rem; color: var(--text-light); }
.company-card__desc { color: var(--muted-light); font-size: 0.98rem; line-height: 1.55; margin-bottom: 1rem; }
.company-card__link { color: var(--accent); display: inline-flex; }

/* ---------- Section: purpose ---------- */
.purpose {
  background: var(--cream);
  color: var(--text-dark);
  padding-block: var(--section-y);
  transition: background 0.6s var(--ease);
}
.purpose.is-dark { background: var(--primary); color: var(--text-light); }
.purpose.is-dark .body-large { color: var(--muted-light); }
.purpose__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.purpose__media { aspect-ratio: 5/6; overflow: hidden; border-radius: 4px; position: relative; }
.purpose__media .ph { height: 100%; position: absolute; inset: 0; }
.purpose__list { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.2rem; }
.purpose__list li { display: flex; align-items: baseline; gap: 0.9em; font-weight: 600; font-size: 1.1rem; }
.purpose__list li::before { content: ""; width: 18px; height: 1px; background: var(--secondary); display: inline-block; }

/* ---------- Section: mission/vision split ----------
   Editorial duo: framed portraits + large gold index numbers on a deep
   green panel, separated by a soft gold hairline. */
.mv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  padding: var(--section-y) max(calc((100% - var(--container)) / 2), 24px);
  background: var(--primary-deep);
  color: var(--text-light);
}
/* Central gold hairline divider. */
.mv-split::before {
  content: "";
  position: absolute;
  top: clamp(4rem, 10vw, 7rem);
  bottom: clamp(4rem, 10vw, 7rem);
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(212, 184, 120, 0.45), transparent);
  pointer-events: none;
}

.mv-half {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-decoration: none;
  color: inherit;
}

/* Framed portrait — gold border on hover, image zooms. */
.mv-half__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
  background: var(--primary);
  transition: border-color 0.5s var(--ease);
}
.mv-half__media::after {
  /* subtle inner gold corner accent on hover */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 0 rgba(212, 184, 120, 0);
  transition: box-shadow 0.5s var(--ease);
  pointer-events: none;
}
.mv-half__media .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease);
}
.mv-half:hover .mv-half__media { border-color: var(--accent); }
.mv-half:hover .mv-half__media::after { box-shadow: inset 0 0 0 1px rgba(212, 184, 120, 0.35); }
.mv-half:hover .mv-half__media .ph { transform: scale(1.08); }

/* Head row: big serif index number + label. */
.mv-half__head {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
}
.mv-half__index {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.mv-half .label { color: var(--accent); }

/* Heading — tuned for the two-column context: slightly smaller, tighter
   leading, and a two-tone treatment with the last line in gold. */
.mv-half__title {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 22ch;
  color: var(--text-light);
  text-wrap: balance;
}
.mv-half__title .line-wrap:last-child .line-inner { color: var(--accent); }

/* Underline-animated text link CTA. */
.mv-half__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 0.2rem;
  padding-bottom: 4px;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  transition: color 0.4s var(--ease);
}
.mv-half__arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.mv-half:hover .mv-half__arrow { color: var(--accent); }
.mv-half:hover .mv-half__arrow::after { transform: scaleX(1); }
.mv-half__arrow svg { transition: transform 0.4s var(--ease); }
.mv-half:hover .mv-half__arrow svg { transform: translate(3px, -3px); }

@media (max-width: 760px) {
  .mv-split { grid-template-columns: 1fr; gap: 3.5rem; }
  .mv-split::before { display: none; }
  .mv-half { padding-bottom: 2rem; border-bottom: 1px solid var(--border-dark); }
  .mv-half:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---------- Section: values preview ---------- */
.values-preview {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(212, 184, 120, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #ece6d8 100%);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
/* Top hairline, container-aligned. */
.values-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(calc((100% - var(--container)) / 2), 24px);
  right: max(calc((100% - var(--container)) / 2), 24px);
  height: 1px;
  background: var(--border-light);
}
.values-preview .container { position: relative; z-index: 1; }

.values-preview__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 3.5rem;
}
/* Label row: label on the left, a long fading gold rule filling the rest. */
.values-preview__head > div:first-child {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.values-preview__head > div:first-child::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary), rgba(183, 154, 98, 0.05));
}
/* Use the long rule as the accent — drop the global .label tick here. */
.values-preview__head .label::before { display: none; }

/* Two-tone editorial heading: first line dark, second line in gold. */
.values-preview__head h2 {
  max-width: 18ch;
  position: relative;
}
.values-preview__head h2 .line-wrap:nth-child(2) .line-inner {
  color: var(--secondary);
}
/* Small gold diamond opening the heading — a quiet decorative mark. */
.values-preview__head h2::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 1.4rem;
  background: var(--accent);
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .values-preview__head { gap: 1.2rem; margin-bottom: 2.5rem; }
  .values-preview__head > div:first-child::after { display: none; }
  .values-preview__head .label::before { display: inline-block; }
}
.value-row {
  display: grid;
  grid-template-columns: 70px 1fr 2fr 40px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.value-row::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 1px;
  background: var(--border-light); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.value-row:hover { background: rgba(18,38,31,0.04); padding-inline: 1rem; }
.value-row:hover::before { transform: scaleX(1); }
.value-row__num { font-size: 0.85rem; color: var(--muted-dark); letter-spacing: 0.1em; }
.value-row__title { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -0.02em; transition: transform 0.4s var(--ease); }
.value-row:hover .value-row__title { transform: translateX(8px); color: var(--primary); }
.value-row__desc { color: var(--muted-dark); font-size: 0.98rem; }
.value-row__arrow { color: var(--muted-dark); transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.value-row:hover .value-row__arrow { transform: rotate(45deg); color: var(--secondary); }

/* ---------- Section: statistics ---------- */
.stats { background: var(--primary); color: var(--text-light); padding-block: clamp(4rem, 8vw, 7rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { padding-top: 1.5rem; border-top: 1px solid var(--border-dark); }
.stat__num { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
.stat__label { margin-top: 0.8rem; color: var(--muted-light); font-size: 0.92rem; }
.stat__confirm { display: block; margin-top: 0.4rem; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--secondary); }

/* ---------- Section: CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--primary-deep); color: var(--text-light); padding-block: var(--section-y); }
.cta__media { position: absolute; inset: 0; z-index: 0; clip-path: inset(0 0 100% 0); }
.cta__media .ph { height: 100%; }
.cta__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(8,21,16,0.92) 0%, rgba(8,21,16,0.78) 45%, rgba(8,21,16,0.45) 100%); }
.cta__inner { position: relative; z-index: 2; max-width: 62ch; padding-left: 1.6rem; border-left: 2px solid var(--accent); }
.cta__kicker { display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1.4rem; }
.cta__kicker-line { display: block; width: 46px; height: 1px; background: var(--accent); opacity: 0.9; }
.cta__eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); position: relative; padding-left: 1.15rem;
}
.cta__eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 184, 120, 0.18);
}
.cta__title { margin: 0 0 1.6rem; font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; }
.cta__brand {
  background: linear-gradient(100deg, #f3d68a 0%, var(--accent) 45%, #b8924e 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent; position: relative; white-space: nowrap;
  padding-bottom: 0.22em; margin-bottom: -0.22em;
}
.cta__copy { color: var(--muted-light); font-size: clamp(1.02rem, 1.4vw, 1.22rem); line-height: 1.6; margin-bottom: 2.4rem; max-width: 52ch; }
.cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 720px) {
  .cta__inner { padding-left: 1.1rem; }
  .cta__kicker-line { width: 32px; }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--primary-deep);
  color: var(--text-light);
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.55; z-index: 3;
}
.footer-wordmark {
  position: absolute;
  left: 50%; bottom: -2vw;
  transform: translateX(-50%);
  font-size: clamp(6rem, 22vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(241,238,230,0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "brand brand brand"
    "company companies contact";
  gap: 2.5rem 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand { grid-area: brand; display: flex; flex-wrap: wrap; align-items: center; gap: 2.5rem; padding-left: 1.4rem; border-left: 2px solid var(--accent); }
.footer-brand .brand-logo { margin: 0; flex-shrink: 0; }
.footer-brand .brand-logo__img { height: 96px; padding: 0; border-radius: 0; background: transparent; }
.footer-brand p { color: var(--muted-light); max-width: 44ch; font-size: clamp(1.05rem, 1.6vw, 1.4rem); line-height: 1.45; margin: 0; }
.footer-brand p::after {
  content: "Established 2016 \00B7 Oman & GCC";
  display: inline-block;
  margin-top: 0;
  padding: 0.4rem 0.85rem;
  margin-left: 0.5rem;
  border: 1px solid rgba(212, 184, 120, 0.4);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  vertical-align: middle;
}
.footer-col { position: relative; }
.footer-col:nth-child(2) { grid-area: company; }
.footer-col:nth-child(3) { grid-area: companies; border-left: 1px solid var(--border-dark); padding-left: 2rem; }
.footer-col:nth-child(4) { grid-area: contact; border-left: 1px solid var(--border-dark); padding-left: 2rem; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.3rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.footer-col h4::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(212, 184, 120, 0.18);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li { color: var(--muted-light); font-size: 0.95rem; line-height: 1.5; }
.footer-col a {
  color: var(--text-light); font-size: 0.98rem;
  display: inline-block; position: relative;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-col a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left center;
  transition: transform 0.4s var(--ease);
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-col a:hover::after { transform: scaleX(1); }
.footer-bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--muted-light);
}
.footer-bottom__legal { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.footer-bottom__legal a { color: var(--muted-light); transition: color 0.3s var(--ease); }
.footer-bottom__legal a:hover { color: var(--accent); }
/* Temporarily hidden — remove this rule to re-enable footer social links. */
.footer-social { display: none; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 244, 239, 0.18);
  color: var(--muted-light);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.footer-social a:hover {
  color: var(--primary-deep); background: var(--accent); border-color: var(--accent);
  transform: translateY(-3px);
}

/* "Developed by Caprolok" credit */
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  border: 1px solid rgba(245, 244, 239, 0.16);
  color: var(--muted-light);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.footer-credit__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, #f3d68a 0%, var(--accent) 50%, #b8924e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.footer-credit svg { transition: transform 0.4s var(--ease); }
.footer-credit:hover {
  color: var(--text-light);
  border-color: var(--accent);
  background: rgba(212, 184, 120, 0.08);
  transform: translateY(-2px);
}
.footer-credit:hover svg { transform: translate(2px, -2px); }

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal-section { background: var(--text-light); color: var(--text-dark); }
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 6rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--white, #fff);
}
.legal-toc .label { margin-bottom: 0.9rem; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.legal-toc a {
  color: var(--text-dark);
  font-size: 0.88rem;
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.legal-toc a:hover { opacity: 1; color: var(--primary); }

.legal-body { max-width: 70ch; }
.legal-meta {
  margin: 0 0 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7269;
}
.legal-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  margin: 2.4rem 0 0.9rem;
  letter-spacing: -0.01em;
  scroll-margin-top: 6rem;
}
.legal-h2:first-of-type { margin-top: 0; }
.legal-body p { color: #3a423d; line-height: 1.75; margin: 0 0 1.1rem; }
.legal-body p a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.legal-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #3a423d;
  line-height: 1.65;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--secondary);
  transform: rotate(45deg);
}
.legal-list strong { color: var(--text-dark); }

@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* ---------- 404 error page ---------- */
.error-404 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background: var(--primary-deep);
  overflow: hidden;
  text-align: center;
}
.error-404__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 8rem 0 6rem;
}
.error-404 .hero__eyebrow { justify-content: center; }
.error-404__code {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
  background: linear-gradient(100deg, #f3d68a 0%, var(--accent) 50%, #b8924e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}
.error-404__title { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.6rem;
}
@media (max-width: 600px) {
  .error-404__actions .btn { width: max-content; }
}

/* Footer responsive */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "company companies"
      "contact contact";
  }
  .footer-col:nth-child(4) { border-left: 0; padding-left: 0; padding-top: 0.5rem; border-top: 1px solid var(--border-dark); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; grid-template-areas: "brand" "company" "companies" "contact"; gap: 2rem; }
  .footer-col:nth-child(3), .footer-col:nth-child(4) { border-left: 0; padding-left: 0; padding-top: 0.5rem; border-top: 1px solid var(--border-dark); }
  .footer-brand { padding-left: 1rem; gap: 1.5rem; }
  .footer-brand .brand-logo__img { height: 72px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
  overflow: hidden;
  background: var(--primary-deep);
  padding-top: 6rem;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero__media .ph { position: absolute; inset: -6%; }
.page-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,21,16,0.55) 0%, rgba(8,21,16,0.35) 40%, rgba(8,21,16,0.88) 100%); }
.page-hero__inner { position: relative; z-index: 2; width: 100%; padding-inline: max(1.25rem, calc((100vw - 1280px) / 2)); padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.page-hero__title { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.page-hero__title .line-wrap,
.page-hero__title .line-inner { display: block; }
@media (min-width: 769px) {
  .hero__title .line-wrap,
  .hero__title .line-inner,
  .page-hero__title .line-wrap,
  .page-hero__title .line-inner { white-space: nowrap; }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(1.9rem, 8vw, 3.2rem); }
}
.page-hero .breadcrumb { margin-bottom: 1.4rem; }

/* ---------- About page ---------- */
main { counter-reset: aboutintro; }

.about-intro {
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(212, 184, 120, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #ece6d8 100%);
}
/* Top hairline, container-aligned. */
.about-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(calc((100% - var(--container)) / 2), 24px);
  right: max(calc((100% - var(--container)) / 2), 24px);
  height: 1px;
  background: var(--border-light);
}
/* Oversized serif index mark in the corner — auto-numbered per page
   (01, 02…). The editorial anchor that makes the section feel designed. */
.about-intro::after {
  counter-increment: aboutintro;
  content: counter(aboutintro, decimal-leading-zero);
  position: absolute;
  right: clamp(0.5rem, 2vw, 2.5rem);
  bottom: -0.1em;
  font-family: var(--font-serif);
  font-size: clamp(11rem, 26vw, 26rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(8, 21, 16, 0.06);
  pointer-events: none;
  z-index: 0;
}
.about-intro .container { position: relative; z-index: 1; }

/* Dark variant — inline background:var(--primary). */
.about-intro[style*="primary"]::before { background: var(--border-dark); }
.about-intro[style*="primary"]::after { color: rgba(212, 184, 120, 0.12); }

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(150px, 20%) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about-intro__grid > div:first-child { padding-top: 0.7rem; }

.about-intro__heading {
  position: relative;
  max-width: 20ch;
  margin-bottom: 2rem;
  padding-left: clamp(1.2rem, 1.8vw, 1.8rem);
  padding-bottom: 1.6rem;
}
/* Bold gold vertical accent bar anchoring the heading. */
.about-intro__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 1.8rem;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
}
/* Short gold underline beneath the heading. */
.about-intro__heading::after {
  content: "";
  position: absolute;
  left: clamp(1.2rem, 1.8vw, 1.8rem);
  bottom: 0;
  width: clamp(48px, 6vw, 84px);
  height: 2px;
  background: var(--secondary);
}
.about-intro[style*="primary"] .about-intro__heading::before {
  background: linear-gradient(180deg, var(--accent), rgba(212, 184, 120, 0.4));
}
.about-intro[style*="primary"] .about-intro__heading::after { background: var(--accent); }

.about-intro__copy { max-width: 56ch; color: var(--muted-dark); font-size: 1.1rem; line-height: 1.6; }

@media (max-width: 760px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .about-intro__grid > div:first-child { padding-top: 0; }
  /* Hide the oversized index on small screens to avoid overlap. */
  .about-intro::after { font-size: clamp(7rem, 30vw, 11rem); opacity: 0.5; }
}

.role-cards { background: var(--cream); padding-block: var(--section-y); }
.role-cards__head { max-width: 20ch; margin-bottom: 3rem; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.role-card {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  background: var(--white);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.role-card:hover { transform: translateY(-4px); border-color: var(--secondary); }
.role-card__num { font-size: 0.78rem; color: var(--secondary); letter-spacing: 0.1em; margin-bottom: 1rem; }
.role-card__title { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.role-card__text { color: var(--muted-dark); font-size: 0.95rem; line-height: 1.55; }

/* Timeline */
.timeline-section { background: var(--primary); color: var(--text-light); padding-block: var(--section-y); }
.timeline { position: relative; max-width: 900px; margin: 3rem auto 0; }
.timeline__line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: var(--border-dark); transform: scaleY(0); transform-origin: top;
}
.timeline__item {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}
.timeline__item:nth-child(odd) .timeline__content { text-align: right; padding-right: 2rem; }
.timeline__item:nth-child(even) .timeline__content { grid-column: 3; padding-left: 2rem; }
.timeline__dot {
  grid-column: 2; justify-self: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--primary);
  position: relative; z-index: 2;
}
.timeline__year { font-size: 1.6rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.timeline__text { color: var(--muted-light); margin-top: 0.4rem; }

/* Leadership / Chairman's message — modern split card */
.leadership {
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(212, 184, 120, 0.10), transparent 60%),
    var(--cream);
  padding-block: var(--section-y);
}
/* The grid itself becomes a floating rounded card. */
.leadership__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 21, 16, 0.12);
  min-height: 460px;
}
/* Left half: portrait full-bleed on a dark backdrop. */
.leadership__portrait {
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
}
.leadership__portrait .ph {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1s var(--ease);
}
/* Soft dark gradient at the bottom for depth. */
.leadership__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 21, 16, 0.40));
  pointer-events: none;
}
.leadership__portrait:hover .ph { transform: scale(1.1); }

/* Right half: content, vertically centered. */
.leadership__grid > div:not(.leadership__portrait) {
  padding: clamp(2.2rem, 4.5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership .label { color: var(--secondary); }

/* Quote with a gold quotation mark opener. */
.leadership__quote {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-top: 1.4rem;
  margin-bottom: 2.4rem;
  text-wrap: balance;
}
.leadership__quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* Name + role credit block. */
.leadership__name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.leadership__role {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

@media (max-width: 1024px) {
  .leadership .leadership__grid { grid-template-columns: 1fr; min-height: 0; }
  /* Portrait becomes a full-width banner at the top of the card. */
  .leadership .leadership__portrait {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
  }
  .leadership__grid > div:not(.leadership__portrait) { padding: clamp(1.8rem, 6vw, 2.6rem); }
}
@media (max-width: 560px) {
  /* On very small screens, a shorter banner so the quote gets prominence. */
  .leadership .leadership__portrait { aspect-ratio: 4 / 3; }
  .leadership__quote { font-size: 1.15rem; }
}

/* ---------- Values page ---------- */
.values-hero { /* uses page-hero */ }
.value-section {
  position: relative;
  padding-block: var(--section-y);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.value-section--dark { background: var(--primary-deep); color: var(--text-light); }
.value-section--dark .body-large { color: var(--muted-light); }
.value-section__media { aspect-ratio: 5/6; overflow: hidden; border-radius: 4px; }
.value-section__media .ph { height: 100%; }
.value-section__num { font-size: clamp(5rem, 12vw, 10rem); font-weight: 700; line-height: 1; letter-spacing: -0.05em; color: var(--secondary); margin-bottom: 1rem; }
.value-section--dark .value-section__num { color: var(--accent); }
.value-section__title { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 600; letter-spacing: -0.035em; margin-bottom: 1.2rem; }
.value-section__text { max-width: 44ch; font-size: 1.15rem; line-height: 1.55; }
.value-section--dark .value-section__media { order: 2; }

.value-index {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.value-index a {
  font-size: 0.8rem; letter-spacing: 0.06em;
  color: var(--muted-dark);
  display: inline-flex; gap: 0.6em; align-items: center;
  transition: color 0.3s var(--ease);
}
.value-index a::before { content: ""; width: 14px; height: 1px; background: currentColor; transition: width 0.3s var(--ease); }
.value-index a.is-active { color: var(--primary); }
.value-index a.is-active::before { width: 28px; background: var(--secondary); }
.value-section--dark + * .value-index a,
.value-index--dark a { color: var(--muted-light); }
.value-index--dark a.is-active { color: var(--accent); }

.values-quote { background: var(--primary); color: var(--text-light); padding-block: var(--section-y); text-align: center; }
.values-quote p, .values-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.2vw, 2.8rem); line-height: 1.3; max-width: 24ch; margin-inline: auto; letter-spacing: -0.01em; }

/* ---------- Vision & Mission page ---------- */
.vm-statement { padding-block: var(--section-y); background: var(--cream); }
.vm-statement--dark { background: var(--primary-deep); color: var(--text-light); }
.vm-statement--dark .body-large { color: var(--muted-light); }
.vm-statement__inner { max-width: 900px; margin-inline: auto; text-align: center; }
.vm-statement__label { justify-content: center; margin-bottom: 2rem; }
.vm-statement__text { font-size: clamp(1.6rem, 3.4vw, 3rem); font-weight: 500; line-height: 1.25; letter-spacing: -0.025em; }
.vm-statement--dark .vm-statement__text { color: var(--text-light); }
.vm-statement__text .accent { color: var(--secondary); }
.vm-statement--dark .vm-statement__text .accent { color: var(--accent); }

.priorities { background: var(--cream); padding-block: var(--section-y); }
.priorities__head { max-width: 20ch; margin-bottom: 3rem; }
.priority-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border-light); }
.priority-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.8rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  font-weight: 600; font-size: 1.15rem;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.priority-item:nth-child(2n) { border-right: none; }
.priority-item:hover { background: var(--primary); color: var(--accent); }
.priority-item__num { font-size: 0.78rem; color: var(--secondary); letter-spacing: 0.1em; }
.priority-item:hover .priority-item__num { color: var(--accent); }

/* ---------- Contact page ---------- */
.contact-hero { /* page-hero */ }
.contact-section { background: var(--cream); padding-block: var(--section-y); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.5rem; font-weight: 600; }
.contact-detail p, .contact-detail a { font-size: 1.1rem; color: var(--text-dark); line-height: 1.5; }
.contact-detail a:hover { color: var(--secondary); }

.contact-form { background: var(--white); border: 1px solid var(--border-light); border-radius: 6px; padding: clamp(1.8rem, 3vw, 2.6rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-dark); }
.form-group label .req { color: var(--secondary); }
.form-control {
  width: 100%;
  padding: 0.85em 1em;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--cream);
  font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  min-height: 48px;
}
.form-control:focus { outline: none; border-color: var(--secondary); background: var(--white); }
.form-control--error { border-color: #c0392b; background: #fdf3f1; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-error { color: #c0392b; font-size: 0.8rem; display: none; }
.form-error.is-visible { display: block; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.5rem; }
.form-consent input { width: 18px; height: 18px; margin-top: 0.2em; flex-shrink: 0; }
.form-consent label { font-size: 0.88rem; color: var(--muted-dark); line-height: 1.5; }
.form-success {
  display: none;
  padding: 1.2rem 1.4rem;
  background: rgba(47,125,111,0.12);
  border: 1px solid var(--secondary);
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.form-success.is-visible { display: block; }
.form-submit { width: 100%; justify-content: center; }
.form-submit.is-loading { opacity: 0.7; pointer-events: none; }

.contact-map { margin-top: var(--section-y); aspect-ratio: 16/9; overflow: hidden; border-radius: 6px; position: relative; background: var(--primary); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28); }
.contact-map .ph { height: 100%; position: absolute; inset: 0; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.25) contrast(1.05); transition: filter 0.6s var(--ease); }
.contact-map:hover iframe { filter: grayscale(0) contrast(1); }
.contact-map__label {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(8, 21, 16, 0.78);
  border: 1px solid rgba(212, 184, 120, 0.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.contact-map__pin {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 184, 120, 0.22);
  animation: mapPinPulse 2s var(--ease) infinite;
}
@keyframes mapPinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(212, 184, 120, 0.22); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(212, 184, 120, 0.10); }
}
@media (max-width: 720px) {
  .contact-map { aspect-ratio: 4/3; }
  .contact-map__label { top: 0.75rem; left: 0.75rem; font-size: 0.62rem; padding: 0.45rem 0.8rem; }
}

/* ---------- Utility ---------- */
[data-animate] { will-change: transform, opacity; }
.is-hidden-init { opacity: 0; }

/* ---------- Reduced motion ----------
   Per user request, animations are NOT disabled under reduced motion so the
   full experience is always visible. We only hide the pointer-following
   custom cursor (continuous pointer tracking is the most motion-sickness
   inducing element). The fullscreen menu is always shown when open. */
@media (prefers-reduced-motion: reduce) {
  .cursor, .cursor-follower, .cursor-label { display: none !important; }
  body.cursor-ready, body.cursor-ready a, body.cursor-ready button { cursor: auto !important; }
}

/* Safety: menu is always visible when open, even if a GSAP clip-path
   animation is skipped for any reason. Inline GSAP styles still win
   during animation, so this does not conflict. */
.fullscreen-menu.is-open { clip-path: inset(0 0 0 0) !important; }

/* ---------- Image placeholders ---------- */
img.ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Keep gradient fallback for any remaining div placeholders */
.ph { width: 100%; height: 100%; }
