:root {
    --color-black: #000000;
    --color-gold: #C9A227;
    --color-white: #FFFFFF;
    --color-gray: #888888;
    --color-light-gray: #F5F5F5;
    --color-gold-soft: #E4C56A;
    --color-charcoal: #111111;
    --color-ink: #1A1A1A;
    --color-muted: #6B6B6B;
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
    --header-height: 86px;
    --header-offset: 14px;
    --container: 1180px;
    --space: 7.5rem;
    --radius: 2px;
    --ease: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-ink);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 200;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.6rem 1rem;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

.section {
    padding: var(--space) 0;
}

.section-follow {
    padding-top: 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: 3.5rem;
}

.section-header.center {
    margin-inline: auto;
    text-align: center;
}

.section-title,
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
}

.lead {
    margin-top: 1.1rem;
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 38rem;
}

.section-header.center .lead {
    margin-inline: auto;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.85rem 1.7rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

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

.btn-gold {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-gold:hover {
    background: var(--color-gold-soft);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--color-black);
    color: var(--color-black);
}

.btn-outline-dark:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-black);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
    transition: transform var(--ease);
}

.text-link:hover {
    color: var(--color-gold);
}

.text-link:hover::after {
    transform: translateX(4px);
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    justify-items: center;
    height: auto;
    padding-top: var(--header-offset);
    background: transparent;
    border: 0;
}

.site-header .header-inner,
.site-nav {
    grid-area: 1 / 1;
    width: min(960px, calc(100% - 2.5rem));
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 120;
    height: var(--header-height);
    padding: 0 0.5rem 0 0.65rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease), -webkit-backdrop-filter var(--ease);
}

.site-header.is-scrolled .header-inner {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(201, 162, 39, 0.14);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}

.brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 125;
}

.brand img {
    width: auto;
    height: 74px;
    object-fit: contain;
    pointer-events: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.6rem;
    height: var(--header-height);
    padding-right: 1rem;
    z-index: 121;
    pointer-events: none;
}

.site-nav a,
.site-nav .btn {
    pointer-events: auto;
}

.site-nav .btn {
    min-height: 34px;
    padding: 0.4rem 0.9rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-list a {
    position: relative;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.nav-list a.active {
    color: var(--color-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 130;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    background: var(--color-gold);
    transform-origin: center;
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero,
.page-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 100vh;
    color: var(--color-white);
    overflow: hidden;
}

.page-hero {
    min-height: 72vh;
    align-items: center;
}

.hero-media,
.page-hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img,
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after,
.page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 55%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-height) + var(--header-offset) + 3.5rem) 0 6rem;
    max-width: 740px;
}

.hero-content {
    max-width: 920px;
}

.hero h1,
.page-hero h1 {
    color: var(--color-white);
    line-height: 1.12;
}

.hero h1 {
    font-size: clamp(1.85rem, 3.4vw, 3.15rem);
    white-space: nowrap;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.hero p,
.page-hero p {
    margin: 1.3rem 0 2rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* Intro / benefits */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
}

.benefit h3,
.why-item h3,
.process-step h3,
.value-item h3,
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.benefit p,
.why-item p,
.process-step p,
.service-card p {
    color: var(--color-muted);
    font-size: 0.96rem;
}

.benefit-index,
.why-item span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--color-gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

/* Service cards */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: 1.2rem;
}

.service-card .text-link {
    margin-top: auto;
    padding-top: 1.1rem;
}

.section-footer {
    margin-top: 2.5rem;
}

/* Why choose */

.why-section {
    background: var(--color-light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.why-item {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* Global to Iraq */

.global-section {
    position: relative;
    color: var(--color-white);
    background: var(--color-black);
    min-height: 640px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.global-media {
    position: absolute;
    inset: 0;
}

.global-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.global-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72));
}

.global-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.global-content h2,
.cta-section h2,
.page-hero h1 {
    color: var(--color-white);
}

.global-content p {
    margin: 1.2rem auto 0;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.78);
}

.route-map {
    position: relative;
    width: min(100%, 760px);
    margin: 2.6rem auto 0;
}

.route-map svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Process */

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.process-step {
    padding: 1.75rem 1.5rem 1.6rem;
    background: var(--color-light-gray);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 2px solid var(--color-gold);
}

.process-num {
    display: block;
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
}

.process-step h3 {
    margin-bottom: 0.65rem;
    font-size: 1.45rem;
}

.process-step h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 0.85rem;
    background: var(--color-gold);
}

/* CTA */

.cta-section {
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
}

.cta-section p {
    margin: 1rem auto 2rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.75);
}

/* About */

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
    order: 1;
}

.split img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-focus {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.8rem;
}

.about-focus li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--color-ink);
    font-size: 0.95rem;
}

.about-focus li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 1px;
    background: var(--color-gold);
}

.about-beliefs {
    background: var(--color-black);
    color: var(--color-white);
}

.about-beliefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-belief h2 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.about-belief h2::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 0.9rem;
    background: var(--color-gold);
}

.about-belief p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 34rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.value-item {
    padding: 1.5rem 1.25rem 1.4rem;
    background: var(--color-light-gray);
    border-top: 2px solid var(--color-gold);
}

.value-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Services detail */

.service-detail {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    grid-template-columns: 1.2fr 0.8fr;
}

.service-detail:nth-child(even) .service-copy {
    order: -1;
}

.service-detail img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-heading {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-heading .section-title {
    margin: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.55rem);
}

.benefit-points {
    display: grid;
    gap: 0.55rem;
    margin: 1.3rem 0 0;
}

.benefit-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--color-muted);
}

.benefit-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 1px;
    background: var(--color-gold);
}

.services-stack .service-detail + .service-detail {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Contact */

.contact-layout {
    max-width: 860px;
}

.contact-aside h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.contact-aside > p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.phone-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin-bottom: 2.5rem;
}

.phone-group h3 {
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
}

.phone-note {
    margin-bottom: 0.9rem;
    color: var(--color-gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.phone-group ul {
    display: grid;
    gap: 0.45rem;
}

.phone-group a:hover {
    color: var(--color-gold);
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.75rem 2.5rem;
}

.contact-list span {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-list a:hover {
    color: var(--color-gold);
}

/* Footer */

.site-footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.72);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 22rem;
    font-size: 0.95rem;
}

.footer-title {
    margin-bottom: 1rem;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.55rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding: 1.4rem 0 0.4rem;
    color: var(--color-gray);
    font-size: 0.85rem;
    text-align: center;
}

/* WhatsApp */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-black);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform var(--ease), background var(--ease), color var(--ease);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.06);
    background: var(--color-gold);
    color: var(--color-black);
}

/* Animations */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

    .reveal,
    .btn,
    .whatsapp-float,
    .nav-list a::after,
    .text-link::after {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
