:root {
 --primary-color: #ca8a04; /* Gold */
 --primary-dark: #a16207;
 --secondary-color: #374151; /* Elegant Charcoal */
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #fef3c7; /* Warm Beige */
 --bg-white: #ffffff;
 --bg-dark: #111827;
 --border-color: #d1d5db;
 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 12px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.6;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--secondary-color);
 margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

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

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

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

.container {
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 20px;
 padding-right: 20px;
}

.text-center { text-align: center; }

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

.header.scrolled {
 background: rgba(255, 255, 255, 0.98);
 box-shadow: var(--shadow-md);
}

.nav {
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--secondary-color);
 text-decoration: none;
}
.nav-logo:hover {
 color: var(--primary-color);
}

.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
}

.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
 text-decoration: none;
}

.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::after, .nav-links a.active::after {
 width: 100%;
}

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

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Sections */
.section {
 padding: 80px 0;
}
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--secondary-color); color: white; }
.bg-dark h2, .bg-dark p { color: white; }

.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}

.section-label {
 display: inline-block;
 background-color: var(--primary-color);
 color: white;
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 16px;
 text-transform: uppercase;
}

.section-title {
 font-weight: 700;
 color: var(--secondary-color);
 margin-bottom: 16px;
}
.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-light);
 line-height: 1.7;
}

/* Hero */
.hero {
 position: relative;
 min-height: 70vh;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 80px 20px;
}

.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(0, 0, 0, 0.5);
}

.hero-content {
 position: relative;
 z-index: 1;
 color: white;
 max-width: 800px;
}
.hero-title {
 color: white;
 margin-bottom: 20px;
}
.hero-subtitle {
 font-size: 1.2rem;
 margin-bottom: 30px;
 opacity: 0.9;
}
.hero-buttons {
 display: flex;
 gap: 16px;
 justify-content: center;
}

.page-header-section {
 padding: 120px 0 60px;
 text-align: center;
}

.page-title { margin-bottom: 10px; }
.page-subtitle {
 max-width: 700px;
 margin: 0 auto;
 font-size: 1.1rem;
}

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

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

.card {
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 overflow: hidden;
 display: flex;
 flex-direction: column;
}

.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}

.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-title {
 font-size: 1.3rem; margin-bottom: 12px; color: var(--secondary-color);
}
.card-text { color: var(--text-light); flex-grow: 1; }
.card-button {
 display: inline-block;
 margin-top: 20px;
 padding: 10px 20px;
 background: var(--primary-color);
 color: white;
 font-weight: 600;
 border-radius: var(--radius-md);
 text-align: center;
 align-self: flex-start;
}
.card-button:hover {
 background: var(--primary-dark);
 color: white;
 text-decoration: none;
}

/* 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 { grid-column: 2; grid-row: 1; }
.media-object.reverse .media-copy { grid-column: 1; grid-row: 1; }
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.feature-list {
 list-style: none;
 padding: 0;
 margin-top: 20px;
}
.feature-list li {
 position: relative;
 padding-left: 25px;
 margin-bottom: 15px;
}
.feature-list li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 color: var(--primary-color);
 font-weight: bold;
}

/* Testimonial Cards */
.testimonial-card {
 background: var(--bg-light);
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 margin: 0 auto 20px;
 border: 4px solid white;
 box-shadow: var(--shadow-md);
}
.testimonial-text {
 font-style: italic;
 color: var(--text-dark);
 margin-bottom: 20px;
}
.testimonial-author strong {
 display: block;
 color: var(--secondary-color);
}
.testimonial-author span {
 font-size: 0.9rem;
 color: var(--text-muted);
}

/* Feature Cards (for services, about) */
.feature-card {
 background: white;
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 border-left: 4px solid var(--primary-color);
}
.feature-card h3 { color: var(--secondary-color); }
.feature-card p { color: var(--text-light); }

