/* ======================================================
   ROOT VARIABLES
   ------------------------------------------------------
   Centralized color + theme control.
   Change here → updates entire site.
====================================================== */

:root {
    /* Backgrounds */
    --bg-dark: #0f1115;
    --bg-card: #151821;
    --bg-soft: #0b0d12;

    /* Text */
    --text-main: #f5f5f5;
    --text-muted: #b8b8b8;

    /* Accents */
    --accent-gold: #e6b35c;
    --accent-coral: #ff7a5c;
}

/* ======================================================
   GLOBAL RESET
   ------------------------------------------------------
   Ensures consistent rendering across browsers.
====================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ======================================================
   HEADER / NAVIGATION
====================================================== */

.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.3px;
}
/* Logo image (header) */
.logo img {
    height: 75px;        /* 👈 increase size here */
    width: auto;
    display: block;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* CTA button in nav */

.nav-cta {
    padding: 8px 16px;
    border: 1px solid rgba(230,179,92,0.6);
    border-radius: 999px;
    color: var(--accent-gold) !important;
}

.nav-cta:hover {
    background: rgba(230,179,92,0.12);
}

/* ======================================================
   HERO SECTION
====================================================== */

.hero {
    padding: 110px 20px 90px;
    display: flex;
    justify-content: center;
}

/* Main hero container */

.hero-container {
    max-width: 1200px;
    width: 100%;

    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 28px;

    padding: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;

    align-items: center;
}

/* ----------------------
   HERO TEXT CONTENT
---------------------- */

.hero-content {
    max-width: 560px; /* Keeps text premium & readable */
}

.hero-eyebrow {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeUp 0.7s ease-out 0.1s both;
}

/* Main heading */

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

/* Supporting text */

.hero-subtext {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 38px;
    animation: fadeUp 0.8s ease-out 0.35s both;
    
}

/* ----------------------
   HERO ACTION BUTTONS
---------------------- */

.hero-actions {
    display: flex;
    gap: 18px;
    animation: fadeUp 0.8s ease-out 0.5s both;
    
}

.btn {
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Primary CTA */

.btn-primary {
    background: var(--accent-gold);
    color: #111;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230,179,92,0.35);
}

/* Secondary CTA */

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ----------------------
   HERO IMAGE
---------------------- */

/* ======================================================
   HERO IMAGE WRAPPER
   (Holds image + background glow)
====================================================== */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Subtle background glow behind hero image */
.hero-visual::before {
    content: "";
    position: absolute;

    /* Glow size */
    width: 420px;
    height: 420px;

    /* Soft radial glow */
    background: radial-gradient(
        circle,
        rgba(230, 179, 92, 0.18),
        rgba(230, 179, 92, 0.06),
        transparent 70%
    );

    /* Blur to soften edges */
    filter: blur(40px);

    /* Position glow slightly upward */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Ensure glow stays behind image */
    z-index: 0;
}


.hero-visual img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 360px;
    border-radius: 22px;
    object-fit: cover;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);

    /* Gentle floating animation */
    animation: floatSlow 6s ease-in-out infinite;
}


/* ======================================================
   WHAT I BUILD SECTION
====================================================== */

.build-section {
    padding: 120px 20px;
    background: var(--bg-soft);
}

.build-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header */

.build-header {
    max-width: 520px;
    margin-bottom: 70px;
}

.build-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 18px;
}

.build-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------
   BUILD GRID
---------------------- */

.build-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Individual card */

.build-card {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 22px;
    padding: 36px 34px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.build-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--accent-gold);
}

.build-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.build-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
/* ======================================================
   ABOUT SECTION
   ------------------------------------------------------
   Purpose: Establish authority & thinking clarity
   Style: Calm, readable, serious
====================================================== */

.about-section {
    padding: 120px 20px;
    background: var(--bg-dark);
}

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

.about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--text-main);
}

/* Main paragraph styling */

.about-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 26px;
}

/* Slight emphasis note (last paragraph) */

.about-note {
    font-size: 16px;
    color: var(--text-main);
    opacity: 0.9;
    margin-top: 10px;
}
/* ======================================================
   SCROLL REVEAL (SUBTLE)
   ------------------------------------------------------
   Used for About + Build sections
====================================================== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When element is visible */
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
/* ======================================================
   SELECTED WORK SECTION
   ------------------------------------------------------
   Showcases real, production-ready projects.
   Focus: credibility, clarity, authority.
====================================================== */

.work-section {
    padding: 120px 20px;
    background: var(--bg-dark);
}

.work-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ----------------------
   SECTION HEADER
---------------------- */

.work-header {
    max-width: 560px;
    margin-bottom: 70px;
}

.work-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text-main);
}

.work-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------
   WORK GRID
---------------------- */

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ----------------------
   WORK CARD
---------------------- */

