/*
Theme Name: Barbara Marketing Vogue
Theme URI: https://skyupservice.pl
Author: SkyUp Service
Author URI: https://skyupservice.pl
Description: Custom brutalist/editorial theme for Barbara Marketing. Defines "Vogue A Fine Vintage" aesthetic.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, threaded-comments
Text Domain: barbara-vogue
*/

/* ==========================================================
   BARBARA BEAUTY MARKETING — VOGUE EDITORIAL STYLE
   Inspired by "A Fine Vintage" / high-fashion magazine spreads
   ========================================================== */

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --cream: #f5f0eb;
    --warm-cream: #ece5dc;
    --wine: #8b2252;
    --wine-light: #a8365f;
    --gold: #c9a96e;
    --gold-muted: #b8a07a;
    --charcoal: #2a2a2a;
    --muted: #7a7a7a;
    --light-border: rgba(0, 0, 0, .08);

    --font-brutal: 'Anton', 'Impact', sans-serif;
    --font-brutal-alt: 'Bebas Neue', 'Impact', sans-serif;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-editorial: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --transition: .4s cubic-bezier(.4, 0, .2, 1);
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin-top: 0 !important;
    /* WP admin bar fix */
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--wine);
    color: var(--white);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ========== EDITORIAL TYPOGRAPHY ========== */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.section-label.light {
    color: rgba(255, 255, 255, .5);
}

.editorial-title {
    font-family: var(--font-brutal);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
}

.editorial-title em,
.editorial-title i {
    font-style: normal;
    font-family: var(--font-brutal-alt);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--wine);
}

.editorial-title.light {
    color: var(--white);
}

.editorial-subtitle {
    font-family: var(--font-editorial);
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
}

.body-text {
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.85;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.btn-wine {
    background: var(--wine);
    color: var(--white);
}

.btn-wine:hover {
    background: var(--wine-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 34, 82, .25);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline.light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline.light:hover {
    background: var(--white);
    color: var(--black);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    mix-blend-mode: normal;
}

.navbar.scrolled {
    background: rgba(245, 240, 235, .97);
    backdrop-filter: blur(15px);
    padding: 1rem 4%;
    box-shadow: 0 1px 0 var(--light-border);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.navbar.scrolled .logo {
    color: var(--black);
}

/* WP Nav Menu Adjustment */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, .4) !important;
    padding: .6rem 1.5rem !important;
    color: var(--white) !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    border-color: var(--white) !important;
}

.navbar.scrolled .nav-cta {
    border-color: var(--black) !important;
    color: var(--black) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--black) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
    background: var(--black);
}

/* ========== HERO — FULL EDITORIAL COVER ========== */
.hero {
    height: 100vh;
    background: var(--black);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, .2) 0%,
            rgba(10, 10, 10, .1) 40%,
            rgba(10, 10, 10, .7) 80%,
            rgba(10, 10, 10, .9) 100%);
    z-index: 2;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b30 30%, #1a0f14 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(139, 34, 82, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(201, 169, 110, .08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 6% 6rem;
    max-width: 900px;
}

.hero-overline {
    font-family: var(--font-body);
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-overline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-content h1 {
    font-family: var(--font-brutal);
    font-size: 5.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: .95;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-content h1 em {
    font-style: normal;
    font-family: var(--font-brutal-alt);
    display: block;
    font-size: 6rem;
    color: var(--gold);
    margin-top: .2rem;
    letter-spacing: 6px;
}

.hero-description {
    font-family: var(--font-editorial);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .65);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
}

.hero-scroll-indicator span {
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* ========== EDITORIAL QUOTE STRIP ========== */
.quote-strip {
    background: var(--black);
    padding: 5rem 6%;
    display: flex;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.quote-strip blockquote {
    font-family: var(--font-editorial);
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    line-height: 1.6;
    letter-spacing: -.5px;
}

.quote-strip blockquote span {
    display: block;
    font-family: var(--font-body);
    font-size: .65rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2rem;
}

/* ========== PROBLEM / EDITORIAL SPREAD ========== */
.editorial-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}

.spread-visual {
    background: var(--warm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.spread-visual-inner {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.spread-visual-accent {
    position: absolute;
    top: 10%;
    right: 5%;
    font-family: var(--font-display);
    font-size: 15rem;
    font-weight: 800;
    color: rgba(0, 0, 0, .03);
    line-height: 1;
    pointer-events: none;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--wine);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.problem-card p {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.6;
}

.spread-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: var(--white);
}

.spread-text .editorial-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.spread-text .body-text {
    max-width: 450px;
    margin-bottom: 2rem;
}

/* ========== INDUSTRIES — EDITORIAL GRID ========== */
.industries-section {
    padding: 8rem 6%;
    background: var(--cream);
}

.industries-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
}

.industries-header .editorial-title {
    font-size: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid var(--light-border);
    border-left: 1px solid var(--light-border);
}

.industry-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
    transition: var(--transition);
    cursor: default;
    background: transparent;
}

.industry-item:hover {
    background: var(--white);
}

.industry-item:hover .industry-icon {
    transform: scale(1.15);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform var(--transition);
}

.industry-name {
    font-family: var(--font-editorial);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ========== PACKAGES — VOGUE PRICING ========== */
.packages-section {
    padding: 8rem 6%;
    background: var(--white);
}

.packages-header {
    text-align: center;
    margin-bottom: 5rem;
}

.packages-header .editorial-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--light-border);
}

.package-card {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--light-border);
    transition: var(--transition);
    position: relative;
}

