/* ================================================================
   Smart Fulfillment Co. — Modern corporate design system
   ============================================================== */

:root {
    --ink: #0B0B0C;
    --ink-2: #15151A;
    --ink-3: #1F1F25;
    --surface: #FFFFFF;
    --surface-2: #F6F5F1;
    --surface-3: #ECEAE3;
    --bone: #E2DED3;
    --amber: #F5B700;
    --amber-2: #FFC526;
    --amber-soft: #FFF3CC;
    --amber-deep: #B7860A;
    --steel: #45454D;
    --steel-2: #76767E;
    --steel-3: #A4A4AC;
    --line-light: rgba(11, 11, 12, 0.08);
    --line-light-strong: rgba(11, 11, 12, 0.16);
    --line-dark: rgba(255, 255, 255, 0.10);
    --line-dark-strong: rgba(255, 255, 255, 0.18);

    --f-display: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
    --f-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
    --f-serif: "Instrument Serif", Georgia, serif;
    --f-mono: "JetBrains Mono", ui-monospace, monospace;

    --shell-pad: clamp(20px, 4vw, 56px);
    --shell-max: 1440px;
    --section-y: clamp(72px, 9vw, 128px);
    --header-h: 112px;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px rgba(11, 11, 12, 0.04), 0 4px 12px -8px rgba(11, 11, 12, 0.10);
    --shadow: 0 4px 8px rgba(11, 11, 12, 0.04), 0 24px 48px -24px rgba(11, 11, 12, 0.18);
    --shadow-lg: 0 10px 20px rgba(11, 11, 12, 0.06), 0 40px 80px -32px rgba(11, 11, 12, 0.24);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: transparent; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
::selection { background: var(--amber); color: var(--ink); }

/* ================================================================
   Layout primitives
   ============================================================== */

.shell {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding-left: var(--shell-pad);
    padding-right: var(--shell-pad);
}
.section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
    position: relative;
}
.section--ink {
    background: var(--ink);
    color: var(--surface);
}
.section--surface-2 { background: var(--surface-2); }

/* ================================================================
   Typography
   ============================================================== */

.display {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--ink);
}
.section--ink .display { color: var(--surface); }
.display--xl { font-size: clamp(48px, 8vw, 112px); font-weight: 800; }
.display--lg { font-size: clamp(40px, 6vw, 84px); font-weight: 700; }
.display--md { font-size: clamp(32px, 4.4vw, 60px); font-weight: 700; }
.display--sm { font-size: clamp(24px, 3vw, 40px); font-weight: 600; letter-spacing: -0.018em; }

.serif-em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    letter-spacing: -0.005em;
}
.section--ink .serif-em { color: var(--amber); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel-2);
    font-weight: 500;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--amber);
}
.section--ink .eyebrow { color: rgba(255, 255, 255, 0.6); }

.lede {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--steel);
    max-width: 60ch;
    font-weight: 400;
}
.section--ink .lede { color: rgba(255, 255, 255, 0.72); }

.amber-text { color: var(--amber); }