/* CTA Section */
.cta-section {
 padding: 60px 0;
}
.cta-section .section-title, .cta-section .section-subtitle {
 color: white;
}

/* Footer */
.footer {
 background: var(--bg-dark);
 color: #e0e0e0;
 padding: 60px 0 30px;
 margin-top: 50px;
}

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 2fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: block;
 text-decoration: none;
}
.footer-logo:hover { color: var(--primary-color); }
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
 color: #a0a0b0;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #a0a0b0; font-size: 0.9rem; text-decoration: none; }
.footer-links a:hover { color: white; }

.footer-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 16px;
 font-size: 0.9rem;
 color: #a0a0b0;
}
.footer-contact-item svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 margin-top: 3px;
 color: var(--primary-color);
}
.footer-contact-item a { color: #a0a0b0; text-decoration: none; }
.footer-contact-item a:hover { color: white; }
.footer-contact-item div { line-height: 1.5; }

.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.85rem;
 color: #707080;
}
.footer-legal-links a {
 color: #707080;
 margin-left: 20px;
 text-decoration: none;
}
.footer-legal-links a:hover {
 color: white;
}
/* Team Cards */
.team-card {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-md);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 20px;
 border: 4px solid var(--primary-color);
}
.team-name { color: var(--secondary-color); font-size: 1.25rem; }
.team-role { color: var(--primary-color); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.9rem; color: var(--text-light); }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
 border-bottom: 1px solid var(--border-color);
 margin-bottom: 20px;
}
.faq-question {
 width: 100%;
 background: none;
 border: none;
 text-align: left;
 font-size: 1.1rem;
 font-weight: 600;
 padding: 15px 0;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 color: var(--secondary-color);
}
.faq-icon {
 width: 20px;
 height: 20px;
 transition: transform 0.3s;
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}
.faq-answer p { padding: 0 0 20px; }
.faq-item.active .faq-answer {
 max-height: 300px;
}
.faq-item.active .faq-icon {
 transform: rotate(45deg);
}
/* Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 2fr 1.5fr;
 gap: 50px;
}
.contact-info-item { margin-bottom: 25px; }
.contact-info-item h3 {
 font-size: 1.1rem;
 color: var(--secondary-color);
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 8px;
}
.contact-info-item h3 svg { width: 22px; height: 22px; color: var(--primary-color); }
.contact-info-item p { margin: 0; padding-left: 32px; }
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 margin-top: 80px;
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}

/* Legal Pages */
.legal-page { padding: 120px 0 60px; }
.legal-page .container { max-width: 800px; }
.legal-page section { margin-bottom: 30px; }
.legal-page h2 { font-size: 1.5rem; margin-top: 20px; }
.legal-page ul { margin-left: 20px; }
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 20px 0;
}
.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);
 font-weight: 600;
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); }
.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;
}
.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 {
 resize: vertical;
 min-height: 120px;
}
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group input { width: auto; }
.checkbox-group label { margin: 0; font-size: 0.9rem; }
.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;
}
.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; }

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-dark);
 color: white;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--primary-color); }
.cookie-buttons { display: flex; gap: 10px; }
#cookie-banner button {
 padding: 8px 16px;
 border: none;
 border-radius: var(--radius-md);
 cursor: pointer;
 font-weight: 600;
}
#cookie-accept { background: var(--primary-color); color: white; }
#cookie-decline { background: #4b5563; color: white; }

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

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: -100%;
 width: 80%;
 height: 100vh;
 background: var(--bg-dark);
 flex-direction: column;
 padding: 100px 30px;
 gap: 25px;
 transition: left 0.4s ease;
 box-shadow: var(--shadow-lg);
 }
 .nav-links.active { left: 0; }
 .nav-links a {
 color: white;
 font-size: 1.2rem;
 }
 .nav-links a::after { background: var(--primary-color); }
 
 .grid-2, .grid-3 { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 15px; }
 .map-container { height: 350px; }
 #cookie-banner { flex-direction: column; text-align: center; }
}