:root {
    --bg: #080808;
    --bg-soft: #101010;
    --bg-elevated: #171717;
    --paper: #efe7dc;
    --paper-soft: #f6f0e8;
    --paper-line: rgba(18, 15, 12, 0.12);
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.1);
    --text: #f7f3ed;
    --text-muted: rgba(247, 243, 237, 0.68);
    --dark-text: #171310;
    --dark-muted: rgba(23, 19, 16, 0.66);
    --accent: #d5a24b;
    --accent-soft: #f2c978;
    --accent-deep: #8a6320;
    --border: rgba(255, 255, 255, 0.12);
    --radius-sm: 18px;
    --radius: 28px;
    --radius-lg: 40px;
    --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.34);
    --shadow-card: 0 18px 42px rgba(0, 0, 0, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Manrope", sans-serif;
    line-height: 1.55;
}

section[id] {
    scroll-margin-top: 108px;
}

body.lang-ar {
    font-family: "Cairo", "Manrope", sans-serif;
}

main {
    overflow: clip;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1280px, calc(100vw - 48px));
    margin: 0 auto;
}

.section-padding {
    padding: clamp(76px, 8vw, 136px) 0;
}

.paper-stage {
    color: var(--dark-text);
    background:
        radial-gradient(circle at top right, rgba(213, 162, 75, 0.14), transparent 24%),
        linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.offerings-stage,
.process-stage,
.contact-stage,
.cta-stage {
    background: var(--bg-soft);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.7), rgba(7, 7, 7, 0));
    backdrop-filter: blur(0);
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(16px);
}

.header-row {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    padding: 4px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    object-fit: contain;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-text {
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-subtext {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    position: relative;
    padding: 4px 0;
    color: rgba(247, 243, 237, 0.74);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.header-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -6px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.header-nav a:hover {
    color: var(--text);
}

.header-nav a:hover::after {
    transform: scaleX(1);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.lang-switch a {
    min-width: 38px;
    padding: 7px 10px;
    border-radius: 999px;
    text-align: center;
    color: rgba(247, 243, 237, 0.7);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.lang-switch a.active {
    color: #131313;
    background: var(--accent-soft);
}

.nav-toggle {
    display: none;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.78rem;
}

.btn-primary {
    color: #16110c;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: 0 14px 32px rgba(213, 162, 75, 0.24);
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.paper-stage .btn-ghost,
.paper-stage .text-link {
    color: var(--dark-text);
    border-color: rgba(23, 19, 16, 0.16);
    background: rgba(23, 19, 16, 0.03);
}

.message-wrap {
    position: relative;
    z-index: 20;
    padding-top: 96px;
}

.message-stack {
    padding-top: 14px;
}

.message-banner {
    padding: 15px 18px;
    border-radius: 18px;
    color: var(--text);
    background: rgba(213, 162, 75, 0.14);
    border: 1px solid rgba(213, 162, 75, 0.18);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: clip;
}

.hero-bg,
.hero-gridlines {
    position: absolute;
    inset: 0;
}

.hero-bg {
    inset: -3% -4% 0;
    background:
        linear-gradient(96deg, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.72) 36%, rgba(6, 6, 6, 0.46) 66%, rgba(6, 6, 6, 0.62) 100%),
        radial-gradient(circle at 78% 18%, rgba(213, 162, 75, 0.2), transparent 18%),
        radial-gradient(circle at 18% 76%, rgba(213, 162, 75, 0.14), transparent 18%),
        url("../img/hero-background.jpg") center center / cover no-repeat;
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
    transform-origin: center top;
    will-change: transform;
}

.hero-gridlines {
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1));
}

.hero-shell {
    position: relative;
    z-index: 1;
    padding-top: 126px;
    padding-bottom: 38px;
}

.hero-marquee {
    margin-bottom: 34px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-marquee__track {
    display: flex;
    align-items: center;
    gap: 42px;
    width: max-content;
    min-height: 58px;
    white-space: nowrap;
    animation: hero-marquee 30s linear infinite;
}

.hero-marquee__track span {
    position: relative;
    color: rgba(247, 243, 237, 0.72);
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-marquee__track span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -23px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateY(-50%);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.02fr);
    gap: 56px;
    align-items: end;
}

.hero-code {
    margin: 0 0 18px;
    color: rgba(247, 243, 237, 0.56);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.about-intro h2,
.section-head h2,
.split-title,
.process-intro h2,
.cta-band h2,
.contact-map-card__info h3,
.instagram-feature__body h3,
.instagram-profile h3,
.instagram-card h3,
.project-panel h3,
.project-row__body h3,
.process-row__body h3,
.contact-card h3,
.form-card h3,
.site-footer h4 {
    margin: 0;
    font-family: "Space Grotesk", "Sora", sans-serif;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-copy h1 {
    max-width: 8.4ch;
    font-size: clamp(2.7rem, 6vw, 5.9rem);
    line-height: 0.94;
}

body.lang-ru .hero-copy h1 {
    max-width: 8.1ch;
    font-size: clamp(2.4rem, 5.1vw, 5rem);
    line-height: 0.97;
}

.hero-text,
.section-head p,
.about-lead,
.hero-stat p,
.metric-card p,
.value-row__body p,
.offering-card p,
.project-panel p,
.project-row__body p,
.process-row__body p,
.instagram-profile p,
.instagram-card p,
.instagram-feature__body p,
.contact-card p,
.form-card p,
.contact-map-card__address,
.footer-copy,
.site-footer a,
.site-footer span {
    color: var(--text-muted);
}

.paper-stage .section-head p,
.paper-stage .about-lead,
.paper-stage .metric-card p,
.paper-stage .value-row__body p,
.paper-stage .project-panel p,
.paper-stage .project-row__body p,
.paper-stage .instagram-profile p,
.paper-stage .instagram-card p,
.paper-stage .instagram-feature__body p,
.paper-stage .form-card p,
.paper-stage .contact-map-card__address,
.paper-stage .site-footer a,
.paper-stage .site-footer span {
    color: var(--dark-muted);
}

.hero-text {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: clamp(1.02rem, 1.8vw, 1.16rem);
}

.hero-cta,
.instagram-links,
.contact-map-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta {
    margin-top: 30px;
}

.hero-stage {
    display: grid;
    gap: 14px;
}

.hero-stage__visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-stage__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.64)),
        linear-gradient(90deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.34));
    z-index: 1;
}

.hero-stage__visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius-lg) - 12px);
    z-index: 2;
}