/* ================================================================
   Buttons
   ============================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.005em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius-sm);
}
.btn--primary {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 6px 18px -8px rgba(245, 183, 0, 0.5);
}
.btn--primary:hover {
    background: var(--amber-2);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(245, 183, 0, 0.55);
}
.btn--ghost {
    background: transparent;
    color: inherit;
    border-color: var(--line-light-strong);
}
.section--ink .btn--ghost { border-color: var(--line-dark-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.section--ink .btn--ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--surface); }

.btn--ink { background: var(--ink); color: var(--surface); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(11, 11, 12, 0.32); }

.btn--small { padding: 10px 16px; font-size: 13px; }
.btn--large { padding: 18px 28px; font-size: 15px; }

.btn__arrow { transition: transform 0.25s ease; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Text-link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: gap 0.2s ease, color 0.2s ease;
}
.section--ink .link-arrow { color: var(--surface); }
.link-arrow:hover { gap: 14px; color: var(--amber-deep); border-color: var(--amber-deep); }
.section--ink .link-arrow:hover { color: var(--amber); border-color: var(--amber); }

/* ================================================================
   Header
   ============================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface);
    border-bottom: 1px solid var(--line-light);
    transition: box-shadow 0.25s ease;
}

.header-meta {
    background: var(--ink);
    color: var(--surface);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
}
.header-meta__inner {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 8px var(--shell-pad);
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-meta__divider { opacity: 0.35; }
.header-meta__spacer { flex: 1; }
.header-meta__phone:hover { color: var(--amber); }
.header-meta__lang [aria-current] { color: var(--amber); }
.header-meta__lang a:hover { color: var(--amber); }
.header-meta__lang-soon { opacity: 0.5; cursor: not-allowed; }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.status-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 183, 0, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(245, 183, 0, 0); }
}

.header-bar {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 16px var(--shell-pad);
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    flex-shrink: 0;
}
.brand__logo {
    height: clamp(40px, 4vw, 52px);
    width: auto;
    display: block;
}
@media (max-width: 600px) {
    .brand__logo { height: 36px; }
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}
.nav__item {
    position: relative;
}
.nav__link {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover { background: var(--surface-2); color: var(--ink); }
.nav__link--active { color: var(--ink); }
.nav__link--active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}
.nav__chev {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
    opacity: 0.6;
}
.nav__item:hover .nav__chev { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--surface);
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 12px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__drop-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}
.nav__drop-link:hover { background: var(--surface-2); }
.nav__drop-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--amber-soft);
    color: var(--amber-deep);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
}
.nav__drop-icon svg { width: 18px; height: 18px; }
.nav__drop-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: block;
}
.nav__drop-desc {
    font-size: 12px;
    color: var(--steel-2);
    margin-top: 2px;
    line-height: 1.4;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); }

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px var(--shell-pad);
    border-top: 1px solid var(--line-light);
    gap: 4px;
    background: var(--surface);
}
.mobile-nav a {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line-light);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav__phone {
    font-family: var(--f-mono);
    font-size: 14px;
    color: var(--amber-deep);
    margin-top: 8px;
}
.mobile-nav.is-open { display: flex; }

/* ================================================================
   Hero (homepage)
   ============================================================== */

.hero {
    background: var(--ink);
    color: var(--surface);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    padding: clamp(24px, 3vw, 40px) 0;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(245, 183, 0, 0.12), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(245, 183, 0, 0.06), transparent 50%);
    z-index: -1;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 30%, transparent 75%);
    z-index: -1;
    opacity: 0.55;
}

.hero__shell {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 var(--shell-pad);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
    width: 100%;
}
.hero__content {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.6vh, 20px);
}
.hero__eyebrow {
    color: var(--amber);
    margin-bottom: 4px;
}
.hero__eyebrow::before { background: var(--amber); }
.hero__headline {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(40px, min(6.5vw, 11.5vh), 96px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--surface);
}
.hero__headline em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    letter-spacing: -0.005em;
}
.hero__sub {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    max-width: 54ch;
}
.hero__sub strong { color: var(--surface); font-weight: 500; }
.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero__quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 4px;
}
.hero__quick-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    backdrop-filter: blur(8px);
}
.hero__quick-num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--amber);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero__quick-label {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    line-height: 1.3;
}
@media (max-width: 700px) {
    .hero__quick { grid-template-columns: 1fr 1fr; }
}

/* Hero artwork — abstract logistics composition */
.hero__art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: min(480px, 60vh);
    width: 100%;
    margin-left: auto;
}
.hero__art-frame {
    position: absolute;
    inset: 0;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(245, 183, 0, 0.04), transparent 60%);
}
.hero__art-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}
/* Subtle "live network" badge */
.hero__art-region {
    position: absolute;
    top: 20px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border: 1px solid var(--line-dark-strong);
    border-radius: 999px;
    background: rgba(11, 11, 12, 0.5);
    backdrop-filter: blur(8px);
    z-index: 4;
}
.hero__art-region-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

/* Route SVG layer */
.hero__art-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.hero__art-route {
    fill: none;
    stroke: rgba(245, 183, 0, 0.45);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 6 6;
    animation: dash 6s linear infinite;
}
.hero__art-route-pulse {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 60 380;
    animation: route-travel 5s linear infinite;
}
@keyframes dash {
    to { stroke-dashoffset: -120; }
}
@keyframes route-travel {
    from { stroke-dashoffset: 440; }
    to { stroke-dashoffset: 0; }
}

/* City pins */
.hero__art-pin {
    position: absolute;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 3;
    pointer-events: auto;
}
.hero__art-pin--jeddah { top: 53%; left: 14%; }
.hero__art-pin--riyadh { top: 47%; left: 50%; }
.hero__art-pin--dammam { top: 32%; left: 83%; }

.hero__art-pin-dot {
    position: absolute;
    inset: 8px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 183, 0, 0.6);
    transition: inset 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.hero__art-pin-ring {
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--amber);
    border-radius: 50%;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Continuous outward-pulse ring for the active pin */
