/* =========================================================
   ARNAUD MEYER PEINTURE
   Thème élégant noir & doré · Premium
   ========================================================= */

:root {
    /* Palette */
    --amp-black:        #0a0a0a;
    --amp-black-soft:   #141414;
    --amp-charcoal:     #1c1c1c;
    --amp-graphite:     #2a2a2a;
    --amp-smoke:        #3a3a3a;
    --amp-silver:       #b8b8b8;
    --amp-ivory:        #f4f1eb;
    --amp-white:        #ffffff;

    /* Dorés */
    --amp-gold:         #c9a96e;
    --amp-gold-light:   #e5cfa0;
    --amp-gold-dark:    #9b7e42;
    --amp-gold-glow:    rgba(201, 169, 110, 0.3);

    /* Typographie */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container:    1240px;
    --radius:       2px;
    --radius-lg:    4px;

    /* Transitions */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================= RESET ================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--amp-ivory);
    background: var(--amp-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--amp-gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--amp-gold-light); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--amp-white);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

p { margin: 0 0 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: 10px; left: 10px; background: var(--amp-gold); color: var(--amp-black);
    padding: .75rem 1.25rem; z-index: 9999; clip: auto; width: auto; height: auto;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-gold {
    background: linear-gradient(135deg, var(--amp-gold) 0%, var(--amp-gold-light) 50%, var(--amp-gold) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: var(--amp-black);
    box-shadow: 0 4px 20px var(--amp-gold-glow);
}
.btn-gold:hover {
    background-position: 100% 50%;
    color: var(--amp-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--amp-gold-glow);
}
.btn-outline {
    background: transparent;
    color: var(--amp-gold);
    border: 1px solid var(--amp-gold);
}
.btn-outline:hover {
    background: var(--amp-gold);
    color: var(--amp-black);
}
.btn-ghost {
    background: transparent;
    color: var(--amp-white);
    border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
    border-color: var(--amp-gold);
    color: var(--amp-gold);
}

/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: all .3s var(--ease);
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.header-bar {
    background: var(--amp-black);
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .78rem;
    letter-spacing: .08em;
    color: var(--amp-silver);
}
.header-bar-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 1.5rem;
}
.header-bar-item { display: inline-flex; align-items: center; gap: .5rem; }
.header-bar .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--amp-gold);
    box-shadow: 0 0 8px var(--amp-gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
.header-bar-contact a {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--amp-gold-light);
}

.header-main-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 2rem;
}
.site-branding .custom-logo { max-height: 64px; width: auto; }
.site-title-link {
    display: inline-flex; flex-direction: column; line-height: 1;
    text-decoration: none;
}
.site-title-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--amp-white);
    letter-spacing: .02em;
}
.site-title-main::first-letter { color: var(--amp-gold); }
.site-title-sub {
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-top: .4rem;
}

