/* ==================== Hero Section ==================== */
.bespoke-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.bespoke-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?w=1600&q=80') center center / cover no-repeat;
}

.bespoke-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.bespoke-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.bespoke-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* ==================== Intro Section ==================== */
.intro-section {
    padding: 120px 40px;
    background: var(--bg-white);
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ==================== Service Section ==================== */
.service-section {
    padding: 100px 40px;
    background: var(--bg-cream);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

.service-link svg {
    width: 18px;
    height: 18px;
}

.service-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* ==================== Archive Section ==================== */
.archive-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.archive-container {
    max-width: 1200px;
    margin: 0 auto;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.archive-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.archive-image:hover img {
    transform: scale(1.05);
}

.archive-content {
    text-align: center;
}

.archive-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.archive-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ==================== Enquiry Section ==================== */
.enquiry-section {
    padding: 100px 40px;
    background: var(--bg-cream);
}

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

.enquiry-header {
    text-align: center;
    margin-bottom: 60px;
}

.enquiry-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.enquiry-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.enquiry-form {
    background: white;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-light);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

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

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
    font-style: italic;
}

.form-recaptcha {
    margin: 30px 0;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 143, 122, 0.3);
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
    .bespoke-hero {
        height: 50vh;
        min-height: 400px;
    }

    .bespoke-hero-title {
        font-size: 2.5rem;
    }

    .intro-section,
    .service-section,
    .archive-section,
    .enquiry-section {
        padding: 60px 20px;
    }

    .intro-quote {
        font-size: 1.5rem;
    }

    .service-grid,
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .archive-grid .archive-image {
        order: 1;
    }

    .archive-grid .archive-content {
        order: 2;
    }

    .enquiry-form {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