.hero__art-pin::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--amber);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}
.hero__art-pin.is-active::before {
    animation: ring-out 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
@keyframes ring-out {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0; transform: scale(2.6); }
}

/* Pin labels */
.hero__art-pin-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
    opacity: 0.75;
}
.hero__art-pin-label strong {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--surface);
    letter-spacing: -0.02em;
}
.hero__art-pin-label span {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 3px;
}

/* Label placement variants */
.hero__art-pin-label--right { left: calc(100% + 12px); top: 50%; transform: translateY(-50%); }
.hero__art-pin-label--left  { right: calc(100% + 12px); top: 50%; transform: translateY(-50%); text-align: right; align-items: flex-end; }
.hero__art-pin-label--top   { left: 50%; bottom: calc(100% + 14px); transform: translateX(-50%); align-items: center; text-align: center; }

/* Active / hover styling */
.hero__art-pin.is-active .hero__art-pin-dot,
.hero__art-pin:hover .hero__art-pin-dot {
    inset: 6px;
    box-shadow: 0 0 0 6px rgba(245, 183, 0, 0.18);
}
.hero__art-pin.is-active .hero__art-pin-ring,
.hero__art-pin:hover .hero__art-pin-ring {
    opacity: 1;
    transform: scale(1.05);
}
.hero__art-pin.is-active .hero__art-pin-label,
.hero__art-pin:hover .hero__art-pin-label {
    opacity: 1;
}
.hero__art-pin.is-active .hero__art-pin-label strong,
.hero__art-pin:hover .hero__art-pin-label strong {
    color: var(--amber);
}
/* Reposition label slightly on active to feel "alive" */
.hero__art-pin.is-active .hero__art-pin-label--right { transform: translate(4px, -50%); }
.hero__art-pin.is-active .hero__art-pin-label--left  { transform: translate(-4px, -50%); }
.hero__art-pin.is-active .hero__art-pin-label--top   { transform: translate(-50%, -4px); }

/* Tighter sizing on smaller previews */
@media (max-width: 900px) {
    .hero__art-pin-label strong { font-size: 15px; }
    .hero__art-pin-label span { font-size: 9px; }
    .hero__art-region { font-size: 9px; padding: 5px 10px; }
}
.hero__art-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 16px 20px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
}
.hero__art-card-icon {
    width: 40px;
    height: 40px;
    background: var(--amber);
    color: var(--ink);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hero__art-card-text { flex: 1; line-height: 1.3; }
.hero__art-card-title { font-weight: 600; font-size: 14px; color: var(--surface); }
.hero__art-card-meta { font-family: var(--f-mono); font-size: 11px; color: rgba(255, 255, 255, 0.55); margin-top: 2px; letter-spacing: 0.05em; }

/* Operating ticker */
.ticker {
    background: var(--amber);
    color: var(--ink);
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
.ticker__track {
    display: flex;
    gap: 48px;
    padding: 14px 0;
    white-space: nowrap;
    animation: ticker 60s linear infinite;
    width: max-content;
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.005em;
}
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 48px;
}
.ticker__item::after {
    content: "✦";
    color: var(--ink);
    margin-left: 12px;
    font-size: 14px;
    opacity: 0.7;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================================================================
   Brand video showcase
   ============================================================== */

.showcase {
    background: var(--ink);
    color: var(--surface);
    padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 112px);
    position: relative;
    overflow: hidden;
}
.showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(245, 183, 0, 0.10), transparent 55%);
    pointer-events: none;
}
.showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    z-index: 1;
}
.showcase__text { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.showcase__title { color: var(--surface); margin: 4px 0 0; }
.showcase__lede {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 56ch;
}
.showcase__points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.showcase__points li {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}
.showcase__points li::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--amber);
    align-self: center;
    margin-top: 0;
}

.showcase__player {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 183, 0, 0.05);
    aspect-ratio: 16 / 9;
}
.showcase__player-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    color: inherit;
    font: inherit;
    display: block;
}
.showcase__player-trigger:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: -2px;
}
.showcase__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
/* Centered expand affordance — pulses softly to invite clicks */
.showcase__expand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--amber);
    color: var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 32px -8px rgba(245, 183, 0, 0.55), 0 0 0 0 rgba(245, 183, 0, 0.6);
    animation: expand-pulse 2.4s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}