.main-nav {
    display: flex; align-items: center; gap: 2.5rem;
}
.nav-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 2.25rem; align-items: center;
}
.nav-menu a {
    color: var(--amp-ivory);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .5rem 0;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amp-gold);
    transition: width .35s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
    width: 100%;
}
.nav-menu a:hover { color: var(--amp-gold); }
.nav-cta {
    padding: .75rem 1.5rem !important;
    font-size: .75rem !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(201,169,110,.4);
    padding: .75rem;
    width: 44px; height: 44px;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 20px; height: 1px;
    background: var(--amp-gold);
    margin: 4px auto;
    transition: all .3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    background: var(--amp-black);
    overflow: hidden;
    padding: 6rem 0 4rem;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201,169,110,.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201,169,110,.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--amp-black) 0%, var(--amp-black-soft) 100%);
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background-image:
        linear-gradient(rgba(201,169,110,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    opacity: .6;
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}
.hero-content {
    animation: heroReveal 1s var(--ease-out) both;
}
@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .75rem;
    font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--amp-gold);
    margin-bottom: 1.75rem;
    font-weight: 500;
}
.hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--amp-gold);
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}
.hero h1 .accent {
    color: var(--amp-gold);
    font-style: italic;
    font-weight: 400;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--amp-silver);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-cta-group {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex; gap: 2.5rem; flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat {
    display: flex; flex-direction: column; gap: .2rem;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--amp-gold);
    line-height: 1;
    font-weight: 500;
}
.hero-stat-label {
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--amp-silver);
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    animation: heroReveal 1s .2s var(--ease-out) both;
}
.hero-visual-frame {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--amp-charcoal) 0%, var(--amp-graphite) 100%);
    border: 1px solid rgba(201,169,110,.25);
    overflow: hidden;
}
.hero-visual-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 70% 30%, rgba(201,169,110,.15) 0%, transparent 40%),
        linear-gradient(135deg, transparent 40%, rgba(201,169,110,.05) 60%, transparent 80%);
}
.hero-visual-deco {
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--amp-gold);
    z-index: -1;
}
.hero-badge {
    position: absolute;
    bottom: 2rem; left: -1.5rem;
    background: var(--amp-black);
    border: 1px solid var(--amp-gold);
    padding: 1.25rem 1.5rem;
    max-width: 240px;
}
.hero-badge-star {
    color: var(--amp-gold); font-size: .9rem; margin-bottom: .25rem;
}
.hero-badge-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: .95rem;
    color: var(--amp-ivory);
    line-height: 1.4;
    margin: 0;
}
.hero-badge-author {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-top: .5rem;
    display: block;
}

/* ================= SECTION COMMON ================= */
.section {
    padding: 7rem 0;
    position: relative;
}
.section-light { background: var(--amp-ivory); color: var(--amp-black); }
.section-light h1, .section-light h2, .section-light h3,
.section-light h4, .section-light h5, .section-light h6 { color: var(--amp-black); }

.section-dark { background: var(--amp-black-soft); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4.5rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    position: absolute; top: 50%;
    width: 1.25rem; height: 1px;
    background: var(--amp-gold);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 400;
}
.section-title em { color: var(--amp-gold); font-style: italic; }
.section-light .section-title em { color: var(--amp-gold-dark); }
.section-subtitle {
    color: var(--amp-silver);
    font-size: 1.05rem;
    line-height: 1.75;
}
.section-light .section-subtitle { color: var(--amp-smoke); }

