:root {
 --primary-color: #C0A062;
 --primary-dark: #A98C52;
 --secondary-color: #f0f0f0;
 --text-dark: #1a1a1a;
 --text-light: #e0e0e0;
 --text-muted: #888;
 --bg-dark: #111111;
 --bg-light: #f9f9f9;
 --bg-white: #ffffff;
 --border-color: #333333;
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
 --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
 --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
 --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
 --font-main: 'Lato', sans-serif;
 --font-display: 'Playfair Display', serif;
}

/* --- BASE STYLES --- */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: var(--font-main);
 background-color: var(--bg-white);
 color: var(--text-dark);
 line-height: 1.7;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-display);
 font-weight: 700;
 line-height: 1.2;
 color: var(--text-dark);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

p { margin-bottom: 1rem; }
ul, ol { list-style-position: inside; padding-left: 1rem; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-small { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 100px 0; }
.section.bg-light { background-color: var(--bg-light); }

/* --- HEADER --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.header.transparent { background-color: transparent; }
.header.solid {
 background-color: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
}
.nav {
 display: flex;
 justify-content: center;
 align-items: center;
 height: 80px;
 position: relative;
 padding: 0 2rem;
}
.nav-logo {
 font-family: var(--font-display);
 font-size: 1.8rem;
 font-weight: 700;
 color: var(--text-dark);
 margin: 0 40px;
}
.header.transparent .nav-logo { color: var(--text-light); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
 font-weight: 700;
 font-size: 0.9rem;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: #555;
 padding: 5px 0;
 position: relative;
}
.header.transparent .nav-links a { color: var(--text-light); opacity: 0.8; }
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary-color); opacity: 1; }
.header.transparent .nav-links a:hover { color: var(--primary-color); }

.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* -- HERO --- */
.hero-elite {
 height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 position: relative;
 overflow: hidden;
 color: var(--text-light);
}
.hero-elite-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: url('https://picsum.photos/seed/luxury-library/1920/1080') no-repeat center center/cover;
 animation: kenburns 20s ease-out infinite;
 z-index: -2;
}
.hero-elite::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(0, 0, 0, 0.6);
 z-index: -1;
}
@keyframes kenburns {
 0% { transform: scale(1.05); }
 100% { transform: scale(1); }
}
.hero-elite-content h1 {
 font-size: clamp(3rem, 7vw, 6rem);
 letter-spacing: 2px;
 color: var(--text-light);
 margin-bottom: 1rem;
}
.hero-elite-content p {
 font-size: 1.25rem;
 max-width: 600px;
 margin: 0 auto;
 opacity: 0.9;
}
.scroll-indicator {
 position: absolute;
 bottom: 40px;
 left: 50%;
 transform: translateX(-50%);
 width: 24px;
 height: 40px;
 border: 2px solid var(--text-light);
 border-radius: 20px;
}
.scroll-indicator span {
 position: absolute;
 top: 8px;
 left: 50%;
 transform: translateX(-50%);
 width: 4px;
 height: 8px;
 background: var(--text-light);
 border-radius: 2px;
 animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
 0% { transform: translate(-50%, 0); opacity: 1; }
 100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* --- Sections --- */
.section-header-minimal {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 60px;
}
.section-label {
 display: inline-block;
 font-size: 0.8rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 color: var(--primary-color);
 margin-bottom: 1rem;
}
.section-header-minimal p { color: var(--text-muted); font-size: 1.1rem; }

.philosophy-section {
 background-color: var(--bg-light);
}
.philosophy-section blockquote {
 font-family: var(--font-display);
 font-size: 2rem;
 line-height: 1.5;
 text-align: center;
 border-left: 4px solid var(--primary-color);
 padding-left: 2rem;
 position: relative;
}
.philosophy-section cite {
 display: block;
 margin-top: 1.5rem;
 font-family: var(--font-main);
 font-size: 1rem;
 font-style: normal;
 font-weight: 700;
 color: var(--text-muted);
}

.minimal-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.minimal-card {
 position: relative;
 overflow: hidden;
 height: 500px;
 border-radius: var(--radius-md);
}
.minimal-card img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s ease;
}
.minimal-card:hover img { transform: scale(1.05); }
.minimal-card-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 padding: 2rem;
 color: var(--text-light);
}
.minimal-card-overlay h3 { color: var(--text-light); margin-bottom: 1rem; }

.experience-section {
 padding: 0;
 position: relative;
 height: 60vh;
 min-height: 500px;
 background: url('https://picsum.photos/seed/experience/1600/900') no-repeat center center/cover;
 display: flex;
 align-items: center;
 color: var(--text-light);
}
.experience-section::before {
 content: '';
 position: absolute;
 inset: 0;
 background-color: rgba(17,17,17,0.7);
}
.experience-content {
 position: relative;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 padding: 0 2rem;
 text-align: center;
}
.experience-content h2 { color: var(--text-light); margin-bottom: 1rem; }
.experience-content p { opacity: 0.9; margin-bottom: 2rem; }

