/* ============================================================
   OMAR Q — Brand Identity & Unique Visual Overrides
   Palette: Deep Ink + Warm Amber + Cream
   ============================================================ */

/* ── React root ───────────────────────────────────────────── */
#root { display: contents; }

/* ── Profile picture ─────────────────────────────────────── */
.profile-picture {
    background-image: url('https://res.cloudinary.com/dgwbvqymi/image/upload/v1786533992/pp_bg_pb425s.png') !important;
}

/* ── About page portrait ──────────────────────────────────── */
.single-about-image .overlay:nth-child(1) {
    background-image: url('https://res.cloudinary.com/dgwbvqymi/image/upload/v1786533996/hero_pp_evf1yv.png') !important;
    background-position: center center;
    background-size: cover;
}

/* ══════════════════════════════════════════════════════════════
   BRAND LOGO MARK — nav top-left
   ══════════════════════════════════════════════════════════════ */

.btn-brand-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    cursor: pointer;
    padding: 4px 0;
}

/* ── SVG C-mark ──────────────────────────────────────────── */
.brand-logo-svg {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    overflow: visible;                     /* lets orbit text breathe outside viewBox */
    transform-origin: center;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); /* spring overshoot */
}

/* Hover: C mark springs down to half size */
.btn-brand-logo:hover .brand-logo-svg {
    transform: scale(0.5);
    width: 65px;
}

/* ── Rings ─────────────────────────────────────────────────── */
.brand-ring {
    stroke: var(--color-white);
    transition: stroke 0.3s ease;
}
.brand-ring-text {
    fill: var(--color-white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: fill 0.3s ease;
}

/* ── Orbiting name: spins endlessly around SVG center ─────── */
.brand-orbit {
    transform-origin: 100px 100px;        /* exact SVG center = ring center */
    transform-box: view-box;              /* coordinate space = SVG viewBox */
    animation: brand-spin 12s linear infinite;
}
@keyframes brand-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Hover: stop + fade out so name can appear beside */
.btn-brand-logo:hover .brand-orbit {
    animation-play-state: paused;
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* Arc text: amber, always */
.brand-arc-text {
    fill: var(--color-accent);
}

/* ── Wordmark: hidden by default, fades in on hover ───────── */
.brand-wordmark {
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transform: translateX(-14px);
    transition:
        max-width   0.5s  cubic-bezier(0.23, 1, 0.32, 1),
        opacity     0.4s  cubic-bezier(0.23, 1, 0.32, 1) 0.08s,
        margin-left 0.5s  cubic-bezier(0.23, 1, 0.32, 1),
        transform   0.5s  cubic-bezier(0.23, 1, 0.32, 1) 0.08s;
}
.btn-brand-logo:hover .brand-wordmark {
    max-width: 180px;
    opacity: 1;
    margin-left: 8px;
    transform: translateX(0);
}

.brand-name {
    display: block;
    font-family: var(--font-syne), sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--color-white);
    transition: color 0.3s ease;
}

/* ──────────────────────────────────────────────────────────
   UNIQUE HERO — warm amber glow + grain overlay
   ────────────────────────────────────────────────────────── */
.hero-section {
    background: var(--color-dark-dark) !important;
    overflow: hidden;
}

/* Ambient amber glow behind portrait */
.hero-section::before {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center bottom,
        rgba(212, 134, 42, 0.22) 0%,
        rgba(212, 134, 42, 0.07) 45%,
        transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grain texture overlay */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
    opacity: 0.6;
}

/* ── Big name marquee — amber on dark ────────────────────── */
.big-name h1 {
    color: var(--color-white);
}

/* ── Intro loading screen — amber accent ─────────────────── */
.intro-screen,
.intro-container .curved-edge-wrap.top .curved-edge,
.intro-container .curved-edge-wrap.bottom .curved-edge {
    background: var(--color-dark-dark) !important;
}

/* ── Accent color overrides throughout ───────────────────── */

/* Selection */
::selection    { background-color: var(--color-accent); }
::-moz-selection { background-color: var(--color-accent); }

/* Active nav dot */
.btn-link.active .btn-click::after,
.btn-link .btn-click:hover::after {
    background: var(--color-accent) !important;
}

/* Round "About me" button */
.btn-circle .btn-bg,
.btn-circle .btn-click {
    background: var(--color-accent) !important;
}
.btn-circle:hover .btn-bg {
    background: var(--color-accent-dark) !important;
}

/* Burger button fill */
.btn-burger .btn-bg { background-color: var(--color-accent) !important; }
.btn-burger.active .btn-click { background-color: var(--color-accent) !important; }

/* Work item hover overlay tint */
.work-single:hover .work-img-overlay {
    background: rgba(212, 134, 42, 0.08);
}

/* ── Horizontal scroll reel tint ─────────────────────────── */
/* .horizontal-single-item .overlay.lazy {
} */

/* ── About header — cream background ────────────────────── */
.about-header { background: var(--color-white); }
.about-header h1 { color: var(--color-dark) !important; }

/* ── Line-globe area ─────────────────────────────────────── */
.line-globe {
    background: var(--color-white);
    padding-top: calc(var(--section-padding) * .5);
    padding-bottom: 0;
}
.line-globe .get-height { height: 14em; }
.line-globe .stripe { background-color: var(--color-border); }

/* ── Services section — amber numbered accent ────────────── */
.service-item .num {
    color: var(--color-accent);
    opacity: 1 !important;
}

/* ── Contact form ─────────────────────────────────────────── */
.contact-form-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}
.contact-form-section > .container.medium > .row { align-items: flex-start; }
.contact-form-section .flex-col:nth-child(1) { width: 60%; }
.contact-form-section .flex-col:nth-child(2) {
    width: 40%;
    padding-left: calc(var(--container-padding) * .75);
}
.contact-form-section .contact-details,
.contact-form-section .contact-details h5,
.contact-form-section .contact-details p,
.contact-form-section .contact-details .btn-text {
    color: var(--color-white);
}

