:root {
    --font-hero: 'Cormorant Garamond', serif;
    --font-title: 'Charm', cursive;
    --font-text: 'Anuphan', sans-serif;
    --font-footer: 'Aldrich', sans-serif;
    --font-contact: 'Cabin Sketch', cursive;
    --color-bg: #ffffff;
    --color-text: #1d1d1f;
    --color-text-light: #86868b;
    --color-accent: #b02e2e;
    --color-line: #d2d2d7;
    --spacing-section: 120px;
    --spacing-container: 5%;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.6; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: #fff;
}

.logo {
    font-family: var(--font-hero);
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-actions { display: flex; align-items: center; gap: 30px; }

.lang-switcher {
    font-family: var(--font-text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex; align-items: center; gap: 5px;
}

.lang-switcher a { opacity: 0.5; transition: opacity 0.3s; text-transform: uppercase; }
.lang-switcher a:hover, .lang-switcher a.active {
    opacity: 1; font-weight: 700; text-decoration: underline; text-underline-offset: 4px;
}
.lang-switcher .sep { opacity: 0.3; }

.social-link { font-size: 1.5rem; display: inline-flex; align-items: center; justify-content: center; }
.social-link svg { width: 1em; height: 1em; fill: currentColor; }

.hero-section {
    position: relative; height: 90vh; width: 100%; overflow: hidden;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: #fff;
}

.hero-backgrounds, .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-backgrounds { z-index: 1; }

.hero-bg {
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}
.hero-bg.active { opacity: 1; transform: scale(1); }

.hero-content {
    position: relative; z-index: 10;
    text-align: center; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-name {
    font-family: var(--font-hero);
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.hero-location {
    font-family: var(--font-text);
    font-weight: 300; font-size: 1.2rem;
    letter-spacing: 4px; text-transform: uppercase;
}

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--font-text); font-size: 0.8rem; opacity: 0.8;
}
.scroll-indicator .line { width: 1px; height: 40px; background: #fff; }

.section-container {
    padding: var(--spacing-section) var(--spacing-container);
    max-width: 1400px; margin: 0 auto;
}

.section-title-wrapper { margin-bottom: 60px; text-align: center; }
.section-title {
    font-family: var(--font-title); font-size: 3.5rem;
    color: var(--color-text); font-weight: 400;
}

.comp-card-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.comp-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.photo-main { grid-column: 1 / -1; position: relative; background: #f5f5f7; overflow: hidden; }
.photo-sub-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.photo-item { position: relative; background: #f5f5f7; overflow: hidden; }

.photo-item img, .photo-main img { transition: transform 0.5s ease; }
.photo-item:hover img, .photo-main:hover img { transform: scale(1.03); }

.photo-label {
    position: absolute; bottom: 10px; left: 10px;
    font-size: 0.7rem; color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.3); padding: 2px 8px; border-radius: 4px;
    text-transform: uppercase;
}

.comp-details { padding: 40px; background: #fbfbfd; border-radius: 20px; }
.bio-text h3, .measurements h3 { font-family: var(--font-hero); font-size: 2rem; margin-bottom: 20px; }
.bio-text p { font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 40px; font-weight: 300; }

.measurements ul li {
    display: flex; justify-content: space-between; padding: 15px 0;
    border-bottom: 1px solid var(--color-line); font-family: var(--font-text);
}
.measurements ul li span { font-weight: 600; color: var(--color-text-light); text-transform: uppercase; font-size: 0.9rem; }

.comp-actions { margin-top: 40px; text-align: center; }
.btn-outline {
    display: inline-block; background: transparent;
    border: 1px solid var(--color-text); padding: 15px 30px;
    font-family: var(--font-text); text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s; text-align: center;
}
.btn-outline:hover { background: var(--color-text); color: #fff; }

.story-block { display: flex; align-items: center; gap: 80px; margin-bottom: 150px; }
.story-block.inverted { flex-direction: row-reverse; }
.story-image, .story-content { flex: 1; }
.story-image { overflow: hidden; }
.story-content .section-title { text-align: left; margin-bottom: 30px; font-size: 2.5rem; }
.story-content p { font-size: 1.2rem; color: var(--color-text-light); font-weight: 300; }

.quote-section {
    padding: 150px 0; background: #111; color: #fff;
    text-align: center; display: flex; justify-content: center; align-items: center;
}
.quote-container blockquote {
    font-family: var(--font-hero); font-size: 3rem; font-style: italic;
    margin-bottom: 30px; line-height: 1.2;
}
.quote-container cite {
    font-family: var(--font-text); text-transform: uppercase;
    letter-spacing: 3px; font-size: 0.9rem; color: #888;
}

.contact-section { text-align: center; margin-bottom: 100px; }
.contact-title { font-family: var(--font-contact); font-size: 3.5rem; margin-bottom: 60px; }
.contact-wrapper { display: flex; flex-direction: column; align-items: center; max-width: 600px; margin: 0 auto; }
.contact-info { margin-bottom: 50px; display: flex; flex-direction: column; gap: 10px; }
.contact-label { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; color: var(--color-text-light); margin-bottom: 10px; }

.contact-link {
    font-size: 1.5rem; font-family: var(--font-hero);
    border-bottom: 1px solid transparent;
}
.contact-link:hover { border-color: var(--color-text); }

.contact-form { width: 100%; display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; border: none;
    border-bottom: 1px solid var(--color-line);
    font-family: var(--font-text); font-size: 1rem;
    background: transparent; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--color-text); }

/* Form Protection & Feedback */
.website-url-field { display: none; visibility: hidden; position: absolute; left: -9999px; }
.form-status { padding: 15px; margin-bottom: 20px; border-radius: 5px; font-weight: 500; text-align: center; }
.form-status.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.btn-submit {
    margin-top: 20px; background: var(--color-text); color: #fff;
    border: none; padding: 15px 40px;
    font-family: var(--font-text); text-transform: uppercase;
    cursor: pointer; align-self: center; transition: opacity 0.3s;
}
.btn-submit:hover { opacity: 0.8; }

.floating-cta {
    position: fixed; bottom: 40px; right: 40px;
    width: 70px; height: 70px;
    background: #fff; border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex; justify-content: center; align-items: center;
    z-index: 99;
    font-size: 0.7rem; text-align: center; text-transform: uppercase; font-weight: 700;
    color: #000; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-cta:hover { transform: scale(1.1); }

.main-footer { background: #f5f5f7; padding: 60px 20px; text-align: center; font-family: var(--font-footer); }
.promo-text { font-size: 0.9rem; margin-bottom: 20px; color: var(--color-text-light); }
.promo-text a { color: var(--color-text); font-weight: bold; border-bottom: 1px solid var(--color-text); }
.copyright { font-size: 0.8rem; color: #aaa; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.loading-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s;
}
.loading-overlay.active { visibility: visible; opacity: 1; }

.spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.1); border-top-color: var(--color-text);
    border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px;
}
.loading-text { font-family: var(--font-hero); font-size: 1.5rem; color: var(--color-text); letter-spacing: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
    .comp-card-layout { grid-template-columns: 1fr; }
    .story-block, .story-block.inverted { flex-direction: column; gap: 30px; margin-bottom: 100px; }
    .hero-name { font-size: 4rem; }
}

@media (max-width: 600px) {
    :root { --spacing-section: 80px; }
    .main-nav { padding: 15px 20px; }
    .nav-actions { gap: 15px; }
    .lang-switcher { font-size: 0.8rem; }
    .hero-name { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .quote-container blockquote { font-size: 1.8rem; padding: 0 20px; }
    .photo-sub-grid { grid-template-columns: repeat(3, 1fr); }
    .comp-details { padding: 20px; }
    .floating-cta { bottom: 20px; right: 20px; width: 60px; height: 60px; font-size: 0.6rem; }
}