/*
Theme Name: Veil Automotive
Theme URI: https://veilautomotive.co.uk/
Author: Veil Automotive
Author URI: https://veilautomotive.co.uk/
Description: A premium, fully animated WordPress theme for Veil Automotive. Features GSAP-powered scroll animations, custom post types for Services, Vehicles & Gallery, full Customizer support, and auto-generated pages on activation. Built specifically for high-end automotive detailing, PPF, vinyl wrapping and ceramic coating businesses.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veil-automotive
Tags: automotive, business, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, footer-widgets, blog, portfolio
*/

/* =========================================================
   CSS VARIABLES — controlled via WP Customizer
   ========================================================= */
:root {
    --veil-bg: #0a0a0a;
    --veil-bg-2: #111111;
    --veil-bg-3: #1a1a1a;
    --veil-card: #141414;
    --veil-border: rgba(255, 122, 26, 0.15);
    --veil-border-hover: rgba(255, 122, 26, 0.6);
    --veil-accent: #ff7a1a;
    --veil-accent-2: #ffa040;
    --veil-accent-glow: rgba(255, 122, 26, 0.35);
    --veil-text: #ffffff;
    --veil-text-muted: rgba(255, 255, 255, 0.7);
    --veil-text-dim: rgba(255, 255, 255, 0.5);
    --veil-font-heading: 'Inter', 'Helvetica Neue', sans-serif;
    --veil-font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --veil-radius: 14px;
    --veil-radius-sm: 8px;
    --veil-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
    --veil-shadow-orange: 0 20px 60px -15px rgba(255, 122, 26, 0.4);
    --veil-easing: cubic-bezier(0.65, 0, 0.35, 1);
    --veil-easing-out: cubic-bezier(0.16, 1, 0.3, 1);
    --veil-container: 1280px;
    --veil-nav-h: 84px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--veil-bg);
    color: var(--veil-text);
    font-family: var(--veil-font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--veil-accent); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--veil-accent-2); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--veil-font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
::selection { background: var(--veil-accent); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--veil-bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--veil-accent), var(--veil-accent-2)); border-radius: 10px; }

/* =========================================================
   LAYOUT
   ========================================================= */
.veil-container {
    width: 100%;
    max-width: var(--veil-container);
    margin: 0 auto;
    padding: 0 24px;
}
.veil-section { padding: 100px 0; position: relative; }
.veil-section--lg { padding: 140px 0; }
.veil-section--sm { padding: 60px 0; }
.veil-section-header { text-align: center; margin-bottom: 60px; }
.veil-eyebrow {
    display: inline-block;
    color: var(--veil-accent);
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}
.veil-section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin: 0 0 16px;
}
.veil-section-subtitle {
    color: var(--veil-text-muted);
    font-size: clamp(15px, 1.5vw, 18px);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================================
   PRELOADER
   ========================================================= */
.veil-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--veil-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s ease, visibility .8s ease;
}
.veil-preloader.is-hidden { opacity: 0; visibility: hidden; }
.veil-preloader__logo {
    width: 120px;
    height: 120px;
    position: relative;
    animation: veil-pulse 2s ease-in-out infinite;
}
.veil-preloader__ring {
    position: absolute;
    inset: -20px;
    border: 2px solid transparent;
    border-top-color: var(--veil-accent);
    border-right-color: var(--veil-accent-2);
    border-radius: 50%;
    animation: veil-spin 1.2s linear infinite;
}
@keyframes veil-spin { to { transform: rotate(360deg); } }
@keyframes veil-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.95); opacity: .8; }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.veil-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--veil-nav-h);
    z-index: 999;
    transition: background .4s ease, backdrop-filter .4s ease, height .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
}
.veil-header.is-scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--veil-border);
    height: 70px;
}
.veil-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.veil-logo { display: flex; align-items: center; gap: 10px; }
.veil-logo img { max-height: 50px; width: auto; }
.veil-logo__text {
    font-family: var(--veil-font-heading);
    font-weight: 800;
    letter-spacing: 0.3em;
    font-size: 18px;
    color: #fff;
}
.veil-nav { display: flex; align-items: center; gap: 36px; }
.veil-nav ul { display: flex; gap: 32px; align-items: center; }
.veil-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color .3s ease;
}
.veil-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--veil-accent), var(--veil-accent-2));
    transition: all .35s var(--veil-easing);
    transform: translateX(-50%);
}
.veil-nav a:hover, .veil-nav a.current-menu-item, .veil-nav .current-menu-item a {
    color: #fff;
}
.veil-nav a:hover::after, .veil-nav .current-menu-item a::after { width: 100%; }

.veil-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    color: #fff !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px -10px var(--veil-accent-glow);
    transition: all .35s var(--veil-easing);
    position: relative;
    overflow: hidden;
}
.veil-btn-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left .7s ease;
}
.veil-btn-cta:hover::before { left: 100%; }
.veil-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px var(--veil-accent-glow); }

/* Mobile menu */
.veil-burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--veil-border);
}
.veil-burger span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .35s var(--veil-easing);
}
.veil-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.veil-burger.is-open span:nth-child(2) { opacity: 0; }
.veil-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.veil-mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(360px, 85vw);
    height: 100vh;
    background: var(--veil-bg-2);
    border-left: 1px solid var(--veil-border);
    padding: 100px 32px 40px;
    z-index: 998;
    transition: right .5s var(--veil-easing);
    overflow-y: auto;
}
.veil-mobile-nav.is-open { right: 0; }
.veil-mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.veil-mobile-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.veil-mobile-nav a {
    display: block;
    padding: 18px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: padding-left .35s var(--veil-easing), color .3s ease;
}
.veil-mobile-nav a:hover { padding-left: 12px; color: var(--veil-accent); }
.veil-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}
.veil-mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   HERO
   ========================================================= */
