/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    --color-primary: #0F3524;
    --color-primary-light: #1a4a33;
    --color-primary-dark: #0a2419;
    --color-accent: #C4A052;
    --color-accent-light: #d4b872;
    --color-cream: #FAF8F5;
    --color-cream-dark: #f0ebe3;
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-white: #FFFFFF;
    --color-success: #27ae60;
    --color-error: #e74c3c;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(15, 53, 36, 0.08);
    --shadow-medium: 0 8px 30px rgba(15, 53, 36, 0.12);
    --shadow-strong: 0 12px 40px rgba(15, 53, 36, 0.16);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l7.9-7.9h-.828zm5.656 0L19.515 8.485 17.343 10.657 28 0h-.344zM32 0l-8.485 8.485L25.758 6.243 32 0zm3.656 0L27.172 8.485 28.586 9.9 36.828 1.657 35.656 0zM38.172 0L29.687 8.485 31.1 9.9 40 1l-1.828-1zm5.656 0L35.344 8.485 36.758 9.9 46.485 0h-2.657zM48.828 0L40.343 8.485 41.757 9.9 51.657 0h-2.83zm5.657 0L46 8.485 47.414 9.9 57.485 0h-3zm5.657 0L51.657 8.485 53.07 9.9 60 3v-3h-.858zM0 5.657L5.657 0H3L0 3v2.657zm0 5.657L11.314 0H8.485L0 8.485v2.83zm0 5.657L16.97 0h-2.828L0 14.142v2.83zm0 5.656L22.627 0h-2.83L0 19.8v2.828zm0 5.657L28.284 0h-2.828L0 25.456v2.83zm0 5.657L33.94 0h-2.827L0 31.113v2.83zm0 5.657L39.598 0h-2.83L0 36.77v2.828zm0 5.657L45.255 0h-2.83L0 42.427v2.83zm0 5.656L50.912 0h-2.83L0 48.084v2.828zm0 5.657L56.57 0h-2.83L0 53.74v2.83zM0 60l60-60h-3L0 57v3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo {
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 160, 82, 0.3);
}

.logo-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--color-white);
}

.logo h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-accent-light);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.book-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.book-btn:hover {
    background: white;
    color: #0F3524;
}

/* ========================================
   Testimonial Section
   ======================================== */
.testimonial-section {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    width: 48px;
    height: 48px;
    fill: var(--color-accent);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.testimonial p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
}

/* ========================================
   Services Section - Accordion
   ======================================== */
.services-section {
    padding: 5rem 1.5rem;
    background: var(--color-cream);
}

.services-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: box-shadow var(--transition-medium);
}

.accordion-item:hover {
    box-shadow: var(--shadow-medium);
}

.accordion-item[open] {
    box-shadow: var(--shadow-medium);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition-fast);
    list-style: none;
}

/* Hide default disclosure triangle in all browsers */
.accordion-header::-webkit-details-marker,
.accordion-header::marker {
    display: none;
    content: '';
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

.accordion-header:hover {
    background: var(--color-cream);
}

.accordion-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-primary);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    transition: transform var(--transition-medium);
    flex-shrink: 0;
}

.accordion-item[open] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-photo {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-cream);
    box-shadow: var(--shadow-medium);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo.placeholder .photo-placeholder {
    display: flex;
}

.photo-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.photo-placeholder svg {
    width: 80px;
    height: 80px;
    fill: var(--color-text-light);
    opacity: 0.3;
}

.about-text p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info Box - Original Styling */
.contact-info {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-whatsapp);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 2rem;
}

.whatsapp-btn:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

/* Contact Details List */
.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-details li:first-child {
    border-top: none;
    padding-top: 0;
}

.contact-details svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details strong {
    display: block;
    color: var(--color-accent-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(15, 53, 36, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.7;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Consent Checkbox */
.consent-group {
    margin-bottom: 1.5rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.consent-label input[type="checkbox"] {
    width: auto;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--color-cream-dark);
    border-radius: 4px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.consent-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.consent-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.consent-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(15, 53, 36, 0.1);
}

.consent-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.consent-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.consent-text a:hover {
    color: var(--color-primary-light);
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 53, 36, 0.3);
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
    border: 1px solid var(--color-success);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--color-error);
    border: 1px solid var(--color-error);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #5C4033;
    color: var(--color-white);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: -1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3.5rem 1rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .section-title {
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
    }
    
    .testimonial-section {
        padding: 3rem 1rem;
    }
    
    .services-section,
    .about-section,
    .contact-section {
        padding: 3.5rem 1rem;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
    }
    
    .accordion-title {
        font-size: 1.2rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.75rem;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus visible styles */
.accordion-header:focus-visible,
.submit-btn:focus-visible,
.whatsapp-btn:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}
