/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Variables */
:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --primary: #2e2e2e;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-900: #171717;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.min-h-screen { min-height: 100vh; }
.bg-white { background-color: #ffffff; }
.bg-neutral-900 { background-color: var(--neutral-900); }
.text-white { color: #ffffff; }
.text-neutral-400 { color: var(--neutral-400); }
.text-neutral-600 { color: var(--neutral-600); }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.text-center { text-align: center; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid var(--neutral-100);
}

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.btn-outline {
    border: 1px solid var(--neutral-200);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background-color: var(--neutral-900);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 40rem;
    color: white;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--neutral-200);
}

/* Sections */
section {
    padding: 8rem 2rem;
}

@media (min-width: 768px) {
    section {
        padding: 8rem 6rem;
    }
}

h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
}

/* Experiences */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
}

.experience-item {
    border-bottom: 1px solid var(--neutral-200);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .experience-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.experience-title {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.experience-id {
    color: var(--neutral-400);
    font-size: 1.25rem;
}

.experience-desc {
    max-width: 28rem;
    color: var(--neutral-600);
    font-weight: 300;
    font-size: 1.125rem;
}

/* Form */
.form-container {
    max-width: 48rem;
    margin: 4rem auto 0;
}

.appointment-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-400);
}

.form-group input, .form-group select {
    padding: 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--neutral-900);
}

.btn-submit {
    background-color: var(--neutral-900);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-cols: repeat(12, 1fr);
    gap: 2rem;
}

.gallery-item {
    margin-bottom: 1rem;
}

.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-video { aspect-ratio: 16/9; }

.rounded-2xl { border-radius: 1rem; }
.overflow-hidden { overflow: hidden; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ */
.faq-container {
    max-width: 48rem;
    margin: 4rem auto 0;
}

details {
    border-bottom: 1px solid #f1f1f1;
    padding: 1rem 0;
    cursor: pointer;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    list-style: none;
    padding: 1rem 0;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    color: var(--neutral-600);
    padding-bottom: 1rem;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 6rem 2rem;
    background-color: #fafafa;
    border-top: 1px solid var(--neutral-100);
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-cols: repeat(4, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-brand h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--neutral-500);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-400);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Animations (Simple Intersection Observer based) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