@media screen and (max-width: 720px) {
    .contact-form-section .flex-col:nth-child(1) { width: 100%; }
    .contact-form-section .flex-col:nth-child(2) {
        width: 100%;
        padding-left: 0;
        padding-top: calc(var(--section-padding) * .66);
    }
}

/* ── Contact header — amber accent links ─────────────────── */
.contact-header .row:nth-child(2) .btn-link-external .btn-click::after {
    background: var(--color-accent);
}

/* ── Footer — deep ink base ──────────────────────────────── */
.footer-wrap {
    background: var(--color-dark-dark);
    border-top: 1px solid rgba(212, 134, 42, 0.15);
}
.footer-wrap .bottom-footer { display: flex; }
.footer-wrap h1,
.footer-wrap h2,
.footer-wrap h3 {
    color: var(--color-white);
}
/* Footer CTA "Get in touch" amber underline */
.footer-wrap .footer-cta h2 {
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent-dark) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Work tiles — amber hover border ─────────────────────── */
.work-tile:hover {
    outline: 1.5px solid rgba(212, 134, 42, 0.45);
    outline-offset: -1.5px;
}

/* ── Mouse follower cursor dot — amber ───────────────────── */
.mouse-pos-list-image {
    border: 2px solid rgba(212, 134, 42, 0.5);
}

/* ── Intro container z-index lock ────────────────────────── */
.intro-container { z-index: 9999 !important; pointer-events: none; }

/* ── Fade-up utility ──────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(2em);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── Mouse-pos float image ────────────────────────────────── */
.mouse-pos-list-image-wrap .float-image-wrap { display: block; }

/* ── Stripe accent — amber tint on dark sections ─────────── */
.theme-dark .stripe {
    background-color: rgba(212, 134, 42, 0.2);
}

/* ── Scrollbar — amber thumb ──────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--color-dark-dark); }
::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

/* ── Work page header — unique typography treatment ──────── */
.work-header h1 em,
.default-header h1 em {
    font-style: italic;
    color: var(--color-accent);
    -webkit-text-stroke: 0;
}