.showcase__expand svg {
    width: 28px;
    height: 28px;
    margin-left: 4px; /* optical centering of the play triangle */
}
@keyframes expand-pulse {
    0%, 100% { box-shadow: 0 12px 32px -8px rgba(245, 183, 0, 0.55), 0 0 0 0 rgba(245, 183, 0, 0.5); }
    50% { box-shadow: 0 12px 32px -8px rgba(245, 183, 0, 0.55), 0 0 0 18px rgba(245, 183, 0, 0); }
}
.showcase__player-trigger:hover .showcase__expand,
.showcase__player-trigger:focus-visible .showcase__expand {
    transform: translate(-50%, -50%) scale(1.08);
}
.showcase__hint {
    position: absolute;
    top: calc(50% + 56px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--surface);
    padding: 6px 12px;
    background: rgba(11, 11, 12, 0.6);
    border-radius: 999px;
    border: 1px solid var(--line-dark-strong);
    backdrop-filter: blur(8px);
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
}
.showcase__corner {
    position: absolute;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--surface);
    background: rgba(11, 11, 12, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line-dark-strong);
    padding: 8px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
}
.showcase__corner--tl { top: 20px; left: 20px; }
.showcase__corner--tr { top: 20px; right: 20px; color: var(--amber); border-color: rgba(245, 183, 0, 0.4); }
.showcase__corner--br { bottom: 20px; right: 20px; color: rgba(255, 255, 255, 0.85); }
.showcase__rec {
    width: 8px;
    height: 8px;
    background: #FF3B30;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6);
    animation: rec-pulse 1.6s ease-in-out infinite;
}
@keyframes rec-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(255, 59, 48, 0); }
}
.showcase__time {
    font-variant-numeric: tabular-nums;
    color: var(--amber);
}

.showcase__sound {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--ink);
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
    box-shadow: 0 8px 20px -8px rgba(245, 183, 0, 0.6);
}
.showcase__sound:hover { background: var(--amber-2); transform: scale(1.06); }
.showcase__sound-icon { width: 18px; height: 18px; }

@media (max-width: 900px) {
    .showcase__grid { grid-template-columns: 1fr; gap: 32px; }
    .showcase__corner--tl span:not(.showcase__rec) { display: none; }
    .showcase__corner--br { font-size: 10px; padding: 6px 10px; }
    .showcase__expand { width: 60px; height: 60px; }
    .showcase__expand svg { width: 22px; height: 22px; }
    .showcase__hint { top: calc(50% + 48px); }
}
@media (max-width: 600px) {
    .showcase__corner { padding: 6px 10px; font-size: 10px; }
    .showcase__hint { display: none; }
}

/* ================================================================
   Lightbox
   ============================================================== */

.lightbox {
    padding: 0;
    border: 0;
    background: transparent;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    color: var(--surface);
}
.lightbox::backdrop {
    background: rgba(11, 11, 12, 0.92);
    backdrop-filter: blur(6px);
}
.lightbox[open] {
    display: grid;
    place-items: center;
    animation: lightbox-in 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes lightbox-in {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}
.lightbox__video {
    width: min(92vw, 1280px);
    max-height: 86vh;
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: 0 40px 80px -16px rgba(0, 0, 0, 0.6);
    display: block;
}
.lightbox__close {
    position: fixed;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.lightbox__close:hover { background: var(--amber); transform: rotate(90deg); }
.lightbox__close:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* prevent body scroll while open */
body:has(.lightbox[open]) { overflow: hidden; }

/* ================================================================
   Page hero (inner pages)
   ============================================================== */

.page-hero {
    background: var(--ink);
    color: var(--surface);
    padding: clamp(96px, 11vw, 168px) 0 clamp(64px, 8vw, 112px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 75% 30%, rgba(245, 183, 0, 0.15), transparent 50%);
    z-index: -1;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000 20%, transparent 70%);
    z-index: -1;
    opacity: 0.5;
}
.page-hero__shell {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 var(--shell-pad);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: end;
}
.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs__sep { opacity: 0.5; }
.breadcrumbs__current { color: var(--amber); }

.page-hero h1 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    color: var(--surface);
}
.page-hero h1 em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
}
.page-hero__sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: rgba(255, 255, 255, 0.72);
    max-width: 56ch;
    line-height: 1.55;
    margin: 0;
}

.page-hero__meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 8px;
}
.page-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.page-hero__meta-label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.page-hero__meta-value {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: -0.01em;
}

@media (max-width: 900px) {
    .page-hero__shell { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================================
   Service cards
   ============================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-grid--2 { grid-template-columns: repeat(2, 1fr); }
.service-grid--4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
    background: var(--surface);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--amber-soft);
    color: var(--amber-deep);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}