.veil-hero {
    position: relative;
    min-height: 720px;
    height: 92vh;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--veil-nav-h);
}
.veil-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
}
.veil-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 35%, rgba(10,10,10,0.2) 70%, rgba(10,10,10,0.3) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(255,122,26,0.15) 0%, transparent 50%);
    z-index: 1;
}
.veil-hero__watermark {
    position: absolute;
    left: -20px;
    top: 30%;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    max-width: 540px;
    width: 60vw;
}
.veil-hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}
.veil-hero__title {
    font-size: clamp(40px, 6.5vw, 76px);
    line-height: 1.02;
    margin: 0 0 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.veil-hero__title .accent {
    background: linear-gradient(135deg, var(--veil-accent) 0%, var(--veil-accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.veil-hero__sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--veil-text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}
.veil-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--veil-text-dim);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.veil-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--veil-accent), transparent);
    position: relative;
    overflow: hidden;
}
.veil-hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff, transparent);
    animation: veil-scroll-drop 2.2s ease-in-out infinite;
}
@keyframes veil-scroll-drop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.veil-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    color: #fff !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 40px -12px var(--veil-accent-glow);
    transition: all .4s var(--veil-easing);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.veil-btn--lg { padding: 20px 44px; font-size: 16px; }
.veil-btn--ghost {
    background: transparent;
    border: 1.5px solid var(--veil-accent);
    color: var(--veil-accent) !important;
    box-shadow: none;
}
.veil-btn--ghost:hover {
    background: var(--veil-accent);
    color: #fff !important;
}
.veil-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width .5s ease, height .5s ease;
    pointer-events: none;
}
.veil-btn:hover::after { width: 320px; height: 320px; }
.veil-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -10px var(--veil-accent-glow); }
.veil-btn .icon { transition: transform .35s ease; }
.veil-btn:hover .icon { transform: translateX(4px); }

.veil-link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--veil-accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap .35s ease;
}
.veil-link-more:hover { gap: 14px; color: var(--veil-accent-2); }
.veil-link-more svg { transition: transform .35s ease; }

/* =========================================================
   ICON CARD GRID (top features)
   ========================================================= */
.veil-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.veil-icon-card {
    position: relative;
    padding: 28px 18px;
    background: var(--veil-card);
    border: 1px solid var(--veil-border);
    border-radius: var(--veil-radius);
    text-align: center;
    transition: all .5s var(--veil-easing);
    overflow: hidden;
    transform-style: preserve-3d;
}
.veil-icon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,122,26,0.08), transparent 60%);
    opacity: 0;
    transition: opacity .5s ease;
}
.veil-icon-card:hover {
    transform: translateY(-8px);
    border-color: var(--veil-border-hover);
    box-shadow: 0 18px 40px -15px rgba(255,122,26,0.25);
}
.veil-icon-card:hover::before { opacity: 1; }
.veil-icon-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform .5s var(--veil-easing);
}
.veil-icon-card:hover .veil-icon-card__icon { transform: scale(1.1) rotate(-4deg); }
.veil-icon-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.veil-icon-card__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}
.veil-icon-card__text {
    font-size: 13px;
    color: var(--veil-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* =========================================================
   FEATURE COLUMNS (Invisible Protection)
   ========================================================= */
.veil-feature-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    margin-top: 60px;
    position: relative;
}
.veil-feature-cols::before, .veil-feature-cols::after {
    content: '';
    position: absolute;
    top: 50px;
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--veil-border-hover), transparent);
}
.veil-feature-cols::before { left: 33.33%; }
.veil-feature-cols::after { left: 66.66%; }
.veil-feature {
    padding: 0 20px;
}
.veil-feature__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    transition: transform .5s var(--veil-easing);
}
.veil-feature:hover .veil-feature__icon { transform: rotate(-6deg) scale(1.08); }
.veil-feature__title { font-size: 22px; margin-bottom: 14px; }
.veil-feature__text { color: var(--veil-text-muted); font-size: 14.5px; line-height: 1.65; }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.veil-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.veil-service-card {
    background: var(--veil-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--veil-radius);
    overflow: hidden;
    transition: all .5s var(--veil-easing);
    position: relative;
    display: flex;
    flex-direction: column;
}
.veil-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--veil-border-hover);
    box-shadow: 0 30px 60px -20px rgba(255,122,26,0.25);
}
.veil-service-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.veil-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--veil-easing);
}
.veil-service-card:hover .veil-service-card__image img { transform: scale(1.08); }
.veil-service-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
}
.veil-service-card__content { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.veil-service-card__title { font-size: 22px; margin-bottom: 12px; }
.veil-service-card__text {
    color: var(--veil-text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

/* =========================================================
   CUSTOM PACKAGES CTA
   ========================================================= */
.veil-package-cta {
    position: relative;
    padding: 90px 60px;
    border-radius: var(--veil-radius);
    overflow: hidden;
    background: var(--veil-bg-3);
    isolation: isolate;
}
.veil-package-cta__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.veil-package-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.veil-package-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 40%, transparent 80%);
    z-index: -1;
}
.veil-package-cta__inner { max-width: 520px; position: relative; z-index: 1; }

/* =========================================================
   STYLING SERVICES GRID
   ========================================================= */
.veil-styling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.veil-styling-card {
    background: var(--veil-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--veil-radius);
    overflow: hidden;
    transition: all .5s var(--veil-easing);
    position: relative;
}
.veil-styling-card:hover {
    transform: translateY(-8px);
    border-color: var(--veil-border-hover);
    box-shadow: 0 25px 50px -20px rgba(255,122,26,0.25);
}
.veil-styling-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.veil-styling-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--veil-easing);
}
.veil-styling-card:hover .veil-styling-card__image img { transform: scale(1.1); }
.veil-styling-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7));
}
.veil-styling-card__content { padding: 24px 26px 28px; }
.veil-styling-card__title { font-size: 20px; margin-bottom: 14px; }
.veil-styling-card__list { margin: 0; }
.veil-styling-card__list li {
    color: var(--veil-text-muted);
    font-size: 14px;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}