/* ── Hanger location tag ──────────────────────────────────── */
.hanger p {
    color: rgba(245, 240, 232, 0.55);
    font-size: 0.72em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Colour contexts ─────────────────────────────────────────
   arc text is always amber; rings + wordmark switch per page
   ─────────────────────────────────────────────────────────── */

/* Dark pages (hero, contact): cream rings + name */
.top-nav .btn-brand-logo .brand-ring      { stroke: var(--color-white); }
.top-nav .btn-brand-logo .brand-ring-text { fill:   var(--color-white); }
.top-nav .btn-brand-logo .brand-name      { color:  var(--color-white); }

/* Nav links — dark pages */
.top-nav .nav-links .btn-link .btn-text,
.top-nav .nav-links .btn-link .btn-text-inner {
    color: var(--color-white) !important;
}
.top-nav .nav-links .btn-link .btn-click::after           { background: var(--color-accent) !important; }
.top-nav .nav-links .btn-link.active .btn-click::after    { background: var(--color-accent) !important; transform: translate(-50%,-50%) scale(1) rotate(0.001deg) !important; }


/* ══════════════════════════════════════════════════════════════
   NAVBAR COLOR FIXES — light-background pages switch to dark ink
   ══════════════════════════════════════════════════════════════ */

/* About — white bg */
.about-header .top-nav .btn-brand-logo .brand-ring      { stroke: var(--color-dark); }
.about-header .top-nav .btn-brand-logo .brand-ring-text { fill:   var(--color-dark); }
.about-header .top-nav .btn-brand-logo .brand-name      { color:  var(--color-dark); }
.about-header .top-nav .nav-links .btn-link .btn-text,
.about-header .top-nav .nav-links .btn-link .btn-text-inner { color: var(--color-dark) !important; }
.about-header .top-nav .nav-links .btn-link .btn-click::after { background: var(--color-dark) !important; }

/* Work — white bg */
.work-header                    { background: var(--color-white); }
.work-header h1, .work-header h1 span { color: var(--color-dark) !important; }
.work-header .top-nav .btn-brand-logo .brand-ring      { stroke: var(--color-dark); }
.work-header .top-nav .btn-brand-logo .brand-ring-text { fill:   var(--color-dark); }
.work-header .top-nav .btn-brand-logo .brand-name      { color:  var(--color-dark); }
.work-header .top-nav .nav-links .btn-link .btn-text,
.work-header .top-nav .nav-links .btn-link .btn-text-inner { color: var(--color-dark) !important; }
.work-header .top-nav .nav-links .btn-link .btn-click::after { background: var(--color-dark) !important; }

/* Contact — dark bg (same as hero default, already covered) */
.contact-header .top-nav .btn-brand-logo .brand-ring      { stroke: var(--color-white); }
.contact-header .top-nav .btn-brand-logo .brand-ring-text { fill:   var(--color-white); }
.contact-header .top-nav .btn-brand-logo .brand-name      { color:  var(--color-white); }
.contact-header .top-nav .nav-links .btn-link .btn-text,
.contact-header .top-nav .nav-links .btn-link .btn-text-inner { color: var(--color-white) !important; }

/* Default fallback for any light-surface header */
.default-header:not(.theme-dark) .top-nav .btn-brand-logo .brand-ring      { stroke: var(--color-dark); }
.default-header:not(.theme-dark) .top-nav .btn-brand-logo .brand-ring-text { fill:   var(--color-dark); }
.default-header:not(.theme-dark) .top-nav .btn-brand-logo .brand-name      { color:  var(--color-dark); }
.default-header:not(.theme-dark) .top-nav .btn-text,
.default-header:not(.theme-dark) .top-nav .btn-text-inner { color: var(--color-dark) !important; }

  

/* ── React root ───────────────────────────────────────────── */
#root { display: contents; }

/* ── Profile picture ─────────────────────────────────────── */
.profile-picture {
    background-image: url('https://res.cloudinary.com/dgwbvqymi/image/upload/v1786533992/pp_bg_pb425s.png') !important;
}

/* ── About page portrait ──────────────────────────────────── */
.single-about-image .overlay:nth-child(1) {
    background-image: url('https://res.cloudinary.com/dgwbvqymi/image/upload/v1786533996/hero_pp_evf1yv.png') !important;
    background-position: center center;
    background-size: cover;
}


/* ================================================================
   CONVERSION HERO — Availability badge, CTAs, social proof strip
   ================================================================ */

/* Override hero positioning for conversion layout */
.hero-section-conversion .hero-content-container {
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: flex-end;
    min-height: 110vh;
    padding-bottom: 22vh;
}

.hero-section-conversion .hero-content-row {
    justify-content: flex-start;
    width: 100%;
}

.hero-section-conversion .hero-content-col {
    width: 55%;
    max-width: 680px;
}

/* Availability badge */
.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: 2em;
    padding: 0.4em 0.9em;
    margin-bottom: 1.6em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.avail-badge-sm {
    margin-bottom: 0.8em;
    margin-top: 1.2em;
}

.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2EC96A;
    flex-shrink: 0;
    animation: avail-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(46, 201, 106, 0.4);
}

@keyframes avail-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 201, 106, 0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(46, 201, 106, 0); }
}