.hero-stage__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stage__caption {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 3;
    width: min(100%, 360px);
    padding: 22px;
    border-radius: 24px;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stage__eyebrow {
    margin: 0 0 12px;
    color: var(--accent-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-stage__caption h3 {
    font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.hero-stage__stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-stat,
.metric-card {
    min-height: 154px;
    padding: 18px;
    border-radius: 24px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.metric-card {
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(23, 19, 16, 0.08);
}

.hero-stat__index,
.metric-card__index,
.offering-card__order,
.value-row__index,
.project-row__count,
.process-row__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-stat__index,
.offering-card__order {
    color: #18120d;
    background: var(--accent-soft);
}

.metric-card__index,
.value-row__index,
.project-row__count {
    color: var(--accent-deep);
    background: rgba(213, 162, 75, 0.18);
}

.process-row__index {
    color: #18120d;
    background: var(--accent);
}

.hero-stat h3,
.metric-card h3 {
    margin: 18px 0 10px;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.18rem;
    line-height: 1;
}

.hero-shortcuts {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hero-shortcut {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 120px;
    padding: 18px;
    border-radius: 24px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.24s ease, background 0.24s ease;
}

.hero-shortcut:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
}

.hero-shortcut span {
    color: rgba(247, 243, 237, 0.48);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.hero-shortcut strong {
    max-width: 12ch;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.02;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(34px, 4vw, 72px);
    align-items: start;
}

.project-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    gap: 28px;
    align-items: start;
}

.about-intro {
    position: static;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(38px, 4vw, 68px);
    align-items: start;
}

.process-intro {
    position: sticky;
    top: 116px;
}

.about-intro h2,
.process-intro h2,
.section-head h2,
.split-title,
.cta-band h2 {
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    line-height: 1.02;
}

.about-intro h2 {
    max-width: 7.8ch;
    font-size: clamp(1.9rem, 3.7vw, 3.9rem);
}

.process-intro h2 {
    max-width: 7ch;
    font-size: clamp(1.9rem, 3.8vw, 3.95rem);
}

.about-body,
.project-stream {
    display: grid;
    gap: 28px;
}

.about-lead {
    margin: 0;
    color: var(--dark-text);
    max-width: 42rem;
    font-size: clamp(1.14rem, 1.8vw, 1.46rem);
    line-height: 1.42;
}

.about-columns {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: start;
    padding-top: 6px;
}

.metric-stack,
.value-list,
.project-stream__list,
.process-list {
    display: grid;
    gap: 14px;
}

.value-row,
.project-row,
.process-row {
    display: grid;
    gap: 18px;
    padding: 24px 0;
}

.value-row,
.project-row {
    grid-template-columns: 78px minmax(0, 1fr);
    border-top: 1px solid var(--paper-line);
}

.process-row {
    grid-template-columns: 108px minmax(0, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.24s ease;
}

.process-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-row:hover {
    border-color: rgba(213, 162, 75, 0.28);
}

.value-row__body h3,
.project-row__body h3,
.process-row__body h3 {
    font-size: clamp(1.28rem, 1.8vw, 2rem);
}

.value-row__body p,
.project-row__body p,
.process-row__body p {
    margin: 12px 0 0;
}

.process-row__body p {
    max-width: 52ch;
}

.section-head {
    display: grid;
    gap: 18px;
}

.section-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: end;
}

.section-head p {
    margin: 0;
}

.offerings-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.offering-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 30px;
    background: #111111;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offering-card::before,
.offering-card::after {
    content: "";
    position: absolute;
    inset: 0;
}

.offering-card::before {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.offering-card::after {
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.7)),
        linear-gradient(130deg, rgba(6, 6, 6, 0.12), rgba(6, 6, 6, 0.62));
}

.offering-card:nth-child(1)::before {
    background-image: url("../img/hero-background.jpg");
}

.offering-card:nth-child(2)::before {
    background-image: url("../img/instagram/instagram-01.jpg");
}

.offering-card:nth-child(3)::before {
    background-image: url("../img/instagram/instagram-02.jpg");
}

.offering-card:nth-child(4)::before {
    background-image: url("../img/instagram/instagram-03.jpg");
}

.offering-card:nth-child(5)::before {
    background-image: url("../img/instagram/instagram-04.jpg");
}

.offering-card:nth-child(6)::before {
    background-image: url("../img/hero-background.jpg");
    background-position: 72% center;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.offering-card__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    padding: 26px;
}

.offering-card h3 {
    margin: 0;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: clamp(1.34rem, 2vw, 2.1rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.offering-card p {
    margin: 0;
}

.project-stage {
    position: relative;
}

.project-panel {
    position: sticky;
    top: 116px;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(23, 19, 16, 0.08);
    box-shadow: 0 16px 36px rgba(20, 16, 12, 0.1);
}

.project-panel__media {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 4 / 5;
}

.project-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-panel h3 {
    margin-top: 2px;
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
}

.project-panel p {
    margin: 16px 0 0;
}

.showcase-points {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-points span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--accent-deep);
    background: rgba(213, 162, 75, 0.16);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-stream__head {
    max-width: 780px;
}

.process-list {
    gap: 0;
}

.instagram-stage {
    position: relative;
}

.instagram-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 28px;
    align-items: start;
}

.instagram-feature,
.instagram-profile,
.instagram-card {
    display: block;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(23, 19, 16, 0.08);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 34px rgba(20, 16, 12, 0.1);
}

.instagram-feature__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.instagram-feature__media img,
.instagram-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-feature__body {
    padding: 24px 26px 28px;
}

.instagram-feature__body h3 {
    color: var(--dark-text);
    font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.instagram-feature__body p {
    margin: 14px 0 0;
}

.instagram-side {
    display: grid;
    gap: 16px;
}

.instagram-profile {
    padding: 28px;
    position: static;
}

.feature-icon,
.instagram-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--accent-deep);
    background: rgba(213, 162, 75, 0.18);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instagram-profile h3,
.instagram-card h3 {
    color: var(--dark-text);
    font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.instagram-profile h3 {
    margin-top: 18px;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.instagram-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.46fr) minmax(0, 0.54fr);
    align-items: stretch;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.instagram-card:hover,
.instagram-feature:hover {
    transform: translateY(-4px);
}

.instagram-card__media {
    min-height: 240px;
    height: 100%;
    aspect-ratio: auto;
}

.instagram-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 24px 24px;
}

.instagram-card__body h3 {
    margin-top: 14px;
    font-size: clamp(1.28rem, 1.8vw, 1.78rem);
    line-height: 1.02;
}

.instagram-card__body p {
    margin: 10px 0 0;
}

.instagram-note {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 19, 16, 0.08);
    font-size: 0.92rem;
}

.cta-band {
    padding: clamp(28px, 4vw, 40px);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at right top, rgba(213, 162, 75, 0.18), transparent 24%),
        linear-gradient(135deg, #171717, #0d0d0d);
    box-shadow: var(--shadow-xl);
}

.cta-band__body {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.cta-band h2 {
    max-width: 14ch;
    color: var(--text);
}

.contact-layout {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 18px;
}

.office-list {
    display: grid;
    gap: 14px;
}

.contact-card,
.form-card,
.contact-map-card {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
}

.contact-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.contact-card__label {
    margin: 0 0 8px;
    color: var(--accent-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-card__badge {
    padding: 7px 12px;
    border-radius: 999px;
    color: #141414;
    background: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-card a,
.text-link {
    display: block;
    color: var(--text);
    font-weight: 800;
}

.contact-muted {
    margin-bottom: 0;
}

.form-card,
.contact-map-card {
    color: var(--dark-text);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 240, 232, 0.96));
    border: 1px solid rgba(23, 19, 16, 0.08);
}

.form-card {
    padding: 26px;
}

.form-card h3 {
    font-size: clamp(1.6rem, 2.3vw, 2.6rem);
}

.lead-form {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    min-width: 0;
}

.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 800;
}

.form-control {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    color: var(--dark-text);
    background: #ffffff;
    border: 1px solid rgba(23, 19, 16, 0.12);
    border-radius: 18px;
}

textarea.form-control {
    min-height: 148px;
    padding-top: 14px;
    resize: vertical;
}

.form-actions {
    margin-top: 18px;
}

.errorlist {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    color: #a12f20;
    font-size: 0.84rem;
}

.contact-map-card {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 18px;
}

.contact-map-card__info {
    padding: 28px;
}

.contact-map-card__info h3 {
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

.contact-map-card__address {
    max-width: 34ch;
    margin: 14px 0 0;
    font-size: 1.02rem;
}

.contact-map-card__links {
    margin-top: 24px;
}

.contact-map-frame {
    min-height: 380px;
    background: #0d0d0d;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
    filter: saturate(0.88) contrast(1.02);
}

.site-footer {
    padding: 34px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #060606;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    gap: 24px;
}

.footer-copy {
    max-width: 40ch;
}

.site-footer h4 {
    font-size: 1rem;
    line-height: 1.08;
}

.site-footer a,
.site-footer span {
    display: block;
    margin-bottom: 8px;
}

[data-reveal] {
    opacity: 0;
    transition:
        opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]):not([data-reveal="scale"]):not([data-reveal="fade"]) {
    transform: translate3d(0, 18px, 0);
}

[data-reveal="left"] {
    transform: translate3d(-18px, 0, 0);
}

[data-reveal="right"] {
    transform: translate3d(18px, 0, 0);
}

[data-reveal="scale"] {
    transform: scale(0.985);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-bg,
    .hero-marquee__track,
    [data-reveal] {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    [data-reveal] {
        opacity: 1;
    }
}

@keyframes hero-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

html[dir="rtl"] .brand-copy,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .about-intro,
html[dir="rtl"] .about-body,
html[dir="rtl"] .section-head,
html[dir="rtl"] .project-stream,
html[dir="rtl"] .process-intro,
html[dir="rtl"] .instagram-feature__body,
html[dir="rtl"] .instagram-profile,
html[dir="rtl"] .instagram-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .form-card,
html[dir="rtl"] .contact-map-card,
html[dir="rtl"] .site-footer {
    text-align: right;
}

html[dir="rtl"] .contact-card__top,
html[dir="rtl"] .cta-band__body {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-cta,
html[dir="rtl"] .instagram-links,
html[dir="rtl"] .contact-map-card__links {
    justify-content: flex-start;
}

html[dir="rtl"] .value-row,
html[dir="rtl"] .project-row,
html[dir="rtl"] .process-row {
    grid-template-columns: minmax(0, 1fr) 92px;
}

html[dir="rtl"] .value-row__index,
html[dir="rtl"] .project-row__count,
html[dir="rtl"] .process-row__index {
    justify-self: start;
}

body.lang-ar .brand-text,
body.lang-ar .hero-copy h1,
body.lang-ar .about-intro h2,
body.lang-ar .section-head h2,
body.lang-ar .split-title,
body.lang-ar .process-intro h2,
body.lang-ar .cta-band h2,
body.lang-ar .hero-stage__caption h3,
body.lang-ar .hero-stat h3,
body.lang-ar .metric-card h3,
body.lang-ar .value-row__body h3,
body.lang-ar .offering-card h3,
body.lang-ar .project-panel h3,
body.lang-ar .project-row__body h3,
body.lang-ar .process-row__body h3,
body.lang-ar .instagram-feature__body h3,
body.lang-ar .instagram-profile h3,
body.lang-ar .instagram-card h3,
body.lang-ar .contact-card h3,
body.lang-ar .form-card h3,
body.lang-ar .contact-map-card__info h3,
body.lang-ar .site-footer h4 {
    font-family: "Cairo", "Manrope", sans-serif;
    letter-spacing: -0.02em;
}

@media (max-width: 1180px) {
    .hero-layout,
    .about-layout,
    .project-layout,
    .process-layout,
    .instagram-layout,
    .contact-layout,
    .contact-map-card,
    .section-head--split {
        grid-template-columns: 1fr;
    }

    .about-intro,
    .process-intro,
    .project-panel,
    .instagram-profile {
        position: static;
    }

    .hero-copy h1 {
        max-width: 11ch;
    }

    .offerings-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    section[id] {
        scroll-margin-top: 88px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-row {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .header-right {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding-bottom: 12px;
    }

    .site-header.is-open .header-right {
        display: flex;
    }

    .header-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .header-cta {
        width: 100%;
    }

    .hero-shell {
        padding-top: 110px;
    }

    .hero-stage__visual {
        min-height: 480px;
    }

    .hero-stage__stack,
    .hero-shortcuts,
    .about-columns,
    .instagram-gallery,
    .offerings-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-band__body {
        flex-direction: column;
        align-items: flex-start;
    }

    html[dir="rtl"] .cta-band__body {
        align-items: flex-end;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(1280px, calc(100vw - 28px));
    }

    .section-padding {
        padding: 60px 0;
    }

    .brand-subtext {
        display: none;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .hero-shell {
        padding-top: 98px;
    }

    .hero-marquee {
        margin-bottom: 24px;
    }

    .hero-marquee__track {
        gap: 28px;
        min-height: 48px;
    }

    .hero-copy h1,
    .about-intro h2,
    .section-head h2,
    .split-title,
    .process-intro h2,
    .cta-band h2 {
        font-size: 2.05rem;
    }

    .hero-stage__visual {
        min-height: 380px;
    }

    .hero-stage__caption,
    .project-panel,
    .instagram-profile,
    .form-card,
    .contact-map-card__info,
    .contact-card,
    .cta-band {
        padding: 22px;
    }

    .value-row,
    .project-row,
    .process-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 300px;
    }
}