.work-card {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 22px;
    padding: 36px 34px;

    display: flex;
    flex-direction: column;
    gap: 16px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Project title */

.work-card h3 {
    font-size: 20px;
    color: var(--accent-gold);
}

/* Project type label */

.work-type {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: -6px;
}

/* Description */

.work-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature list */

.work-points {
    list-style: none;
    padding-left: 0;
    margin-top: 6px;
}

.work-points li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

/* Subtle bullet */

.work-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Closing credibility note */

.work-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
    opacity: 0.9;
}
.work-link {
    margin-top: 12px;
    font-size: 14px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.work-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}
.work-footnote {
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.8;
}
/* ======================================================
   HOW I WORK (PROCESS SECTION)
   ------------------------------------------------------
   Purpose: Build trust & remove uncertainty
   Tone: Calm, structured, professional
====================================================== */

.process-section {
    padding: 120px 20px;
    background: var(--bg-soft);
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header */

.process-header {
    max-width: 560px;
    margin-bottom: 70px;
}

.process-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text-main);
}

.process-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------
   PROCESS GRID
---------------------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Individual step */

.process-step {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 22px;
    padding: 36px 30px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Step number */

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

/* Step title */

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-main);
}

/* Step description */

.process-step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ======================================================
   WHO I WORK WITH
   ------------------------------------------------------
   Purpose: Filter clients & set expectations
   Tone: Honest, confident, selective
====================================================== */

.clients-section {
    padding: 120px 20px;
    background: var(--bg-dark);
}

.clients-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header */

.clients-header {
    max-width: 560px;
    margin-bottom: 70px;
}

.clients-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text-main);
}

.clients-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------
   CLIENT GRID
---------------------- */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Individual client card */

.client-card {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 22px;
    padding: 34px 30px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Client title */

.client-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

/* Client description */

.client-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Boundary note */

.clients-note {
    max-width: 640px;
    margin-top: 60px;
    padding-left: 18px;
    border-left: 2px solid var(--accent-gold);
}

.clients-note p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ======================================================
   FINAL CTA
   ------------------------------------------------------
   Purpose: Conversion without pressure
   Tone: Calm, confident, selective
====================================================== */

.cta-section {
    padding: 140px 20px;
    background: linear-gradient(
        180deg,
        #0b0d12 0%,
        #0f1115 100%
    );
    text-align: center;
}

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

/* Heading */

.cta-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    margin-bottom: 22px;
    color: var(--text-main);
}

/* Main message */

.cta-text {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Supporting note */

.cta-subtext {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 42px;
}

/* Action buttons */

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 34px;
}

/* Boundary reminder */

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.85;
}
/* ======================================================
   CONTACT PAGE
   ------------------------------------------------------
   Calm, authoritative, low-noise conversion
====================================================== */

.contact-page {
    padding: 120px 20px;
    background: var(--bg-dark);
}

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

/* Header */

.contact-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    margin-bottom: 18px;
}

.contact-intro {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Scope */

.contact-scope {
    margin-bottom: 50px;
}

.contact-scope h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--accent-gold);
}

.contact-scope ul {
    list-style: none;
    padding-left: 0;
}

.contact-scope li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.contact-scope li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Form */

.contact-form {
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    background: #10131a;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* WhatsApp */

.contact-whatsapp {
    margin-bottom: 30px;
}

.contact-whatsapp p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.whatsapp-link {
    color: var(--accent-gold);
    font-weight: 500;
    text-decoration: none;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* Note */

.contact-note {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.85;
}

/* Mobile */

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 36px;
    }

    .contact-page {
        padding: 90px 20px;
    }
}
/* ===============================
   CONTACT CONFIRMATION MESSAGE
================================ */

.contact-confirmation {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 18px;
    padding: 32px 30px;
    margin: 40px 0 50px;

    max-width: 720px;
    border-left: 4px solid var(--accent-gold);
}

.contact-confirmation h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-main);
}

.contact-confirmation p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.contact-confirmation-note {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.85;
}
/* Honeypot field (hidden from users) */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
/* ================= BLOG ================= */

.blog-page {
    padding: 120px 20px;
}

.blog-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.blog-header p {
    color: var(--text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: linear-gradient(135deg, #151821, #10131a);
    padding: 24px;
    border-radius: 18px;
}

.blog-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.blog-card h3 a {
    color: var(--text-main);
    text-decoration: none;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Single post */

.blog-post {
    padding: 120px 20px;
}

.blog-post-inner {
    max-width: 780px;
    margin: 0 auto;
}

.blog-featured {
    width: 100%;
    border-radius: 16px;
    margin: 32px 0;
}

.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #d6d6d6;
}
/* ======================================================
   ABOUT PAGE (ISOLATED FROM HOMEPAGE)
====================================================== */

.about-page {
    background: var(--bg-dark);
    padding: 80px 20px;
}

.about-page-inner {
    max-width: 820px;
    margin: 0 auto;
}

/* Individual content blocks */
.about-block {
    margin-bottom: 48px;
}

/* Headings */
.about-block h1 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 22px;
}

.about-block h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 18px;
}

