/* =============================================================================
   Premiere Solutions — Main Stylesheet
   Extracted and adapted from sample_new_design.html
   ============================================================================= */

/* ── Reset & Root Variables ──────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── Color System ─────────────────────────────────────── */
    --gold:           #D4AF37;
    --gold-light:     #FFB81C;
    --slate-grey:     #2C3E50;
    --dark-slate:     #1A252F;
    --cool-grey:      #4A5F73;
    --light-grey:     #E8EEF2;
    --soft-white:     #F7F9FB;
    --accent-blue:    #4A90E2;
    --accent-blue-lt: #5BA3F5;
    --accent-blue-dk: #3A7BC8;

    /* Surfaces / Overlays */
    --surface-card:   rgba(255,255,255,0.04);
    --surface-glass:  rgba(255,255,255,0.05);
    --overlay-dark:   rgba(44,62,80,0.95);
    --overlay-hero:   rgba(26,37,47,0.85);

    /* Text on dark */
    --text-primary:   #ffffff;
    --text-secondary: rgba(255,255,255,0.8);
    --text-muted:     rgba(255,255,255,0.7);
    --text-faint:     rgba(255,255,255,0.6);
    --text-ghost:     rgba(255,255,255,0.5);
    --text-dim:       rgba(255,255,255,0.4);

    /* Borders */
    --border-gold:       rgba(212,175,55,0.3);
    --border-gold-light: rgba(212,175,55,0.2);
    --border-gold-faint: rgba(212,175,55,0.15);
    --border-gold-ghost: rgba(212,175,55,0.1);
    --border-accent:     rgba(74,144,226,0.25);

    /* ── Typography ───────────────────────────────────────── */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Montserrat', sans-serif;

    --text-xs:   0.82rem;
    --text-sm:   0.9rem;
    --text-base: 1rem;
    --text-md:   1.1rem;
    --text-lg:   1.2rem;
    --text-xl:   1.4rem;

    --heading-xxl: 5.5rem;
    --heading-xl:  4.5rem;
    --heading-lg:  4rem;
    --heading-md:  2.5rem;
    --heading-sm:  2rem;
    --heading-xs:  1.8rem;
    --heading-xxs: 1.5rem;

    --leading-tight:  1.1;
    --leading-snug:   1.2;
    --leading-normal: 1.6;
    --leading-relaxed:1.8;
    --leading-loose:  2;

    --tracking-tight: -1px;
    --tracking-normal:1px;
    --tracking-wide:  2px;
    --tracking-wider: 3px;

    /* ── Spacing ──────────────────────────────────────────── */
    --space-xs:  10px;
    --space-sm:  15px;
    --space-md:  20px;
    --space-lg:  30px;
    --space-xl:  40px;
    --space-2xl: 60px;
    --space-3xl: 80px;
    --space-4xl: 100px;
    --space-5xl: 140px;

    --section-pad:    var(--space-5xl) var(--space-2xl);
    --section-pad-sm: var(--space-3xl) 25px;

    /* ── Layout ───────────────────────────────────────────── */
    --container-sm:  860px;
    --container-md:  900px;
    --container-lg:  1200px;
    --container-xl:  1400px;
    --container-xxl: 1600px;

    /* ── Border Radius ────────────────────────────────────── */
    --radius-sm:   10px;
    --radius-md:   15px;
    --radius-lg:   20px;
    --radius-xl:   25px;
    --radius-pill:  50px;

    /* ── Shadows ──────────────────────────────────────────── */
    --shadow-gold:    0 8px 30px rgba(212,175,55,0.4);
    --shadow-gold-lg: 0 12px 40px rgba(212,175,55,0.6);
    --shadow-blue:    0 5px 25px rgba(74,144,226,0.3);
    --shadow-blue-lg: 0 8px 35px rgba(74,144,226,0.5);
    --shadow-card:    0 15px 50px rgba(212,175,55,0.2);
    --shadow-card-lg: 0 20px 60px rgba(212,175,55,0.3);

    /* ── Transitions ──────────────────────────────────────── */
    --ease-fast: 0.3s ease;
    --ease-med:  0.4s ease;
    --ease-slow: 0.5s ease;

    /* ── Z‑Index Scale ────────────────────────────────────── */
    --z-header:  1000;
    --z-overlay: 999;
    --z-modal:   1100;
}

