:root {
    --primary-white: #FFFFFF;
    --primary-blue: #B6CAD4;
    --secondary-black: #000000;
    --secondary-brown: #C4A87D;
    --text-grey: #4a4a4a;
    --light-grey: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

/* Smooth scrolling for anchor links */
html { scroll-behavior: smooth; }

/* FIX: Prevent horizontal scroll/sway */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-grey);
    background-color: var(--primary-white);
}

h1, h2, h3 { font-family: var(--font-heading); color: var(--secondary-black); font-weight: 400; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.narrow-container { max-width: 600px; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-blue { background-color: var(--primary-blue); color: var(--primary-white); }
.bg-blue h2, .bg-blue h3, .bg-blue p { color: var(--primary-white); }
.bg-light { background-color: var(--light-grey); }
.divider { width: 60px; height: 3px; background-color: var(--secondary-brown); margin: 20px auto; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; text-decoration: none; border: 1px solid transparent; transition: 0.3s; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; cursor: pointer; }
.btn-primary { background-color: var(--primary-blue); color: var(--primary-white); }
.btn-primary:hover { background-color: #a38960; }
.btn-nav { border: 1px solid var(--secondary-brown); color: var(--secondary-black); padding: 8px 20px; }
.btn-nav:hover { background-color: var(--secondary-brown); color: var(--primary-white); }
.full-width { width: 100%; border: none; font-weight: bold; }

/* Navigation */
nav { background: var(--primary-white); height: 90px; display: flex; align-items: center; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); width: 100%; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-logo { height: 70px; width: auto; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--secondary-black); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--secondary-brown); }
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 2px; background-color: var(--secondary-black); margin: 5px; transition: all 0.3s; }

/* Hero */
.hero { height: 85vh; background-image: url('banner-bright.jpg'); background-size: cover; background-position: center; position: relative; display: flex; justify-content: center; align-items: center; text-align: center; width: 100%; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.2); }
.hero-content { position: relative; z-index: 2; background: rgba(255, 255, 255, 0.95); padding: 40px 60px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); max-width: 90%; }
.hero-logo { width: 350px; max-width: 100%; height: auto; margin: 0 auto 15px auto; }
.hero .subtitle { font-size: 1.2rem; margin-bottom: 30px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-grey); }

/* Method */
.lead-text { font-size: 1.5rem; font-family: var(--font-heading); color: var(--secondary-brown); margin-bottom: 20px; }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.method-card { background: rgba(255,255,255,0.1); padding: 30px 20px; border: 1px solid rgba(255,255,255,0.3); }
.method-card .letter { font-size: 4rem; font-family: var(--font-heading); display: block; margin-bottom: 10px; color: var(--secondary-brown); }
.split-layout { display: flex; align-items: center; gap: 50px; }
.image-side { flex: 1; }
.text-side { flex: 1; }
.image-side img { max-width:75%; border-radius: 8px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-item { background: var(--primary-white); padding: 40px 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease; }
.service-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-icon { height: 120px; width: auto; margin: 0 auto 20px auto; display: block; }

/* Pricing */
.pricing-box { border: 2px solid var(--primary-white); padding: 50px; display: inline-block; max-width: 600px; }
.price-tag { font-size: 2.5rem; font-family: var(--font-heading); margin: 20px 0; }
.sessions { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.gallery-grid img { height: 350px; width: 100%; object-fit: cover; transition: all 0.4s ease; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.testimonial-container { max-width: 800px; margin: 0 auto; }
blockquote { font-style: italic; margin-bottom: 30px; font-size: 1.1rem; }
cite { display: block; margin-top: 10px; font-weight: bold; font-style: normal; color: var(--secondary-brown); }

/* --- NEW FORM & THANK YOU STYLES --- */

/* Hide spam trap */
.hidden { display: none; }

.contact-form {
    background: var(--primary-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 25px; text-align: left; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--secondary-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px; /* IMPORTANT: Prevents iOS zoom on focus */
    color: var(--text-grey);
    background-color: #fafafa;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(182, 202, 212, 0.3);
    background-color: var(--primary-white);
}

/* Custom Dropdown Arrow */
.select-wrapper { position: relative; }
.select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--secondary-brown);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; }
textarea { resize: vertical; }

/* Thank You Page */
.thank-you-hero {
    height: 70vh; /* Slightly smaller than main hero */
}

/* Mobile */
@media screen and (max-width: 768px) {
    /* FIX: Ensure overflow-x is hidden here too just in case */
    body { overflow-x: hidden; }

    .nav-links { position: absolute; right: 0px; height: 92vh; top: 90px; background-color: var(--primary-white); display: flex; flex-direction: column; align-items: center; width: 100%; transform: translateX(100%); transition: transform 0.5s ease-in; }
    /* UX: Increased margin for better touch targets */
    .nav-links li { opacity: 0; margin: 40px 0; } 
    .burger { display: block; }
    .nav-active { transform: translateX(0%); }
    .nav-links li { opacity: 1; transition: opacity 0.5s ease-in 0.3s; }
    .hero-logo { width: 200px; }
    .hero-content { padding: 30px 20px; }
    .split-layout { flex-direction: column; }
    .pricing-box { padding: 20px; width: 100%; }
    .gallery-grid img { height: 250px; }
    .contact-form { padding: 25px 15px; }
    
    /* Ensure form text is readable on mobile AND prevents zoom */
    .form-group input, 
    .form-group textarea, 
    .form-group select {
        font-size: 16px; /* FIX: Explicitly 16px to prevent iOS zoom */
    }
}
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }