/*
Theme Name: Vaidva Child
Theme URI: https://vaidva.lt
Template: hello-elementor
Description: Custom child theme for vaidva.lt — premium styling on top of Hello Elementor.
Author: Vaidva
Version: 1.1.0
Text Domain: vaidva-child
*/

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --color-bg: #ffffff;
    --color-fg: #0f172a;
    --color-fg-muted: #475569;
    --color-fg-soft: #64748b;

    --color-accent: #c8203f;
    --color-accent-dark: #9a1830;
    --color-accent-soft: #fdecef;
    --color-accent-line: rgba(200, 32, 63, 0.18);

    --color-amber: #ea7f1d;       /* secondary accent for industrial feel */

    --color-border: #e2e8f0;
    --color-surface: #f8fafc;
    --color-surface-2: #f1f5f9;
    --color-dark: #0b1220;        /* deeper than #111827 for more drama */
    --color-dark-2: #131b2e;
    --color-dark-3: #1e293b;

    --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --container: 1240px;
    --container-narrow: 900px;
    --gutter: clamp(20px, 5vw, 40px);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px -8px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 24px 64px -16px rgba(15, 23, 42, 0.22);
    --shadow-accent: 0 12px 32px -8px rgba(200, 32, 63, 0.35);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 76px;
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-fg);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--color-dark);
    margin: 0 0 0.6em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); letter-spacing: -0.03em; line-height: 1.1; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--color-accent); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--color-accent-dark); }

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   LAYOUT
============================================================ */
.site-main, .entry-content { max-width: none; padding: 0; }
.entry-content > * { max-width: var(--container); margin-left: auto; margin-right: auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.entry-content > .alignfull { max-width: none; padding-left: 0; padding-right: 0; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 200ms var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06); }
.site-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: var(--header-h);
}

/* Brand: logo mark + wordmark */
.site-branding { display: flex; align-items: center; }
.site-branding .brand-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.site-branding .brand-mark {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
}
.site-branding .brand-mark svg { width: 100%; height: 100%; display: block; }
.site-branding .brand-text {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.035em;
    line-height: 1;
}

/* Desktop nav */
.site-navigation ul.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-navigation li { list-style: none; }
.site-navigation li a {
    color: var(--color-fg);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: color 200ms var(--ease);
}
.site-navigation li a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 4px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: right 250ms var(--ease-out);
}
.site-navigation li a:hover { color: var(--color-accent); }
.site-navigation li a:hover::after,
.site-navigation li.current-menu-item a::after { right: 0; }
.site-navigation li.current-menu-item a { color: var(--color-accent); }

/* Header CTA pill (hidden on mobile) */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--color-dark);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 200ms var(--ease);
}
.header-cta:hover { background: var(--color-accent); transform: translateY(-1px); }

/* Hamburger (mobile only) */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    margin: -10px;
    color: var(--color-dark);
}
.menu-toggle svg { width: 26px; height: 26px; display: block; }
#menu-state { display: none; }

/* Desc element from default WP — hide */
.site-description { display: none; }

/* ============================================================
   MOBILE MENU
============================================================ */
@media (max-width: 900px) {
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .site-navigation {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform 280ms var(--ease-out), opacity 200ms var(--ease), visibility 200ms;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
        border-top: 1px solid var(--color-border);
    }
    .site-navigation ul.menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px var(--gutter);
    }
    .site-navigation li {
        border-bottom: 1px solid var(--color-border);
    }
    .site-navigation li:last-child { border-bottom: 0; }
    .site-navigation li a {
        display: block;
        padding: 18px 0;
        font-size: 1.05rem;
        font-weight: 600;
    }
    .site-navigation li a::after { display: none; }
    #menu-state:checked ~ .site-header-inner .site-navigation,
    body.menu-open .site-navigation {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    body.menu-open { overflow: hidden; }
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--color-dark);
    overflow: hidden;
    isolation: isolate;
}
.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-section .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.05);
    animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.78) 50%, rgba(11, 18, 32, 0.65) 100%),
        linear-gradient(0deg, rgba(11, 18, 32, 0.55), rgba(11, 18, 32, 0));
    z-index: 1;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 28px 28px;
    z-index: 1;
    opacity: 0.5;
}
.hero-section .hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(80px, 14vw, 140px) var(--gutter);
    width: 100%;
}
.hero-section .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 28px;
    padding: 7px 16px 7px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}
.hero-section .hero-eyebrow::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(200, 32, 63, 0.25);
}
.hero-section h1 {
    color: #fff;
    max-width: 920px;
    margin-bottom: 28px;
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    line-height: 1.02;
}
.hero-section h1 .accent { color: var(--color-accent); }
.hero-section .hero-subtitle {
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin-bottom: 44px;
    line-height: 1.55;
    font-weight: 400;
}
.hero-section .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBob 2.4s ease-in-out infinite;
}
.hero-scroll::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}
@keyframes scrollBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
@media (max-width: 600px) { .hero-scroll { display: none; } }