.partners-section { background-color: var(--bg-light); }
.logo-gallery {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 40px;
 flex-wrap: wrap;
}
.partner-logo {
 height: 35px;
 width: auto;
 filter: grayscale(100%) brightness(1.5);
 opacity: 0.7;
 transition: var(--transition);
}
.partner-logo:hover { filter: grayscale(0) brightness(1); opacity: 1; }

.testimonial-elite-section { background-color: var(--bg-white); }
.testimonial-elite-content {
 display: flex;
 align-items: center;
 gap: 4rem;
}
.testimonial-elite-img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 flex-shrink: 0;
 box-shadow: var(--shadow-md);
}
.testimonial-elite-text p {
 font-family: var(--font-display);
 font-size: 1.5rem;
 line-height: 1.6;
 margin-bottom: 2rem;
 font-style: italic;
 color: #444;
}
.testimonial-elite-text h4 {
 font-family: var(--font-display);
 font-size: 1.2rem;
 color: var(--text-dark);
}
.testimonial-elite-text span {
 font-size: 0.9rem;
 color: var(--text-muted);
}

.cta-invitation-section { background: var(--bg-light); text-align: center; }
.cta-invitation-content { max-width: 700px; margin: 0 auto; }
.cta-invitation-content p { font-size: 1.1rem; color: #666; margin-bottom: 2rem; }

/* --- BUTTONS --- */
.btn {
 display: inline-block;
 font-family: var(--font-main);
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 padding: 14px 28px;
 border-radius: var(--radius-sm);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
}
.btn-primary {
 background-color: var(--primary-color);
 color: var(--text-dark);
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 border-color: var(--primary-dark);
 box-shadow: var(--shadow-md);
 transform: translateY(-2px);
}
.btn-secondary {
 background-color: transparent;
 color: var(--text-dark);
 border-color: #555;
}
.btn-secondary:hover {
 background-color: var(--text-dark);
 color: var(--bg-white);
 border-color: var(--text-dark);
}
.btn-outline-white {
 background-color: transparent;
 border: 2px solid var(--text-light);
 color: var(--text-light);
 padding: 10px 20px;
}
.btn-outline-white:hover {
 background-color: var(--text-light);
 color: var(--text-dark);
}

/* --- FOOTER --- */
.footer-elite {
 background-color: var(--bg-dark);
 color: var(--text-light);
 padding: 80px 0 40px;
 text-align: center;
}
.footer-elite-container { max-width: 700px; margin: 0 auto; padding: 0 1rem; }
.footer-elite-divider {
 height: 2px;
 width: 60px;
 background-color: var(--primary-color);
 margin: 0 auto 40px;
}
.footer-elite-logo {
 font-family: var(--font-display);
 font-size: 2rem;
 color: var(--text-light);
 display: block;
 margin-bottom: 2rem;
}
.footer-elite-links {
 display: flex;
 justify-content: center;
 gap: 30px;
 flex-wrap: wrap;
 margin-bottom: 2rem;
}
.footer-elite-links a { color: #aaa; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.footer-elite-links a:hover { color: var(--primary-color); }
.footer-elite-contact { margin-bottom: 2rem; }
.footer-elite-contact p, .footer-elite-contact .footer-hours {
 color: #888;
 font-size: 0.9rem;
 line-height: 1.8;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
}
.footer-elite-contact svg { width: 16px; height: 16px; color: var(--primary-color); }
.footer-elite-contact a { color: #aaa; }
.footer-elite-contact a:hover { color: var(--primary-color); }
.footer-elite .footer-hours { flex-direction: column; margin-top: 1rem; line-height: 1.5; }
.footer-elite .footer-hours strong { color: #ccc; }
.footer-elite-copyright { font-size: 0.8rem; color: #666; }

/* ABOUT PAGE */
.page-header-section { padding: 120px 0 60px; text-align: center; background: var(--bg-light); }
.page-subtitle { font-size: 1.2rem; max-width: 600px; margin: 1rem auto 0; color: var(--text-muted); }

.content-split {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
}
.content-split-text ul li { margin-bottom: 0.5rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: var(--bg-white); padding: 2rem; text-align: center; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.value-card h3 { color: var(--primary-color); margin-bottom: 1rem; }
.value-card p { color: var(--text-muted); }

.team-section { background: var(--bg-white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-member { text-align: center; }
.team-photo {
 width: 150px;
 height: 150px;
 object-fit: cover;
 border-radius: 50%;
 margin: 0 auto 1.5rem;
 box-shadow: var(--shadow-md);
}
.team-member h3 { margin-bottom: 0.25rem; }
.team-role { color: var(--primary-color); font-weight: 700; font-size: 0.9rem; }

/* RESOURCES PAGE */
.resource-category {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
 margin-bottom: 80px;
}
.resource-category.reverse { grid-template-columns: 1fr 1fr; }
.resource-category.reverse .resource-text { grid-row: 1; grid-column: 2; }
.resource-category.reverse img { grid-row: 1; grid-column: 1; }
.resource-category img {
 width: 100%;
 height: 400px;
 object-fit: cover;
 border-radius: var(--radius-lg);
}
.resource-text h2 { color: var(--primary-color); margin-bottom: 1rem; }
.resource-text p { color: #555; }
.resource-text ul { columns: 2; margin-top: 1rem; }

.process-timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
 position: relative;
}
.timeline-step { padding: 1.5rem; position: relative; }
.timeline-step h3 { color: var(--primary-color); margin-bottom: 1rem; }
.timeline-step p { color: #666; font-size: 0.9rem; }
.process-timeline::before {
 content: '';
 position: absolute;
 top: 2.2rem;
 left: 15%;
 right: 15%;
 height: 2px;
 background: #e0e0e0;
}
.timeline-step::before {
 content: '';
 position: absolute;
 top: 1.5rem;
 left: 1.5rem;
 width: 20px;
 height: 20px;
 background: var(--bg-light);
 border: 3px solid var(--primary-color);
 border-radius: 50%;
 z-index: 1;
}

/* CONTACT PAGE */
.contact-layout {
 display: grid;
 grid-template-columns: 2fr 1.5fr;
 gap: 4rem;
}
.contact-form-wrapper h2, .contact-info-wrapper h2 { margin-bottom: 2rem; }
.form-elite .form-group { margin-bottom: 1.5rem; }
.form-elite label { display: block; margin-bottom: 0.5rem; font-weight: 700; font-size: 0.9rem; }
.form-elite input, .form-elite textarea {
 width: 100%;
 padding: 1rem;
 border: 1px solid #ddd;
 border-radius: var(--radius-sm);
 background: var(--bg-light);
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-elite input:focus, .form-elite textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 2px rgba(192, 160, 98, 0.2);
}
.form-elite textarea { resize: vertical; min-height: 150px; }
.contact-info-wrapper p { font-size: 1rem; color: #555; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item svg { width: 20px; height: 20px; color: var(--primary-color); flex-shrink: 0; margin-top: 4px; }
.contact-info-item div { display: flex; flex-direction: column; }
.contact-info-item strong { margin-bottom: 0.2rem; }
.contact-info-item span, .contact-info-item a { color: #555; font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--primary-color); }

.map-section { padding-top: 0; }
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
}

/* LEGAL PAGES */
.legal-content h2 { margin: 2rem 0 1rem; color: var(--primary-color); }
.legal-content ul, .legal-content ol { margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.cookie-table th, .cookie-table td { padding: 12px 15px; border: 1px solid #ddd; text-align: left; }
.cookie-table th { background-color: var(--bg-light); }
.text-center-section { text-align: center; padding: 100px 0; }

/* COOKIE BANNER */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-dark);
 color: var(--text-light);
 padding: 1.5rem;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 1.5rem;
 z-index: 2000;
}
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 1rem; }

/* SCROLL ANIMATION */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
 .nav-links { display: none; }
 .nav-toggle {
 display: block;
 position: absolute;
 right: 2rem;
 z-index: 1001;
 background: none;
 border: none;
 cursor: pointer;
 }
 .nav-toggle span {
 display: block; width: 25px; height: 2px;
 background: var(--text-dark); margin: 6px 0; transition: var(--transition);
 }
 .header.transparent .nav-toggle span { background-color: var(--text-light); }
 
 .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
 .header.transparent .nav-toggle.active span { background-color: var(--text-light); }
 
 .mobile-menu {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background: rgba(17,17,17,0.98);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 2rem;
 transform: translateY(-100%);
 transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 z-index: 999;
 }
 .mobile-menu.active { transform: translateY(0); }
 .mobile-menu a {
 font-family: var(--font-display);
 color: var(--text-light);
 font-size: 2rem;
 opacity: 0.8;
 }
 .mobile-menu a.active, .mobile-menu a:hover { color: var(--primary-color); opacity: 1; }
 
 .minimal-grid { grid-template-columns: 1fr; }
 .minimal-card { height: 400px; }
 .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
 .process-timeline { grid-template-columns: repeat(2, 1fr); }
 .resource-category, .resource-category.reverse { grid-template-columns: 1fr; }
 .resource-category.reverse .resource-text { grid-row: auto; grid-column: auto; }
 .resource-category.reverse img { grid-row: auto; grid-column: auto; }
 .testimonial-elite-content { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
 .content-split { grid-template-columns: 1fr; }
 .contact-layout { grid-template-columns: 1fr; }
 .logo-gallery { gap: 30px; }
 .partner-logo { height: 25px; }
 #cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
 .values-grid, .team-grid, .process-timeline { grid-template-columns: 1fr; }
}