.service-card:hover .service-card__icon {
    background: var(--amber);
    color: var(--ink);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__num {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--steel-2);
    position: absolute;
    top: 32px;
    right: 32px;
}

.service-card__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.018em;
    margin: 8px 0 0;
    color: var(--ink);
}

.service-card__desc {
    color: var(--steel);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--line-light-strong);
}
.service-card__list li {
    font-size: 14px;
    color: var(--steel);
    padding-left: 22px;
    position: relative;
    line-height: 1.45;
}
.service-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 1px;
    background: var(--amber);
}

.service-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    transition: gap 0.2s ease;
}
.service-card__cta:hover { gap: 12px; color: var(--amber-deep); }

/* Dark variant */
.service-card--dark {
    background: var(--ink-2);
    border-color: var(--line-dark);
    color: var(--surface);
}
.service-card--dark:hover { border-color: var(--amber); }
.service-card--dark .service-card__title { color: var(--surface); }
.service-card--dark .service-card__desc { color: rgba(255, 255, 255, 0.7); }
.service-card--dark .service-card__list { border-top-color: var(--line-dark); }
.service-card--dark .service-card__list li { color: rgba(255, 255, 255, 0.7); }
.service-card--dark .service-card__cta { color: var(--surface); }
.service-card--dark .service-card__cta:hover { color: var(--amber); }

/* ================================================================
   Section header (eyebrow + title + lede)
   ============================================================== */

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head--center {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-head--single {
    grid-template-columns: 1fr;
}
.section-head h2 {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 14px 0 0;
}
.section-head h2 em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    letter-spacing: -0.005em;
}
.section-head__lede {
    color: var(--steel);
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
}
.section--ink .section-head h2 { color: var(--surface); }
.section--ink .section-head__lede { color: rgba(255, 255, 255, 0.72); }

/* ================================================================
   Why-us / feature blocks
   ============================================================== */

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.why-grid__visual {
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, var(--ink-2), var(--ink));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-light);
}
.why-grid__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}
.why-grid__visual-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--amber);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}
.why-grid__visual-stat {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: var(--surface);
}
.why-grid__visual-stat-num {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--amber);
}
.why-grid__visual-stat-label {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

/* Photo variant — replaces the gradient panel with a real image */
.why-grid__visual--photo { background: #111; }
.why-grid__visual--photo::before {
    background-image:
        linear-gradient(180deg, rgba(15,15,18,0) 0%, rgba(15,15,18,0.15) 45%, rgba(15,15,18,0.78) 100%);
    background-size: auto;
    z-index: 2;
}
.why-grid__visual__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.why-grid__visual--photo .why-grid__visual-tag,
.why-grid__visual--photo .why-grid__visual-stat { z-index: 3; }
.why-grid__visual--photo .why-grid__visual-stat-num {
    font-size: clamp(36px, 4.6vw, 56px);
    color: var(--surface);
    line-height: 1;
}
.why-grid__visual--photo .why-grid__visual-stat-label { color: rgba(255,255,255,0.85); }

/* Fleet showcase — two-up image strip */
.fleet-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
}
.fleet-strip__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-light);
    background: #111;
}
.fleet-strip__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.fleet-strip__item:hover img { transform: scale(1.03); }
.fleet-strip__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,18,0) 50%, rgba(15,15,18,0.7) 100%);
}
.fleet-strip__caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    color: var(--surface);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.005em;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.fleet-strip__caption small {
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
}
@media (max-width: 720px) {
    .fleet-strip { grid-template-columns: 1fr; }
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: var(--surface);
    transition: all 0.3s ease;
}
.why-item:hover {
    border-color: var(--amber);
    background: linear-gradient(180deg, var(--surface), var(--amber-soft));
}
.why-item__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: var(--amber);
    display: grid;
    place-items: center;
}
.why-item__icon svg { width: 22px; height: 22px; }
.why-item h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.why-item p {
    color: var(--steel);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Stats strip
   ============================================================== */

.stats {
    background: var(--surface-2);
    padding: clamp(56px, 7vw, 88px) 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}
.stats--ink {
    background: var(--ink);
    color: var(--surface);
    border-color: var(--line-dark);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat {
    padding-block: 0;
    padding-inline: 32px;
    border-inline-start: 1px solid var(--line-light-strong);
}
.stats--ink .stat { border-inline-start-color: var(--line-dark); }
.stat:first-child { border-inline-start: none; padding-inline-start: 0; }
.stat:last-child { padding-inline-end: 0; }
.stat__num {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.stats--ink .stat__num { color: var(--surface); }
.stat__num em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    font-size: 0.5em;
    letter-spacing: 0;
}
.stat__label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--steel-2);
    margin-top: 14px;
}
.stats--ink .stat__label { color: rgba(255, 255, 255, 0.55); }
.stat__hint {
    font-size: 14px;
    color: var(--steel);
    margin-top: 4px;
    line-height: 1.4;
}
.stats--ink .stat__hint { color: rgba(255, 255, 255, 0.7); }