.avail-text {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Conversion hero headline */
.hero-headline {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: clamp(2.6em, 5.5vw, 5.5em);
    line-height: 1.08;
    margin-bottom: 0.6em;
    color: var(--color-white);
}

.hero-headline-line {
    display: block;
}

.hero-headline-accent {
    color: var(--color-accent);
}

.hero-headline-accent em {
    font-style: italic;
    -webkit-text-stroke: 0;
}

/* Specialty subline */
.hero-subline {
    font-family: var(--font-manrope), sans-serif;
    font-size: clamp(0.8em, 1.1vw, 1em);
    font-weight: 500;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2em;
    line-height: 1.5;
}

/* Hero CTA button group */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 2.5em;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    background: var(--color-accent);
    color: var(--color-dark);
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: clamp(0.85em, 1vw, 0.95em);
    letter-spacing: 0.04em;
    padding: 0.85em 1.8em;
    border-radius: 3em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.7, 0, 0.3, 1);
    will-change: transform;
}

.hero-cta-primary:hover {
    background: var(--color-accent-dark);
    color: var(--color-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-cta-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--color-accent-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-cta-primary:hover .hero-cta-bg {
    transform: scaleX(1);
}

.hero-cta-label {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.hero-cta-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-cta-arrow svg {
    width: 1em;
    height: 1em;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    color: rgba(245, 240, 232, 0.7);
    font-family: var(--font-manrope), sans-serif;
    font-weight: 600;
    font-size: clamp(0.82em, 0.95vw, 0.9em);
    letter-spacing: 0.04em;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.3);
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.hero-cta-secondary:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-accent);
    text-decoration: none;
}

/* Social proof strip */
.hero-proof-strip {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 0.8em;
}

.hero-proof-stat {
    display: flex;
    flex-direction: column;
    padding-right: 1.5em;
}

.hero-proof-value {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 1.3em;
    color: var(--color-white);
    line-height: 1.1;
}

.hero-proof-label {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.68em;
    color: rgba(245, 240, 232, 0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-proof-divider {
    width: 1px;
    height: 2.4em;
    background: rgba(245, 240, 232, 0.15);
    margin: 0 1.5em 0 0;
    flex-shrink: 0;
}

.hero-proof-tags {
    display: flex;
    align-items: center;
    gap: 0.4em;
    padding-left: 0.4em;
}

.hero-proof-tag {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-proof-sep {
    color: rgba(245, 240, 232, 0.25);
    font-size: 0.7em;
}


/* ================================================================
   NAVIGATION — Book a Call CTA in top nav
   ================================================================ */

.nav-links-with-cta {
    align-items: center;
    gap: 0.2em;
}

.btn-link-cta {
    margin-left: 0.6em;
}


/* Slide nav Book a Call */
.nav-cta-row {
    padding-top: var(--gap-padding);
}

.slide-nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--color-accent);
    color: var(--color-dark) !important;
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 1em;
    padding: 0.8em 2em;
    border-radius: 3em;
    margin-top: calc(var(--gap-padding) * 0.75);
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
}

.slide-nav-cta:hover {
    background: var(--color-accent-dark);
    text-decoration: none;
}

.slide-nav-cta-label {
    line-height: 1;
}

/* Slide nav contact details */
.slide-nav-contact-row {
    padding-top: var(--gap-padding);
}

.slide-nav-contact-details {
    padding-top: calc(var(--gap-padding) * 0.75);
}

.slide-nav-contact-link {
    display: block;
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.85em;
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    margin-top: 0.4em;
    transition: color 0.2s ease;
}

.slide-nav-contact-link:hover {
    color: var(--color-accent);
    text-decoration: none;
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */

.services-section {
    background: var(--color-white);
}

.services-section h5,
.services-section h2 {
    color: var(--color-dark);
}

.services-header-row {
    align-items: flex-end;
    margin-bottom: calc(var(--gap-padding) * 2);
}

.services-header-row .flex-col:nth-child(1) {
    width: 55%;
    padding-right: var(--gap-padding);
}

.services-header-sub {
    width: 45%;
    padding-left: var(--gap-padding);
    display: flex;
    align-items: flex-end;
}

.services-header-sub p {
    color: rgba(26, 22, 18, 0.6);
    font-size: 1em;
}

.services-grid {
    margin: 0 calc(var(--gap-padding) * -0.4);
}

.services-grid-col {
    width: 33.333%;
    padding: 0 calc(var(--gap-padding) * 0.4) calc(var(--gap-padding) * 0.8);
}

/* Service card */
.service-card {
    padding: 2em;
    border: 1px solid var(--color-border);
    border-radius: 0.5em;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(212, 134, 42, 0.1);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8em;
}

.service-card-num {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 0.65em;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    text-transform: uppercase;
}

.service-card-icon {
    font-size: 1.3em;
    color: var(--color-accent);
    opacity: 0.7;
}

.service-card .stripe {
    background-color: var(--color-border);
    margin-bottom: 1.2em;
}

.service-card-title {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--color-dark);
    margin-bottom: 0.3em;
    line-height: 1.3;
}

.service-card-short {
    font-family: var(--font-manrope), sans-serif;
    font-weight: 600;
    font-size: 0.82em;
    color: var(--color-accent);
    margin-bottom: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-card-desc {
    font-size: 0.88em;
    color: rgba(26, 22, 18, 0.65);
    line-height: 1.65;
    margin-bottom: 1.2em;
    flex: 1;
}

.service-card-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 1em;
}

.service-card-deliverable {
    font-size: 0.8em;
    color: rgba(26, 22, 18, 0.55);
    padding: 0.3em 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    line-height: 1.4;
}

.service-deliv-dot {
    color: var(--color-accent);
    flex-shrink: 0;
    font-size: 0.9em;
    margin-top: 0.05em;
}


/* ================================================================
   TRUST SECTION
   ================================================================ */

.trust-section {
    background: var(--color-dark);
}

.trust-section h5,
.trust-section h2,
.trust-section h4 {
    color: var(--color-white);
}

.trust-stats-row {
    margin-bottom: calc(var(--gap-padding) * 2);
}

.trust-stat-col {
    width: 25%;
    padding: 0 calc(var(--gap-padding) * 0.4);
}

.trust-stat-card {
    padding: 1.5em 1.2em;
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 0.5em;
    background: rgba(245, 240, 232, 0.03);
    transition: border-color 0.3s ease;
}

.trust-stat-card:hover {
    border-color: rgba(212, 134, 42, 0.35);
}

.trust-stat-value {
    font-family: var(--font-syne), sans-serif;
    font-weight: 800;
    font-size: 2.6em;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.15em;
}

.trust-stat-label {
    font-family: var(--font-syne), sans-serif;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--color-white);
    margin-bottom: 0.3em;
}

.trust-stat-sub {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.72em;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.4;
}

.trust-split-row {
    margin-top: calc(var(--gap-padding) * 1.5);
}

.trust-industries-col {
    width: 50%;
    padding-right: calc(var(--gap-padding) * 1.5);
}

.trust-tech-col {
    width: 50%;
    padding-left: calc(var(--gap-padding) * 1.5);
    border-left: 1px solid rgba(245, 240, 232, 0.08);
}

.trust-industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75em;
    margin-top: 1.2em;
}

