:root {
 --primary-color: #ca8a04; /* Gold */
 --primary-dark: #a16207;
 --secondary-color: #fef3c7; /* Warm Beige */
 --text-dark: #374151; /* Elegant Charcoal */
 --text-light: #6b7280;
 --text-muted: #9ca3af;
 --bg-light: #fefce8;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.2;
 color: var(--text-dark);
 margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
 margin-bottom: 1rem;
 color: var(--text-light);
}

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

a:hover {
 color: var(--primary-dark);
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.text-center { text-align: center; }

/* --- Header & Navigation --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 20px;
}

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
}

.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-light);
 padding: 8px 0;
 position: relative;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
 color: var(--text-dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.nav-cta { white-space: nowrap; }

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 12px 24px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 1px solid transparent;
 text-decoration: none;
}
.btn-primary {
 background: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
}
.btn-secondary {
 background: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
 color: var(--bg-white);
}
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

/* --- Hero Section --- */
.hero {
 padding: 160px 0 80px;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.hero-content {
 position: relative;
 z-index: 2;
}
.hero h1 {
 color: var(--text-dark);
 margin-bottom: 24px;
}
.hero-subtitle {
 font-size: 1.25rem;
 color: var(--text-light);
 max-width: 700px;
 margin: 0 auto 32px;
}
.hero-actions {
 display: flex;
 justify-content: center;
 gap: 16px;
 margin-bottom: 32px;
}
.hero-social-proof {
 margin-top: 40px;
 color: var(--text-muted);
}
.hero-background {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
}
.hero-background::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.9) 100%);
}
.hero-background img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 opacity: 0.2;
}

/* --- Section Styling --- */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 50px;
}
.section-label {
 display: inline-block;
 background-color: var(--secondary-color);
 color: var(--primary-dark);
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 16px;
 text-transform: uppercase;
}
.section-title {
 margin-bottom: 16px;
}
.section-subtitle {
 color: var(--text-light);
 font-size: 1.1rem;
}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- Cards --- */
.card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 border: 1px solid var(--border-color);
 overflow: hidden;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.card-img-top {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body { padding: 24px;}
.card-title {
 font-size: 1.25rem;
 margin-bottom: 12px;
}
.card-text { 
 color: var(--text-light);
 font-size: 1rem;
 line-height: 1.6;
}
.feature-card {
 background: var(--bg-white);
 padding: 32px;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-link {
 display: inline-block;
 margin-top: 16px;
 font-weight: 600;
 color: var(--primary-color);
}
.card-link:hover { text-decoration: underline; }

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: center;
}
.media-object.reverse { grid-template-columns: 1fr 1fr; }
.media-object.reverse .media-visual { order: 2; }
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: 100%;
 max-height: 450px;
 object-fit: cover;
}
.media-copy ul {
 list-style: none;
 padding: 0;
 margin: 20px 0;
}
.media-copy ul li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin-bottom: 10px;
 font-size: 1.05rem;
}
.media-copy ul li svg {
 flex-shrink: 0;
 color: var(--primary-color);
 margin-top: 3px;
}

/* Testimonials */
.testimonial-card {
 background-color: var(--bg-white);
 border: 1px solid var(--border-color);
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 3px solid var(--secondary-color);
}
.testimonial-text {
 font-size: 1.1rem;
 font-style: italic;
 color: var(--text-dark);
 margin-bottom: 20px;
}
.testimonial-author strong {
 display: block;
 font-size: 1rem;
 color: var(--text-dark);
}
.testimonial-author span {
 font-size: 0.9rem;
 color: var(--text-muted);
}

/* CTA Section */
.cta-section {
 background: var(--primary-color);
 padding: 60px 0;
}
.cta-section .section-title, .cta-section .section-subtitle {
 color: var(--bg-white);
}
.cta-section .btn-primary {
 background: var(--bg-white);
 color: var(--primary-color);
}

/* Page Header */
.page-header-section {
 padding: 140px 0 60px;
 background: var(--bg-light);
}
.page-header-section h1 {
 margin-bottom: 0.5rem;
}
.page-subtitle {
 font-size: 1.25rem;
 max-width: 700px;
 margin: 0 auto;
 color: var(--text-light);
}

/* About Page */
.team-card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 padding: 30px;
 text-align: center;
 box-shadow: var(--shadow-md);
}
.team-avatar {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 4px solid var(--secondary-color);
}
.team-name { font-size: 1.3rem; }
.team-role { color: var(--primary-color); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.95rem; }
.value-card {
 text-align: center;
}
.value-card h3 {
 color: var(--primary-color);
}

/* Resources Page */
.faq-container {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
}
.faq-question {
 width: 100%;
 background: none;
 border: none;
 text-align: left;
 padding: 20px 0;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.faq-question::after {
 content: '+';
 font-size: 1.5rem;
 color: var(--primary-color);
 transition: transform 0.2s;
}
.faq-item.active .faq-question::after {
 transform: rotate(45deg);
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease;
}
.faq-answer p {
 padding: 0 0 20px;
}

/* Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 50px;
}
.contact-info-item { margin-bottom: 24px; }
.contact-info-item h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary-color); }
.contact-info-item p, .contact-info-item a { color: var(--text-light); }

.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-control {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: white;
 color: var(--text-dark);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.checkbox-group {
 display: flex;
 align-items: center;
 gap: 10px;
}
.checkbox-group label {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* Form validation styles */
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
 color: #dc2626;
 font-size: 0.85rem;
 margin-top: 4px;
}
/* Loading spinner */
.spinner {
 display: inline-block;
 width: 16px;
 height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: 0.7; cursor: not-allowed; }

/* Legal Pages */
.legal-page { padding-top: 80px; }
.legal-content h2 { margin-top: 2rem; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 2rem;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
}

/* --- Footer --- */
.footer {
 background: var(--text-dark);
 color: #a0a0a0;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-container {}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
 color: #a0a0a0;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
 color: #a0a0a0;
 font-size: 0.9rem;
}
.footer-links a:hover { color: white; }
.footer-contact-item { margin-bottom: 16px; }
.footer-contact-item span, .footer-contact-item a { color: #a0a0a0; font-size: 0.9rem; }
.footer-contact-item a:hover { color: white; }
.footer-hours { 
 margin-top: 16px; 
 font-size: 0.9rem; 
 line-height: 1.5;
}
.footer-hours strong { color: white; }
.footer-divider {
 height: 1px;
 background: rgba(255,255,255,0.1);
 margin: 30px 0;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
}
.footer-copyright { font-size: 0.85rem; color: #707070; margin-bottom: 0; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 0.85rem; color: #707070; }
.footer-legal-links a:hover { color: white; }

/* --- Cookie Banner --- */
.cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 background: var(--text-dark);
 color: var(--bg-white);
 padding: 20px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-lg);
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
.cookie-banner p { margin-bottom: 0; }
.cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-banner div { display: flex; gap: 10px; }

/* --- Responsive --- */
@media (max-width: 992px) {
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 1; }
 .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background: var(--bg-white);
 flex-direction: column;
 padding: 100px 20px 20px;
 gap: 24px;
 align-items: center;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-links a { font-size: 1.2rem; }
 .nav-cta { display: none; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-bottom { flex-direction: column; }
 .cookie-banner { flex-direction: column; text-align: center; }
}