.veil-styling-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--veil-accent);
    box-shadow: 0 0 10px var(--veil-accent);
}

/* =========================================================
   POPULAR VEHICLES
   ========================================================= */
.veil-vehicles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.veil-vehicle-card {
    background: linear-gradient(180deg, var(--veil-card), #0c0c0c);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--veil-radius);
    overflow: hidden;
    transition: all .5s var(--veil-easing);
    position: relative;
}
.veil-vehicle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--veil-radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--veil-accent), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.veil-vehicle-card:hover { transform: translateY(-8px); }
.veil-vehicle-card:hover::before { opacity: 1; }
.veil-vehicle-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.veil-vehicle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: all .8s var(--veil-easing);
}
.veil-vehicle-card:hover .veil-vehicle-card__image img {
    filter: brightness(1);
    transform: scale(1.08);
}
.veil-vehicle-card__title {
    padding: 20px 22px 24px;
    font-size: 18px;
    margin: 0;
    position: relative;
}
.veil-vehicle-card__title::after {
    content: '';
    position: absolute;
    left: 22px;
    bottom: 14px;
    width: 0;
    height: 2px;
    background: var(--veil-accent);
    transition: width .5s var(--veil-easing);
}
.veil-vehicle-card:hover .veil-vehicle-card__title::after { width: 40px; }

/* =========================================================
   FOOTER CTA BAR
   ========================================================= */
.veil-cta-bar {
    background: linear-gradient(135deg, var(--veil-bg-3), var(--veil-card));
    border: 1px solid var(--veil-border);
    border-radius: var(--veil-radius);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.veil-cta-bar::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,26,0.2), transparent 70%);
    top: -100px;
    left: -100px;
    animation: veil-float 8s ease-in-out infinite;
}
@keyframes veil-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}
.veil-cta-bar__left { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.veil-cta-bar__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px -10px var(--veil-accent-glow);
}
.veil-cta-bar__title { font-size: 22px; margin-bottom: 4px; }
.veil-cta-bar__text { font-size: 14px; color: var(--veil-text-muted); margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.veil-footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.veil-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.veil-footer__logo img { max-height: 60px; margin-bottom: 20px; }
.veil-footer__about { color: var(--veil-text-muted); font-size: 14px; line-height: 1.7; max-width: 320px; }
.veil-footer__heading {
    font-size: 17px;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
    color: #fff;
}
.veil-footer__list a {
    display: block;
    padding: 7px 0;
    color: var(--veil-text-muted);
    font-size: 14px;
    transition: all .3s ease;
}
.veil-footer__list a:hover { color: var(--veil-accent); padding-left: 6px; }

.veil-socials { display: flex; gap: 12px; }
.veil-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .35s var(--veil-easing);
}
.veil-social:hover {
    background: var(--veil-accent);
    border-color: var(--veil-accent);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -8px var(--veil-accent-glow);
}

.veil-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.veil-footer__copy { color: var(--veil-text-dim); font-size: 13px; margin: 0; }
.veil-footer__legal { display: flex; gap: 24px; }
.veil-footer__legal a { color: var(--veil-text-dim); font-size: 13px; }
.veil-footer__legal a:hover { color: var(--veil-accent); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.veil-page-header {
    padding: calc(var(--veil-nav-h) + 80px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(255,122,26,0.12), transparent 60%),
        linear-gradient(180deg, var(--veil-bg-2), var(--veil-bg));
}
.veil-page-header__title {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 16px;
}
.veil-page-header__crumbs {
    color: var(--veil-text-muted);
    font-size: 14px;
    letter-spacing: 0.05em;
}
.veil-page-header__crumbs a { color: var(--veil-accent); }

.veil-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.veil-about-image {
    border-radius: var(--veil-radius);
    overflow: hidden;
    position: relative;
}
.veil-about-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.veil-about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--veil-border);
    border-radius: var(--veil-radius);
    z-index: 1;
    pointer-events: none;
}

