/* ─── Custom Properties ────────────────────────────────────────────────────── */
:root {
    color-scheme: dark;

    /* Hex baseline — supported everywhere */
    --bg:           #0d0d11;
    --bg-card:      #111116;
    --bg-secondary: #1a1a22;
    --border:       #2d2d3a;
    --fg:           #fafafa;
    --fg-muted:     #8a8a96;
    --accent:       #c9a21c;
    --accent-dark:  #b8921a;
    --accent-fg:    #0d0d11;

    --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --radius:     3px;
    --max-w:      1280px;
    --px:         1.5rem;
}

/* oklch upgrade — only applied when the browser confirms support (iOS 15.4+) */
@supports (color: oklch(0 0 0)) {
    :root {
        --bg:           oklch(0.10 0.005 250);
        --bg-card:      oklch(0.13 0.005 250);
        --bg-secondary: oklch(0.18 0.005 250);
        --border:       oklch(0.25 0.005 250);
        --fg:           oklch(0.98 0 0);
        --fg-muted:     oklch(0.65 0 0);
        --accent:       oklch(0.75 0.15 75);
        --accent-dark:  oklch(0.68 0.15 75);
        --accent-fg:    oklch(0.10 0.005 250);
    }
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
    background: #a59176;
    color: var(--fg);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
#page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--bg);
    position: relative;
    overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); }

/* ─── Utilities ────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}
.text-accent  { color: var(--accent); }
.font-serif   { font-family: var(--font-serif); }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
    background: rgba(248,248,248,0.06);
    border: 1px solid rgba(248,248,248,0.2);
    color: var(--fg);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(248,248,248,0.11); }

/* ─── Section Image Headers ────────────────────────────────────────────────── */
.sec-header {
    position: relative;
    padding: 3rem 0 3.5rem;
    display: flex;
    align-items: center;
}
.sec-header__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top right;
}
.sec-header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    width: 100%;
    text-align: center;
}
.sec-header__inner .txt {
    max-width: 42rem;
    display: inline-block;
    background: rgba(10,10,14,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
 /*   border-left: 2px solid var(--accent);*/
}
.sec-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    font-family: var(--font-serif);
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.sec-header p.sub {
    margin-top: 1rem;
    color: rgba(248,248,248,0.90);
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.7;
}

/* ─── Cards / Shared ───────────────────────────────────────────────────────── */
.card-base {
    border: 1px solid rgba(45,46,60,0.8);
    border-radius: var(--radius);
    background: rgba(24,25,33,0.5);
    transition: border-color 0.18s, background 0.18s;
}
.card-base:hover {
    border-color: rgba(56,57,74,1);
    background: rgba(24,25,33,0.7);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  HEADER / NAV                                                               */
/* ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 100;
    background: rgba(13,13,17,0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.875rem;
    color: var(--fg-muted);
    transition: color 0.18s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { margin-left: 1rem; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg);
    padding: 0.25rem;
    line-height: 0;
}
.mobile-nav {
    display: none;
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.mobile-links a {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    transition: color 0.18s;
}
.mobile-links a:hover { color: var(--fg); }

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  HERO                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */
#hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 64px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://tremendouslight.com/webdesign2026/images/hero-bg.jpg');
    background-size: cover;
    background-position: right 0px top 64px;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem var(--px) 2.5rem;
    max-width: 58rem;
}
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    font-family: var(--font-serif);
    letter-spacing: -0.03em;
    line-height: 1.06;
}
.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(248,248,248,0.9);
    max-width: 38rem;
    line-height: 1.68;
}
.hero-desc {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    color: var(--fg-muted);
    max-width: 38rem;
    line-height: 1.7;
}
.hero-ctas {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}
.hero-trusted {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248,248,248,0.1);
}
.hero-trusted p {
    font-size: 0.8rem;
    color: var(--fg-muted);
    letter-spacing: 0.03em;
    margin-bottom: 1.125rem;
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem 2.5rem;
}
.logo-row img {
    height: 26px;
    width: auto;
    opacity: 0.55;
    filter: brightness(1.6) grayscale(1);
    transition: opacity 0.2s;
}
.logo-row img:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  WORK                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */
#work { background: rgba(20,21,28,0.6); }

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 0 4.5rem;
}
@media (min-width: 768px) { .work-grid { grid-template-columns: 1fr 1fr; } }