/* Text */
.about-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Lists */
.about-block ul {
    margin: 14px 0 18px 20px;
}

.about-block ul li {
    margin-bottom: 8px;
    color: #cfcfcf;
}

/* CTA block */
.about-cta {
    border-top: 1px solid #2a2f3a;
    padding-top: 36px;
}

.about-cta .btn {
    margin-top: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-page {
        padding: 60px 20px;
    }

    .about-block h1 {
        font-size: 34px;
    }

    .about-block h2 {
        font-size: 24px;
    }

    .about-block p {
        font-size: 16px;
    }
}
/* ======================================================
   BOOKS PAGE
====================================================== */

.books-page {
    padding: 120px 20px;
    background: var(--bg-dark);
}

.books-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.books-header {
    max-width: 560px;
    margin-bottom: 80px;
}

.books-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    margin-bottom: 18px;
}

.books-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Grid */

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Book card */

.book-card {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 22px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Cover */

.book-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
    object-fit: cover;
}

/* Title */

.book-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

/* Description */

.book-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Amazon link */

.book-link {
    margin-top: auto;
    font-size: 14px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.book-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

/* Footer note */

.books-note {
    margin-top: 70px;
    max-width: 520px;
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.85;
}

/* Responsive */

@media (max-width: 1000px) {
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .books-grid {
        grid-template-columns: 1fr;
    }

    .books-header h1 {
        font-size: 36px;
    }
}


/* ----------------------
   RESPONSIVE
---------------------- */

@media (max-width: 768px) {

    .cta-section {
        padding: 110px 20px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}


/* ----------------------
   RESPONSIVE
---------------------- */

@media (max-width: 1000px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .clients-header h2 {
        font-size: 36px;
    }
}


/* ----------------------
   RESPONSIVE
---------------------- */

@media (max-width: 1000px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 36px;
    }
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1000px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-header h2 {
        font-size: 36px;
    }
}



/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .hero-container {
        grid-template-columns: 1fr;
        padding: 60px 32px;
        text-align: center;
        animation: fadeUp 0.9s ease-out both;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .build-grid {
        grid-template-columns: 1fr;
    }

    .build-header h2 {
        font-size: 36px;
    }
}
@media (max-width: 768px) {

    /* =========================
       HERO LAYOUT (MOBILE)
       Image → Text → Buttons
    ========================= */

    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 28px;
        text-align: center;
    }

    /* IMAGE FIRST */
    .hero-visual {
        order: 1;
        margin-bottom: 10px;
    }

    .hero-visual img {
        max-width: 240px;
        margin: 0 auto;
        display: block;
    }

    .hero-visual::before {
        width: 240px;
        height: 240px;
        filter: blur(26px);
        opacity: 0.6;
    }

    /* TEXT SECOND */
    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subtext {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    /* BUTTONS LAST */
    .hero-actions {
        justify-content: center;
        gap: 12px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

}

@media (max-width: 768px) {

    .about-section {
        padding: 90px 20px;
    }

    .about-content h2 {
        font-size: 34px;
        margin-bottom: 26px;
    }

    .about-content p {
        font-size: 16px;
    }
}

/* ======================================================
   ANIMATIONS
====================================================== */

/* Fade + upward reveal */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gentle floating image */
@keyframes floatSlow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
/* ======================================================
   PRIVACY PAGE (MATCHES ABOUT / BOOKS STYLE)
====================================================== */
.privacy-page {
    padding: 160px 20px 120px; /* 👈 pushes below header */
    background: var(--bg-dark);
}




.privacy-page-inner {
    max-width: 820px;
    margin: 0 auto;
}

.privacy-block {
    margin-bottom: 48px;
}

.privacy-block h1 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 14px;
}

.privacy-block h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 16px;
}

.privacy-block p,
.privacy-block li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
}

.privacy-block ul {
    margin-left: 20px;
}

.privacy-updated {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
    .privacy-page {
        padding: 80px 20px;
    }

    .privacy-block h1 {
        font-size: 34px;
    }

    .privacy-block h2 {
        font-size: 24px;
    }

    .privacy-block p,
    .privacy-block li {
        font-size: 16px;
    }
}
/* ===============================
   FOOTER – CENTER ALIGN FIX
=============================== */

.site-footer {
    padding: 40px 0;
    background: var(--bg-dark);
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.site-footer .footer-copy {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.site-footer .footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
}

.site-footer .footer-links a:hover {
    color: var(--accent-gold);
}