.veil-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.veil-stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--veil-card);
    border: 1px solid var(--veil-border);
    border-radius: var(--veil-radius);
    transition: all .4s var(--veil-easing);
}
.veil-stat:hover {
    transform: translateY(-6px);
    border-color: var(--veil-border-hover);
}
.veil-stat__number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    line-height: 1;
}
.veil-stat__label { font-size: 13px; color: var(--veil-text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.veil-services-hero {
    padding: calc(var(--veil-nav-h) + 60px) 0 80px;
    text-align: center;
    background:
        radial-gradient(ellipse at center top, rgba(255,122,26,0.15), transparent 60%),
        var(--veil-bg);
    position: relative;
}
.veil-services-hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}
.veil-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.veil-service-row:nth-child(even) { direction: rtl; }
.veil-service-row:nth-child(even) > * { direction: ltr; }
.veil-service-row__num {
    font-size: 24px;
    color: var(--veil-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.veil-service-row__eyebrow {
    font-size: 14px;
    color: var(--veil-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
}
.veil-service-row__title {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 20px;
}
.veil-service-row__text { color: var(--veil-text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.veil-service-row__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.veil-service-row__feature {
    background: rgba(255,122,26,0.06);
    border: 1px solid var(--veil-border);
    border-radius: var(--veil-radius-sm);
    padding: 16px 14px;
    text-align: center;
    transition: all .4s var(--veil-easing);
}
.veil-service-row__feature:hover {
    background: rgba(255,122,26,0.12);
    transform: translateY(-3px);
}
.veil-service-row__feature img { width: 36px; margin: 0 auto 10px; }
.veil-service-row__feature h4 { font-size: 12px; margin: 0; letter-spacing: 0.06em; }
.veil-service-row__image {
    border-radius: var(--veil-radius);
    overflow: hidden;
    position: relative;
}
.veil-service-row__image img { aspect-ratio: 5 / 4; object-fit: cover; }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.veil-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.veil-gallery-item {
    position: relative;
    border-radius: var(--veil-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}
.veil-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--veil-easing);
}
.veil-gallery-item:hover img { transform: scale(1.1); }
.veil-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity .5s ease;
}
.veil-gallery-item:hover::after { opacity: 1; }
.veil-gallery-item__label {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transform: translateY(20px);
    opacity: 0;
    transition: all .5s var(--veil-easing);
    z-index: 2;
}
.veil-gallery-item:hover .veil-gallery-item__label {
    transform: translateY(0);
    opacity: 1;
}

.veil-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.veil-filter-btn {
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--veil-border);
    color: var(--veil-text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all .35s var(--veil-easing);
    cursor: pointer;
}
.veil-filter-btn:hover, .veil-filter-btn.is-active {
    background: var(--veil-accent);
    border-color: var(--veil-accent);
    color: #fff;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.veil-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.veil-contact-info { padding-right: 20px; }
.veil-contact-info h3 { font-size: 28px; margin-bottom: 18px; }
.veil-contact-info p { color: var(--veil-text-muted); margin-bottom: 30px; }
.veil-contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.veil-contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.veil-contact-item__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--veil-text-dim); margin-bottom: 2px; }
.veil-contact-item__value { color: #fff; font-weight: 500; font-size: 15px; }

.veil-form {
    background: var(--veil-card);
    border: 1px solid var(--veil-border);
    border-radius: var(--veil-radius);
    padding: 40px;
}
.veil-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.veil-form-group { margin-bottom: 18px; }
.veil-form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--veil-text-muted);
    letter-spacing: 0.05em;
}
.veil-form-group input, .veil-form-group select, .veil-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: var(--veil-radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: all .35s ease;
    outline: none;
}
.veil-form-group input:focus, .veil-form-group select:focus, .veil-form-group textarea:focus {
    border-color: var(--veil-accent);
    box-shadow: 0 0 0 3px rgba(255,122,26,0.15);
    background: rgba(0,0,0,0.6);
}
.veil-form-group textarea { resize: vertical; min-height: 130px; }
.veil-form button { width: 100%; justify-content: center; }

/* =========================================================
   GENERIC PAGE / SINGLE / BLOG
   ========================================================= */
.veil-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 100px;
}
.veil-content h1, .veil-content h2, .veil-content h3 { color: #fff; margin-top: 1.4em; }
.veil-content p, .veil-content li { color: var(--veil-text-muted); }
.veil-content a { text-decoration: underline; }
.veil-content blockquote {
    border-left: 3px solid var(--veil-accent);
    padding-left: 20px;
    font-style: italic;
    color: #fff;
    margin: 24px 0;
}
.veil-content img { border-radius: var(--veil-radius); margin: 24px 0; }

/* =========================================================
   ANIMATIONS — initial states for GSAP reveals
   ========================================================= */
.veil-anim-fade { opacity: 0; transform: translateY(40px); }
.veil-anim-fade-left { opacity: 0; transform: translateX(-40px); }
.veil-anim-fade-right { opacity: 0; transform: translateX(40px); }
.veil-anim-scale { opacity: 0; transform: scale(0.92); }
.veil-anim-blur { opacity: 0; filter: blur(12px); }
.veil-stagger > * { opacity: 0; transform: translateY(30px); }

.veil-split-line .word, .veil-split-line .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(4deg);
}

/* Marquee / continuous scroll text */
.veil-marquee {
    display: flex;
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.veil-marquee__track {
    display: flex;
    gap: 60px;
    animation: veil-marquee 30s linear infinite;
    white-space: nowrap;
    padding-right: 60px;
}
.veil-marquee__item {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 60px;
}
.veil-marquee__item::after { content: '◆'; color: var(--veil-accent); font-size: 18px; }
@keyframes veil-marquee {
    to { transform: translateX(-50%); }
}

/* Scroll progress bar */
.veil-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--veil-accent), var(--veil-accent-2));
    width: 0%;
    z-index: 9998;
    transition: width 0.08s linear;
    box-shadow: 0 0 12px var(--veil-accent-glow);
}

/* Floating "back to top" */
.veil-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px -10px var(--veil-accent-glow);
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all .4s var(--veil-easing);
    z-index: 96;
    cursor: pointer;
}
.veil-to-top.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }

