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

:root {
    --bg:        #0D0D0D;
    --bg-2:      #141414;
    --bg-3:      #1C1C1C;
    --border:    #2A2A2A;
    --text:      #FFFFFF;
    --muted:     #888888;
    --gold:      #C9A55A;
    --gold-dark: #B08A3E;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --max-w:     1200px;
    --radius:    8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
    width: 90%;
    max-width: var(--max-w);
    margin: 0 auto;
}

.gold { color: var(--gold); }

.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.btn--gold {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 150, 58, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--ghost {
    background: transparent;
    color: var(--muted);
    border-color: transparent;
    padding-left: 0;
}
.btn--ghost:hover { color: var(--text); }

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background var(--transition), border-bottom var(--transition);
}

.nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.75rem 5%;
    max-width: calc(var(--max-w) + 10%);
    margin: 0 auto;
}

.nav__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.03em;
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
    display: none;
    background: rgba(13, 13, 13, 0.98);
    border-top: 1px solid var(--border);
    padding: 2rem 5%;
}

.nav__mobile.open { display: block; }

.nav__mobile ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav__mobile a {
    font-size: 1.1rem;
    color: var(--muted);
    transition: color var(--transition);
}

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

/* ── Splash ───────────────────────────────────────────────── */
.splash {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    overflow: hidden;
    background: var(--bg);
}

.splash__watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% + var(--mx, 0px)), calc(-50% + var(--my, 0px)));
    width: 65vw;
    max-width: 700px;
    opacity: 0.06;
    pointer-events: none;
}

.splash__watermark img { width: 100%; }

.splash__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.splash__name {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
    line-height: 1;
}

.splash__badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
}

.splash__headline {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.05;
}

.splash__headline-top {
    font-family: var(--font-body);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--text);
}

.splash__headline-bottom {
    font-family: var(--font-body);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.splash__sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 380px;
}

.splash__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.splash__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(245,240,232,0.35);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.splash__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #C9A55A, transparent);
    animation: scrollDown 2s ease infinite;
    transform-origin: top;
}

@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (prefers-reduced-motion: reduce) {
    .splash__scroll-line { animation: none; transform: scaleY(1); }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
}

.hero__sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero__watermark {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translate(var(--mx, 0px), calc(-50% + var(--my, 0px)));
    width: 55vw;
    max-width: 700px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

/* ── Stats ────────────────────────────────────────────────── */
.stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    padding: 3rem 0;
}

.stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    padding: 1rem 2rem;
}

.stats__number {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
}

.stats__label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.stats__divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
    padding: 7rem 0;
}

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

.service-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(201,165,90,0.18) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.service-card:hover::before { opacity: 1; }

.service-card__num {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.service-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
}

.service-card__tag {
    margin-top: auto;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ── Clients ──────────────────────────────────────────────── */
.clients {
    padding: 7rem 0;
    background: var(--bg-2);
}

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

.client-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: default;
}

/* gold top accent line */
.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}

/* centre-top glow */
.client-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(201,165,90,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.client-card:hover {
    border-color: rgba(201,165,90,0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 52px rgba(0,0,0,0.45);
}

.client-card:hover::before {
    opacity: 1;
    left: 5%;
    right: 5%;
}

.client-card:hover::after { opacity: 1; }

.client-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 150, 58, 0.08);
    border: 1px solid rgba(196, 150, 58, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.client-card:hover .client-card__icon {
    background: rgba(196, 150, 58, 0.15);
    border-color: rgba(201,165,90,0.6);
    box-shadow: 0 0 16px rgba(201,165,90,0.2);
}

.client-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
}

.client-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ── About ────────────────────────────────────────────────── */
.about {
    padding: 7rem 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-inner {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border);
}

.about__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0.3;
}

.about__photo-placeholder img { width: 120px; }

.about__photo-placeholder span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.about__image-border {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    opacity: 0.3;
    z-index: -1;
}

.about__content { display: flex; flex-direction: column; gap: 1.2rem; }

.about__content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.1;
}

.about__role {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.about__content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about__content blockquote {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

/* ── Process ──────────────────────────────────────────────── */
.process {
    padding: 7rem 0;
    background: var(--bg-2);
}

.process__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.process__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color var(--transition);
}

.process__step:hover { border-color: var(--gold); }

.process__num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.process__step h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
}

.process__step p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.process__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    padding-top: 3.5rem;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
    padding: 7rem 0;
}

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

.testimonial-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--gold); }

.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-card__author strong { font-size: 0.9rem; font-weight: 500; }
.testimonial-card__author span { font-size: 0.78rem; color: var(--muted); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate(var(--mx, 0px), var(--my, 0px));
}

.cta-section__bg img {
    width: 60%;
    max-width: 500px;
    opacity: 0.03;
    margin: 0 auto;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
}

.cta-section p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 420px;
}