.work-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.work-card:hover { border-color: rgba(201,162,28,0.45); }

.work-card-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.work-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.work-card:hover .work-card-thumb img { transform: scale(1.04); }

.work-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;  /* no overlay by default — thumbnail fully visible */
    transition: background 0.2s;
}

/* dim non-hovered thumbnails when any card in the grid is hovered */
/* only active on true pointer/mouse devices — disabled on touchscreens */
.work-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
@media (hover: hover) {
    .work-grid:hover .work-card:not(:hover) .work-card-thumb::after {
        opacity: 1;
    }
}

.play-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(201,162,28,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.work-card:hover .play-btn { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; fill: #0d0d11; margin-left: 3px; }

.work-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(13,13,17,0.82);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.73rem;
    letter-spacing: 0.02em;
    color: var(--fg);
}
.work-card-info {
    padding: 1.375rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.work-card-client { font-size: 0.8rem; color: var(--accent); margin-bottom: 0.2rem; }
.work-card-title  { font-size: 1rem; font-weight: 500; }
.work-card-desc   { margin-top: 0.375rem; font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════════════════ */
/*  SERVICES                                                                    */
/* ═══════════════════════════════════════════════════════════════════════════ */
#services { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 0 4.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }

.service-card {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.svc-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(201,162,28,0.09);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  WHY US                                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */
#why-us { background: rgba(20,21,28,0.6); }

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    padding: 3.5rem 0 4.5rem;
}
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
}
.why-num {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(201,162,28,0.09);
    border: 1px solid rgba(201,162,28,0.2);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}
.why-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.why-head svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
.why-card h3 { font-size: 1rem; font-weight: 500; }
.why-card p  { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; max-width: 52rem; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  PROCESS                                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */
#process { background: var(--bg); }

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 4.5rem;
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.pricing-box { padding: 1.5rem; }
.pricing-box h3 { font-size: 1rem; font-weight: 500; margin-bottom: 1.25rem; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.pricing-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.6;
}
.pricing-list li .dash { color: var(--accent); flex-shrink: 0; }

.steps { display: flex; flex-direction: column; gap: 1.125rem; }
.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.375rem;
}
.step-num {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(201,162,28,0.09);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}
.step-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.375rem; }
.step-head svg { width: 15px; height: 15px; color: var(--accent); }
.step h3 { font-size: 0.9375rem; font-weight: 500; }
.step p  { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  TESTIMONIALS                                                                */
/* ═══════════════════════════════════════════════════════════════════════════ */
#testimonials { background: rgba(20,21,28,0.6); }

.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 0 4.5rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: 1fr 1fr; } }

.testi-card {
    position: relative;
    padding: 2rem;
}
.testi-quote-icon {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    width: 30px; height: 30px;
    color: rgba(201,162,28,0.45);
}
.testi-card blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--fg);
    line-height: 1.75;
}
.testi-card footer {
    margin-top: 1.5rem;
    padding-top: 1.375rem;
    border-top: 1px solid rgba(201,162,28,0.3);
}
.testi-card footer .author { font-size: 0.875rem; font-weight: 500; color: var(--fg); }
.testi-card footer .role   { font-size: 0.8125rem; color: var(--accent); margin-top: 0.15rem; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  CONTACT                                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */
#contact { background: var(--bg); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 3.5rem 0 4.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item  { display: flex; align-items: center; gap: 1rem; }
.ci-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(201,162,28,0.09);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-label { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 0.15rem; }
.ci-value { color: var(--fg); transition: color 0.18s; }
.ci-value:hover { color: var(--accent); }

.response-note {
    margin-top: 2.25rem;
    padding: 1.375rem;
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.65;
}
.response-note strong { color: var(--fg); font-weight: 500; }

.contact-form { padding: 2rem; }
.form-row { display: flex; flex-direction: column; gap: 1.375rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 0.875rem; font-weight: 500; color: var(--fg); }
.form-field label span { color: var(--fg-muted); font-weight: 400; }
.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    color: var(--fg);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--fg-muted); }
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.form-field textarea { resize: vertical; min-height: 118px; }