/* =========================================================
   404
   ========================================================= */
.veil-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}
.veil-404 h1 {
    font-size: clamp(80px, 14vw, 200px);
    line-height: 1;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .veil-icon-grid { grid-template-columns: repeat(3, 1fr); }
    .veil-services { grid-template-columns: repeat(2, 1fr); }
    .veil-styling-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-vehicles { grid-template-columns: repeat(2, 1fr); }
    .veil-footer__grid { grid-template-columns: 1fr 1fr; }
    .veil-feature-cols { grid-template-columns: 1fr; gap: 50px; }
    .veil-feature-cols::before, .veil-feature-cols::after { display: none; }
    .veil-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .veil-nav, .veil-btn-cta.veil-nav-cta { display: none; }
    .veil-burger { display: flex; }
    .veil-section { padding: 70px 0; }
    .veil-section--lg { padding: 90px 0; }
    .veil-hero { height: auto; min-height: 600px; padding: 140px 0 80px; }
    .veil-hero__watermark { display: none; }
    .veil-icon-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-services { grid-template-columns: 1fr; }
    .veil-styling-grid { grid-template-columns: 1fr; }
    .veil-vehicles { grid-template-columns: 1fr 1fr; }
    .veil-package-cta { padding: 50px 28px; }
    .veil-cta-bar { padding: 24px; text-align: center; justify-content: center; flex-direction: column; }
    .veil-cta-bar__left { flex-direction: column; text-align: center; }
    .veil-about-grid { grid-template-columns: 1fr; }
    .veil-service-row { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
    .veil-service-row:nth-child(even) { direction: ltr; }
    .veil-service-row__features { grid-template-columns: 1fr 1fr; }
    .veil-gallery-grid { grid-template-columns: 1fr 1fr; }
    .veil-contact-grid { grid-template-columns: 1fr; }
    .veil-footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .veil-form { padding: 28px 22px; }
    .veil-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .veil-container { padding: 0 18px; }
    .veil-icon-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .veil-vehicles { grid-template-columns: 1fr; }
    .veil-gallery-grid { grid-template-columns: 1fr; }
    .veil-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    .veil-anim-fade, .veil-anim-fade-left, .veil-anim-fade-right, .veil-anim-scale, .veil-anim-blur,
    .veil-stagger > *, .veil-split-line .word, .veil-split-line .char {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ============================================================
   Veil — Extended Template Styles
   (page templates, single, contact form, gallery, 404, archive)
   ============================================================ */

/* No-scroll lock for mobile menu */
.veil-no-scroll { overflow: hidden !important; }

/* ---------- Page Header (used by all inner pages) ---------- */
.veil-page-header {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--veil-bg-2) 0%, var(--veil-bg) 100%);
    overflow: hidden;
    isolation: isolate;
}
.veil-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, var(--veil-accent-glow, rgba(255,122,26,.18)) 0%, transparent 50%);
    opacity: 0.7;
    z-index: -1;
}
.veil-page-header__inner {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.veil-page-title {
    font-family: var(--veil-font);
    font-size: clamp(40px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 14px 0 18px;
    color: var(--veil-text);
}
.veil-page-title--big { font-size: clamp(48px, 7vw, 96px); }
.veil-page-title .veil-accent { color: var(--veil-accent); }
.veil-page-header__sub {
    color: var(--veil-text-muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}
.veil-page-header__bg {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    opacity: .18;
    z-index: -2;
}
.veil-breadcrumbs {
    font-size: 12px;
    color: var(--veil-text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.veil-breadcrumbs a { color: var(--veil-accent); text-decoration: none; }
.veil-breadcrumbs a:hover { color: var(--veil-accent-2); }
.veil-crumb-sep { color: var(--veil-text-dim); margin: 0 6px; }

/* ---------- Generic content / page body ---------- */
.veil-page-content-section { padding: 60px 0 100px; }
.veil-content h2, .veil-content h3, .veil-content h4 {
    margin: 1.4em 0 .6em;
    color: var(--veil-text);
    line-height: 1.25;
}
.veil-content h2 { font-size: clamp(26px, 3vw, 38px); }
.veil-content h3 { font-size: clamp(20px, 2.2vw, 28px); }
.veil-content p, .veil-content li { color: var(--veil-text-muted); line-height: 1.75; }
.veil-content p { margin: 0 0 1.2em; }
.veil-content ul, .veil-content ol { margin: 0 0 1.2em 1.5em; }
.veil-content a { color: var(--veil-accent); }
.veil-content a:hover { color: var(--veil-accent-2); }
.veil-content blockquote {
    border-left: 3px solid var(--veil-accent);
    padding: 6px 0 6px 24px;
    margin: 1.6em 0;
    color: var(--veil-text);
    font-style: italic;
    font-size: 1.1em;
}
.veil-content img { max-width: 100%; height: auto; border-radius: var(--veil-radius, 12px); }
.veil-content__thumbnail { margin: 0 0 32px; border-radius: var(--veil-radius, 12px); overflow: hidden; }

/* ---------- Section spacing ---------- */
.veil-section { padding: 90px 0; position: relative; }
.veil-section + .veil-section { padding-top: 0; }

/* ---------- About page ---------- */
.veil-about-section { padding: 100px 0 70px; }
.veil-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.veil-about-grid__media {
    position: relative;
    border-radius: var(--veil-radius, 12px);
    overflow: hidden;
}
.veil-about-grid__media .veil-about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--veil-radius, 12px);
    display: block;
}
.veil-about-grid__badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.08);
    padding: 20px 26px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}
.veil-about-grid__badge-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--veil-accent);
    line-height: 1;
}
.veil-about-grid__badge-lbl {
    font-size: 11px;
    color: var(--veil-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
}
.veil-about-grid__content .veil-section-title { margin-bottom: 24px; }
.veil-about-grid__text { color: var(--veil-text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.veil-about-grid__cta { margin-top: 12px; }

/* ---------- Stats grid ---------- */
.veil-stats-section { padding: 60px 0; background: var(--veil-bg-2); }
.veil-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.veil-stat {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 12px);
    background: var(--veil-card, #141414);
    transition: all .3s ease;
}
.veil-stat:hover { border-color: var(--veil-accent); transform: translateY(-4px); }
.veil-stat__num,
.veil-stat__number {
    display: block;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    color: var(--veil-accent);
    line-height: 1;
    margin-bottom: 8px;
}
.veil-stat__lbl,
.veil-stat__label {
    font-size: 12px;
    color: var(--veil-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ---------- Why-choose section ---------- */
.veil-why-section { padding: 100px 0; }
.veil-why-section__head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.veil-why-section__head .veil-section-title { margin-top: 12px; }
.veil-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.veil-why-card {
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 14px);
    padding: 36px 28px;
    transition: all .3s cubic-bezier(.2,.7,.2,1);
    position: relative;
    overflow: hidden;
}
.veil-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--veil-accent-glow, rgba(255,122,26,.1)) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
}
.veil-why-card:hover {
    border-color: var(--veil-accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px var(--veil-accent-glow, rgba(255,122,26,.3));
}
.veil-why-card:hover::before { opacity: 1; }
.veil-why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.veil-why-card__title {
    font-size: 19px;
    margin: 0 0 10px;
    color: var(--veil-text);
    position: relative;
    z-index: 1;
}
.veil-why-card__text {
    color: var(--veil-text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ---------- Services page extras ---------- */
.veil-services-rows { padding: 90px 0; }
.veil-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.veil-service-row:last-child { border-bottom: none; }
.veil-service-row--alt { direction: rtl; }
.veil-service-row--alt > * { direction: ltr; }
.veil-service-row__num {
    display: inline-block;
    font-size: 14px;
    color: var(--veil-accent);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.veil-service-row__title {
    font-size: clamp(28px, 3.4vw, 42px);
    margin: 8px 0 18px;
    line-height: 1.15;
}
.veil-service-row__text { color: var(--veil-text-muted); font-size: 16px; line-height: 1.75; margin: 0 0 28px; }
.veil-service-row__text p { margin: 0 0 1em; color: inherit; }
.veil-service-row__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.veil-service-row__media {
    border-radius: var(--veil-radius, 14px);
    overflow: hidden;
    position: relative;
}
.veil-service-row__image,
.veil-service-row__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--veil-radius, 14px);
    display: block;
}

/* ---------- Link arrow ---------- */
.veil-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--veil-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: gap .25s ease, color .25s ease;
}
.veil-link-arrow:hover { gap: 14px; color: var(--veil-accent-2); }
.veil-link-arrow svg { transition: transform .25s ease; }
.veil-link-arrow:hover svg { transform: translateX(2px); }

/* ---------- Icon card glow accent (used by tilt cards) ---------- */
.veil-iconcard { position: relative; }
.veil-iconcard__glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--veil-accent), transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 0;
    pointer-events: none;
}
.veil-iconcard:hover .veil-iconcard__glow { opacity: .35; }
.veil-iconcard > *:not(.veil-iconcard__glow) { position: relative; z-index: 1; }

/* ---------- Gallery ---------- */
.veil-gallery-section { padding: 60px 0 100px; }
.veil-gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.veil-gallery-filter {
    background: transparent;
    border: 1px solid rgba(255,255,255,.12);
    color: var(--veil-text);
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all .25s ease;
}
.veil-gallery-filter:hover,
.veil-gallery-filter.is-active {
    background: var(--veil-accent);
    border-color: var(--veil-accent);
    color: #fff;
}
.veil-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.veil-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--veil-radius, 14px);
    aspect-ratio: 1 / 1;
}
.veil-gallery-item__link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.veil-gallery-item__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.veil-gallery-item__image,
.veil-gallery-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.veil-gallery-item:hover .veil-gallery-item__image,
.veil-gallery-item:hover .veil-gallery-item__media img { transform: scale(1.08); }
.veil-gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .35s ease;
}
.veil-gallery-item:hover .veil-gallery-item__overlay { opacity: 1; }
.veil-gallery-item__cat {
    font-size: 11px;
    color: var(--veil-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}
.veil-gallery-item__title {
    color: #fff;
    font-size: 18px;
    margin: 0;
    line-height: 1.3;
}
.veil-gallery-item__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: var(--veil-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translate(8px,-8px) scale(.85);
    opacity: 0;
    transition: all .35s ease;
}
.veil-gallery-item:hover .veil-gallery-item__icon { transform: translate(0,0) scale(1); opacity: 1; }

/* ---------- Contact page ---------- */
.veil-contact-section { padding: 80px 0 100px; }
.veil-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.veil-contact-info__inner {
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.06);
    padding: 40px 32px;
    border-radius: var(--veil-radius, 14px);
    position: sticky;
    top: 110px;
}
.veil-contact-info__title { font-size: 22px; margin: 0 0 24px; color: var(--veil-text); }
.veil-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.veil-contact-item__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,122,26,.1);
    color: var(--veil-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.veil-contact-item__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.veil-contact-item__label {
    font-size: 11px;
    color: var(--veil-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.veil-contact-item__value {
    color: var(--veil-text);
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    word-break: break-word;
}
a.veil-contact-item__value:hover { color: var(--veil-accent); }
.veil-contact-info__socials { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); }
.veil-contact-info__socials-lbl {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--veil-text-dim);
    margin-bottom: 12px;
}
.veil-socials { display: flex; gap: 10px; }
.veil-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: var(--veil-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.veil-social:hover { background: var(--veil-accent); color: #fff; transform: translateY(-2px); }

/* ---------- Form ---------- */
.veil-contact-form-wrap {
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 14px);
    padding: 40px 36px;
}
.veil-contact-form__title { font-size: 26px; margin: 0 0 6px; }
.veil-contact-form__sub { color: var(--veil-text-muted); margin: 0 0 28px; font-size: 14px; }
.veil-form { display: flex; flex-direction: column; gap: 16px; }
.veil-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.veil-form__field { display: flex; flex-direction: column; gap: 8px; }
.veil-form__field label {
    font-size: 12px;
    color: var(--veil-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.veil-form__field input,
.veil-form__field select,
.veil-form__field textarea {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--veil-text);
    padding: 14px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color .25s ease, background .25s ease;
    width: 100%;
}
.veil-form__field input:focus,
.veil-form__field select:focus,
.veil-form__field textarea:focus {
    outline: none;
    border-color: var(--veil-accent);
    background: rgba(255,255,255,.05);
}
.veil-form__field textarea { resize: vertical; min-height: 130px; }
.veil-form__field select { cursor: pointer; }
.veil-form__honey {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.veil-form__actions { margin-top: 8px; }
.veil-form__submit { width: 100%; justify-content: center; }
.veil-form__status { margin-top: 12px; }
.veil-form__success {
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(60, 200, 120, .1);
    border: 1px solid rgba(60, 200, 120, .3);
    color: #5edca0;
    font-size: 14px;
}
.veil-form__error {
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(220, 60, 60, .1);
    border: 1px solid rgba(220, 60, 60, .3);
    color: #ff8888;
    font-size: 14px;
}
.veil-form.is-submitting { opacity: .7; pointer-events: none; }

/* Legacy form-group also styled (used in older sections if any) */
.veil-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- CTA bar (BEM variant) ---------- */
.veil-cta-bar__bg {
    position: absolute;
    inset: -10% 0;
    background: radial-gradient(ellipse at center, var(--veil-accent-glow, rgba(255,122,26,.25)) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.veil-cta-bar__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 0;
}
.veil-cta-bar__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--veil-accent), var(--veil-accent-2));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 20px 40px -10px var(--veil-accent-glow, rgba(255,122,26,.5));
}
.veil-cta-bar__title { font-size: clamp(30px, 4vw, 48px); margin: 0 0 14px; line-height: 1.1; }
.veil-cta-bar__text { color: var(--veil-text-muted); font-size: 17px; margin: 0 0 28px; }
.veil-cta-bar__btn { display: inline-block; }

/* ---------- Archive / posts ---------- */
.veil-archive-section { padding: 60px 0 100px; }
.veil-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.veil-post-card {
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 14px);
    overflow: hidden;
    transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.veil-post-card:hover {
    border-color: var(--veil-accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px var(--veil-accent-glow, rgba(255,122,26,.3));
}
.veil-post-card__link { display: block; text-decoration: none; color: inherit; }
.veil-post-card__media { overflow: hidden; }
.veil-post-card__image,
.veil-post-card__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.veil-post-card:hover .veil-post-card__image,
.veil-post-card:hover .veil-post-card__media img { transform: scale(1.06); }
.veil-post-card__body { padding: 26px 24px 28px; }
.veil-post-card__date {
    font-size: 11px;
    color: var(--veil-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    display: inline-block;
}
.veil-post-card__title {
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: var(--veil-text);
}
.veil-post-card__excerpt { color: var(--veil-text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }

/* ---------- Pagination ---------- */
.veil-pagination { margin-top: 50px; display: flex; justify-content: center; }
.veil-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.veil-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: var(--veil-text);
    text-decoration: none;
    font-size: 14px;
    transition: all .25s ease;
}
.veil-pagination .page-numbers.current,
.veil-pagination .page-numbers:hover {
    background: var(--veil-accent);
    border-color: var(--veil-accent);
    color: #fff;
}

/* ---------- Empty state ---------- */
.veil-empty-state {
    text-align: center;
    padding: 80px 20px;
}
.veil-empty-state h2 { font-size: 28px; margin: 0 0 12px; }
.veil-empty-state p { color: var(--veil-text-muted); margin: 0 0 24px; }

/* ---------- Single post ---------- */
.veil-single-header { padding: 220px 0 80px; }
.veil-single-header__bg {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: -2;
}
.veil-single-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, var(--veil-bg) 100%);
    z-index: -1;
}
.veil-single-title { max-width: 880px; margin-inline: auto; }
.veil-single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--veil-text-muted);
    font-size: 14px;
    margin-top: 18px;
}
.veil-single-meta__sep { opacity: .4; }
.veil-single-section { padding: 60px 0 100px; }
.veil-single { max-width: 760px; margin: 0 auto; }
.veil-single__content { font-size: 17px; line-height: 1.8; }
.veil-single__footer { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.06); }
.veil-single__tags {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.veil-single__tags a {
    background: rgba(255,255,255,.05);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--veil-text-muted);
    text-decoration: none;
    transition: all .25s ease;
}
.veil-single__tags a:hover { background: var(--veil-accent); color: #fff; }

.veil-author-bio {
    display: flex;
    gap: 22px;
    padding: 28px;
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 14px);
    margin-top: 30px;
}
.veil-author-bio__avatar img { border-radius: 50%; width: 80px; height: 80px; }
.veil-author-bio__name { margin: 6px 0 8px; font-size: 20px; }
.veil-author-bio__desc { color: var(--veil-text-muted); font-size: 14px; line-height: 1.6; margin: 0; }