.cta-section__contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 600px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.cta-section__contact a:hover { color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__logo { height: 96px; width: auto; object-fit: contain; }

.footer__brand p {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer__nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 0.82rem;
    color: var(--muted);
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--muted);
    flex-wrap: wrap;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal__box {
    position: relative;
    z-index: 2;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.open .modal__box { transform: translateY(0); }

.modal__close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

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

.modal__logo {
    height: 36px;
    width: auto;
    margin-bottom: 1.2rem;
}

.modal__header { margin-bottom: 2rem; }

.modal__header h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.modal__header p { color: var(--muted); font-size: 0.9rem; }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form__group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-transform: uppercase;
}

.required { color: var(--gold); }

.form__group input,
.form__group select,
.form__group textarea {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: #555; }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold); }

.form__group select { cursor: pointer; appearance: none; }
.form__group select option { background: var(--bg-3); }

.form__group textarea { resize: vertical; }

.form__submit { width: 100%; justify-content: center; text-align: center; margin-top: 0.5rem; }

.modal__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
}

.modal__success.show { display: flex; }

.modal__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 150, 58, 0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
}

.modal__success h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
}

.modal__success p { color: var(--muted); }

@media (max-width: 600px) {
    .modal__box { padding: 2rem 1.5rem; }
    .form__row { grid-template-columns: 1fr; }
}

/* ── Reveal animation ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: 1fr; }
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .about__image { max-width: 400px; }
    .about__image-inner { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
    /* Nav — always show background on mobile, not just when scrolled */
    .nav {
        background: rgba(13, 13, 13, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    /* Nav — hide desktop links and buttons, show hamburger */
    .nav__links { display: none; }
    .nav__container .btn--outline,
    .nav__container .btn--gold { display: none; }
    .nav__hamburger { display: flex; }

    /* Nav container — fixed height, no gap, tight padding */
    .nav__container {
        padding: 0 5%;
        height: 64px;
        gap: 0;
    }

    /* Nav logo — shrink to fit the 64px nav bar */
    .nav__logo img { height: 40px; }

    /* Splash — top padding accounts for 64px fixed nav */
    .splash { padding: 90px 5% 70px; }

    /* Hero — same */
    .hero { padding: 90px 5% 60px; }

    /* Hero */
    .hero__watermark { display: none; }
    .hero__actions { flex-wrap: wrap; gap: 1rem; }

    /* Stats */
    .stats__grid { flex-direction: column; gap: 1.5rem; }
    .stats__divider { width: 60px; height: 1px; }

    /* Services — already 1 col at 1024px, keep padding tighter */
    .service-card { padding: 2rem 1.5rem; }

    /* Clients */
    .clients__grid { grid-template-columns: 1fr; }

    /* Process */
    .process__grid { flex-direction: column; }
    .process__arrow { transform: rotate(90deg); padding: 0; align-self: center; }

    /* Testimonials */
    .testimonials__grid { grid-template-columns: 1fr; }

    /* CTA contact — stack vertically on mobile */
    .cta-section__contact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Footer */
    .footer__top { flex-direction: column; align-items: flex-start; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .footer__logo { height: 52px; }
    .footer__nav { gap: 1.2rem; }
}

@media (max-width: 480px) {
    /* Splash — centre buttons, full width on very small screens */
    .splash__actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .splash__actions .btn { width: 100%; text-align: center; }

    /* Hero — stack and centre buttons */
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero__actions .btn { text-align: center; }

    /* Section headings */
    .section-header h2 { font-size: 1.8rem; }

    /* Service cards — less padding on tiny screens */
    .service-card { padding: 1.8rem 1.2rem; }
    .client-card { padding: 1.8rem 1.2rem; }

    /* Process steps */
    .process__step { padding: 1.8rem 1.2rem; }

    /* CTA section */
    .cta-section { padding: 5rem 0; }
    .cta-section .btn--large { width: 100%; text-align: center; }

    /* Modal */
    .modal__box { padding: 1.8rem 1.2rem; }
    .form__row { grid-template-columns: 1fr; }

    /* Footer nav wrap */
    .footer__nav { flex-direction: column; gap: 0.9rem; }
}

/* ── Gradient Theme ───────────────────────────────────────── */
:root {
    --grad: linear-gradient(135deg, #A67C32 0%, #F2D876 48%, #C9A55A 100%);
}

.splash__name {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.label {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats__number {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn--gold {
    background: var(--grad);
    border-color: transparent;
    color: #000;
}
.btn--gold:hover {
    background: linear-gradient(135deg, #8C6828 0%, #D4B85A 48%, #A88040 100%);
    border-color: transparent;
}

.splash__badge {
    background: var(--grad);
    color: #000;
}

.process__arrow {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__links a::after {
    background: var(--grad);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: #F2D876;
    box-shadow: 0 0 0 2px rgba(242, 216, 118, 0.12);
}

.modal__success-icon {
    border-color: #F2D876;
    background: rgba(242, 216, 118, 0.1);
    color: #F2D876;
}