/* ================================================================
   Vision / Mission
   ============================================================== */

.direction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.direction-card {
    background: var(--surface);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 4vw, 56px);
    position: relative;
}
.direction-card--ink {
    background: var(--ink-2);
    border-color: var(--line-dark);
    color: var(--surface);
}
.direction-card__label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 24px;
    display: inline-block;
}
.direction-card--ink .direction-card__label { color: var(--amber); }
.direction-card__quote {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.35;
    margin: 0;
    font-weight: 400;
}
.direction-card__quote em {
    font-style: italic;
    color: var(--amber-deep);
}
.direction-card--ink .direction-card__quote em { color: var(--amber); }

@media (max-width: 900px) { .direction-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FAQ accordion
   ============================================================== */

.faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line-light);
}
.faq__item {
    border-bottom: 1px solid var(--line-light);
}
.faq__btn {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 22px);
    letter-spacing: -0.012em;
    color: var(--ink);
    transition: color 0.2s ease;
}
.faq__btn:hover { color: var(--amber-deep); }
.faq__sign {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-light-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq__sign::before, .faq__sign::after {
    content: "";
    position: absolute;
    background: var(--ink);
    transition: transform 0.3s ease;
}
.faq__sign::before { width: 12px; height: 1.5px; }
.faq__sign::after { width: 1.5px; height: 12px; }
.faq__item[open] .faq__sign { background: var(--amber); border-color: var(--amber); }
.faq__item[open] .faq__sign::after { transform: rotate(90deg); }
.faq__panel {
    padding: 0 0 24px;
    max-width: 80ch;
    color: var(--steel);
    font-size: 16px;
    line-height: 1.65;
}

/* ================================================================
   Clients
   ============================================================== */

.clients-wall {
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
}
.clients-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-bottom: 1px solid var(--line-light);
}
.clients-row:last-child { border-bottom: none; }
.client {
    padding: 28px 16px;
    border-right: 1px solid var(--line-light);
    text-align: center;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.005em;
    color: var(--steel);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    line-height: 1.15;
}
.client:last-child { border-right: none; }
.client:hover { color: var(--ink); background: var(--surface-2); }
.client em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: inherit;
}
.client small {
    display: block;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--amber-deep);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
}
.client--accent { background: var(--ink); color: var(--surface) !important; }
.client--ghost { color: var(--amber-deep); }
.client--logo { padding: 20px 18px; }
.client--logo img {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.client--logo:hover img {
    transform: scale(1.04);
}
.clients-row--tail { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
    .clients-row--tail { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .clients-row--tail { grid-template-columns: repeat(2, 1fr); }
}

/* Marquee variant for homepage preview */
.clients-marquee {
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: var(--surface);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.clients-marquee__track {
    display: flex;
    gap: 64px;
    animation: ticker 40s linear infinite;
    width: max-content;
    align-items: center;
}
.clients-marquee__item {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--steel);
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.clients-marquee__item em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: inherit;
}
.clients-marquee__item--logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.clients-marquee__item--logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.clients-marquee__item--logo:hover img { transform: scale(1.05); }

/* ================================================================
   Featured project (Ala Bali)
   ============================================================== */

.featured {
    background: var(--ink);
    color: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 72px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    overflow: hidden;
}
.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 20%, rgba(245,183,0,0.18), transparent 50%),
        repeating-linear-gradient(135deg, transparent 0 28px, rgba(245, 183, 0, 0.03) 28px 29px);
    pointer-events: none;
}
.featured__body { position: relative; z-index: 1; }
.featured__label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-block;
    margin-bottom: 20px;
}
.featured__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    color: var(--surface);
}
.featured__title em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
}
.featured__sub {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 19px;
    color: var(--amber);
    margin: 0 0 16px;
    line-height: 1.4;
}
.featured__desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 24px;
    max-width: 60ch;
}
.featured__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.featured__tags span {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 10px;
    border: 1px solid var(--line-dark-strong);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
}
.featured__visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
    border: 1px solid var(--line-dark);
    z-index: 1;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.featured__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(245,183,0,0.15), transparent 60%);
}
.featured__visual-mark {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 88px);
    color: var(--surface);
    letter-spacing: -0.03em;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.featured__visual-mark em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    display: block;
    font-size: 1.1em;
    margin-top: 4px;
}
.featured__visual-domain {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--amber);
    z-index: 1;
}