.veil-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 60px auto;
    max-width: 760px;
}
.veil-post-nav__link {
    padding: 24px 28px;
    background: var(--veil-card, #141414);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 14px);
    text-decoration: none;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.veil-post-nav__link--next { text-align: right; }
.veil-post-nav__link:hover { border-color: var(--veil-accent); transform: translateY(-3px); }
.veil-post-nav__title { color: var(--veil-text); font-weight: 500; font-size: 16px; }

/* ---------- Comments ---------- */
.veil-comments { max-width: 760px; margin: 60px auto 0; }
.veil-comments__title { font-size: 24px; margin: 0 0 28px; }
.veil-comments__list { list-style: none; padding: 0; margin: 0 0 40px; }
.veil-comments__list .comment-body {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--veil-radius, 12px);
    margin-bottom: 16px;
    background: var(--veil-card, #141414);
}
.veil-comments__list .children { list-style: none; padding-left: 30px; margin-top: 10px; }
.veil-comments__list .comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.veil-comments__list .comment-author img { border-radius: 50%; }
.veil-comments__list .comment-author cite { font-style: normal; font-weight: 600; color: var(--veil-text); }
.veil-comments__list .comment-meta { font-size: 12px; color: var(--veil-text-dim); margin-bottom: 8px; }
.veil-comments__list .comment-content { color: var(--veil-text-muted); line-height: 1.7; }
.veil-comments__reply-title { font-size: 20px; margin: 30px 0 16px; }
.veil-comments__closed { color: var(--veil-text-muted); font-style: italic; }
.veil-comment-form { gap: 14px; }
.veil-comment-form .comment-notes,
.veil-comment-form .logged-in-as {
    font-size: 13px;
    color: var(--veil-text-muted);
}
.veil-comment-form input[type="text"],
.veil-comment-form input[type="email"],
.veil-comment-form input[type="url"],
.veil-comment-form textarea {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--veil-text);
    padding: 14px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
}

/* ---------- Search form ---------- */
.veil-search-form {
    display: flex;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}
.veil-search-form__input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--veil-text);
    padding: 14px 22px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}