.package-card:last-child {
    border-right: none;
}

.package-card:hover {
    background: var(--cream);
}

.package-card.featured {
    background: var(--black);
    color: var(--white);
}

.package-card.featured:hover {
    background: var(--charcoal);
}

.package-card.featured .package-name,
.package-card.featured .package-price {
    color: var(--white);
}

.package-card.featured .package-tagline {
    color: var(--gold);
}

.package-card.featured .package-features li {
    color: rgba(255, 255, 255, .7);
    border-bottom-color: rgba(255, 255, 255, .08);
}

.package-card.featured .package-features li::before {
    color: var(--gold);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wine);
    color: var(--white);
    padding: .4rem 1.8rem;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.package-name {
    font-family: var(--font-brutal);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-tagline {
    font-family: var(--font-editorial);
    font-size: .95rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2rem;
}

.package-price {
    font-family: var(--font-brutal-alt);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: .3rem;
    letter-spacing: -1px;
}

.package-price span {
    font-size: .9rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0;
}

.package-period {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-border);
}

.package-card.featured .package-period {
    border-bottom-color: rgba(255, 255, 255, .1);
}

.package-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: .65rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: .85rem;
    font-weight: 300;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.package-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--wine);
    font-weight: 400;
}

.package-card .btn {
    text-align: center;
    width: 100%;
}

/* ========== PROCESS — EDITORIAL STEPS ========== */
.process-section {
    padding: 8rem 6%;
    background: var(--cream);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header .editorial-title {
    font-size: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2.8rem;
    right: 0;
    width: 50px;
    height: 1px;
    background: var(--light-border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-family: var(--font-brutal);
    font-size: 4rem;
    font-weight: 400;
    color: rgba(0, 0, 0, .05);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: 2px;
}

.process-step h4 {
    font-family: var(--font-brutal);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-step p {
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 8rem 6%;
    background: var(--black);
}

.testimonials-header {
    margin-bottom: 5rem;
}

.testimonials-header .editorial-title {
    font-size: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 3rem 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: .9rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: var(--font-editorial);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .8rem;
    border-radius: 50%;
}

.testimonial-info {
    font-family: var(--font-body);
    font-size: .8rem;
}

.testimonial-info strong {
    display: block;
    color: var(--white);
    font-weight: 500;
}

.testimonial-info span {
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
}

/* ========== CTA ========== */
.cta-section {
    padding: 8rem 6%;
    background: linear-gradient(135deg, var(--wine), #6b1a3f);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'BEAUTY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(0, 0, 0, .05);
    pointer-events: none;
    z-index: 1;
}

.cta-section>* {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: var(--font-brutal);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-section h2 em {
    font-style: normal;
    font-family: var(--font-brutal-alt);
    color: var(--gold);
}

.cta-section p {
    font-family: var(--font-editorial);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ========== ABOUT EDITORIAL ========== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 85vh;
}

.about-visual {
    background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=800') no-repeat center/cover;
    position: relative;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .2);
}

.about-photo-frame {
    position: relative;
    z-index: 2;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .5);
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
}

.about-photo-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    filter: grayscale(1);
    opacity: .8;
}

.about-stamp {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    width: 120px;
    height: 120px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: rotate 20s linear infinite;
    text-align: center;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.about-text {
    padding: 8rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.about-text .editorial-title {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-value-icon {
    color: var(--wine);
    font-size: 1.2rem;
}

/* ========== CONTACT SPLIT ========== */
.contact-section {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}

.contact-form-side {
    padding: 8rem 8%;
    background: var(--warm-cream);
}

.contact-form .form-group {
    margin-bottom: 2.5rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-body);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: .8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 1rem 0;
    font-family: var(--font-editorial);
    font-size: 1.3rem;
    color: var(--black);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--black);
}

.contact-info-side {
    padding: 8rem 8%;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .5rem;
}

.contact-info-item a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-editorial);
    font-size: 1.4rem;
    font-style: italic;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
}

/* ========== FOOTER ========== */
footer {
    background: var(--black);
    padding: 6rem 6% 3rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 3rem;
    color: rgba(255, 255, 255, .3);
    font-size: .8rem;
}

/* ========== SCROLL REVEAL UTILS ========== */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: 1s cubic-bezier(.16, 1, .3, 1);
}

.reveal {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .editorial-spread {
        min-height: auto;
    }

    .spread-visual,
    .spread-text {
        padding: 4rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .package-card {
        border-right: none;
        border-bottom: 1px solid var(--light-border);
    }

    .package-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 500px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .spread-visual-accent {
        display: none;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-step::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .editorial-spread {
        grid-template-columns: 1fr;
    }

    .spread-visual {
        display: none;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h1 em {
        font-size: 4rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, .2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--black);
        font-size: 1.5rem;
    }

    .nav-cta {
        border-color: var(--black) !important;
        color: var(--black) !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1 em {
        font-size: 3.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}