@media (max-width: 900px) {
    .featured { grid-template-columns: 1fr; }
}

/* ================================================================
   CTA banner
   ============================================================== */

.cta-banner {
    background: var(--ink);
    color: var(--surface);
    padding: clamp(72px, 10vw, 144px) 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(245,183,0,0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(245,183,0,0.08), transparent 50%);
}
.cta-banner__shell {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner__eyebrow {
    color: var(--amber);
    margin-bottom: 24px;
}
.cta-banner__eyebrow::before { background: var(--amber); }
.cta-banner__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    max-width: 18ch;
    margin: 0 auto 24px;
}
.cta-banner__title em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
}
.cta-banner__sub {
    color: rgba(255, 255, 255, 0.72);
    max-width: 56ch;
    margin: 0 auto 40px;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.55;
}
.cta-banner__actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ================================================================
   Footer
   ============================================================== */

.site-footer {
    background: var(--ink-2);
    color: var(--surface);
    padding: clamp(56px, 6vw, 88px) var(--shell-pad) 0;
    position: relative;
    overflow: hidden;
}
.footer-grid {
    max-width: var(--shell-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-dark);
    position: relative;
    z-index: 1;
}
.footer-col p, .footer-col address { color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.7; margin: 0; }
.footer-col a:hover { color: var(--amber); }
.footer-brand {
    display: inline-block;
    margin-bottom: 24px;
}
.footer-brand__logo {
    height: 56px;
    width: auto;
    display: block;
    /* Recolor black wordmark to white for dark footer; amber + figure preserved as much as possible */
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity 0.2s ease;
}
.footer-brand:hover .footer-brand__logo { opacity: 1; }
.footer-tagline {
    font-family: var(--f-display);
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--surface);
    font-weight: 600;
    letter-spacing: -0.015em;
}
.footer-tagline em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
}
.footer-heading {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin: 0 0 16px;
    font-weight: 500;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list a { font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.footer-meta { color: rgba(255, 255, 255, 0.7); font-size: 12px; font-family: var(--f-mono); display: inline-block; margin-top: 8px; }

.footer-bottom {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.footer-watermark {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(120px, 22vw, 380px);
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ================================================================
   Contact page
   ============================================================== */

.contact-body { background: var(--surface); padding: var(--section-y) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 96px);
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s ease;
    background: var(--surface);
}
.contact-card:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.contact-card h3 {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin: 0 0 8px;
    font-weight: 500;
}
.contact-card p, .contact-card a {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.contact-card .contact-card__alt {
    font-family: var(--f-body);
    font-size: 14px;
    color: var(--steel);
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 6px;
    display: block;
}

.contact-form {
    background: var(--surface-2);
    padding: clamp(32px, 4vw, 48px);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
}
.contact-form__head { margin-bottom: 28px; }
.contact-form__head h2 {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.4vw, 44px);
    margin: 12px 0 0;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.contact-form__head h2 em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-2);
    font-weight: 500;
}
.field input, .field textarea, .field select {
    font: inherit;
    font-family: var(--f-body);
    background: var(--surface);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--ink);
    transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px var(--amber-soft);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.5;
    border: 1px solid transparent;
}
.form-alert--success {
    background: rgba(16, 122, 60, 0.08);
    border-color: rgba(16, 122, 60, 0.22);
    color: #0e6b3a;
}
.form-alert--error {
    background: rgba(176, 36, 36, 0.06);
    border-color: rgba(176, 36, 36, 0.22);
    color: #8e1d1d;
}
.form-alert ul { margin: 6px 0 0; padding-left: 20px; }
.form-alert strong { display: block; margin-bottom: 2px; }

.contact-form__legal {
    margin: 14px 0 0;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--steel-2);
    line-height: 1.6;
}
.contact-form__legal a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contact-form__legal a:hover { color: var(--ink); }

/* Hide the floating reCAPTCHA v3 badge — disclosure is shown inline in the form. */
.grecaptcha-badge { visibility: hidden !important; }

/* ================================================================
   Arabic / RTL
   ============================================================== */