.trust-industry-pill {
    display: flex;
    align-items: center;
    gap: 0.8em;
    padding: 0.85em 1em;
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 0.4em;
    background: rgba(245, 240, 232, 0.03);
    transition: border-color 0.25s ease;
}

.trust-industry-pill:hover {
    border-color: rgba(212, 134, 42, 0.3);
}

.trust-industry-icon {
    font-size: 1.3em;
    flex-shrink: 0;
}

.trust-industry-name {
    font-family: var(--font-syne), sans-serif;
    font-weight: 600;
    font-size: 0.82em;
    color: var(--color-white);
}

.trust-industry-desc {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.7em;
    color: rgba(245, 240, 232, 0.4);
    margin-top: 0.1em;
    line-height: 1.3;
}

.trust-tech-list {
    margin-top: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 0.9em;
}

.trust-tech-item {
    display: flex;
    flex-direction: column;
    gap: 0.35em;
}

.trust-tech-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.trust-tech-name {
    font-family: var(--font-manrope), sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    color: rgba(245, 240, 232, 0.8);
}

.trust-tech-pct {
    font-family: var(--font-syne), sans-serif;
    font-size: 0.72em;
    color: var(--color-accent);
    font-weight: 700;
}

.trust-tech-track {
    height: 3px;
    background: rgba(245, 240, 232, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.trust-tech-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */

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

.testimonials-section h5,
.testimonials-section h2 {
    color: var(--color-dark);
}

.testi-header-row {
    align-items: flex-end;
    margin-bottom: calc(var(--gap-padding) * 2);
}

.testi-header-row .flex-col:nth-child(1) {
    width: 55%;
    padding-right: var(--gap-padding);
}

.testi-header-sub {
    width: 45%;
    padding-left: var(--gap-padding);
    display: flex;
    align-items: flex-end;
}

.testi-header-sub p {
    color: rgba(26, 22, 18, 0.6);
}

.testi-grid {
    margin: 0 calc(var(--gap-padding) * -0.4);
    align-items: stretch;
}

.testi-col {
    width: 33.333%;
    padding: 0 calc(var(--gap-padding) * 0.4);
    display: flex;
    flex-direction: column;
}

.testi-card {
    padding: 2em;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testi-card:hover {
    box-shadow: 0 8px 32px rgba(26, 22, 18, 0.08);
    border-color: rgba(212, 134, 42, 0.25);
}

.testi-stars {
    display: flex;
    gap: 0.15em;
    margin-bottom: 1em;
}

.testi-star {
    color: var(--color-accent);
    font-size: 1em;
}

.testi-quote {
    flex: 1;
    margin-bottom: 1.5em;
}

.testi-quote p {
    font-size: 0.92em;
    line-height: 1.7;
    color: rgba(26, 22, 18, 0.75);
    font-style: italic;
    margin: 0;
}

.testi-author-row {
    display: flex;
    align-items: center;
    gap: 0.8em;
    border-top: 1px solid var(--color-border);
    padding-top: 1.2em;
}

.testi-avatar {
    width: 2.8em;
    height: 2.8em;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-avatar-initials {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 0.75em;
    color: #fff;
    letter-spacing: 0.04em;
}

.testi-author-name {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 0.88em;
    color: var(--color-dark);
}

.testi-author-role {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.72em;
    color: rgba(26, 22, 18, 0.45);
    margin-top: 0.15em;
}


/* ================================================================
   PROCESS SECTION
   ================================================================ */

.process-section {
    background: var(--color-dark-dark);
}

.process-section h5,
.process-section h2 {
    color: var(--color-white);
}

.process-header-row {
    align-items: flex-end;
    margin-bottom: calc(var(--gap-padding) * 2);
}

.process-header-row .flex-col:nth-child(1) {
    width: 55%;
    padding-right: var(--gap-padding);
}

.process-header-sub {
    width: 45%;
    padding-left: var(--gap-padding);
    display: flex;
    align-items: flex-end;
}

.process-header-sub p {
    color: rgba(245, 240, 232, 0.5);
}

.process-timeline-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--gap-padding) * 0.6);
    margin-bottom: calc(var(--gap-padding) * 2);
}

.process-step-col {
    width: 100% !important;
    padding: 0;
}

.process-step {
    position: relative;
    padding: 1.8em;
    border: 1px solid rgba(245, 240, 232, 0.08);
    border-radius: 0.5em;
    background: rgba(245, 240, 232, 0.02);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.process-step:hover {
    border-color: rgba(212, 134, 42, 0.35);
    background: rgba(212, 134, 42, 0.04);
}

.process-step-num {
    font-family: var(--font-syne), sans-serif;
    font-weight: 800;
    font-size: 0.65em;
    color: var(--color-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: 0.8em;
    flex-wrap: wrap;
}

.process-step-icon {
    font-size: 1.2em;
    flex-shrink: 0;
}

.process-step-title {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 1.05em;
    color: var(--color-white);
    margin: 0;
    flex: 1;
}

.process-step-duration {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.68em;
    color: var(--color-accent);
    font-weight: 600;
    background: rgba(212, 134, 42, 0.12);
    padding: 0.25em 0.6em;
    border-radius: 2em;
    white-space: nowrap;
}

.process-step-desc {
    font-size: 0.85em;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.65;
    margin: 0;
}

.process-cta-row .flex-col {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.process-cta-text {
    color: rgba(245, 240, 232, 0.55);
    font-size: 0.9em;
    margin: 0;
}

.process-cta-btn {
    flex-shrink: 0;
}


/* ================================================================
   CONTACT PAGE — Quick contact cards and availability
   ================================================================ */

.quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    margin: 1.2em 0 1.8em;
}

.quick-contact-card {
    display: flex;
    align-items: center;
    gap: 0.9em;
    padding: 0.9em 1em;
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 0.4em;
    background: rgba(245, 240, 232, 0.04);
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.quick-contact-card:hover {
    border-color: rgba(212, 134, 42, 0.4);
    background: rgba(212, 134, 42, 0.06);
    text-decoration: none;
}

.quick-contact-icon {
    font-size: 1.2em;
    flex-shrink: 0;
    width: 1.8em;
    text-align: center;
}

.quick-contact-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quick-contact-label {
    font-family: var(--font-syne), sans-serif;
    font-weight: 700;
    font-size: 0.65em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 0.15em;
}

.quick-contact-value {
    font-family: var(--font-manrope), sans-serif;
    font-weight: 600;
    font-size: 0.82em;
    color: var(--color-white);
}

.quick-contact-desc {
    font-size: 0.7em;
    color: rgba(245, 240, 232, 0.35);
    margin-top: 0.1em;
}

.quick-contact-arrow {
    color: var(--color-accent);
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.quick-contact-card:hover .quick-contact-arrow {
    opacity: 1;
}

.quick-contact-arrow svg {
    width: 0.9em;
    height: 0.9em;
}

.contact-availability {
    margin-bottom: 1.8em;
}

.contact-avail-detail {
    font-size: 0.78em;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.5;
    margin: 0;
}

.contact-biz-list {
    margin-bottom: 1.8em;
}

.contact-biz-list li p {
    font-size: 0.88em;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 0.3em;
}

/* Service dropdown field */
.field-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4862A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    cursor: pointer;
}


/* ================================================================
   RESPONSIVE — Mobile UX fixes
   ================================================================ */

@media screen and (max-width: 900px) {
    .services-grid-col {
        width: 50%;
    }

    .trust-stat-col {
        width: 50%;
        margin-bottom: var(--gap-padding);
    }

    .testi-col {
        width: 100%;
        margin-bottom: var(--gap-padding);
    }

    .trust-industries-col,
    .trust-tech-col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        border-left: none;
    }

    .trust-tech-col {
        border-top: 1px solid rgba(245, 240, 232, 0.08);
        padding-top: calc(var(--gap-padding) * 1.5);
        margin-top: calc(var(--gap-padding) * 1.5);
    }

    .process-timeline-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 720px) {
    .hero-section-conversion .hero-content-col {
        width: 90%;
        max-width: none;
    }

    .hero-headline {
        font-size: clamp(2.2em, 8vw, 3.5em);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8em;
    }

    .hero-proof-strip {
        flex-wrap: wrap;
        gap: 0.8em;
    }

    .hero-proof-divider {
        display: none;
    }

    .services-header-row .flex-col:nth-child(1),
    .services-header-sub,
    .testi-header-row .flex-col:nth-child(1),
    .testi-header-sub,
    .process-header-row .flex-col:nth-child(1),
    .process-header-sub {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .services-grid-col {
        width: 100%;
    }

    .testi-col {
        width: 100%;
    }

    .trust-stat-col {
        width: 50%;
    }

    .process-timeline-row {
        grid-template-columns: 1fr;
    }

    .btn-book-call {
        display: none;
    }

    .nav-links-with-cta .btn-link-cta {
        display: none;
    }

    .process-cta-row .flex-col {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-industries-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 540px) {
    .hero-section-conversion .hero-content-col {
        width: 100%;
    }

    .trust-stat-col {
        width: 100%;
    }

    .services-grid-col {
        width: 100%;
    }

    .hero-proof-strip {
        column-gap: 1.2em;
    }
}


/* ================================================================
   PROJECT TILES — case study preview enhancements
   ================================================================ */

.tile-problem-teaser {
    font-size: 0.78em;
    color: rgba(26, 22, 18, 0.5);
    line-height: 1.5;
    margin-top: 0.5em;
    margin-bottom: 0;
}

.tile-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tile-year {
    font-size: 0.78em;
    opacity: 0.45;
    margin: 0;
}

.tile-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
    padding-top: 0.6em;
    flex-direction: row !important;
}

.tile-tech-tag {
    font-family: var(--font-manrope), sans-serif;
    font-size: 0.65em;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(212, 134, 42, 0.1);
    border: 1px solid rgba(212, 134, 42, 0.2);
    padding: 0.25em 0.55em;
    border-radius: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.work-grid-outcome-text {
    font-size: 0.75em;
    color: var(--color-accent);
    margin: 0;
    line-height: 1.3;
}


/* ================================================================
   ABOUT PAGE — strengthened copy sections
   ================================================================ */

.about-strengths .flex-col h4 {
    color: var(--color-dark);
}

.about-strengths .flex-col p {
    color: rgba(26, 22, 18, 0.65);
}


/* ================================================================
   FOCUS VISIBLE — keyboard navigation accessibility
   ================================================================ */

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}


/* ================================================================
   HERO SECTION — responsive stacking & overlap fixes
   ================================================================ */

/* Gradient overlay on the portrait so text is always legible.
   The pseudo-element sits above the image but below the content. */
.hero-section .personal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(26, 22, 18, 0.84) 0%,
    rgba(26, 22, 18, 0.45) 52%,
    rgba(26, 22, 18, 0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-section .personal-image img {
      opacity: 0.8 !important;
    }

/* Portrait image — never intercept pointer events */
.hero-section .personal-image {
  pointer-events: none;
}

/* Raise the content container above all overlay layers */
.hero-section .hero-main-container {
  position: relative;
  z-index: 10;
}

/* Content col — bounded width so text doesn't stretch the full row
   and min-width so it never collapses to zero on narrow viewports */
.hero-section .hero-content-col {
  min-width: 260px;
  max-width: 520px;
}

/* Services meta line — specialty pills */
.hero-services-meta {
  margin-top: 0.6em;
  margin-bottom: 0.15em;
  color: rgba(237, 234, 231, 0.871);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* Metrics row */
.hero-metrics-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
}

.hero-metric-item {
  font-family: var(--font-syne), sans-serif;
  font-weight: 600;
  font-size: 0.82em;
  color: rgba(246, 243, 243, 0.5);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-metric-sep {
  color: rgba(255, 255, 254, 0.922);
  font-size: 0.82em;
}

/* Button row — flex with gap, wraps on tight viewports */
.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
  margin-top: 0.3em;
}

/* Keep the secondary "View Work" link vertically centred with the button */
.hero-btn-secondary {
  display: flex;
  align-items: center;
}


/* ================================================================
   HERO — Tablet (721px – 900px)
   ================================================================ */

@media screen and (min-width: 721px) and (max-width: 900px) {
  /* Gradient shifts more to the left on medium screens */
  .hero-section .personal-image::after {
    background: linear-gradient(
      110deg,
      rgba(26, 22, 18, 0.88) 0%,
      rgba(26, 22, 18, 0.5) 55%,
      rgba(26, 22, 18, 0.1) 100%
    );
  }

  .hero-section .hero-content-col {
    max-width: 420px;
  }
}


/* ================================================================
   HERO — Mobile (≤ 720px)  — layout.css already changes row to
   flex-start and reduces big-name bottom offset here we extend it
   ================================================================ */

   @media screen and (max-width: 720px) {

    /* Column flex so order property works on all direct children */
    .hero-section {
      flex-direction: column !important;
      justify-content: flex-start !important;
      align-items: stretch !important;
    }
  
    /* Nav stays pinned at the very top */
    .hero-section .top-nav {
      order: 1;
      z-index: 20;
    }
  
    /* Marquee moves into normal flow — renders between nav and content */
    .hero-section .big-name {
      position: relative !important;
      bottom: auto !important;
      left: 0 !important;
      width: 100% !important;
      order: 2;
      padding-top: 40vh !important;
      padding-bottom: 0;
      pointer-events: none;
    }
  
    /* Content block renders below the marquee */
    .hero-section .hero-main-container {
      order: 3;
      padding-top: calc(var(--gap-padding) * 1.5) !important;
      padding-bottom: calc(var(--gap-padding) * 3) !important;
    }
  
    .hero-section .white-block {
      order: 4;
    }
  
    /* Gradient darkens at bottom where content now lives */
    .hero-section .personal-image::after {
      background: linear-gradient(
        180deg,
        rgba(26, 22, 18, 0.35) 0%,
        rgba(26, 22, 18, 0.65) 50%,
        rgba(26, 22, 18, 0.96) 100%
      );
    }
    .hero-section .personal-image img {
      opacity: 0.8 !important;
    }
  
    .hero-section .hero-content-col {
      width: 100% !important;
      max-width: 100%;
      min-width: 0;
      align-items: center;
      text-align: center;
    }
  
    .hero-section .row .flex-col h4 {
      font-size: clamp(1.75em, 6.5vw, 2.4em);
      line-height: 1.3;
      text-align: center;
    }
  
    .hero-services-meta {
      font-size: 0.72em !important;
      letter-spacing: 0.03em;
      text-align: center;
    }
  
    .hero-metric-item {
      font-size: 0.75em;
    }
  
    .hero-metrics-line {
      justify-content: center;
    }
  
    .hero-btn-row {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.65em;
    }
  
    .hero-btn-row .btn {
      max-width: 220px;
      width: 100%;
    }
  
    .hero-btn-secondary {
      width: auto !important;
    }
  
    /* Arrow accent hidden when centered */
    .hero-section .header-above-h4 {
        position: relative;
        align-items: self-start;
        top: auto;
        padding-left: 2.5em;
        padding-top: 2em;
        margin-bottom: 0.5em;
      }
  }
  
  
  @media screen and (max-width: 480px) {

    /* Marquee centered in viewport */
    .hero-section .big-name {
        position: relative !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        order: 2;
        padding-top: 15vh;
        padding-bottom: 0;
        pointer-events: none;
    }
  
    .hero-section .row .flex-col h4 {
      font-size: clamp(1.55em, 8vw, 2em);
    }
  
    .hero-section .personal-image img {
      opacity: 0.45;
    }
  }



  