/* Page header (inner pages) */
.page-header {
    position: relative;
    background: var(--color-dark);
    color: #fff;
    padding: clamp(80px, 12vw, 130px) var(--gutter) clamp(60px, 9vw, 90px);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 28px 28px;
    z-index: 0;
}
.page-header::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: var(--color-accent);
    border-radius: 4px;
}
.page-header h1 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 200ms var(--ease);
    text-decoration: none !important;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff !important;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -8px rgba(200, 32, 63, 0.45);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff !important;
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: clamp(70px, 10vw, 120px) var(--gutter); position: relative; }
.section-narrow { padding: clamp(50px, 7vw, 80px) var(--gutter); }
.section-dark {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}
.section-soft { background: var(--color-surface); }

.section-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    margin-bottom: 18px;
}
.section-header .eyebrow::before {
    content: "";
    width: 24px; height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}
.section-header p { font-size: 1.1rem; color: var(--color-fg-muted); }

/* ============================================================
   CARDS (services)
============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
    .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 280ms var(--ease-out);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.card:hover::before { transform: scaleY(1); }

.card .icon {
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    font-size: 26px;
    transition: transform 280ms var(--ease-out);
}
.card:hover .icon { transform: scale(1.06) rotate(-3deg); }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--color-fg-muted); margin: 0; flex-grow: 1; font-size: 0.97rem; }
.card .card-link {
    margin-top: 22px;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 200ms var(--ease-out);
    font-size: 0.95rem;
}
.card:hover .card-link { gap: 10px; }

/* ============================================================
   PROJECT CARDS
============================================================ */
.project-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--color-surface-2);
    isolation: isolate;
}
.project-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease-out);
}
.project-card:hover img { transform: scale(1.07); }
.project-card .project-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transform: translateY(8px);
    transition: transform 320ms var(--ease-out);
}
.project-card:hover .project-overlay { transform: translateY(0); }
.project-card .project-overlay h3,
.project-card .project-overlay h4 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.project-card .project-overlay span {
    font-size: 0.82rem;
    opacity: 0.8;
    letter-spacing: 0.04em;
}

/* ============================================================
   STATS
============================================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 800px) { .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; top: 14%; bottom: 14%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 800px) {
    .stat-item:nth-child(2n)::after { display: none; }
}
.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}

/* ============================================================
   TWO-COLUMN
============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}
.two-col > div:has(img) { position: relative; }
.two-col > div:has(img)::before {
    content: "";
    position: absolute;
    right: -16px; bottom: -16px;
    width: 60%;
    height: 60%;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.12;
}

/* ============================================================
   FEATURE LIST
============================================================ */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .feature-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 0 0 4px rgba(200, 32, 63, 0.05);
}
.feature-list h3,
.feature-list h4 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
}
.feature-list p {
    color: var(--color-fg-muted);
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.55;
}

/* ============================================================
   CTA BLOCK
============================================================ */
.cta-block {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #fff;
    padding: clamp(60px, 9vw, 90px) clamp(30px, 5vw, 60px);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: -1;
    opacity: 0.6;
}
.cta-block h2 { color: #fff; margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta-block p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-block .btn {
    background: #fff;
    color: var(--color-accent) !important;
    border-color: #fff;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.25);
}
.cta-block .btn:hover {
    background: var(--color-dark);
    color: #fff !important;
    border-color: var(--color-dark);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}
.contact-info .info-item {
    display: flex; gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-border);
}
.contact-info .info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info .info-item:first-child { padding-top: 0; }
.contact-info .info-icon {
    width: 46px; height: 46px;
    background: #fff;
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}
.contact-info .info-label {
    font-size: 0.78rem;
    color: var(--color-fg-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info .info-value { font-weight: 600; color: var(--color-dark); line-height: 1.4; }
.contact-info .info-value a { color: var(--color-dark); }
.contact-info .info-value a:hover { color: var(--color-accent); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px var(--gutter) 30px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-amber), var(--color-accent));
}
.site-footer .footer-inner { max-width: var(--container); margin: 0 auto; position: relative; }
.site-footer .footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) { .site-footer .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px 30px; } }
@media (max-width: 600px) { .site-footer .footer-cols { grid-template-columns: 1fr; } }
.site-footer h3, .site-footer h5 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 5px 0; color: rgba(255, 255, 255, 0.7); }
.site-footer ul li a { color: rgba(255, 255, 255, 0.7); transition: color 200ms var(--ease); }
.site-footer ul li a:hover { color: var(--color-accent); }
.site-footer .footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.site-footer .footer-brand svg { width: 28px; height: 28px; }
.site-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    max-width: 340px;
    line-height: 1.6;
}
.site-footer .footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}
.site-footer .footer-bottom a { color: rgba(255, 255, 255, 0.8); }

@media (prefers-reduced-motion: reduce) {
    .hero-section .hero-bg img { animation: none; transform: scale(1); }
    .hero-scroll { animation: none; }
}

/* ============================================================
   FORM POLISH
============================================================ */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font: inherit;
    transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(200, 32, 63, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   POLISH
============================================================ */
::selection { background: var(--color-accent); color: #fff; }
.skip-link { position: absolute; left: -9999px; }
