/* ============================================
   NTI FOUDA TECHNOLOGIES
   Site éditorial — Direction artistique magazine
   ============================================ */

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

:root {
    /* Palette éditoriale */
    --black: #0A0A0A;
    --black-soft: #141414;
    --charcoal: #1F1F1F;
    --graphite: #2A2A2A;
    --bronze: #8B5E3C;
    --gold: #C9A227;
    --gold-soft: #D4B445;
    --red-nti: #C00000;
    --red-soft: #D14848;
    --cream: #F4F0E8;
    --white: #FFFFFF;
    --grey-soft: #A8A8A8;
    --grey: #6B6B6B;
    --grey-dark: #3A3A3A;

    /* Typo */
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espacement */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-xxl: 12rem;

    /* Animations */
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--cream);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s var(--ease);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ===== TYPOGRAPHIE GLOBALE ===== */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

em {
    font-style: italic;
    color: var(--gold-soft);
    font-weight: 400;
}

.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: var(--space-lg);
    max-width: 900px;
}

.section-intro {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--grey-soft);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.section-header {
    margin-bottom: var(--space-xl);
    max-width: 900px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 240, 232, 0.05);
    transition: padding 0.3s var(--ease);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 var(--space-lg);
    }
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: none;
    gap: var(--space-md);
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--grey-soft);
}

.nav-lang a {
    color: var(--grey-soft);
    transition: color 0.3s var(--ease);
}

.nav-lang a.active {
    color: var(--gold);
}

.nav-lang a:hover {
    color: var(--cream);
}

.lang-sep {
    color: var(--grey-dark);
}

.nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-burger {
        display: none;
    }
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: transform 0.3s var(--ease);
}

/* ===== HERO CAROUSEL ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--black);
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black);
    opacity: 0;
    transition: opacity 1.5s var(--ease);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.65) 40%,
        rgba(10, 10, 10, 0.3) 70%,
        rgba(10, 10, 10, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 var(--space-lg);
    }
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1;
    color: var(--cream);
    margin-bottom: var(--space-md);
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.hero-title-accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 0.7s forwards;
    font-style: italic;
    font-family: var(--serif);
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 0.9s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-ghost {
    background: transparent;
    border-color: var(--cream);
    color: var(--cream);
}

.btn-ghost:hover {
    background: var(--cream);
    color: var(--black);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 0.9rem;
}

/* ===== HERO INDICATORS ===== */
.hero-indicators {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 4;
}

.indicator {
    width: 32px;
    height: 2px;
    background: rgba(244, 240, 232, 0.3);
    transition: background 0.3s var(--ease);
}

.indicator.active {
    background: var(--gold);
}


/* ===== MANIFESTE ===== */
.manifeste {
    padding: var(--space-xxl) 0;
    background: var(--black);
    position: relative;
}

.manifeste::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

.manifeste-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

@media (min-width: 1024px) {
    .manifeste-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xl);
    }
}

.manifeste-text .lead {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    line-height: 1.4;
    color: var(--cream);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.manifeste-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--grey-soft);
    margin-bottom: var(--space-md);
}

.manifeste-signature {
    margin-top: var(--space-lg) !important;
    font-family: var(--serif) !important;
    font-style: italic;
    color: var(--gold) !important;
    font-size: 1.1rem !important;
}

.manifeste-signature strong {
    color: var(--cream);
    font-weight: 500;
    font-style: normal;
}

.manifeste-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pillar {
    padding: var(--space-md);
    border: 1px solid var(--grey-dark);
    background: var(--black-soft);
    transition: all 0.4s var(--ease);
}

.pillar:hover {
    border-color: var(--gold);
    background: var(--charcoal);
    transform: translateY(-4px);
}

.pillar-number {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.pillar h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.pillar p {
    font-size: 0.95rem;
    color: var(--grey-soft);
    line-height: 1.7;
}

/* ===== COLLECTION HARDWARE ===== */
.collection {
    padding: var(--space-xxl) 0;
    background: linear-gradient(to bottom, var(--black), var(--charcoal), var(--black));
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(300px, auto);
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--black-soft);
    border: 1px solid var(--grey-dark);
    transition: all 0.5s var(--ease);
    cursor: pointer;
    aspect-ratio: 3/4;
}

