:root {
    --bg-color: #fdfbf8;
    --text-main: #3b352e;
    --text-muted: #6e6559;
    --gold-light: #c29871;
    --gold-main: #a67c52;
    --gold-dark: #8c633e;
    --border-color: #e8e2d8;
    --white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Great Vibes', cursive;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-main);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 6px rgba(166, 124, 82, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(166, 124, 82, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gold-dark);
    border: 1px solid var(--gold-light);
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.logo {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: var(--text-main);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin: 0 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--white);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f4f0e6;
}

.experience-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #e8e2d8;
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: -0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Trust Banner */
.trust-banner {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #faf7f2;
    border-bottom: 1px solid var(--border-color);
}

.loved-by {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.stars-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.star {
    width: 18px;
    height: 18px;
    color: var(--gold-main);
}

.happy-clients {
    margin-left: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 15%;
    /* Keep faces visible */
    display: block;
    border: 8px solid var(--white);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-style: italic;
    font-family: var(--font-heading);
    border-top: 1px solid var(--border-color);
}

/* Perfect For Section */
.perfect-for {
    padding: 5rem 5%;
    background-color: #faf7f2;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 15%;
    /* Keep faces visible */
    border-bottom: 1px solid var(--border-color);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-top: none;
}

.card-content p {
    font-size: 0.85rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Features */
.features {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.feature-item p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
}

.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdfbf8, #f5f0e6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(166, 124, 82, 0.1);
    overflow: hidden;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Process */
.process {
    padding: 5rem 5%;
    background-color: #faf7f2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.process-item h3 {
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
}

.process-item p {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* CTA */
.cta {
    background-image: url('assets/cta_bg.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 20px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: #e8e2d8;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-actions .cta-label {
    color: #e8e2d8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 5%;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer .logo {
    font-size: 2rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    margin: 0 1rem;
    font-size: 0.9rem;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    color: var(--text-main);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons svg:hover {
    color: var(--gold-main);
}

/* Location Section */
.location {
    padding: 5rem 5%;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto 2rem;
    border: 8px solid var(--white);
    box-shadow: 0 15px 35px rgba(166, 124, 82, 0.1);
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.map-container iframe {
    filter: grayscale(10%) contrast(95%);
    /* Subtle thematic touch */
}

.location-details {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 4rem 5%;
}

section {
    position: relative;
    overflow: hidden;
}

section:not(.hero):not(.navbar):not(.footer) {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('assets/section_bg.png');
    background-size: 100% 50%;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.features,
.process {
    background-size: cover !important;
}

/* Responsive */
@media (max-width: 992px) {

    .cards-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

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

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

    .footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}