/* ═══════════════════════════════════════════════
   ELEVATE CREATIVE AGENCY — MAIN STYLESHEET
   ═══════════════════════════════════════════════ */

/* ── BRAND TOKENS ─────────────────────────── */
:root {
    --black: #111111;
    --charcoal: #2B2B2B;
    --gold: #C9A66B;
    --gold-deep: #C98B3F;
    --gold-light: #cfc6bc;
    --gold-soft: rgba(201, 166, 107, 0.15);
    --ivory: #F5F1EA;
    --ivory-warm: #F0EBE0;
    --taupe: #CFC6BC;
    --white: #FFFFFF;
    
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s ease;
    --max-width: 1320px;
    --navbar-height: 90px;
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--black);
    line-height: 1.15;
}

.script {
    font-family: var(--font-script);
    font-weight: 400;
    line-height: 1;
}

.label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.gold {
    color: var(--gold);
}

/* ── LAYOUT ───────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

/* ── GOLD DIVIDER ─────────────────────────── */
.divider-gold {
    width: 80px;
    height: 1px;
    background: var(--gold);
    border: none;
    margin: 1.5rem auto;
}

.divider-gold.left {
    margin-left: 0;
    margin-right: 0;
}

/* ═══════════════════════════════════════════════
   NAVBAR (Ivory, sticky)
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--ivory);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: var(--navbar-height);
}

/* ── Logo (stacked) ─────────────────────── */
.nav-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-logo-script {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--black);
    line-height: 1;
    letter-spacing: 1px;
}

.nav-logo-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ── Nav links ──────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-sans);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ── Contact button ─────────────────────── */
.nav-cta {
    padding: 0.85rem 1.75rem;
    background: var(--gold);
    color: var(--black) !important;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    background: var(--gold-deep);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.75rem;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-deep);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--ivory);
}

.btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--ivory);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    background: var(--black);
    color: var(--ivory);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* ── Footer brand column ──────────────── */
.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.footer-logo-script {
    font-family: var(--font-script);
    color: var(--ivory);
    font-size: 3rem;
    line-height: 1;
}

.footer-logo-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 0.5rem;
}