@media (min-width: 1024px) {
    .gallery-item {
        aspect-ratio: auto;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
    transition: transform 0.8s var(--ease);
}

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

.gallery-item:hover img {
    /* Pas de zoom au hover, on garde la machine telle quelle */
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    color: var(--cream);
}

.caption-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.gallery-caption h3 {
    font-size: 1.4rem;
    color: var(--cream);
}

.collection-note {
    text-align: center;
    color: var(--grey-soft);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.8;
}

/* ===== LOGICIELS ===== */
.logiciels {
    padding: var(--space-xxl) 0;
    background: var(--black);
}

.logiciels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .logiciels-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

.software-card {
    padding: var(--space-lg);
    border: 1px solid var(--grey-dark);
    background: var(--black-soft);
    transition: all 0.4s var(--ease);
    position: relative;
}

.software-card:hover {
    border-color: var(--gold);
    background: var(--charcoal);
}

.software-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    margin-bottom: var(--space-md);
}

.software-tag-dev {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.software-card h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.software-tagline {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-soft);
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
}

.software-desc {
    color: var(--grey-soft);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.software-features {
    list-style: none;
    padding: 0;
}

.software-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    color: var(--cream);
    font-size: 0.95rem;
    position: relative;
    border-bottom: 1px solid var(--grey-dark);
}

.software-features li:last-child {
    border-bottom: none;
}

.software-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===== SOLUTIONS ===== */
.solutions {
    padding: var(--space-xxl) 0;
    background: var(--charcoal);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

.solution-block {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--grey-dark);
    transition: border-color 0.3s var(--ease);
}

.solution-block:hover {
    border-top-color: var(--gold);
}

.solution-block h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.solution-block p {
    color: var(--grey-soft);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* ===== CTA ===== */
.cta {
    padding: var(--space-xxl) 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    position: relative;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--grey-soft);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
    position: relative;
}

.cta .btn {
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-soft);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--grey-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-md);
    }
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--grey-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold) !important;
}

.footer-col h4 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-col a, .footer-col p {
    display: block;
    color: var(--grey-soft);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

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

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-dark);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--grey);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== RESPONSIVE ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== FADE IN ON SCROLL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAV SCROLLED STATE ===== */
.nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.95);
}

/* ===== MOBILE MENU (panneau qui descend du haut) ===== */
@media (max-width: 1023px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        background: rgba(10, 10, 10, 0.75);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: var(--space-md) 0;
        transform: translateY(-120%);
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
        opacity: 0;
        display: flex !important;
        z-index: 999;
        overflow-y: auto;
        border-bottom: 1px solid rgba(244, 240, 232, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.1rem;
        font-family: var(--sans);
        font-weight: 400;
        color: var(--cream);
        letter-spacing: 0.05em;
        padding: 1rem var(--space-md);
        border-bottom: 1px solid rgba(244, 240, 232, 0.08);
        text-align: right;
        transition: background 0.2s var(--ease), color 0.2s var(--ease);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(20, 20, 20, 0.6);
        color: var(--gold);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-burger {
        position: relative;
        z-index: 1001;
    }

    .nav-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ===== PAGE APROPOS ET CONTACT ===== */
.page-header {
    padding: 180px 0 var(--space-xl);
    background: var(--black);
    text-align: center;
    border-bottom: 1px solid var(--grey-dark);
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--grey-soft);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    font-family: var(--serif);
}

.page-content {
    padding: var(--space-xl) 0;
    background: var(--black);
}

.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--cream);
    margin: var(--space-lg) 0 var(--space-md);
}

.prose h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin: var(--space-md) 0 var(--space-sm);
    font-family: var(--serif);
    font-style: italic;
}

.prose p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.prose p:first-of-type {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-soft);
    line-height: 1.5;
}

.prose ul {
    margin: var(--space-md) 0;
    padding-left: 0;
    list-style: none;
}

.prose ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--cream);
    position: relative;
    line-height: 1.7;
}

.prose ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.prose blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 2px solid var(--gold);
    background: var(--black-soft);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--cream);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--grey-soft);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.contact-block {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--grey-dark);
}

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h4 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-block a {
    display: block;
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    transition: color 0.3s var(--ease);
}

.contact-block a:hover {
    color: var(--gold);
}

.contact-block p {
    color: var(--cream);
    margin-bottom: 0;
}

.contact-form {
    padding: var(--space-lg);
    background: var(--black-soft);
    border: 1px solid var(--grey-dark);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--black);
    border: 1px solid var(--grey-dark);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 1rem;
    transition: border-color 0.3s var(--ease);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

