:root {
  --ink: #080706;
  --ink-soft: #17130d;
  --forest: #5a3c12;
  --emerald: #d3a445;
  --emerald-deep: #a66e16;
  --lime: #f3dc8b;
  --gold: #c98928;
  --cream: #f1ebdf;
  --paper: #fbf8f1;
  --white: #ffffff;
  --muted: #746d63;
  --line: rgba(18, 13, 6, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 25px 80px rgba(22, 14, 4, 0.14);
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.page-glow { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .22; z-index: -1; }
.page-glow-one { width: 430px; height: 430px; background: var(--emerald); top: 10%; right: -180px; }
.page-glow-two { width: 360px; height: 360px; background: var(--gold); top: 52%; left: -240px; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 120px 0; position: relative; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(252,250,246,.88); border-color: var(--line); backdrop-filter: blur(16px); }
.site-header.header-hidden { transform: translateY(-100%); }
.nav-wrap { height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--ink); border: 1px solid rgba(211,164,69,.28); box-shadow: 0 10px 24px rgba(8,7,6,.12); overflow: hidden; }
.brand-mark img { width: 34px; height: 38px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.brand-copy strong { font: 700 17px/1 "Space Grotesk", sans-serif; letter-spacing: .14em; }
.brand-copy small { font-size: 9px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; margin-right: 15px; }
.desktop-nav a { font-size: 13px; font-weight: 700; color: #304239; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--emerald-deep); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; border-radius: 999px; border: 1px solid transparent; min-height: 54px; padding: 0 25px; font-size: 13px; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 44px; padding: 0 20px; font-size: 12px; }
.button-outline { border-color: rgba(7,19,15,.28); background: rgba(255,255,255,.38); }
.button-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 16px 36px rgba(7,19,15,.22); }
.button-primary:hover { background: var(--forest); box-shadow: 0 20px 44px rgba(7,19,15,.3); }
.button-dark { background: var(--ink); color: var(--white); }

.menu-toggle { display: none; background: none; border: 0; width: 46px; height: 46px; padding: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 1.5px; margin: 6px auto; background: var(--ink); transition: transform .25s ease; }
.menu-toggle.active span:first-child { transform: translateY(3.7px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.7px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 840px; padding-top: 175px; padding-bottom: 70px; background: radial-gradient(circle at 70% 32%, rgba(28,200,132,.10), transparent 31%), linear-gradient(180deg, #fbf9f3 0%, #f5f2ea 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .33; background-image: linear-gradient(rgba(7,19,15,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(7,19,15,.06) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 83%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .23em; color: var(--forest); }
.eyebrow span { width: 28px; height: 1px; background: var(--emerald-deep); }
.eyebrow.light { color: rgba(255,255,255,.74); }
.eyebrow.light span { background: var(--lime); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; margin: 0; line-height: 1.04; }
h1 { max-width: 720px; font-size: clamp(68px, 7vw, 108px); letter-spacing: -.065em; margin: 25px 0 30px; }
h1 em, h2 em { font-style: normal; color: var(--emerald-deep); position: relative; }
h1 em::after { content: ""; position: absolute; left: 4%; right: -2%; bottom: 5px; height: 8px; border-radius: 50%; border-top: 2px solid var(--gold); transform: rotate(-2deg); opacity: .85; }
.hero-lead { font-size: 18px; line-height: 1.8; color: #506059; max-width: 600px; margin: 0; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 38px; }
.text-link { font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(7,19,15,.25); padding: 0 0 6px; }
.text-link span { margin-left: 6px; color: var(--emerald-deep); }
.hero-proof { margin-top: 60px; display: flex; align-items: center; gap: 13px; flex-wrap: wrap; color: #6f7a74; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.hero-proof i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

.hero-visual { position: relative; min-height: 530px; display: grid; place-items: center; perspective: 1200px; }
.visual-frame { width: min(100%, 480px); aspect-ratio: .9; border-radius: 38px; background: linear-gradient(145deg, #17130d, #060504); box-shadow: 0 45px 90px rgba(20,13,4,.30); border: 1px solid rgba(255,255,255,.1); padding: 28px; position: relative; overflow: hidden; transform-style: preserve-3d; transition: transform .18s ease; }
.visual-frame::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(211,164,69,.20); filter: blur(70px); top: -80px; right: -100px; }
.visual-frame::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 44px 44px; }
.visual-topline { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.44); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; position: relative; z-index: 3; }
.live-dot { display: flex; align-items: center; gap: 7px; }
.live-dot::before { content: ""; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(189,243,107,.08); animation: pulse 2s infinite; }
.orbit-stage { height: 350px; position: relative; display: grid; place-items: center; z-index: 2; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit span { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); top: 50%; left: -4.5px; box-shadow: 0 0 18px var(--lime); }
.orbit-one { width: 245px; height: 245px; animation: spin 15s linear infinite; }
.orbit-two { width: 185px; height: 185px; animation: spinReverse 11s linear infinite; border-style: dashed; }
.orbit-three { width: 300px; height: 130px; transform: rotate(-28deg); animation: breathe 4s ease-in-out infinite; }
.core { width: 116px; height: 116px; border-radius: 32px; background: linear-gradient(145deg, #1b160e, #070605); display: grid; place-items: center; position: relative; border: 1px solid rgba(243,220,139,.28); box-shadow: 0 0 60px rgba(211,164,69,.24); transform: rotate(-5deg); }
.core-logo { width: 72px; height: 78px; display: grid; place-items: center; transform: rotate(5deg) translateY(-5px); }
.core-logo img { width: 100%; height: 100%; object-fit: contain; }
.core small { position: absolute; bottom: 10px; color: var(--lime); font-size: 7px; font-weight: 900; letter-spacing: .28em; }
.node { position: absolute; border: 1px solid rgba(255,255,255,.15); background: rgba(8,25,19,.77); color: rgba(255,255,255,.7); backdrop-filter: blur(8px); border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .16em; padding: 8px 11px; }
.node-a { top: 70px; left: 38px; }
.node-b { right: 30px; top: 144px; }
.node-c { bottom: 50px; left: 82px; }
.visual-metrics { position: absolute; left: 28px; right: 28px; bottom: 24px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; z-index: 3; }
.visual-metrics > div { border-right: 1px solid rgba(255,255,255,.08); padding-left: 18px; }
.visual-metrics > div:first-child { padding-left: 0; }
.visual-metrics > div:last-child { border: 0; }
.visual-metrics span { color: var(--lime); font: 700 20px/1 "Space Grotesk", sans-serif; }
.visual-metrics p { margin: 5px 0 0; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.floating-card { position: absolute; background: rgba(255,255,255,.88); border: 1px solid rgba(7,19,15,.08); box-shadow: 0 22px 55px rgba(3,24,16,.14); backdrop-filter: blur(16px); border-radius: 18px; padding: 15px 18px; display: flex; gap: 12px; align-items: center; z-index: 5; animation: float 4s ease-in-out infinite; }
.floating-card small { display: block; color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.floating-card strong { display: block; font-size: 12px; margin-top: 3px; }
.floating-card-one { left: -45px; top: 80px; }
.floating-card-two { right: -40px; bottom: 70px; animation-delay: -2s; }
.mini-icon { width: 35px; height: 35px; border-radius: 11px; display: grid; place-items: center; background: var(--ink); color: var(--lime); }
.scroll-line { position: relative; z-index: 2; margin-top: 65px; display: flex; align-items: center; gap: 16px; font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #7f8984; }
.scroll-line i { width: 90px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.scroll-line i::after { content: ""; position: absolute; height: 1px; width: 35px; background: var(--emerald-deep); animation: scrollLine 2s ease-in-out infinite; }

.marquee-band { overflow: hidden; background: var(--ink); color: var(--white); padding: 20px 0; transform: rotate(-1.4deg) scale(1.03); transform-origin: center; position: relative; z-index: 4; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 38px; animation: marquee 25s linear infinite; }
.marquee-track span { font: 600 13px/1 "Space Grotesk", sans-serif; letter-spacing: .18em; }
.marquee-track b { font-size: 8px; color: var(--lime); }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 65px; }
h2 { font-size: clamp(47px, 5.2vw, 76px); letter-spacing: -.055em; margin-top: 19px; }
.section-heading > p, .process-copy > p { color: var(--muted); font-size: 16px; line-height: 1.85; margin: 0 0 8px; max-width: 480px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.service-card { min-height: 480px; padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--line); background: rgba(255,255,255,.56); display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease, background .35s ease; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: rgba(28,200,132,.08); filter: blur(35px); top: -100px; right: -90px; transition: transform .4s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); background: var(--white); }
.service-card:hover::before { transform: translate(-35px,35px) scale(1.5); }
.service-card.feature-card { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-16px); }
.service-card.feature-card:hover { transform: translateY(-26px); }
.service-number { font: 600 11px/1 "Space Grotesk", sans-serif; color: var(--muted); }
.feature-card .service-number { color: rgba(255,255,255,.4); }
.service-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(28,200,132,.1); margin: 47px 0 31px; }
.service-icon svg { width: 25px; fill: none; stroke: var(--emerald-deep); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card .service-icon { background: var(--lime); }
.feature-card .service-icon svg { stroke: var(--ink); }
.service-card h3 { font-size: 23px; letter-spacing: -.03em; line-height: 1.15; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.75; margin: 18px 0; }
.feature-card p { color: rgba(255,255,255,.55); }
.service-card ul { margin: 0 0 25px; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 8px 0 8px 15px; font-size: 11px; color: #526158; border-bottom: 1px solid rgba(7,19,15,.07); }
.service-card li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--emerald); position: absolute; left: 0; top: 15px; }
.feature-card li { color: rgba(255,255,255,.58); border-color: rgba(255,255,255,.08); }
.feature-card li::before { background: var(--lime); }
.service-card > a { margin-top: auto; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; display: flex; justify-content: space-between; align-items: center; }
.service-card > a span { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--emerald-deep); }
.feature-card > a span { border-color: rgba(255,255,255,.15); color: var(--lime); }

.about { background: var(--cream); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 110px; }
.about-visual { min-height: 570px; position: relative; display: grid; place-items: center; }
.stack-card { width: min(410px, 88%); aspect-ratio: .83; border-radius: 30px; position: absolute; }
.stack-back { background: var(--gold); transform: rotate(-9deg) translate(-30px,0); opacity: .43; }
.stack-mid { background: var(--emerald); transform: rotate(7deg) translate(25px,-4px); opacity: .55; }
.stack-front { background: var(--ink); color: white; box-shadow: 0 40px 80px rgba(7,19,15,.24); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.stack-front::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); right: -180px; top: -120px; box-shadow: 0 0 0 55px rgba(255,255,255,.02), 0 0 0 110px rgba(255,255,255,.015); }
.stack-label { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.45); }
.stack-chart { height: 280px; display: flex; gap: 14px; align-items: end; border-bottom: 1px solid rgba(255,255,255,.12); position: relative; }
.stack-chart div { width: 100%; height: var(--h); background: linear-gradient(to top, var(--emerald), var(--lime)); border-radius: 8px 8px 0 0; opacity: .82; transform-origin: bottom; animation: grow 1.4s both; animation-play-state: paused; }
.stack-chart div:nth-child(2){animation-delay:.1s}.stack-chart div:nth-child(3){animation-delay:.2s}.stack-chart div:nth-child(4){animation-delay:.3s}.stack-chart div:nth-child(5){animation-delay:.4s}
.stack-front.is-visible .stack-chart div { animation-play-state: running; }
.stack-footer { display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.about-stamp { position: absolute; width: 120px; height: 120px; right: -10px; bottom: 10px; border-radius: 50%; background: var(--paper); box-shadow: 0 20px 45px rgba(7,19,15,.15); display: grid; place-items: center; }
.about-stamp svg { position: absolute; inset: 8px; width: calc(100% - 16px); animation: spin 20s linear infinite; }
.about-stamp text { font-size: 9px; font-weight: 800; letter-spacing: 2.3px; fill: var(--forest); }
.about-stamp strong { width: 43px; height: 50px; display: grid; place-items: center; }
.about-stamp strong img { width: 100%; height: 100%; object-fit: contain; }
.about-copy h2 { max-width: 670px; }
.about-copy p { color: var(--muted); font-size: 14px; line-height: 1.9; }
.about-copy .large-copy { font-size: 18px; color: #394a42; line-height: 1.8; margin-top: 35px; }
.principles { margin-top: 38px; border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.principles strong { font-size: 12px; }
.principles span { color: var(--muted); font-size: 12px; }

.projects { background: var(--paper); }
.project-showcase { display: grid; grid-template-columns: 1.38fr .62fr; gap: 18px; }
.project-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); color: var(--white); min-height: 660px; display: flex; flex-direction: column; }
.project-art { min-height: 390px; position: relative; overflow: hidden; }
.hotel-art { background: linear-gradient(180deg, #d9be81 0%, #cda667 38%, #205b44 100%); }
.hotel-art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 26%, rgba(255,255,255,.45), transparent 16%), linear-gradient(120deg, transparent 25%, rgba(255,255,255,.12), transparent 65%); }
.sun { position: absolute; width: 95px; height: 95px; border-radius: 50%; background: #f8e7ad; top: 58px; right: 85px; box-shadow: 0 0 65px rgba(255,240,184,.6); }
.building { position: absolute; bottom: 72px; background: #f1ebdd; border: 8px solid rgba(255,255,255,.16); box-shadow: 0 20px 50px rgba(6,25,18,.22); display: flex; flex-wrap: wrap; gap: 12px; padding: 23px; }
.building i { width: 28px; height: 42px; background: #163e31; border-top: 5px solid #d8b56e; }
.building-one { left: 8%; width: 47%; height: 190px; }
.building-two { left: 47%; width: 39%; height: 240px; background: #e5dccb; }
.pool-shape { position: absolute; left: 5%; right: 5%; height: 65px; bottom: 15px; border-radius: 50%; background: linear-gradient(180deg, #5bdac1, #1a8f84); box-shadow: inset 0 8px 18px rgba(255,255,255,.22); }
.palm { position: absolute; bottom: 65px; width: 7px; height: 115px; background: #183e2b; transform: rotate(5deg); }
.palm::before, .palm::after, .palm span::before, .palm span::after { content:""; position:absolute; width:60px; height:18px; border-radius:100% 0; background:#174d34; top:-4px; transform-origin:0 50%; }
.palm::before { transform: rotate(-35deg); }.palm::after { transform: rotate(25deg); }.palm span::before { transform: rotate(70deg); }.palm span::after { transform: rotate(150deg); }
.palm-one { left: 7%; }.palm-two { right: 6%; height: 90px; }
.project-info { padding: 38px 44px 43px; position: relative; }
.project-tag { text-transform: uppercase; letter-spacing: .17em; font-size: 8px; font-weight: 800; color: var(--emerald); }
.project-info h3 { font-size: 45px; letter-spacing: -.04em; margin: 12px 0; }
.project-info p { max-width: 610px; color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.8; }
.project-info a { position: absolute; right: 42px; bottom: 48px; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.project-info a span { color: var(--lime); margin-left: 5px; }
.project-side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.mini-project { background: var(--cream); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.mini-art { height: 210px; position: relative; overflow: hidden; }
.mini-project > div:last-child { padding: 25px 27px 30px; }
.mini-project h3 { font-size: 23px; letter-spacing: -.03em; margin: 9px 0 10px; }
.mini-project p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0; }
.digital-art { background: #0c241b; }
.digital-art::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(189,243,107,.28) 1px, transparent 1px); background-size: 22px 22px; }
.digital-art span { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--emerald), transparent); width: 100%; left: 0; }
.digital-art span:nth-child(1){top:25%;transform:rotate(18deg)}.digital-art span:nth-child(2){top:50%;transform:rotate(-12deg)}.digital-art span:nth-child(3){top:65%;transform:rotate(31deg)}.digital-art span:nth-child(4){top:76%;transform:rotate(-29deg)}
.digital-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 24px; background: var(--lime); color: var(--ink); display: grid; place-items: center; font: 700 22px/1 "Space Grotesk", sans-serif; box-shadow: 0 0 60px rgba(189,243,107,.23); }
.city-art { background: linear-gradient(180deg, #dfc89a, #856f49); }
.city-art::before { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; background: #f9e9b9; top: 30px; left: 40px; box-shadow: 0 0 50px rgba(255,241,192,.6); }
.city-art i { position: absolute; left: var(--x); bottom: 0; width: var(--w); height: var(--h); background: linear-gradient(90deg, #173d30, #265944); border-top: 4px solid rgba(255,255,255,.25); }
.city-art i::after { content: ""; position: absolute; inset: 12px 8px; background-image: repeating-linear-gradient(to bottom, rgba(255,231,164,.7) 0 4px, transparent 4px 15px); }

.process { background: var(--ink); color: var(--white); overflow: hidden; }
.process::before { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); left: -350px; top: -300px; box-shadow: 0 0 0 90px rgba(255,255,255,.02), 0 0 0 180px rgba(255,255,255,.01); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; position: relative; }
.process-copy { position: sticky; top: 150px; }
.process-copy h2 em { color: var(--lime); }
.process-copy > p { color: rgba(255,255,255,.5); margin: 30px 0 35px; }
.process .button-outline { color: white; border-color: rgba(255,255,255,.24); background: transparent; }
.process .button-outline:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 80px 1fr; gap: 25px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.12); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list > li > span { font: 600 11px/1 "Space Grotesk", sans-serif; color: var(--lime); }
.process-list h3 { font-size: 29px; margin-bottom: 12px; }
.process-list p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.75; max-width: 460px; }

.contact { background: var(--paper); }
.contact-shell { border-radius: 42px; background: linear-gradient(135deg, var(--forest), #081a13 70%); padding: 72px; color: var(--white); display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; box-shadow: 0 45px 100px rgba(6,27,19,.22); position: relative; overflow: hidden; }
.contact-shell::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(28,200,132,.15); filter: blur(70px); left: -180px; bottom: -250px; }
.contact-copy, .contact-form { position: relative; z-index: 2; }
.contact-copy h2 { font-size: clamp(45px,4.7vw,68px); }
.contact-copy h2 em { color: var(--lime); }
.contact-copy p { color: rgba(255,255,255,.56); max-width: 440px; font-size: 14px; line-height: 1.85; margin-top: 27px; }
.contact-details { margin-top: 45px; display: grid; gap: 10px; font-size: 12px; }
.contact-details a { color: var(--lime); font-weight: 700; }
.contact-details span { color: rgba(255,255,255,.55); }
.contact-form { background: var(--paper); color: var(--ink); border-radius: 28px; padding: 34px; box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 18px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; border: 1px solid rgba(7,19,15,.14); background: var(--white); border-radius: 12px; padding: 14px 15px; color: var(--ink); font-size: 12px; text-transform: none; letter-spacing: normal; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 50px; }
.contact-form textarea { resize: vertical; min-height: 115px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--emerald-deep); box-shadow: 0 0 0 4px rgba(28,200,132,.1); }
.contact-form .button { width: 100%; }
.form-status { margin: 13px 0 0; min-height: 18px; font-size: 11px; color: var(--emerald-deep); text-align: center; }

.site-footer { background: var(--paper); padding: 10px 0 30px; }
.footer-top { padding: 50px 0; display: grid; grid-template-columns: 1fr .9fr 1fr; align-items: center; gap: 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-top > p { color: var(--muted); font-size: 12px; line-height: 1.75; max-width: 330px; margin: 0; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; font-size: 11px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: var(--lime); box-shadow: 0 12px 30px rgba(7,19,15,.24); z-index: 30; cursor: pointer; transform: translateY(20px); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes pulse { 50% { opacity:.45; box-shadow:0 0 0 8px rgba(189,243,107,.02);} }
@keyframes breathe { 50% { transform: rotate(-28deg) scale(1.05); opacity:.6; } }
@keyframes float { 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes scrollLine { from { left:-35px; } to { left:100%; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }


/* Product portfolio */
.products { background: #f6f0e4; overflow: hidden; }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.product-brand { min-height: 610px; border-radius: 34px; padding: 38px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 34px 80px rgba(22,14,4,.14); }
.product-brand::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 46px 46px; pointer-events: none; }
.product-brand-dark { color: white; background: radial-gradient(circle at 78% 18%, rgba(243,220,139,.19), transparent 27%), linear-gradient(145deg, #1b1710, #050403); }
.product-brand-light { color: var(--ink); background: radial-gradient(circle at 82% 15%, rgba(201,137,40,.17), transparent 28%), linear-gradient(145deg, #fffdf8, #e9dbc0); border: 1px solid rgba(93,63,16,.15); }
.origin-pill { position: absolute; left: 36px; top: 34px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid currentColor; border-color: rgba(255,255,255,.18); border-radius: 999px; padding: 9px 13px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); z-index: 3; }
.product-brand-light .origin-pill { border-color: rgba(8,7,6,.16); color: #6a5129; }
.origin-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(243,220,139,.08); }
.product-brand-light .origin-pill span { background: var(--gold); }
.product-monogram { position: absolute; right: 38px; top: 25px; font: 700 90px/1 "Space Grotesk", sans-serif; letter-spacing: -.08em; color: rgba(255,255,255,.05); z-index: 1; }
.product-brand-light .product-monogram { color: rgba(8,7,6,.06); width: 95px; height: 100px; }
.product-monogram img { width: 100%; height: 100%; object-fit: contain; opacity: .14; }
.product-copy { width: 58%; position: relative; z-index: 4; }
.product-copy > span { display: block; margin-bottom: 10px; color: var(--lime); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; font-weight: 800; }
.product-brand-light .product-copy > span { color: var(--emerald-deep); }
.product-copy h3 { font-size: 48px; letter-spacing: -.055em; margin-bottom: 16px; }
.product-copy p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.8; margin: 0 0 28px; }
.product-brand-light .product-copy p { color: var(--muted); }
.button-gold { background: linear-gradient(135deg, #f4dda0, #c98928); color: var(--ink); box-shadow: 0 16px 32px rgba(201,137,40,.18); }
.bag-visual { position: absolute; right: 8%; bottom: 9%; width: 180px; height: 300px; clip-path: polygon(10% 0,90% 0,100% 10%,93% 100%,7% 100%,0 10%); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(6deg); z-index: 3; filter: drop-shadow(0 28px 30px rgba(0,0,0,.25)); }
.bag-visual::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.22); clip-path: inherit; }
.bag-visual b { font: 700 54px/1 "Space Grotesk", sans-serif; letter-spacing: -.08em; }
.bag-visual small { margin-top: 8px; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.bag-abs { background: linear-gradient(150deg, #fbf3da, #d7a949 54%, #9c6414); color: #18130b; }
.bag-madiba { background: linear-gradient(150deg, #1b1710, #050403); color: var(--lime); transform: rotate(-5deg); }
.bag-madiba img { width: 78px; height: 90px; object-fit: contain; margin-bottom: 12px; }
.supply-strip { margin-top: 22px; background: white; border: 1px solid var(--line); border-radius: 24px; padding: 25px 28px; display: grid; grid-template-columns: repeat(3,1fr) auto; gap: 25px; align-items: center; }
.supply-strip > div { padding-right: 20px; border-right: 1px solid var(--line); }
.supply-strip strong { display: block; font-size: 12px; }
.supply-strip span { display: block; color: var(--muted); font-size: 10px; line-height: 1.5; margin-top: 5px; }
.supply-strip > a { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.supply-strip > a span { display: inline; color: var(--emerald-deep); margin-left: 6px; }

/* MadibaMed */
.med-section { color: white; background: radial-gradient(circle at 12% 20%, rgba(201,137,40,.18), transparent 28%), radial-gradient(circle at 85% 80%, rgba(255,255,255,.05), transparent 25%), #090807; overflow: hidden; }
.med-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 58px 58px; }
.med-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; position: relative; z-index: 2; align-items: center; }
.med-brand-line { display: flex; align-items: center; gap: 10px; padding-bottom: 32px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.med-cross { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, #f3dc8b, #c98928); color: #090807; display: grid; place-items: center; font-size: 24px; font-weight: 700; }
.med-brand-line strong { font: 700 23px/1 "Space Grotesk", sans-serif; }
.med-brand-line small { color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .12em; font-size: 8px; margin-left: 4px; }
.med-copy h2 { font-size: clamp(52px,5.3vw,78px); margin: 20px 0 28px; }
.med-copy h2 em { color: var(--lime); }
.med-lead { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.85; max-width: 600px; }
.med-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 38px 0; }
.med-highlights > div { border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 20px 18px; background: rgba(255,255,255,.035); }
.med-highlights strong { display: block; color: var(--lime); font: 700 30px/1 "Space Grotesk", sans-serif; }
.med-highlights span { display: block; margin-top: 7px; color: rgba(255,255,255,.45); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.button-med { background: var(--lime); color: var(--ink); }
.med-pathway { background: #f8f3e9; color: var(--ink); border-radius: 34px; padding: 40px; box-shadow: 0 40px 90px rgba(0,0,0,.28); }
.pathway-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.pathway-head span { font: 700 19px/1 "Space Grotesk", sans-serif; }
.pathway-head small { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.med-pathway ol { list-style: none; padding: 0; margin: 0; }
.med-pathway li { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.med-pathway li > span { width: 38px; height: 38px; border-radius: 12px; background: var(--ink); color: var(--lime); display: grid; place-items: center; font: 700 9px/1 "Space Grotesk", sans-serif; }
.med-pathway h3 { font-size: 18px; margin-bottom: 6px; }
.med-pathway p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.medical-note { margin-top: 20px !important; padding: 15px 17px; background: rgba(201,137,40,.09); border-left: 3px solid var(--gold); border-radius: 8px; font-size: 9px !important; }

/* Company profile */
.company-card { justify-content: space-between; }
.company-identity { display: grid; justify-items: start; gap: 15px; position: relative; z-index: 2; }
.company-identity img { width: 82px; height: 96px; object-fit: contain; }
.company-identity strong { font: 700 31px/1.08 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.company-identity span { color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.company-facts { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.12); }
.company-facts > div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.company-facts small { color: rgba(255,255,255,.4); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.company-facts b { font-size: 10px; text-align: right; }

/* Distribution network */
.distribution { background: var(--paper); }
.distribution-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.distribution-copy > p { color: var(--muted); font-size: 15px; line-height: 1.85; margin: 28px 0 32px; max-width: 570px; }
.route-list { border-top: 1px solid var(--line); }
.route-list > div { display: grid; grid-template-columns: 35px 115px 1fr; gap: 15px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.route-list span { color: var(--emerald-deep); font: 700 9px/1.6 "Space Grotesk", sans-serif; }
.route-list strong { font-size: 12px; }
.route-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.route-visual { min-height: 590px; border-radius: 36px; background: linear-gradient(145deg, #18140e, #070605); box-shadow: 0 40px 90px rgba(22,14,4,.24); position: relative; overflow: hidden; }
.map-grid { position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(circle, rgba(243,220,139,.3) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%); }
.route { position: absolute; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.route span { display: inline-flex; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(8px); }
.route i { position: absolute; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--gold), transparent); }
.route i::before { content: ""; position: absolute; left: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
.route-turkey { top: 19%; left: 13%; }
.route-turkey i { width: 260px; top: 46px; left: 54px; transform: rotate(28deg); }
.route-egypt { top: 39%; left: 13%; }
.route-egypt i { width: 215px; top: 28px; left: 52px; transform: rotate(5deg); }
.route-west { bottom: 18%; right: 9%; }
.route-west i { width: 175px; top: -25px; right: 80px; transform: rotate(160deg); }
.route-hub { position: absolute; left: 52%; top: 52%; transform: translate(-50%,-50%); width: 150px; height: 150px; border-radius: 44px; background: linear-gradient(145deg, #221b10, #080706); border: 1px solid rgba(243,220,139,.25); box-shadow: 0 0 0 18px rgba(243,220,139,.025), 0 0 70px rgba(201,137,40,.22); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 3; }
.route-hub img { width: 60px; height: 68px; object-fit: contain; }
.route-hub strong { color: white; font-size: 13px; margin-top: 5px; }
.route-hub small { color: var(--lime); font-size: 7px; text-transform: uppercase; letter-spacing: .16em; }
.route-caption { position: absolute; left: 35px; right: 35px; bottom: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; color: rgba(255,255,255,.4); font-size: 8px; text-transform: uppercase; letter-spacing: .18em; text-align: center; }

/* Diversified ventures */
.ventures { padding-top: 0; background: var(--paper); }
.ventures-shell { border-radius: 36px; padding: 62px 68px; color: white; background: radial-gradient(circle at 80% 20%, rgba(243,220,139,.12), transparent 26%), linear-gradient(135deg, #17130d, #060504); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; overflow: hidden; position: relative; }
.ventures-shell::after { content: "M"; position: absolute; right: -20px; bottom: -80px; font: 700 310px/1 "Space Grotesk", sans-serif; color: rgba(255,255,255,.025); }
.ventures-shell h2 { font-size: clamp(44px,4.5vw,66px); }
.ventures-shell h2 em { color: var(--lime); }
.ventures-copy { position: relative; z-index: 2; }
.ventures-copy p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.85; margin: 0 0 28px; }

/* Dark-gold contact treatment */
.contact-shell { background: radial-gradient(circle at 0 100%, rgba(201,137,40,.25), transparent 35%), linear-gradient(135deg, #17130d, #060504 72%); }
.contact-shell::before { background: rgba(201,137,40,.2); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 22px; }
  .hero-grid { gap: 35px; }
  .service-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .service-card.feature-card { transform: none; }
  .service-card.feature-card:hover { transform: translateY(-10px); }
  .about-grid { gap: 60px; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .contact-shell { gap: 45px; padding: 55px; }
  .product-brand { min-height: 570px; }
  .product-copy { width: 62%; }
  .bag-visual { right: 5%; width: 160px; height: 270px; }
  .supply-strip { grid-template-columns: repeat(2,1fr); }
  .supply-strip > div:nth-child(2) { border-right: 0; }
  .supply-strip > a { grid-column: 1 / -1; }
  .med-grid, .distribution-grid { gap: 55px; }
  .ventures-shell { gap: 45px; padding: 55px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 680px); }
  .section { padding: 88px 0; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu { position: fixed; inset: 80px 14px auto; border-radius: 20px; background: rgba(252,250,246,.98); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 18px; flex-direction: column; z-index: 49; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: all .25s ease; }
  .mobile-menu.open { display: flex; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 15px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-child { border: 0; color: var(--emerald-deep); }
  .nav-wrap { height: 78px; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid, .section-heading, .about-grid, .process-grid, .contact-shell, .med-grid, .distribution-grid, .ventures-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 75px; }
  h1 { font-size: clamp(62px, 15vw, 96px); }
  .hero-visual { min-height: 500px; }
  .visual-frame { max-width: 470px; }
  .section-heading { gap: 28px; }
  .section-heading > p { max-width: 620px; }
  .about-grid { gap: 75px; }
  .about-visual { order: 2; }
  .project-heading { align-items: start; }
  .process-grid { gap: 70px; }
  .process-copy { position: static; }
  .contact-shell { gap: 45px; border-radius: 30px; }
  .brand-grid { grid-template-columns: 1fr; }
  .product-brand { min-height: 600px; }
  .med-grid { gap: 60px; }
  .med-pathway { padding: 34px; }
  .distribution-grid { gap: 55px; }
  .route-visual { min-height: 540px; }
  .ventures-shell { gap: 30px; padding: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .brand-copy small { display: none; }
  .hero { padding-top: 125px; }
  h1 { font-size: 58px; }
  h1 em::after { bottom: 1px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 330px; }
  .text-link { align-self: flex-start; }
  .hero-proof { gap: 9px; }
  .hero-visual { min-height: 425px; }
  .visual-frame { padding: 20px; border-radius: 28px; }
  .orbit-stage { height: 285px; }
  .orbit-one { width: 205px; height: 205px; }
  .orbit-two { width: 150px; height: 150px; }
  .orbit-three { width: 240px; height: 105px; }
  .core { width: 95px; height: 95px; border-radius: 27px; }
  .core-logo { width: 58px; height: 64px; }
  .visual-metrics { left: 20px; right: 20px; }
  .floating-card { transform: scale(.9); }
  .floating-card-one { left: -10px; top: 50px; }
  .floating-card-two { right: -12px; bottom: 44px; }
  .scroll-line { margin-top: 45px; }
  .service-grid, .project-side, .form-row, .supply-strip { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; }
  .about-visual { min-height: 500px; }
  .stack-card { width: 82%; }
  .about-stamp { width: 105px; height: 105px; right: 0; }
  .principles > div { grid-template-columns: 1fr; gap: 3px; }
  .project-main { min-height: auto; }
  .project-art { min-height: 305px; }
  .building { transform: scale(.78); transform-origin: bottom left; }
  .building-one { left: 2%; width: 58%; }
  .building-two { left: 45%; width: 50%; }
  .project-info { padding: 30px; }
  .project-info h3 { font-size: 36px; }
  .project-info a { position: static; display: inline-block; margin-top: 12px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 16px; }
  .product-brand { min-height: 650px; padding: 28px 24px; border-radius: 26px; justify-content: flex-end; }
  .origin-pill { left: 23px; top: 24px; }
  .product-monogram { right: 24px; }
  .product-copy { width: 100%; padding-top: 310px; }
  .product-copy h3 { font-size: 39px; }
  .bag-visual { width: 145px; height: 245px; right: 50%; bottom: auto; top: 115px; transform: translateX(50%) rotate(4deg); }
  .bag-madiba { transform: translateX(50%) rotate(-4deg); }
  .supply-strip { padding: 22px; }
  .supply-strip > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 18px; }
  .supply-strip > a { grid-column: auto; white-space: normal; }
  .med-brand-line { align-items: flex-start; flex-wrap: wrap; }
  .med-brand-line small { width: 100%; margin-left: 48px; }
  .med-highlights { grid-template-columns: 1fr; }
  .med-pathway { padding: 25px 20px; border-radius: 26px; }
  .pathway-head { align-items: flex-start; gap: 10px; flex-direction: column; }
  .med-pathway li { grid-template-columns: 42px 1fr; }
  .route-list > div { grid-template-columns: 32px 1fr; }
  .route-list p { grid-column: 2; }
  .route-visual { min-height: 460px; border-radius: 28px; }
  .route-hub { width: 125px; height: 125px; border-radius: 35px; }
  .route-hub img { width: 50px; height: 58px; }
  .route-turkey { left: 7%; }
  .route-egypt { left: 7%; }
  .route-turkey i { width: 185px; }
  .route-egypt i { width: 155px; }
  .route-west { right: 5%; }
  .route-west i { width: 120px; right: 60px; }
  .route-caption { left: 20px; right: 20px; font-size: 7px; }
  .ventures-shell { padding: 38px 24px; border-radius: 28px; }
  .company-identity strong { font-size: 26px; }
  .contact-shell { width: calc(100% - 20px); padding: 40px 22px; }
  .contact-form { padding: 25px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .footer-top > p { order: initial; grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Shared inner pages and richer media */
.hero-surface { border-radius: 40px; background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38)); border: 1px solid rgba(7,19,15,.08); box-shadow: var(--shadow); padding: 18px; }
.hero-surface img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.hero-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.hero-mini-card { background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.hero-mini-card strong { display: block; font: 700 24px/1 "Space Grotesk", sans-serif; margin-bottom: 6px; }
.hero-mini-card span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.product-photo { position: absolute; right: 4%; bottom: 5%; width: 34%; max-width: 235px; min-width: 180px; z-index: 3; }
.product-photo img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 28px 60px rgba(0,0,0,.22); }
.product-stack-preview { margin-top: 30px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.media-card { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: 0 16px 40px rgba(22,14,4,.08); }
.media-card.dark { background: linear-gradient(145deg, #17130d, #060504); border-color: rgba(255,255,255,.08); color: var(--white); }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card figure { margin: 0; height: 100%; }
.media-card-body { padding: 24px; }
.media-card-body h3 { font-size: 28px; margin-bottom: 10px; }
.media-card-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.media-card.dark .media-card-body p { color: rgba(255,255,255,.6); }
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.image-grid .media-card { min-height: 290px; }
.image-grid .media-card img { height: 230px; }
.section-link-row { margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap; }
.section-link-row a { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--emerald-deep); }
.leader-wrap { margin-top: 42px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.leader-card { border-radius: 28px; background: linear-gradient(135deg, #17130d, #060504); color: var(--white); padding: 32px; position: relative; overflow: hidden; box-shadow: 0 30px 70px rgba(22,14,4,.18); }
.leader-card::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(201,137,40,.18); filter: blur(70px); right: -80px; top: -80px; }
.leader-card > * { position: relative; z-index: 2; }
.leader-card .eyebrow { color: rgba(255,255,255,.72); }
.leader-card .eyebrow span { background: var(--lime); }
.leader-card h3 { font-size: 36px; margin: 18px 0 10px; }
.leader-card p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.85; }
.leader-crest { width: 62px; height: 72px; padding: 10px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(243,220,139,.18); }
.leader-crest img { width: 100%; height: 100%; object-fit: contain; }
.leader-meta { display: grid; gap: 12px; padding: 26px; border-radius: 28px; background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: 0 18px 46px rgba(22,14,4,.08); }
.leader-meta div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.leader-meta div:last-child { border-bottom: 0; }
.leader-meta strong { font-size: 12px; }
.leader-meta span { font-size: 13px; color: var(--muted); }
.contact-details a, .contact-details span { display: block; }
.contact-details .contact-phone { color: var(--white); font-weight: 700; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-pills a, .contact-pills span { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; }
.contact-pills a strong, .contact-pills span strong { color: var(--lime); font-weight: 800; }
.footer-legal { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; font-size: 10px; font-weight: 700; color: var(--muted); }
.footer-legal a { color: var(--muted); }
.inline-note { color: var(--muted); font-size: 12px; line-height: 1.8; }
.page-hero { padding-top: 165px; padding-bottom: 60px; background: radial-gradient(circle at 80% 20%, rgba(201,137,40,.10), transparent 24%), linear-gradient(180deg, #fbf9f3 0%, #f4efe4 100%); }
.page-hero .page-shell { display: grid; grid-template-columns: 1.02fr .98fr; gap: 46px; align-items: center; }
.page-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid var(--line); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; color: var(--forest); }
.page-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.page-title { font-size: clamp(48px, 6vw, 82px); margin: 22px 0 18px; letter-spacing: -.06em; }
.page-title em { font-style: normal; color: var(--emerald-deep); }
.page-intro { font-size: 17px; line-height: 1.85; color: #506059; max-width: 700px; }
.page-card { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 30px; padding: 30px; box-shadow: 0 24px 50px rgba(22,14,4,.08); }
.page-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.page-card li { margin-bottom: 9px; }
.page-image-card { overflow: hidden; min-height: 470px; }
.page-image-card img { width: 100%; height: 100%; object-fit: cover; }
.page-body { padding: 30px 0 120px; }
.product-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-card { background: var(--white); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: 0 22px 52px rgba(22,14,4,.08); }
.gallery-card img { width: 100%; height: 340px; object-fit: cover; }
.gallery-content { padding: 28px; }
.gallery-content .tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #f5efe0; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gallery-content h3 { font-size: 36px; margin: 16px 0 12px; }
.gallery-content p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.gallery-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.gallery-specs div { background: #faf6ee; border: 1px solid rgba(22,14,4,.07); border-radius: 16px; padding: 14px; }
.gallery-specs strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.gallery-specs span { font-size: 13px; color: var(--muted); }
.cta-banner { margin-top: 30px; border-radius: 30px; background: linear-gradient(135deg, #17130d, #060504); color: var(--white); padding: 36px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.cta-banner p { color: rgba(255,255,255,.6); margin: 12px 0 0; }
.policy-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 26px; align-items: start; }
.policy-nav, .policy-content { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 18px 46px rgba(22,14,4,.08); }
.policy-nav { padding: 26px; position: sticky; top: 120px; }
.policy-nav h3 { font-size: 20px; margin-bottom: 14px; }
.policy-nav a, .policy-nav span { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; color: var(--emerald-deep); }
.policy-nav a:last-child, .policy-nav span:last-child { border-bottom: 0; }
.policy-content { padding: 34px; }
.policy-content h2 { font-size: 34px; margin: 0 0 14px; }
.policy-content h3 { font-size: 20px; margin: 28px 0 10px; }
.policy-content p, .policy-content li { color: var(--muted); font-size: 14px; line-height: 1.9; }
.policy-content ul { padding-left: 20px; }
.prototype-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.prototype-block { background: rgba(255,255,255,.92); border: 1px dashed rgba(22,14,4,.2); border-radius: 26px; padding: 26px; min-height: 220px; }
.prototype-block h3 { font-size: 24px; margin-bottom: 10px; }
.prototype-block p { color: var(--muted); font-size: 14px; line-height: 1.85; }
.prototype-block code { font-size: 12px; background: #f4efe4; padding: 2px 6px; border-radius: 6px; }

@media (max-width: 1080px) {
  .product-stack-preview, .leader-wrap, .page-hero .page-shell, .policy-layout, .cta-banner { grid-template-columns: 1fr; }
  .product-photo { width: 30%; }
}

@media (max-width: 820px) {
  .hero-mini-grid, .image-grid, .product-gallery-grid, .prototype-grid { grid-template-columns: 1fr; }
  .page-body { padding-bottom: 90px; }
  .footer-legal { justify-content: flex-start; }
}

@media (max-width: 580px) {
  .hero-mini-card strong { font-size: 21px; }
  .product-photo { position: relative; width: 62%; max-width: none; min-width: 0; right: auto; bottom: auto; margin: 24px auto 0; }
  .product-copy { padding-top: 0; }
  .gallery-card img { height: 260px; }
  .gallery-content h3 { font-size: 30px; }
  .gallery-specs, .leader-meta div { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .page-hero { padding-top: 132px; }
  .page-title { font-size: 46px; }
  .cta-banner { padding: 28px 22px; }
}

/* Corporate luxury refinement */
body {
  background:
    radial-gradient(circle at 92% 4%, rgba(201,137,40,.08), transparent 22%),
    var(--paper);
}
.site-header.scrolled {
  background: rgba(251,248,241,.94);
  box-shadow: 0 12px 38px rgba(22,14,4,.06);
}
.brand-mark {
  background: radial-gradient(circle at 35% 20%, #282017, #080706 72%);
  box-shadow: 0 12px 30px rgba(8,7,6,.18), inset 0 0 0 1px rgba(243,220,139,.08);
}
.button-primary, .button-dark {
  background: linear-gradient(135deg, #1c1710, #050403);
  border-color: rgba(243,220,139,.15);
}
.button-primary:hover, .button-dark:hover {
  background: linear-gradient(135deg, #3b2b16, #0a0805);
}
.section-heading h2::before,
.about-copy h2::before,
.distribution-copy h2::before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.service-card, .media-card, .gallery-card, .page-card, .leader-meta {
  box-shadow: 0 24px 64px rgba(22,14,4,.09);
}
.service-card:hover, .media-card:hover, .gallery-card:hover {
  box-shadow: 0 34px 82px rgba(22,14,4,.15);
}
.product-brand {
  border: 1px solid rgba(201,137,40,.18);
}
.product-brand-dark::after,
.ventures-shell::before,
.contact-shell::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(243,220,139,.08);
  border-radius: inherit;
  pointer-events: none;
}
.luxury-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.luxury-rule::before, .luxury-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201,137,40,.55));
}
.luxury-rule::after { transform: scaleX(-1); }
.corporate-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.corporate-stat {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
}
.corporate-stat strong {
  display: block;
  font: 700 30px/1 "Space Grotesk", sans-serif;
  color: var(--emerald-deep);
  margin-bottom: 8px;
}
.corporate-stat span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.value-card {
  border-radius: 26px;
  padding: 28px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(22,14,4,.07);
}
.value-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #17130d;
  color: var(--lime);
  font: 700 12px/1 "Space Grotesk", sans-serif;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 24px; margin-bottom: 10px; }
.value-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.executive-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, #17130d, #060504);
  color: white;
  box-shadow: 0 35px 90px rgba(22,14,4,.22);
  position: relative;
  overflow: hidden;
}
.executive-panel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(201,137,40,.17);
  filter: blur(85px);
  right: -180px;
  top: -200px;
}
.executive-emblem, .executive-copy { position: relative; z-index: 2; }
.executive-emblem {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(243,220,139,.13);
  background: radial-gradient(circle at 50% 42%, rgba(201,137,40,.14), transparent 32%), rgba(255,255,255,.025);
  display: grid;
  place-items: center;
}
.executive-emblem img { width: 170px; max-height: 220px; object-fit: contain; }
.executive-copy { padding: 22px 12px; align-self: center; }
.executive-copy h2 { font-size: clamp(42px, 5vw, 68px); margin: 18px 0; }
.executive-copy h2 em { color: var(--lime); font-style: normal; }
.executive-copy p { color: rgba(255,255,255,.62); line-height: 1.9; }
.executive-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.executive-details div { border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 15px; }
.executive-details strong { display: block; color: var(--lime); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 5px; }
.executive-details span { font-size: 12px; color: rgba(255,255,255,.7); }
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px 0 13px;
  border-radius: 999px;
  background: #18a957;
  color: #fff;
  box-shadow: 0 16px 38px rgba(14,123,65,.28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(14,123,65,.36); }
.whatsapp-float svg { width: 23px; height: 23px; fill: currentColor; }

@media (max-width: 820px) {
  .corporate-stats { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .executive-panel { grid-template-columns: 1fr; }
  .executive-emblem { min-height: 280px; }
}
@media (max-width: 580px) {
  .corporate-stats, .executive-details { grid-template-columns: 1fr; }
  .whatsapp-float { right: 18px; bottom: 76px; width: 48px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .executive-panel { padding: 24px 18px; border-radius: 28px; }
  .executive-copy h2 { font-size: 40px; }
}