body {
    font-family: var(--font-body);
    background: var(--slate-grey);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { transition: color var(--ease-fast); }

/* Heading defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: var(--leading-snug);
    font-weight: 300;
}

/* ── Text Logo Fallback ──────────────────────────────────────────────────────── */
.text-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ── Footer Extras ───────────────────────────────────────────────────────────── */
.footer-logo-img {
    height: 45px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-phones {
    margin-top: var(--space-md);
}

/* ── Header ──────────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--overlay-dark);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold-light);
    z-index: var(--z-header);
    padding: 25px var(--space-2xl);
}

.header-content {
    max-width: var(--container-xxl);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img { height: 55px; filter: brightness(0) invert(1); }

/* WordPress nav menu override */
.primary-nav {
    display: flex;
    gap: 0;
    list-style: none;
}

.primary-nav ul,
.nav-menu {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav a,
.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: color var(--ease-fast);
}

.primary-nav a::after,
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s;
}

.primary-nav a:hover,
.nav-menu a:hover {
    color: var(--gold);
}

.primary-nav a:hover::after,
.nav-menu a:hover::after {
    width: 100%;
}

.header-phone {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-lt));
    color: var(--text-primary);
    padding: 14px 35px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: var(--tracking-normal);
    transition: all var(--ease-fast);
    box-shadow: var(--shadow-blue);
    white-space: nowrap;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
    color: var(--text-primary);
}

/* Hamburger (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav open state */
.nav-open .primary-nav,
.nav-open .nav-menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,37,47,0.98);
    backdrop-filter: blur(20px);
    z-index: var(--z-overlay);
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-open .primary-nav a,
.nav-open .nav-menu a {
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-bg-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    animation: kenBurns 10s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.88), var(--overlay-hero));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: var(--heading-xxl);
    font-weight: 300;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-lg);
    letter-spacing: var(--tracking-tight);
}

.hero h1 strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: 50px;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 80px;
}

/* Button system */
.btn-hero {
    padding: 20px 50px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: var(--text-md);
    text-decoration: none;
    transition: all var(--ease-med);
    letter-spacing: var(--tracking-normal);
    display: inline-block;
}

.btn-sm { padding: 12px 30px; font-size: var(--text-sm); }
.btn-md { padding: 14px 35px; font-size: 0.95rem; }
.btn-lg { padding: 20px 50px; font-size: var(--text-md); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-slate);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--dark-slate);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-slate);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: var(--space-lg) var(--space-xl);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    background: var(--surface-glass);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--text-muted);
}

/* ── Section Shared Styles ───────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.section-pretitle {
    color: var(--gold);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--heading-lg);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: var(--leading-snug);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    font-weight: 300;
}

/* ── Industries (Bento Grid) ────────────────────────────────────────────────── */
.industries {
    padding: var(--section-pad);
    background: var(--cool-grey);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: var(--container-xxl);
    margin: 0 auto;
}

.bento-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold-light);
    transition: all var(--ease-slow);
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-card-lg);
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.bento-card:hover img {
    transform: scale(1.15);
}

.bento-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 35px;
    background: linear-gradient(to top, var(--overlay-dark), transparent);
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: var(--heading-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--gold);
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── Process (Timeline) ──────────────────────────────────────────────────────── */
.process {
    padding: var(--section-pad);
    background: var(--dark-slate);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 300px;
    bottom: 300px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline {
    max-width: var(--container-lg);
    margin: var(--space-4xl) auto 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 120px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content { order: 2; }

.timeline-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-lt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    border: 3px solid var(--gold);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-blue);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: var(--heading-md);
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.timeline-content p {
    font-size: var(--text-md);
    line-height: 1.9;
    color: var(--text-muted);
}

/* ── Testimonials ────────────────────────────────────────────────────────────── */
.testimonials {
    padding: var(--section-pad);
    background: var(--cool-grey);
}

.testimonial-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: var(--container-xl);
    margin: var(--space-4xl) auto 0;
}