.veil-search-form__submit {
    background: var(--veil-accent);
    color: #fff;
    border: none;
    padding: 0 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease;
}
.veil-search-form__submit:hover { background: var(--veil-accent-2); }
.veil-search-again { margin-top: 22px; }
.veil-accent { color: var(--veil-accent); }

/* ---------- 404 page ---------- */
.veil-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    position: relative;
}
.veil-404__inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}
.veil-404__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}
.veil-404__bg-text {
    font-size: clamp(220px, 32vw, 460px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--veil-accent) 0%, transparent 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    letter-spacing: -0.05em;
    opacity: 0.6;
    user-select: none;
}
.veil-404__content { position: relative; z-index: 1; }
.veil-404__title {
    font-size: clamp(36px, 5vw, 64px);
    margin: 18px 0 16px;
    font-weight: 800;
    line-height: 1.1;
}
.veil-404__text { color: var(--veil-text-muted); font-size: 17px; margin: 0 0 32px; }
.veil-404__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.veil-404__search { margin-top: 12px; }

/* ---------- Service single ---------- */
.veil-service-single { padding: 80px 0 100px; }
.veil-service-single .veil-content { max-width: 800px; margin: 0 auto; }
.veil-service-single__cta {
    margin: 50px auto 0;
    max-width: 800px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ---------- IconCards section wrapper ---------- */
.veil-iconcards-section { padding: 100px 0; }
.veil-iconcards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* ---------- Section heading helper ---------- */
.veil-section-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 8px 0 16px;
}
.veil-eyebrow {
    font-size: 12px;
    color: var(--veil-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin: 0 0 8px;
}
.veil-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.veil-section-sub { color: var(--veil-text-muted); font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .veil-about-grid,
    .veil-contact-grid,
    .veil-service-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .veil-service-row--alt { direction: ltr; }
    .veil-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-why-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-post-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-iconcards-grid { grid-template-columns: repeat(3, 1fr); }
    .veil-contact-info__inner { position: static; }
}
@media (max-width: 720px) {
    .veil-page-header { padding: 140px 0 60px; }
    .veil-single-header { padding: 180px 0 60px; }
    .veil-form__row { grid-template-columns: 1fr; }
    .veil-stats-grid,
    .veil-why-grid,
    .veil-post-grid,
    .veil-gallery-grid { grid-template-columns: 1fr; }
    .veil-iconcards-grid { grid-template-columns: repeat(2, 1fr); }
    .veil-post-nav { grid-template-columns: 1fr; }
    .veil-section { padding: 60px 0; }
    .veil-services-rows,
    .veil-about-section,
    .veil-why-section,
    .veil-gallery-section,
    .veil-contact-section,
    .veil-archive-section { padding: 60px 0; }
    .veil-contact-form-wrap,
    .veil-contact-info__inner { padding: 26px 22px; }
}