/* ================= SERVICES ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--amp-charcoal);
    border: 1px solid rgba(255,255,255,.06);
    padding: 2.5rem 2rem;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--amp-gold), var(--amp-gold-light));
    transition: width .5s var(--ease);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,110,.3);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
}
.service-card:hover::before { width: 100%; }

.service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--amp-gold);
    color: var(--amp-gold);
    margin-bottom: 1.75rem;
    transition: all .4s var(--ease);
}
.service-card:hover .service-icon {
    background: var(--amp-gold);
    color: var(--amp-black);
    transform: rotate(-5deg);
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: .75rem;
}
.service-card p {
    color: var(--amp-silver);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.service-card ul {
    list-style: none; padding: 0; margin: 0;
    font-size: .88rem;
    color: var(--amp-silver);
}
.service-card ul li {
    padding: .35rem 0 .35rem 1.25rem;
    position: relative;
}
.service-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--amp-gold);
}

/* ================= ABOUT ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.about-visual {
    position: relative;
    aspect-ratio: 4/5;
}
.about-image {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--amp-graphite), var(--amp-charcoal));
    border: 1px solid rgba(201,169,110,.2);
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.05);
    transition: all .8s var(--ease);
}
.about-image:hover img { filter: grayscale(0%) contrast(1.1); transform: scale(1.03); }
.about-experience {
    position: absolute;
    bottom: -30px; right: -30px;
    background: var(--amp-gold);
    color: var(--amp-black);
    padding: 2rem 2.5rem;
    text-align: center;
}
.about-experience-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
}
.about-experience-label {
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .4rem;
    display: block;
}

.about-content .section-eyebrow::before,
.about-content .section-eyebrow::after { display: none; }
.about-content .section-eyebrow { padding: 0; text-align: left; }
.about-content h2 { text-align: left; }
.about-content p {
    color: var(--amp-silver);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.about-value {
    display: flex; gap: 1rem; align-items: flex-start;
}
.about-value-icon {
    color: var(--amp-gold);
    flex-shrink: 0;
    margin-top: 4px;
}
.about-value-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--amp-white);
    margin-bottom: .25rem;
}
.about-value-text {
    font-size: .85rem;
    color: var(--amp-silver);
    line-height: 1.6;
    margin: 0;
}

/* ================= REALISATIONS ================= */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.realisation-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--amp-charcoal);
    cursor: pointer;
    display: block;
}
.realisation-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.realisation-card:hover img { transform: scale(1.08); }
.realisation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all .5s var(--ease);
}
.realisation-card:hover .realisation-overlay {
    background: linear-gradient(180deg, rgba(201,169,110,.1) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.95) 100%);
}
.realisation-category {
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-bottom: .5rem;
}
.realisation-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--amp-white);
    margin: 0 0 .5rem;
    font-weight: 400;
}
.realisation-arrow {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--amp-gold);
    border: 1px solid var(--amp-gold);
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all .4s var(--ease);
}
.realisation-card:hover .realisation-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================= TESTIMONIALS ================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--amp-white);
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .4s var(--ease);
}
.section-dark .testimonial-card {
    background: var(--amp-charcoal);
    border-color: rgba(255,255,255,.06);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--amp-gold);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.3);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 1.5rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--amp-gold);
    line-height: 1;
    font-style: italic;
}
.testimonial-stars {
    color: var(--amp-gold);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: .1em;
}
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--amp-charcoal);
    margin-bottom: 1.75rem;
}
.section-dark .testimonial-text { color: var(--amp-ivory); }
.testimonial-author {
    display: flex; align-items: center; gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,.08);
}
.section-dark .testimonial-author { border-color: rgba(255,255,255,.08); }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amp-gold), var(--amp-gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--amp-black);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--amp-black);
    line-height: 1.2;
}
.section-dark .testimonial-name { color: var(--amp-white); }
.testimonial-location {
    font-size: .78rem;
    letter-spacing: .1em;
    color: var(--amp-gold-dark);
    margin-top: .1rem;
    display: block;
}
.section-dark .testimonial-location { color: var(--amp-gold); }

/* ================= CTA BANNER ================= */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--amp-black) 0%, var(--amp-charcoal) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(201,169,110,.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201,169,110,.1) 0%, transparent 50%);
}
.cta-inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.cta-inner p {
    color: var(--amp-silver);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================= CONTACT FORM ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
}
.contact-info h3 {
    margin-bottom: 1.5rem;
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    margin-bottom: 2rem;
}
.contact-info-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--amp-gold);
    color: var(--amp-gold);
}
.contact-info-label {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-bottom: .25rem;
}
.contact-info-value {
    color: var(--amp-ivory);
    font-size: 1.05rem;
    font-family: var(--font-display);
    line-height: 1.4;
}
.contact-info-value a { color: inherit; }