.testimonial-luxury {
    background: linear-gradient(135deg, rgba(74,144,226,0.08), rgba(212,175,55,0.05));
    border: 1px solid var(--border-accent);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--ease-med);
}

.testimonial-luxury:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(74,144,226,0.2);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-top: 1px solid var(--border-gold-light);
    padding-top: var(--space-lg);
}

.author-avatar {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-lt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.author-details strong {
    display: block;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-details span {
    color: var(--text-faint);
    font-size: 0.95rem;
}

/* ── CTA Section ─────────────────────────────────────────────────────────────── */
.cta {
    padding: var(--section-pad);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dk));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: var(--container-md);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: var(--heading-xl);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta h2 strong {
    font-weight: 700;
    color: var(--gold);
}

.cta p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: var(--text-secondary);
    font-weight: 300;
}

.cta-phone {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--soft-white);
    font-weight: 700;
    margin: 30px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-phone:hover { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--dark-slate);
    border-top: 1px solid var(--border-gold-light);
    padding: var(--space-4xl) var(--space-2xl) 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    max-width: var(--container-xxl);
    margin: 0 auto var(--space-3xl);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: var(--heading-xxs);
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer-col p,
.footer-col a {
    color: var(--text-faint);
    line-height: 2.2;
    text-decoration: none;
    display: block;
    transition: color var(--ease-fast);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid var(--border-gold-ghost);
    color: var(--text-dim);
}

/* Footer nav menu override */
.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--text-faint);
    text-decoration: none;
    line-height: 2.2;
    display: block;
    transition: color var(--ease-fast);
}

.footer-nav a:hover { color: var(--gold); }

/* ── General Page Layout ─────────────────────────────────────────────────────── */
.ps-main {
    padding: 160px var(--space-2xl) var(--space-4xl);
    max-width: var(--container-lg);
    margin: 0 auto;
}

.ps-page-hero {
    text-align: center;
    padding: 180px var(--space-2xl) var(--space-4xl);
    background: var(--dark-slate);
}

.ps-post-card {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-gold-faint);
}

.ps-post-card h2 {
    font-family: var(--font-heading);
    font-size: var(--heading-md);
    font-weight: 300;
    margin-bottom: var(--space-md);
}

.ps-post-card h2 a {
    color: var(--gold);
    text-decoration: none;
}

.ps-post-card h2 a:hover { color: var(--gold-light); }

.ps-excerpt p { color: var(--text-muted); line-height: 1.9; }

/* ── Job Board ───────────────────────────────────────────────────────────────── */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
    margin-top: var(--space-2xl);
}

.job-card {
    background: linear-gradient(135deg, rgba(74,144,226,0.08), rgba(212,175,55,0.05));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 45px;
    transition: all var(--ease-med);
}

.job-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-card);
}