[lang="ar"] {
    --f-display: "Tajawal", "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
    --f-body: "Tajawal", "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
    --f-serif: "Tajawal", Georgia, serif;
}
[lang="ar"] body { font-family: var(--f-body); }
[lang="ar"] em,
[lang="ar"] .serif-em,
[lang="ar"] h1 em,
[lang="ar"] h2 em,
[lang="ar"] h3 em,
[lang="ar"] .hero__headline em,
[lang="ar"] .cta-banner__title em,
[lang="ar"] .footer-tagline em {
    font-family: var(--f-display);
    font-style: normal;
    font-weight: 800;
    color: var(--amber);
}
[lang="ar"] [lang="en"] {
    font-family: "Sora", "Hanken Grotesk", sans-serif;
}
[lang="ar"] [dir="ltr"] {
    direction: ltr;
    unicode-bidi: isolate;
}

/* Flip arrow glyphs visually so → reads as ← in RTL */
[dir="rtl"] .btn__arrow { display: inline-block; transform: scaleX(-1); }

/* Mirror header bar items so logo lands on the visual right and CTA/hamburger on the left edge */
[dir="rtl"] .header-bar > .btn--primary { margin-left: 0; margin-right: auto; }

/* The header-meta bar has a spacer pushing items right; in RTL we want it the same visually */
[dir="rtl"] .header-meta__spacer { margin-left: 0; margin-right: auto; }

/* Hero quick-stats grid — keep number/label alignment readable in RTL */
[dir="rtl"] .hero__quick-item { text-align: right; }

/* Service-card cta arrow */
[dir="rtl"] .service-card__cta span[aria-hidden] { display: inline-block; transform: scaleX(-1); }
[dir="rtl"] .link-arrow span[aria-hidden] { display: inline-block; transform: scaleX(-1); }

/* Showcase corners — top-left/top-right swap visually because of dir="rtl",
   but we want SF / 2020 etc. to stay where they were on the player. Force LTR within the player. */
[dir="rtl"] .showcase__player-trigger { direction: ltr; }
[dir="rtl"] .showcase__hint,
[dir="rtl"] .showcase__corner--tl { direction: rtl; }

/* Network art has absolute pins keyed to LTR coords — force LTR so layout doesn't mirror */
[dir="rtl"] .hero__art { direction: ltr; }
[dir="rtl"] .hero__art-card { direction: rtl; text-align: right; }

/* Ticker scrolls leftward via CSS transforms; in RTL keep the same scroll direction */
[dir="rtl"] .ticker__track { direction: ltr; }

/* Lists — Arabic prefers right-aligned bullets natively. Override default ::marker offset only if needed */
[dir="rtl"] .footer-list { padding-right: 0; }
[dir="rtl"] .showcase__points { padding-right: 0; }

/* Breadcrumbs separator stays as-is; no change needed.
   Forms — labels and inputs flip naturally with dir="rtl" on root. */

/* Why-grid visual — the gradient + tag/stat overlay positions are LTR-coord based.
   In RTL, swap the corners so tag stays top-start and stat stays bottom-start visually. */
[dir="rtl"] .why-grid__visual-tag { left: auto; right: 24px; }
[dir="rtl"] .why-grid__visual-stat { left: 32px; right: 32px; }

/* Featured project visual */
[dir="rtl"] .featured__visual { direction: ltr; }

/* ================================================================
   Animations / reveals
   ============================================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .ticker__track, .clients-marquee__track { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .status-dot, .hero__art-pin { animation: none; }
    .hero__art-route path { animation: none; }
}

/* ================================================================
   Responsive
   ============================================================== */

@media (max-width: 1100px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .header-bar > .btn--primary { margin-left: auto; }
    .header-meta__inner { flex-wrap: wrap; gap: 6px 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col--brand { grid-column: span 2; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hero { min-height: 0; padding: clamp(56px, 9vw, 96px) 0; }
    .hero__shell { grid-template-columns: 1fr; gap: 40px; }
    .hero__art { max-width: min(380px, 55vh); margin: 0 auto; }
    .section-head { grid-template-columns: 1fr; gap: 16px; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
    .stat { padding-block: 16px; padding-inline: 0; border-inline-start: none; border-top: 1px solid var(--line-light-strong); }
    .stats--ink .stat { border-top-color: var(--line-dark); }
    .stat:first-child { border-top: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-col--brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
    .clients-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    :root { --header-h: 72px; }
    .header-meta { display: none; }
    .service-grid, .service-grid--2, .service-grid--4 { grid-template-columns: 1fr; }
    .clients-row { grid-template-columns: repeat(2, 1fr); }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .stats__grid { grid-template-columns: 1fr; }
}