.contact-form {
    background: var(--amp-charcoal);
    border: 1px solid rgba(255,255,255,.06);
    padding: 3rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-bottom: .5rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: .75rem 0;
    color: var(--amp-ivory);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amp-gold);
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}
.form-group select option {
    background: var(--amp-charcoal);
    color: var(--amp-ivory);
}
.form-success {
    background: rgba(201,169,110,.1);
    border: 1px solid var(--amp-gold);
    padding: 1rem 1.25rem;
    color: var(--amp-gold-light);
    margin-bottom: 1.5rem;
    font-size: .9rem;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--amp-black);
    color: var(--amp-silver);
    border-top: 1px solid rgba(201,169,110,.15);
}
.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--amp-white);
    margin-bottom: 1rem;
    font-weight: 400;
}
.footer-logo span { color: var(--amp-gold); }
.footer-tagline {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--amp-silver);
    max-width: 340px;
    margin-bottom: 1.75rem;
}
.footer-social {
    display: flex; gap: .75rem;
}
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,169,110,.3);
    color: var(--amp-gold);
    transition: all .3s var(--ease);
}
.footer-social a:hover {
    background: var(--amp-gold);
    color: var(--amp-black);
    border-color: var(--amp-gold);
}
.footer-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--amp-white);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.footer-list, .footer-menu {
    list-style: none; padding: 0; margin: 0;
}
.footer-list li { margin-bottom: 1rem; font-size: .9rem; line-height: 1.6; }
.footer-list strong {
    display: block;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amp-gold);
    margin-bottom: .3rem;
    font-weight: 500;
}
.footer-list a, .footer-menu a {
    color: var(--amp-ivory);
}
.footer-list a:hover, .footer-menu a:hover {
    color: var(--amp-gold);
}
.footer-menu li {
    padding: .4rem 0;
    font-size: .9rem;
}
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
    font-size: .82rem;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom .copyright { margin: 0; color: var(--amp-smoke); }
.footer-bottom .credit { margin: 0; color: var(--amp-silver); }
.footer-bottom a { color: var(--amp-gold); }

/* ================= FLOATING CALL ================= */
.floating-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--amp-gold);
    color: var(--amp-black);
    display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 25px rgba(201,169,110,.4);
    z-index: 90;
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(201,169,110,.5); }
    70% { box-shadow: 0 0 0 15px rgba(201,169,110,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}

/* ================= PAGE HEADER ================= */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--amp-black) 0%, var(--amp-charcoal) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201,169,110,.1) 0%, transparent 60%);
}
.page-header-content { position: relative; }
.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 300;
}
.page-header h1 em { color: var(--amp-gold); font-style: italic; }
.breadcrumb {
    display: inline-flex; gap: .75rem;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--amp-silver);
}
.breadcrumb a { color: var(--amp-gold); }
.breadcrumb-sep { color: var(--amp-smoke); }

/* ================= SINGLE POST/PAGE ================= */
.single-content {
    padding: 5rem 0;
    background: var(--amp-ivory);
    color: var(--amp-black);
}
.single-content .container { max-width: 820px; }
.single-content h1, .single-content h2, .single-content h3 { color: var(--amp-black); }
.single-content h2 { margin-top: 2.5rem; }
.single-content a { color: var(--amp-gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.single-content a:hover { color: var(--amp-gold); }
.single-content blockquote {
    border-left: 3px solid var(--amp-gold);
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--amp-charcoal);
}
.single-content img {
    margin: 2rem 0;
}
.single-thumbnail {
    margin-bottom: 3rem;
    max-height: 500px;
    overflow: hidden;
}
.single-thumbnail img {
    width: 100%;
    object-fit: cover;
    margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .header-bar { display: none; }
    .header-main-inner { padding: 1rem 1.5rem; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 85%; max-width: 380px;
        height: 100vh;
        background: var(--amp-black);
        border-left: 1px solid rgba(201,169,110,.15);
        padding: 5rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        transition: right .4s var(--ease);
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
    }
    .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.05); }
    .nav-menu a { padding: 1rem 0; display: block; }
    .nav-menu a::after { display: none; }
    .nav-cta { align-self: stretch; text-align: center; justify-content: center; }

    .hero { min-height: auto; padding: 4rem 0 3rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-num { font-size: 1.75rem; }

    .about-values { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; gap: .5rem; }
    .contact-form { padding: 2rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .floating-call { display: flex; }

    .page-header { padding: 7rem 0 3rem; }
}

@media (max-width: 480px) {
    .btn { padding: .85rem 1.5rem; font-size: .78rem; }
    .hero h1 { font-size: 2.25rem; }
    .section-header { margin-bottom: 3rem; }
    .service-card { padding: 2rem 1.5rem; }
}

/* ================= UTILITIES ================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Reveal on scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