.job-card h2 {
    font-family: var(--font-heading);
    font-size: var(--heading-xs);
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.job-card h2 a { color: inherit; text-decoration: none; }
.job-card h2 a:hover { color: var(--gold-light); }

.job-card .job-excerpt { color: var(--text-muted); font-size: 0.95rem; line-height: var(--leading-relaxed); margin-bottom: var(--space-lg); }

.job-meta {
    font-size: 0.85rem;
    color: var(--text-ghost);
    text-transform: uppercase;
    letter-spacing: var(--tracking-normal);
    margin-bottom: 25px;
}

/* ── Blog ────────────────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.blog-card {
    background: var(--surface-card);
    border: 1px solid var(--border-gold-faint);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--ease-med);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212,175,55,0.15);
}

.blog-card-img { width:100%; height:220px; object-fit:cover; }
.blog-card-img-placeholder { width:100%; height:220px; background: var(--cool-grey); }

.blog-card-body { padding: 35px; }

.blog-card-body h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.blog-card-body h2 a { color: var(--gold); text-decoration: none; }
.blog-card-body h2 a:hover { color: var(--gold-light); }

.blog-card-body .excerpt { color: var(--text-muted); line-height: var(--leading-relaxed); margin-bottom: 25px; }

.post-meta { font-size: var(--text-xs); color: var(--text-dim); text-transform: uppercase; letter-spacing: var(--tracking-normal); margin-bottom: var(--space-sm); }

/* ── About Page ───────────────────────────────────────────────────────────────── */
.about-hero {
    padding: 180px var(--space-2xl) var(--space-4xl);
    background: var(--dark-slate);
    text-align: center;
}

.about-content {
    padding: var(--space-4xl) var(--space-2xl);
    background: var(--cool-grey);
    max-width: var(--container-lg);
    margin: 0 auto;
}

.about-content p {
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* ── Contact Page ─────────────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 160px var(--space-2xl) var(--space-4xl);
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: var(--heading-md);
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
}

.contact-info a { color: var(--gold); text-decoration: none; }
.contact-info a:hover { color: var(--gold-light); }

/* CF7 / form overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
    transition: border-color var(--ease-fast);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-slate);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    padding: 18px 50px;
    letter-spacing: var(--tracking-normal);
    transition: all var(--ease-fast);
    box-shadow: var(--shadow-gold);
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* ── Pagination ───────────────────────────────────────────────────────────────── */
.nav-links {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-gold-faint);
}

.nav-links a,
.nav-links span {
    padding: 12px 25px;
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--ease-fast);
}

.nav-links a {
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold);
}

.nav-links a:hover {
    background: var(--gold);
    color: var(--dark-slate);
}

.nav-links span.current {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-slate);
}

/* ── Extracted Inline Styles — Single Job ─────────────────────────────────────── */
.single-job-section {
    background: var(--slate-grey);
    padding: var(--space-3xl) var(--space-2xl) 120px;
}

.single-job-wrap {
    max-width: var(--container-md);
    margin: 0 auto;
}

.single-job-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.single-job-body {
    font-size: var(--text-md);
    line-height: var(--leading-loose);
    color: var(--text-secondary);
}

.single-job-sidebar {
    position: sticky;
    top: 120px;
}

.single-job-apply {
    background: var(--surface-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.single-job-apply h3 {
    font-family: var(--font-heading);
    font-size: var(--heading-xs);
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.single-job-apply p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
    line-height: var(--leading-relaxed);
}

.single-job-apply .btn-hero {
    display: block;
    padding: 16px var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-md);
}

.single-job-phone {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-decoration: none;
    display: block;
}

.single-job-nav {
    margin-top: var(--space-3xl);
    padding-top: 50px;
    border-top: 1px solid var(--border-gold-faint);
}

/* ── Extracted Inline Styles — Single Post ────────────────────────────────────── */
.single-post-section {
    background: var(--slate-grey);
    padding: var(--space-3xl) 0 120px;
}

.single-post-wrap {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.single-post-title {
    max-width: var(--container-md);
    margin: 0 auto;
}

.single-post-date {
    margin-top: var(--space-md);
    color: var(--text-ghost);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.single-post-featured {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: var(--space-2xl);
}

.single-post-body {
    font-size: 1.15rem;
    line-height: var(--leading-loose);
    color: rgba(255,255,255,0.82);
}

.single-post-page-links {
    margin-top: var(--space-xl);
}

.single-post-author {
    margin-top: 70px;
    padding: var(--space-xl);
    background: var(--surface-card);
    border: 1px solid var(--border-gold-light);
    border-radius: 16px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.single-post-author-name {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 6px;
}

.single-post-author-bio {
    color: var(--text-faint);
    font-size: 0.95rem;
    line-height: 1.7;
}

.single-post-nav {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-gold-faint);
}

/* ── Extracted Inline Styles — Contact ────────────────────────────────────────── */
.contact-label {
    color: var(--gold);
}

.contact-highlight {
    margin-top: 50px;
    padding: 35px;
    background: var(--surface-card);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--radius-md);
}

.contact-highlight-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.contact-form-box {
    background: var(--surface-card);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--radius-lg);
    padding: 55px;
}

.contact-form-heading {
    font-family: var(--font-heading);
    font-size: var(--heading-sm);
    color: var(--gold);
    margin-bottom: 35px;
}

/* ── Extracted Inline Styles — Archive Sections ───────────────────────────────── */
.archive-section {
    background: var(--slate-grey);
    padding: var(--space-3xl) var(--space-2xl) 120px;
}

.archive-wrap {
    max-width: var(--container-xl);
    margin: 0 auto;
}

.archive-empty {
    text-align: center;
    padding: var(--space-3xl) 0;
}

/* ── Extracted Inline Styles — Page Content ───────────────────────────────────── */
.page-content {
    margin-top: var(--space-xl);
    color: var(--text-secondary);
    font-size: var(--text-md);
    line-height: var(--leading-loose);
}

/* ── Extracted Inline Styles — About Image ────────────────────────────────────── */
.about-feature-img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    border: 1px solid var(--border-gold-light);
}