.footer-tagline {
    color: var(--taupe);
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-signature {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 166, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── Footer link columns ──────────────── */
.footer h4 {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: var(--taupe);
    font-size: 0.9rem;
}

.footer ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 166, 107, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: var(--taupe);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ═══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ═══════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════ */
.flash-container {
    position: fixed;
    top: 110px;
    right: 2rem;
    z-index: 200;
    max-width: 400px;
}

.flash {
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.flash.success { border-left-color: #10b981; }
.flash.danger { border-left-color: #ef4444; }
.flash.warning { border-left-color: #f59e0b; }
.flash.info { border-left-color: #3b82f6; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 968px) {
    section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    
    .nav-toggle { display: block; }
    .nav-cta { display: none; }
    
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--navbar-height));
        background: var(--ivory-warm);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-logo-script { font-size: 2rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   HOMEPAGE STYLES
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   SECTION HEADER (reusable)
   ═══════════════════════════════════════════════ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin: 0.75rem 0 0;
}

.section-header .divider-gold {
    margin: 1.5rem auto;
}

.section-subtitle {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
    min-height: calc(100vh - var(--navbar-height));
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 166, 107, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative gold circle top-right */
.hero-circle {
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(201, 166, 107, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.hero-circle::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 8%;
    right: 8%;
    bottom: 8%;
    border: 1px solid rgba(201, 166, 107, 0.08);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-label {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    color: var(--ivory);
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
}

.hero-tagline {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: 300;
}

/* Service pills */
.hero-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.hero-pills li {
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-left: 1.25rem;
}

.hero-pills li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.hero-pills li:first-child {
    padding-left: 0;
}

.hero-pills li:first-child::before {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════ */
.services-section {
    background: var(--ivory);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border-top: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--gold);
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link span {
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════════ */
.about-preview {
    background: var(--ivory-warm);
    padding-top: 6rem;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Visual side with L-frame accent */
.about-visual {
    position: relative;
}

.about-image-placeholder {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--taupe) 0%, #a8a095 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.about-industries {
    position: relative;
    padding: 2rem;
    margin-top: -2rem;
    margin-left: 2rem;
    border-left: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.about-industries .label {
    margin-bottom: 1rem;
}

.about-industries ul {
    list-style: none;
}

.about-industries li {
    color: var(--charcoal);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    font-family: var(--font-serif);
}

.about-industries li::first-letter {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Content side */
.about-content .label {
    margin-bottom: 0.75rem;
}

.about-title-script {
    font-size: 4rem;
    margin: 0 0 1.5rem;
}

.about-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.25;
    font-weight: 400;
}

.about-content p {
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about-link {
    color: var(--gold-deep);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-link span {
    transition: var(--transition);
}

.about-link:hover span {
    transform: translateX(4px);
}

.about-signature {
    font-size: 2rem;
    margin: 2rem 0 !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 166, 107, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-deep);
    opacity: 0.7;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL SECTION
   ═══════════════════════════════════════════════ */
.testimonial-section {
    background: 
        radial-gradient(ellipse at center, rgba(201, 166, 107, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    color: var(--ivory);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    color: var(--ivory);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.testimonial-author {
    text-align: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(201, 166, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.author-name {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.author-company {
    color: var(--taupe);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════ */
.faq-section {
    background: var(--ivory);
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
}

.faq-item summary {
    padding: 1.75rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--black);
    list-style: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--gold);
}

.faq-icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    margin-left: 1rem;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.75rem;
    color: var(--charcoal);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 90%;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
    background: var(--ivory-warm);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(201, 166, 107, 0.15);
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.75rem 0 0;
}

.final-cta .script.gold {
    font-size: 1.3em;
}

/* ═══════════════════════════════════════════════
   HOMEPAGE — RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 4rem 1.5rem 6rem;
    }
    
    .hero-circle {
        width: 400px;
        height: 400px;
        top: -10%;
        right: -30%;
    }
    
    .hero-pills {
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 1rem auto 0;
    }
    
    .hero-actions .btn {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-industries {
        margin-left: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .faq-item summary {
        font-size: 1rem;
        padding: 1.25rem 0;
    }
}
/* ═══════════════════════════════════════════════
   CONTACT SECTION (Homepage split layout)
   ═══════════════════════════════════════════════ */
.contact-section {
    background: var(--ivory);
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 2rem;
}

/* ── LEFT: Info side ─────────────────────── */
.contact-info-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.contact-info-intro {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 3rem;
    opacity: 0.85;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(201, 166, 107, 0.12);
    border: 1px solid rgba(201, 166, 107, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.info-value {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    transition: var(--transition);
}

a.info-value:hover {
    color: var(--gold);
}

.business-reg {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    opacity: 0.7;
    text-transform: uppercase;
}

.business-reg .gold {
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* ── RIGHT: Form side ─────────────────────── */
.contact-form-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-top: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--ivory);
    border: 1px solid transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A66B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-sans);
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(43, 43, 43, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.1rem;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-title {
        font-size: 2.75rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}
/* ═══════════════════════════════════════════════
   PORTFOLIO SECTION (Black background)
   ═══════════════════════════════════════════════ */
.portfolio-section {
    background: 
        radial-gradient(ellipse at center top, rgba(201, 166, 107, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    color: var(--ivory);
}

/* ── Portfolio grid ─────────────────────── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* ── Portfolio card ─────────────────────── */
.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 166, 107, 0.1);
    border-top: 2px solid var(--gold);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 166, 107, 0.3);
    border-top-color: var(--gold);
    transform: translateY(-4px);
}

/* ── Card header (industry + status badge) ── */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.portfolio-industry {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--taupe);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ivory);
    line-height: 1.2;
    margin: 0;
}

/* ── Status badges ─────────────────────── */
.status-badge {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid;
    white-space: nowrap;
}

.status-active {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(74, 222, 128, 0.08);
}

.status-progress {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.08);
}

/* ── Tagline (script) ─────────────────── */
.portfolio-tagline {
    font-size: 1.6rem;
    margin: 0.5rem 0 1.5rem;
    line-height: 1;
}

/* ── Divider inside card ────────────── */
.portfolio-divider {
    border: none;
    border-top: 1px solid rgba(201, 166, 107, 0.15);
    margin: 0 0 1.5rem;
}

/* ── Description ─────────────────────── */
.portfolio-description {
    color: var(--taupe);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ── Services provided ──────────────── */
.portfolio-services {
    margin-bottom: 1.5rem;
}

.portfolio-services-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(201, 166, 107, 0.25);
    color: var(--taupe);
    font-size: 0.8rem;
    font-weight: 400;
    background: rgba(201, 166, 107, 0.05);
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Social links ─────────────────── */
.portfolio-socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.portfolio-social-link {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 166, 107, 0.3);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
}

.portfolio-social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ── Confidential notice ──────────── */
.portfolio-confidential {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(251, 191, 36, 0.06);
    border-left: 2px solid #fbbf24;
    color: #fbbf24;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.portfolio-confidential svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ── Growth CTA below cards ─────── */
.portfolio-cta {
    max-width: 700px;
    margin: 5rem auto 0;
    text-align: center;
}

.portfolio-cta-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    border: none;
    margin: 0 auto 2rem;
}

.portfolio-cta p {
    color: var(--taupe);
    font-size: 1rem;
    line-height: 1.7;
}

/* ── Portfolio Responsive ─────── */
@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-card {
        padding: 2rem 1.5rem;
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .portfolio-title {
        font-size: 1.4rem;
    }
    
    .portfolio-tagline {
        font-size: 1.35rem;
    }
}
/* ═══════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
   ═══════════════════════════════════════════════ */

/* Container wraps track + dots */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

/* Track holds all slides */
.testimonial-track {
    position: relative;
    min-height: 380px;
}

/* Individual slide (absolute-positioned, fades in/out) */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

/* Pagination dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.dot:hover {
    border-color: var(--gold);
    background: rgba(201, 166, 107, 0.3);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Responsive tweaks */
@media (max-width: 968px) {
    .testimonial-track {
        min-height: 480px;
    }
    
    .carousel-dots {
        margin-top: 2rem;
    }
}
/* ═══════════════════════════════════════════════
   INSIGHTS SECTION (Ivory)
   ═══════════════════════════════════════════════ */
.insights-section {
    background: var(--ivory-warm);
    position: relative;
    z-index: 1;
}

/* ── Grid ─────────────────────────────── */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* ── Card ─────────────────────────────── */
.insight-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ── Image (placeholder for now) ────── */
.insight-image {
    display: block;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.insight-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.5;
}

/* Vibrant gradient placeholders — match your reference tones */
.insight-image-1 {
    background: linear-gradient(135deg, #FF006E 0%, #FF7A00 50%, #FFB800 100%);
}

.insight-image-2 {
    background: linear-gradient(135deg, #3a4a5c 0%, #6b7c8f 100%);
}

.insight-image-3 {
    background: linear-gradient(135deg, #4361EE 0%, #B565D8 50%, #F72585 100%);
}

/* ── Content ─────────────────────────── */
.insight-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ── Meta (category + read time) ────── */
.insight-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    font-weight: 500;
}

.insight-category {
    color: var(--gold);
    text-transform: uppercase;
}

.insight-read-time {
    color: var(--charcoal);
    opacity: 0.6;
    text-transform: uppercase;
}

/* ── Title ────────────────────────────── */
.insight-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 400;
}

.insight-title a {
    color: var(--black);
    transition: var(--transition);
}

.insight-title a:hover {
    color: var(--gold);
}

/* ── Excerpt ─────────────────────────── */
.insight-excerpt {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ── Read more link ─────────────────── */
.insight-link {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    margin-top: auto;
}

.insight-link span {
    transition: var(--transition);
}

.insight-link:hover span {
    transform: translateX(4px);
}

/* ── Responsive ─────────────────────── */
@media (max-width: 968px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-image {
        aspect-ratio: 16 / 9;
    }
    
    .insight-image-placeholder {
        font-size: 3rem;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ── Page Hero (reusable across all inner pages) ── */
.page-hero {
    background: var(--ivory);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero .label {
    margin-bottom: 1rem;
}

.page-hero-script {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin: 0 0 1rem;
}

.page-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--black);
    font-weight: 400;
    margin: 0.5rem 0 0;
    line-height: 1.3;
}

.page-hero .divider-gold {
    margin: 1.75rem auto;
}

.page-hero-subtitle {
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* ── About Story ─────────────────────────── */
.about-story {
    background: var(--ivory);
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

/* ── Values Section ─────────────────────── */
.about-values {
    background: var(--ivory-warm);
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border-top: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.value-icon {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.value-card p {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── About CTA (Black) ─────────────────── */
.about-cta {
    background: 
        radial-gradient(ellipse at center, rgba(201, 166, 107, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    color: var(--ivory);
    text-align: center;
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    color: var(--ivory);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.75rem 0 0;
}

.about-cta .script.gold {
    font-size: 1.3em;
}

.about-cta p {
    color: var(--taupe);
    font-size: 1.05rem;
    margin: 1rem auto 2rem;
    max-width: 500px;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 968px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 2rem 1.25rem;
    }
    
    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 1rem auto 0;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   SERVICES PAGE (Grid + Detail)
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ── Services grid page ────────────────── */
.services-full {
    background: var(--ivory);
    padding: 3rem 0 6rem;
    position: relative;
    z-index: 1;
}

/* Make service cards clickable (whole card) */
.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card-link .service-card {
    height: 100%;
    cursor: pointer;
}

/* ── Process section ───────────────────── */
.services-process {
    background: var(--ivory-warm);
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.process-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
}

.process-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.process-step p {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════ */

/* ── Overview (split layout) ─────────── */
.service-overview {
    background: var(--ivory);
    position: relative;
    z-index: 1;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-overview-heading {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin: 0.75rem 0 0;
    line-height: 1.15;
}

.service-overview-heading .script.gold {
    font-size: 1.2em;
    display: inline-block;
}

.service-overview-body {
    margin-top: 1.5rem;
}

.service-overview-content p {
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.service-overview-visual {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--taupe) 0%, #a8a095 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.service-visual-placeholder {
    padding: 2rem;
}

/* ── What's Included ─────────────────── */
.service-included {
    background: var(--ivory-warm);
    position: relative;
    z-index: 1;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.included-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 2px solid transparent;
    transition: var(--transition);
}

.included-item:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.included-icon {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.included-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    font-weight: 400;
}

.included-item p {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Related services ────────────────── */
.service-related {
    background: var(--ivory);
    position: relative;
    z-index: 1;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .service-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   PORTFOLIO PAGE (Grid + Detail)
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ── Clickable portfolio cards ────────── */
.portfolio-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.portfolio-card-link .portfolio-card {
    height: 100%;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO DETAIL PAGE
   ═══════════════════════════════════════════════ */

/* ── Detail section (black bg) ─────────── */
.portfolio-detail-section {
    background: 
        radial-gradient(ellipse at center top, rgba(201, 166, 107, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    color: var(--ivory);
}

/* ── Grid: content left, meta card right ── */
.portfolio-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ── Content side ───────────────────────── */
.portfolio-detail-description {
    color: var(--taupe);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-top: 1.5rem;
}

/* ── Meta card (right sidebar) ────────── */
.portfolio-detail-meta {
    position: sticky;
    top: calc(var(--navbar-height) + 2rem);
}

.meta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 166, 107, 0.15);
    border-top: 2px solid var(--gold);
    padding: 2rem 1.75rem;
}

.meta-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 166, 107, 0.1);
}

.meta-item:first-child {
    padding-top: 0;
}

.meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.meta-value {
    color: var(--ivory);
    font-size: 0.95rem;
    line-height: 1.5;
}

.meta-socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.meta-socials .portfolio-social-link {
    text-align: center;
}

/* ── Related projects section ────────── */
.portfolio-related {
    background: 
        linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    color: var(--ivory);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 968px) {
    .portfolio-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .portfolio-detail-meta {
        position: static;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   INSIGHTS PAGE (Blog Listing + Article)
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ── Narrow container (for article reading) ── */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ═══════════════════════════════════════════════
   INSIGHTS LISTING
   ═══════════════════════════════════════════════ */

/* ── Category filter tabs ────────────── */
.insights-filters {
    background: var(--ivory-warm);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
    position: relative;
    z-index: 1;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--charcoal);
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ── Empty state ─────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state p:first-child {
    line-height: 1;
}

/* ═══════════════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════════════ */

/* ── Article hero ────────────────────── */
.article-hero {
    background: var(--ivory);
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.article-hero .label {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.article-date {
    color: var(--charcoal);
    opacity: 0.6;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    color: var(--black);
    font-weight: 400;
    margin: 0 0 1.5rem;
}

.article-excerpt {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.85;
}

/* ── Feature image ─────────────────── */
.article-image-wrap {
    background: var(--ivory);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.article-feature-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #4361EE 0%, #B565D8 50%, #F72585 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ── Article body ─────────────────── */
.article-body-section {
    background: var(--ivory);
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 1;
}

.article-body {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--charcoal);
}

.article-body p {
    margin-bottom: 1.75rem;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    margin: 3rem 0 1.25rem;
    font-weight: 400;
    line-height: 1.25;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.article-body h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--black);
    margin: 2rem 0 0.75rem;
    font-weight: 500;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.75rem 1.5rem;
    padding-left: 1rem;
}

.article-body li {
    margin-bottom: 0.6rem;
    line-height: 1.75;
}

.article-body a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-decoration-color: rgba(201, 139, 63, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.article-body a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 0.5rem 0 0.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--black);
    font-size: 1.25rem;
    line-height: 1.6;
}

.article-body img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
}

.article-body strong {
    color: var(--black);
    font-weight: 600;
}

/* ── Article footer ─────────────── */
.article-footer {
    margin-top: 3rem;
    padding-top: 1rem;
    font-family: var(--font-sans);
}

/* ── Responsive ────────────────── */
@media (max-width: 968px) {
    .container-narrow {
        padding: 0 1.5rem;
    }
    
    .article-hero {
        padding: 3rem 0 2rem;
    }
    
    .article-meta {
        gap: 1rem;
        font-size: 0.7rem;
    }
    
    .article-body {
        font-size: 1.05rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .filter-tab {
        flex-shrink: 0;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

.admin-body {
    padding-top: 0;
    background: var(--ivory);
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════ */
.admin-login-body {
    padding-top: 0;
    background: 
        radial-gradient(ellipse at top, rgba(201, 166, 107, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-login-wrap {
    width: 100%;
    max-width: 460px;
}

.admin-login-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.admin-login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 1rem;
}

.admin-login-script {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--black);
    line-height: 1;
}

.admin-login-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 0.5rem;
    font-weight: 500;
}

.admin-login-tagline {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.admin-login-flash {
    margin-bottom: 1.5rem;
}

.admin-login-form {
    margin-bottom: 1.5rem;
}

.admin-login-remember {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.admin-login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-login-footer a {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.admin-login-footer a:hover {
    color: var(--gold-deep);
}

/* ═══════════════════════════════════════════════
   ADMIN LAYOUT (Sidebar + Main)
   ═══════════════════════════════════════════════ */
.admin-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

/* ── Sidebar ─────────────────────────── */
.admin-sidebar {
    background: 
        linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    color: var(--ivory);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 2.5rem;
    text-decoration: none;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

.admin-logo-script {
    font-family: var(--font-script);
    font-size: 2.25rem;
    color: var(--ivory);
    line-height: 1;
}

.admin-logo-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 0.5rem;
    font-weight: 500;
}

.admin-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.admin-nav-heading {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
}

.admin-nav-heading:first-child {
    margin-top: 0;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--taupe);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border-left: 2px solid transparent;
    font-family: var(--font-sans);
}

.admin-nav-link:hover {
    color: var(--ivory);
    background: rgba(201, 166, 107, 0.05);
}

.admin-nav-link.active {
    color: var(--gold);
    background: rgba(201, 166, 107, 0.08);
    border-left-color: var(--gold);
}

.admin-nav-icon {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    opacity: 0.7;
}

.admin-nav-link.active .admin-nav-icon {
    opacity: 1;
}

.admin-badge {
    margin-left: auto;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 22px;
    text-align: center;
}

.admin-sidebar-footer {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(201, 166, 107, 0.15);
    font-size: 0.75rem;
    color: var(--taupe);
    opacity: 0.8;
}

.admin-user-email {
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.25rem;
    word-break: break-all;
}

/* ── Main content area ───────────── */
.admin-main {
    padding: 2.5rem 3rem;
    overflow-x: hidden;
}

/* ── Flash messages inside admin ── */
.admin-flash-container {
    margin-bottom: 1.5rem;
}

.admin-flash {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: var(--white);
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.admin-flash-success { border-left-color: #10b981; }
.admin-flash-danger { border-left-color: #ef4444; }
.admin-flash-warning { border-left-color: #f59e0b; }
.admin-flash-info { border-left-color: #3b82f6; }

/* ═══════════════════════════════════════════════
   PAGE HEADER (reusable across admin pages)
   ═══════════════════════════════════════════════ */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.admin-page-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.admin-page-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1;
    margin: 0;
}

.admin-page-subtitle {
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.admin-page-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.admin-page-actions .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════
   STATS GRID (Dashboard)
   ═══════════════════════════════════════════════ */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.admin-stat-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-top: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.admin-stat-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.admin-stat-highlight {
    border-top-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 166, 107, 0.04) 0%, var(--white) 60%);
}

.admin-stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--charcoal);
    opacity: 0.6;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.admin-stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.admin-stat-highlight .admin-stat-number {
    color: var(--gold);
}

.admin-stat-sub {
    font-size: 0.8rem;
    color: var(--charcoal);
    opacity: 0.65;
}

/* ═══════════════════════════════════════════════
   PANELS / TABLES
   ═══════════════════════════════════════════════ */
.admin-panel {
    background: var(--white);
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-panel-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin: 0;
}

.admin-link {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.admin-link:hover {
    color: var(--gold-deep);
}

/* ── Table ─────────────────────────── */
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th {
    text-align: left;
    padding: 0.85rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    opacity: 0.6;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--charcoal);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(201, 166, 107, 0.02);
}

/* ── Status tags in tables ─────── */
.admin-status-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid;
}

.admin-status-read {
    color: var(--charcoal);
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
    opacity: 0.7;
}

.admin-status-unread {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 166, 107, 0.08);
    font-weight: 600;
}

/* ── Empty state ─────────────────── */
.admin-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.admin-empty p:first-child {
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════
   QUICK STATS GRID (Bottom of dashboard)
   ═══════════════════════════════════════════════ */
.admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.admin-quick-card {
    background: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.admin-quick-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.admin-quick-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    line-height: 1;
    margin: 0.5rem 0 1rem;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 968px) {
    .admin-wrapper {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        position: static;
        height: auto;
    }
    
    .admin-main {
        padding: 2rem 1.5rem;
    }
    
    .admin-stats-grid,
    .admin-quick-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .admin-page-title {
        font-size: 2rem;
    }
    
    .admin-login-card {
        padding: 2.5rem 1.75rem;
    }
    
    .admin-login-script {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .admin-stats-grid,
    .admin-quick-grid {
        grid-template-columns: 1fr;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   ADMIN — INQUIRIES MODULE
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ── Filter bar (tabs at top of list) ── */
.admin-filter-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-filter-tab {
    padding: 0.55rem 1.15rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
}

.admin-filter-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.admin-filter-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ── Unread indicator dot ─────────── */
.unread-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.15);
}

/* ── Unread row highlight ─────────── */
.admin-row-unread td {
    background: rgba(201, 166, 107, 0.03);
}

.admin-row-unread strong {
    color: var(--black);
    font-weight: 600;
}

/* ── Row link (whole name is clickable) ── */
.admin-row-link {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.admin-row-link:hover {
    color: var(--gold);
}

/* ── Tag chip (service interest, etc.) ── */
.admin-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(201, 166, 107, 0.08);
    border: 1px solid rgba(201, 166, 107, 0.25);
    color: var(--gold-deep);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ── Row action buttons ─────────── */
.admin-row-actions {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.admin-btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
}

.admin-btn-primary {
    background: var(--gold);
    color: var(--black);
}

.admin-btn-primary:hover {
    background: var(--gold-deep);
    color: var(--white);
}

.admin-btn-ghost {
    color: var(--charcoal);
    border-color: rgba(0, 0, 0, 0.12);
}

.admin-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.admin-btn-danger {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.25);
}

.admin-btn-danger:hover {
    background: #ef4444;
    color: var(--white);
    border-color: #ef4444;
}

/* ═══════════════════════════════════════════════
   INQUIRY DETAIL PAGE
   ═══════════════════════════════════════════════ */
.admin-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.admin-message-body {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--charcoal);
    padding: 1rem 0;
    white-space: normal;
    word-wrap: break-word;
}

.admin-reply-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-reply-actions .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
}

/* ── Sidebar info list ─────────── */
.admin-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-info-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-info-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    opacity: 0.55;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.admin-info-value {
    color: var(--black);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* ── Responsive ────────────────── */
@media (max-width: 968px) {
    .admin-inquiry-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-row-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .admin-row-actions .admin-btn-sm {
        text-align: center;
    }
}
/* ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════
   ADMIN — PORTFOLIO + REUSABLE FORM STYLES
   ═══════════════════════════════════════════════
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   TOGGLE BUTTON (star / dot for featured/published)
   ═══════════════════════════════════════════════ */
.admin-toggle {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--charcoal);
    opacity: 0.4;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    transition: var(--transition);
    padding: 0;
}

.admin-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
    opacity: 0.9;
}

.admin-toggle.on {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    opacity: 1;
}

.admin-toggle.on:hover {
    background: var(--gold-deep);
    color: var(--white);
}

/* ═══════════════════════════════════════════════
   ADMIN FORM (Reusable across all create/edit pages)
   ═══════════════════════════════════════════════ */

/* ── Two-column form layout ─────────── */
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.admin-form-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}

/* ── Form inputs inside admin ─────── */
.admin-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-form .form-group:last-child {
    margin-bottom: 0;
}

.admin-form .form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.admin-form .form-group input[type="text"],
.admin-form .form-group input[type="url"],
.admin-form .form-group input[type="email"],
.admin-form .form-group input[type="number"],
.admin-form .form-group input[type="date"],
.admin-form .form-group input[type="password"],
.admin-form .form-group select,
.admin-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: var(--ivory);
    border: 1px solid transparent;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.admin-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A66B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.admin-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
    font-family: var(--font-sans);
}

.admin-form .form-group input:focus,
.admin-form .form-group select:focus,
.admin-form .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.admin-form .form-group input::placeholder,
.admin-form .form-group textarea::placeholder {
    color: rgba(43, 43, 43, 0.35);
}

/* ── Form hint text ───────────────── */
.form-hint {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.55;
    margin-top: 0.4rem;
    line-height: 1.5;
}

.form-hint span {
    font-family: monospace;
    background: rgba(201, 166, 107, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 2px;
}

/* ── Checkbox group ─────────────── */
.admin-checkbox-group {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-checkbox-group:last-of-type {
    border-bottom: none;
}

.admin-checkbox-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--charcoal);
    cursor: pointer;
}

.admin-checkbox-group .checkbox-label input[type="checkbox"] {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.admin-checkbox-group strong {
    color: var(--black);
    font-weight: 600;
}

/* ── Full-width submit button ───── */
.admin-form .form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.8rem;
}

/* ── Responsive ────────────────── */
@media (max-width: 968px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-form-sidebar {
        position: static;
    }
}

/* ═══════════════════════════════════════════════
   ADMIN — ARTICLE CONTENT TEXTAREA (larger, monospace-friendly)
   ═══════════════════════════════════════════════ */
.admin-content-textarea {
    font-family: 'Menlo', 'Consolas', 'Monaco', monospace !important;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    min-height: 400px !important;
}

.form-hint code {
    font-family: 'Menlo', 'Consolas', 'Monaco', monospace;
    background: rgba(201, 166, 107, 0.08);
    color: var(--gold-deep);
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    font-size: 0.8em;
}
/* ═══════════════════════════════════════════════
   ADMIN — TESTIMONIAL MINI AVATAR
   ═══════════════════════════════════════════════ */
.testimonial-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(201, 166, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 1px;
    flex-shrink: 0;
    font-weight: 500;
}
/* ═══════════════════════════════════════════════
   ADMIN — IMAGE UPLOAD (File input + preview)
   ═══════════════════════════════════════════════ */

/* ── File input (custom styled) ────────── */
.admin-file-input {
    display: block;
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: var(--ivory);
    border: 1px dashed rgba(201, 166, 107, 0.4);
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.admin-file-input:hover {
    border-color: var(--gold);
    background: var(--white);
}

.admin-file-input::file-selector-button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    margin-right: 1rem;
    transition: var(--transition);
}

.admin-file-input::file-selector-button:hover {
    background: var(--gold-deep);
    color: var(--white);
}

/* ── Current image preview ────────────── */
.image-preview-current {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--ivory);
    border: 1px solid rgba(201, 166, 107, 0.2);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.image-preview-current img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.image-preview-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 968px) {
    .image-preview-current {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ═══════════════════════════════════════════════
   REAL IMAGES (when uploaded via admin)
   ═══════════════════════════════════════════════ */

/* Insight card real image */
.insight-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insight-image:hover .insight-image-real {
    transform: scale(1.03);
}

/* Article page feature image real */
.article-feature-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ═══════════════════════════════════════════════
   PORTFOLIO CARD — REAL IMAGE
   ═══════════════════════════════════════════════ */
.portfolio-card-image {
    margin: -2.5rem -2rem 1.5rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.03);
}

/* Portfolio hero image on detail page */
.portfolio-hero-image {
    background: 
        linear-gradient(180deg, var(--ivory) 0%, #1a1a1a 100%);
    padding: 0 0 3rem;
    position: relative;
    z-index: 1;
}

.portfolio-hero-image-real {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .portfolio-card-image {
        margin: -2rem -1.5rem 1.25rem;
    }
    
    .portfolio-hero-image-real {
        max-height: 300px;
    }
}
/* ═══════════════════════════════════════════════
   SERVICE DETAIL — REAL IMAGE
   ═══════════════════════════════════════════════ */
.service-overview-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 5;
}
/* ═══════════════════════════════════════════════
   ABOUT — REAL IMAGE (when uploaded via Settings)
   ═══════════════════════════════════════════════ */
.about-image-real {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--taupe);
    position: relative;
    z-index: 1;
}

.about-image-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════
   ERROR PAGES (404, 500)
   ═══════════════════════════════════════════════ */
.error-page {
    background: var(--ivory);
    padding: 8rem 0 6rem;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.error-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 10rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 2px;
}

.error-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    margin: 0 0 1rem;
}

.error-page .divider-gold {
    margin: 1.5rem auto;
}

.error-message {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.error-submessage {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.error-links {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.error-links .label {
    margin-bottom: 1rem;
}

.error-links ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.error-links ul li a {
    color: var(--charcoal);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.error-links ul li a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .error-page {
        padding: 5rem 0 4rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .error-links ul {
        gap: 1rem;
        flex-direction: column;
    }
}
/* ═══════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Cookie Policy)
   ═══════════════════════════════════════════════ */
.legal-section {
    background: var(--ivory);
    padding: 3rem 0 6rem;
    position: relative;
    z-index: 1;
}

.legal-meta {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-left: 2px solid var(--gold);
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.legal-meta p {
    margin: 0.25rem 0;
    opacity: 0.85;
}

.legal-content {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--black);
    margin: 2.75rem 0 1rem;
    font-weight: 400;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin: 2rem 0 0.75rem;
    font-weight: 400;
    line-height: 1.3;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.5rem 1.5rem;
    padding-left: 0.5rem;
}

.legal-content li {
    margin-bottom: 0.65rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-decoration-color: rgba(201, 139, 63, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.legal-content strong {
    color: var(--black);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   FOOTER — 5-COLUMN LAYOUT (updated for Legal column)
   ═══════════════════════════════════════════════ */
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: auto;
    }
}

/* Responsive tweaks for legal content */
@media (max-width: 768px) {
    .legal-content {
        font-size: 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
    }
    
    .legal-content h3 {
        font-size: 1.15rem;
    }
    
    .legal-meta {
        padding: 1rem 1.25rem;
        font-size: 0.85rem;
    }
}