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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2416;
    background: #faf7f2;
    font-size: 17px;
    font-weight: 400;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: #fff;
    border-bottom: 3px solid #acb39a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0; /* Remove extra space below image */
}

.logo-img {
    display: block;
    height: auto;
    max-height: 54px; /* Adjust this to control logo size */
    width: auto;
    object-fit: contain;
}

/* Fallback text logo styling - use if you want text instead of image */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #acb39a;
    line-height: 1.2;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: #2c2416;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

nav a:hover {
    color: #acb39a;
}

.pay-btn {
    background: #acb39a;
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
}

.pay-btn:hover {
    background: #687056;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c2416;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-top: 2px solid #acb39a;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #2c2416;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.75);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 24px;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    margin: 0 24px;
}

.hero-text h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: #ffffff;
}

.hero-text p {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-weight: 500;
}

.cta {
    display: inline-block;
    background: #acb39a;
    color: white;
    padding: 18px 44px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta:hover {
    background: #687056;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: bold;
    margin-bottom: 16px;
    color: #2c2416;
    text-align: center;
}

.subhead {
    text-align: center;
    font-size: 20px;
    color: #5a4a3a;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Work section */
.work {
    background: white;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.service {
    background: #faf7f2;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e8ddd0;
}

.service h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #acb39a;
}

.service p {
    color: #5a4a3a;
    line-height: 1.7;
}

.process {
    background: #faf7f2;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e8ddd0;
}

.process h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
    color: #2c2416;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: #acb39a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step p {
    font-size: 18px;
    color: #5a4a3a;
    font-weight: 500;
}

/* Photos */
.photos {
    background: #faf7f2;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.photo-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #e8ddd0;
    transition: transform 0.3s;
}

.photo-grid img:hover {
    transform: scale(1.03);
}

/* Reviews */
.reviews {
    background: white;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.review {
    background: #faf7f2;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e8ddd0;
}

.stars {
    color: #acb39a;
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.review p {
    font-size: 18px;
    color: #5a4a3a;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review .name {
    font-weight: bold;
    color: #2c2416;
}

/* Contact */
.contact {
    background: #faf7f2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info > div {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e8ddd0;
}

.contact-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2416;
}

.contact-info a {
    color: #acb39a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p {
    color: #5a4a3a;
    line-height: 1.7;
}

.form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e8ddd0;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c2416;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e8ddd0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #faf7f2;
    color: #2c2416;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #acb39a;
    background: white;
}

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

/* Turnstile widget styling */
#turnstile-widget {
    min-height: 65px;
    display: block;
}

#turnstile-widget iframe {
    margin: 0 auto;
    display: block;
}

.submit-btn {
    width: 100%;
    background: #acb39a;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #687056;
}

.form-msg {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-msg.success {
    display: block;
    background: #e8f5e9;
    border: 2px solid #acb39a;
    color: #2d5016;
}

.form-msg.error {
    display: block;
    background: #ffebee;
    border: 2px solid #c62828;
    color: #8b0000;
}

.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Footer */
footer {
    background: #2c2416;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        gap: 16px;
    }

    .logo-img {
        max-height: 50px; /* Smaller logo on mobile */
    }

    nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-text {
        padding: 40px 24px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