/* ── Extracted Inline Styles — Section Subtitle Variants ──────────────────────── */
.section-subtitle--hero {
    max-width: 750px;
    margin: 25px auto 0;
}

.section-subtitle--page {
    max-width: 650px;
    margin: var(--space-md) auto 0;
}

.section-subtitle--narrow {
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

.section-subtitle--empty {
    max-width: 500px;
    margin: var(--space-md) auto var(--space-xl);
}

/* ── Extracted Inline Styles — 404 Page ───────────────────────────────────────── */
.ps-not-found {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px var(--space-xl);
}

.not-found-title {
    font-size: 6rem;
    color: var(--gold);
}

.not-found-subtitle {
    margin: var(--space-lg) auto 50px;
    max-width: 600px;
}

/* ── Extracted Inline Styles — CF7 Fallback ───────────────────────────────────── */
.cf7-fallback {
    color: var(--text-faint);
}

/* ── Responsive Breakpoints ──────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .header              { padding: 20px 40px; }
    .hero                { min-height: 90vh; padding-top: 120px; }
    .hero h1             { font-size: 4rem; }
    .bento-grid          { grid-template-columns: repeat(2, 1fr); }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    .timeline-item:nth-child(even) .timeline-content { order: 1; }

    .testimonial-masonry { grid-template-columns: 1fr; }

    .industries, .process, .testimonials, .cta { padding: var(--space-4xl) var(--space-xl); }

    .contact-layout { grid-template-columns: 1fr; gap: var(--space-2xl); padding: var(--space-5xl) var(--space-xl) var(--space-3xl); }
    .footer-grid    { grid-template-columns: 1fr 1fr; gap: 50px; }

    .single-job-layout { grid-template-columns: 1fr; }
    .single-job-sidebar { position: static; }
}

@media (max-width: 1024px) {
    .nav-menu    { display: none; }
    .hamburger   { display: flex; }
}

@media (max-width: 768px) {
    .header      { padding: 15px 25px; }
    .site-logo img { height: 40px; }
    .nav-menu    { display: none; }
    .hamburger   { display: flex; }
    .header-phone{ padding: 10px 20px; font-size: 0.85rem; }

    .hero        { min-height: 80vh; padding: 100px 25px 60px; }
    .hero-badge  { font-size: 0.75rem; padding: 8px 20px; letter-spacing: 2px; }
    .hero h1     { font-size: 2.8rem; }
    .hero-subtitle { font-size: var(--text-md); }
    .hero-cta    { flex-direction: column; align-items: stretch; }
    .btn-hero    { padding: 16px 35px; font-size: var(--text-base); text-align: center; }

    .stats-row   { flex-direction: column; gap: 25px; }
    .stat-box    { padding: var(--space-md) var(--space-lg); }
    .stat-number { font-size: 2.5rem; }

    .section-pretitle { font-size: 0.8rem; }
    .section-title    { font-size: 2.5rem; }
    .section-subtitle { font-size: var(--text-base); }

    .industries, .process, .testimonials, .cta, .footer { padding: var(--space-3xl) 25px; }

    .bento-grid  { grid-template-columns: 1fr; }
    .bento-card  { height: 400px; }

    .process::before { display: none; }
    .timeline        { margin-top: var(--space-2xl); }
    .timeline-item   { margin-bottom: var(--space-3xl); }
    .timeline-number { width: 90px; height: 90px; font-size: 2.5rem; }
    .timeline-content h3 { font-size: var(--heading-sm); }
    .timeline-content p  { font-size: var(--text-base); }

    .testimonial-luxury { padding: var(--space-xl) var(--space-lg); }
    .quote-mark         { font-size: 5rem; top: 10px; left: 20px; }
    .testimonial-text   { font-size: var(--text-md); }
    .author-avatar      { width: 50px; height: 50px; min-width: 50px; font-size: 1.4rem; }
    .author-details strong { font-size: var(--text-base); }

    .cta h2        { font-size: 2.8rem; }
    .cta p         { font-size: var(--text-lg); }
    .cta-phone     { font-size: var(--heading-sm); }

    .footer-grid   { grid-template-columns: 1fr; gap: 50px; }

    .ps-main       { padding: 120px 25px var(--space-3xl); }
    .about-hero    { padding: 130px 25px var(--space-3xl); }
    .about-content { padding: 70px 25px; }
    .contact-layout{ padding: 120px 25px var(--space-3xl); }

    .jobs-grid     { grid-template-columns: 1fr; }
    .blog-grid     { grid-template-columns: 1fr; }

    .single-job-section    { padding: var(--space-3xl) 25px var(--space-3xl); }
    .single-post-section   { padding: var(--space-3xl) 0 var(--space-3xl); }
    .single-post-wrap      { padding: 0 25px; }
    .archive-section       { padding: var(--space-3xl) 25px var(--space-3xl); }
    .contact-form-box      { padding: var(--space-xl); }

    .not-found-title       { font-size: 4rem; }
}

@media (max-width: 480px) {
    .hero h1       { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .bento-card    { height: 350px; }
    .cta h2        { font-size: 2.2rem; }
    .not-found-title { font-size: 3rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEO / ACCESSIBILITY ADDITIONS
   ───────────────────────────────────────────────────────────────────────────── */

/* Skip Link ------------------------------------------------------------------ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.6rem 1.2rem;
    background: var(--gold);
    color: var(--dark-slate);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--dark-slate);
    outline-offset: 2px;
}

/* Focus visible outline (global) -------------------------------------------- */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Breadcrumbs ---------------------------------------------------------------- */
.breadcrumbs {
    padding: 0.75rem var(--space-section-x, 4%);
    background: transparent;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted, #888);
}
.breadcrumb-item a {
    color: var(--text-muted, #888);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.breadcrumb-item a:hover {
    color: var(--gold);
}
.breadcrumb-item [aria-current="page"] {
    color: var(--text-primary, #fff);
}
.breadcrumb-sep {
    color: var(--text-muted, #888);
    margin: 0 0.15rem;
}

/* Share Buttons -------------------------------------------------------------- */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle, rgba(255,255,255,0.1));
}
.share-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #888);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-subtle, rgba(255,255,255,0.15));
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary, #ccc);
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(193, 154, 91, 0.05);
}

/* Related Posts -------------------------------------------------------------- */
.related-posts {
    padding: 4rem var(--space-section-x, 4%);
    border-top: 1px solid var(--border-subtle, rgba(255,255,255,0.1));
}
.related-posts-inner {
    max-width: var(--max-width, 1280px);
    margin: 0 auto;
}
.related-posts-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin-bottom: 2rem;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.related-post-card {
    border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}
.related-post-card:hover {
    border-color: var(--gold);
}
.related-post-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.related-post-body {
    padding: 1rem 1.25rem 1.25rem;
}
.related-post-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.related-post-heading a {
    color: var(--text-primary, #fff);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.related-post-heading a:hover {
    color: var(--gold);
}
.related-post-date {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted, #888);
    margin: 0;
}

/* Reading time --------------------------------------------------------------- */
.reading-time {
    font-style: italic;
    color: var(--text-muted, #888);
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