.form-notice {
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.form-notice.success { background: rgba(34,197,94,0.1);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.form-notice.error   { background: rgba(239,68,68,0.1);  color: #f87171; border: 1px solid rgba(239,68,68,0.3);  }
.btn-full { width: 100%; margin-top: 0.25rem; }
.field-error {
    display: none;
    font-size: 0.8125rem;
    color: #f87171;
    margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  FOOTER                                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(20,21,28,0.6);
}
.footer-inner { padding: 4rem var(--px); }

.footer-brand { max-width: 42rem; margin-bottom: 3rem; }
.footer-logo  { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; object-fit: contain; }
.footer-logo span { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.footer-tagline { font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.footer-sub     { font-size: 0.875rem; color: var(--accent); margin-bottom: 0.875rem; }
.footer-desc    { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.75rem; list-style: none; }
.footer-nav a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.18s; }
.footer-nav a:hover { color: var(--fg); }

.footer-social { display: flex; align-items: center; gap: 0.625rem; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--fg-muted);
    transition: color 0.18s, border-color 0.18s;
}
.footer-social a:hover { color: var(--fg); border-color: rgba(201,162,28,0.5); }
.footer-social a svg { width: 17px; height: 17px; }

.footer-copy {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  VIDEO LIGHTBOX                                                              */
/* ═══════════════════════════════════════════════════════════════════════════ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.93);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
}
.lightbox-close {
    position: absolute;
    top: -2.75rem; right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.375rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.18s;
    padding: 0.25rem;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-video {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.lightbox-video iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Hero stat strip ──────────────────────────────────────────────────────── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248,248,248,0.1);
    flex-wrap: wrap;
    gap: 1rem 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0 2rem 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--fg-muted);
    letter-spacing: 0.02em;
}
.hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(248,248,248,0.12);
    margin-right: 2rem;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0; width: 50%; }
}

/* ─── Service price badge ──────────────────────────────────────────────────── */
.svc-price {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    background: rgba(201,162,28,0.09);
    border: 1px solid rgba(201,162,28,0.2);
    border-radius: 999px;
    padding: 0.1rem 0.6rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    letter-spacing: 0.01em;
}
.service-card h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

/* ─── Select field ─────────────────────────────────────────────────────────── */
.form-field select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    color: var(--fg);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a96' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.form-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.form-field select option { background: var(--bg-secondary); color: var(--fg); }

/* ─── Anchor scroll offset (accounts for fixed 64px header) ───────────────── */
#work, #services, #why-us, #process, #testimonials, #contact {
    scroll-margin-top: 64px;
}

@media (max-width: 640px) {
    :root { --px: 1rem; }
    .hero-title { font-size: 2.2rem; }
}
@media (min-width: 1024px) {
    .sec-header__inner { min-height: 220px; }
    .sec-header { padding: 3rem 0 4rem; }
}

/* ─── Case study link ──────────────────────────────────────────────────────── */
.case-study-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.18s, gap 0.18s;
    letter-spacing: 0.01em;
}
.case-study-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}


.price-equiv {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--fg-muted);
    margin-left: 0.2rem;
}

/* ─── Footer VAT line ──────────────────────────────────────────────────────── */
.footer-vat {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--fg-muted);
}
.footer-vat sup {
    font-size: 0.6rem;
    vertical-align: super;
    line-height: 0;
}

/* ─── Cookie consent banner ────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 300;
    background: rgba(13,13,17,0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.cookie-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
}
.cookie-text {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}
.cookie-btns {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}
.cookie-accept {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}
.cookie-leave {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}
