/* Après T Studio - Responsive Stylesheet */

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

html {
    font-size: 16px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2c2c2c;
    line-height: 1.7;
    background: #fff;
}

a {
    color: #b08d57;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #9a7a4a;
    text-decoration: underline;
}

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

ul {
    list-style: none;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #2c2c2c;
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h1 {
    font-size: 2.6rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.6em;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1em;
}

/* === Layout === */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Header === */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8e0d4;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 72px;
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.logo img {    height: 68px;    width: auto;}
.logo:hover {
    color: #b08d57;
    text-decoration: none;
}

/* === Navigation === */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #2c2c2c;
    height: 2px;
    width: 24px;
    border-radius: 1px;
    position: relative;
    transition: all 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

.main-nav { margin-left: auto; }
.main-nav ul {
    display: flex;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 8px 16px;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
}

/* === Hero === */
.page-hero {
    background: linear-gradient(135deg, #f9f6f1 0%, #f0ebe2 100%);
    padding: 60px 0;
    margin-bottom: 0;
}

.page-hero h1 {
    margin-bottom: 0.3em;
}

.page-hero .tagline {
    font-size: 1.15rem;
    color: #777;
    max-width: 640px;
    font-weight: 300;
}

/* Home hero - larger */
.hero-home {
    padding: 80px 0;
    text-align: center;
}

.hero-home h1 {
    font-size: 3rem;
}

.hero-home .tagline {
    margin: 0 auto;
    font-size: 1.2rem;
}

.hero-home .hero-cta {
    margin-top: 32px;
}

/* === Content Sections === */
.content-section {
    padding: 50px 0;
}

.content-section + .content-section {
    border-top: 1px solid #ece6dc;
}

.section-alt {
    background: #faf8f5;
}

.two-column {
    display: flex;
    gap: 60px;
}

.col-left {
    flex: 1;
    min-width: 0;
}

.col-right {
    flex: 1;
    min-width: 0;
}

/* === Service Cards === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.service-card {
    background: #faf8f5;
    border: 1px solid #ece6dc;
    border-radius: 8px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card h3 {
    color: #b08d57;
    margin-bottom: 0.4em;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

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

.portfolio-item {
    background: #f9f6f1;
    border: 1px solid #ece6dc;
    border-radius: 8px;
    padding: 24px;
}

.portfolio-item h3 {
    color: #2c2c2c;
    margin-bottom: 0.3em;
    font-size: 1.15rem;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* === Highlight / Quote === */
.highlight-box {
    background: linear-gradient(135deg, #f9f6f1 0%, #f0ebe2 100%);
    border-left: 4px solid #b08d57;
    border-radius: 0 8px 8px 0;
    padding: 28px 32px;
    margin: 24px 0;
}

.highlight-box p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    margin-bottom: 0;
}

/* === Value List === */
.value-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
}

.value-list li::before {
    content: "\2014";
    color: #b08d57;
    position: absolute;
    left: 0;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: #2c2c2c;
    color: #fff;
}

.btn-primary:hover {
    background: #444;
    color: #fff;
}

.btn-secondary {
    background: #f0ebe2;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background: #e4ddd1;
}

.btn-accent {
    background: #b08d57;
    color: #fff;
}

.btn-accent:hover {
    background: #9a7a4a;
    color: #fff;
}

/* === Contact Form === */
.contact-form {
    max-width: 520px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #2c2c2c;
    transition: border-color 0.2s;
    background: #faf8f5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b08d57;
    background: #fff;
}

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

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.required-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 14px;
}

/* === Team / About === */
.team-member {
    margin-bottom: 24px;
}

.team-member h3 {
    color: #b08d57;
    margin-bottom: 0.2em;
}

.team-member .role {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.8em;
}

/* === Footer === */
.site-footer {
    background: #2c2c2c;
    padding: 40px 0;
    margin-top: 0;
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-nav a:hover {
    color: #b08d57;
    text-decoration: none;
}

.footer-contact {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.footer-contact a {
    color: #b08d57;
}

.footer-contact a:hover {
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        order: 11;
    }
    .search-toggle {
        margin-left: auto !important;
        order: 9;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e8e0d4;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-toggle:checked ~ .main-nav {
        max-height: 400px;
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 24px;
        gap: 0;
    }

    .main-nav a {
        padding: 12px 14px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .two-column {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .hero-home h1 {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-inner {
        min-height: 60px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .page-hero {
        padding: 40px 0;
    }

    .hero-home {
        padding: 50px 0;
    }

    .hero-home h1 {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

/* === Search === */
.search-toggle { cursor: pointer; display: flex; align-items: center; margin-left: 24px; flex-shrink: 0; order: 10; background: none; border: none; color: #2c2c2c; padding: 4px; }
.search-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 500; align-items: flex-start;
    justify-content: center; padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-box {
    background: #ffffff; width: 90%; max-width: 600px; padding: 20px;
    display: flex; gap: 10px; align-items: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18); border-radius: 6px;
}
.search-box input {
    flex: 1; border: none; border-bottom: 1.5px solid #2c2c2c;
    font-size: 1.1rem; padding: 8px 0; background: transparent; outline: none;
}
.search-box button[type=submit] {
    background: #2c2c2c; color: #ffffff; border: none; padding: 8px 18px;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; cursor: pointer; border-radius: 4px;
}
.search-box .search-close {
    background: none; border: none; font-size: 1.6rem; line-height: 1;
    cursor: pointer; color: #2c2c2c; padding: 0 4px;
}
.search-bar-wrap { display: flex; gap: 10px; margin-bottom: 30px; }
.search-bar-wrap input {
    flex: 1; border: none; border-bottom: 1.5px solid #2c2c2c;
    font-size: 1.1rem; padding: 8px 0; background: transparent; outline: none;
}
.search-bar-wrap button {
    background: #2c2c2c; color: #ffffff; border: none; padding: 8px 18px;
    font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
    cursor: pointer; border-radius: 4px;
}
.search-result-item { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.search-result-item h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 6px; }
.search-result-item h3 a { color: #2c2c2c; text-decoration: none; }
.search-result-item h3 a:hover { text-decoration: underline; }
.search-result-item p { font-size: 0.95rem; color: #666; line-height: 1.6; margin: 0; }
.search-result-item mark { background: #fff3cd; padding: 0 2px; }
.search-no-results { text-align: center; padding: 40px 0; color: #888; }
