:root {
--primary: #2b2b2b;
--primary-light: #4a4a4a;
--primary-dark: #1a1a1a;
--secondary: #b08d57;
--secondary-light: #c4a877;
--secondary-dark: #8f7048;
--accent: #6b7c8c;
--success: #5a8a6a;
--warning: #c4a44a;
--error: #b04b4b;
--neutral-50: #fafafa;
--neutral-100: #f5f5f5;
--neutral-200: #e5e5e5;
--neutral-300: #d4d4d4;
--neutral-400: #a3a3a3;
--neutral-500: #737373;
--neutral-600: #525252;
--neutral-700: #404040;
--neutral-800: #262626;
--neutral-900: #171717;
--bg: #ffffff;
--bg-alt: #f7f6f4;
--text: #2b2b2b;
--text-muted: #6b6b6b;
--border: #e0ddd9;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
--transition: 0.3s ease;
--radius: 8px;
--radius-sm: 4px;
--radius-lg: 16px;
--container-max: 1200px;
}

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

html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
color: var(--primary);
}

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

a:hover {
color: var(--secondary);
}

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

ul {
list-style: none;
}

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

.topbar {
background: var(--primary-dark);
color: #d4d4d4;
font-size: 0.8125rem;
padding: 8px 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
display: flex;
justify-content: space-between;
align-items: center;
}

.topbar-left {
display: flex;
gap: 24px;
align-items: center;
}

.topbar-right {
display: flex;
gap: 16px;
align-items: center;
}

.topbar-link {
color: #d4d4d4;
display: inline-flex;
align-items: center;
gap: 6px;
transition: color var(--transition);
}

.topbar-link:hover {
color: var(--secondary-light);
}

.topbar-link i {
font-size: 0.875rem;
}

.site-header {
background: var(--bg);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
box-shadow: var(--shadow-sm);
}

.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 0;
}

.logo-wrap {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}

.logo-img {
width: 40px;
height: 40px;
object-fit: contain;
}

.site-name {
font-size: 1.25rem;
font-weight: 700;
color: var(--primary);
letter-spacing: -0.02em;
white-space: nowrap;
}

.main-nav {
display: flex;
gap: 32px;
align-items: center;
}

.nav-link {
font-size: 0.9375rem;
font-weight: 400;
color: var(--text);
padding: 8px 0;
position: relative;
transition: color var(--transition);
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.nav-link.active {
color: var(--secondary-dark);
font-weight: 600;
}

.nav-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--primary);
cursor: pointer;
padding: 4px;
}

.hero {
position: relative;
min-height: 480px;
display: flex;
align-items: center;
overflow: hidden;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(43,43,43,0.65) 100%);
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
padding: 64px 24px;
}

.hero-title {
font-size: 2.75rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 20px;
letter-spacing: -0.02em;
line-height: 1.15;
}

.hero-subtitle {
font-size: 1.125rem;
color: rgba(255,255,255,0.88);
max-width: 600px;
margin-bottom: 32px;
line-height: 1.6;
font-weight: 300;
}

.hero-cta {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.page-header {
position: relative;
min-height: 280px;
display: flex;
align-items: center;
overflow: hidden;
}

.page-header-sm {
min-height: 200px;
}

.page-header-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.page-header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(43,43,43,0.6) 100%);
z-index: 1;
}

.page-header-content {
position: relative;
z-index: 2;
padding: 48px 24px;
}

.page-title {
font-size: 2.25rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.02em;
}

.page-subtitle {
font-size: 1.0625rem;
color: rgba(255,255,255,0.82);
font-weight: 300;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 28px;
font-size: 0.9375rem;
font-weight: 600;
font-family: var(--font-body);
border-radius: var(--radius);
border: 2px solid transparent;
cursor: pointer;
text-decoration: none;
transition: all var(--transition);
white-space: nowrap;
}

.btn-primary {
background: var(--primary);
color: #ffffff;
border-color: var(--primary);
}

.btn-primary:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
color: #ffffff;
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}

.btn-secondary {
background: var(--secondary);
color: #ffffff;
border-color: var(--secondary);
}

.btn-secondary:hover {
background: var(--secondary-dark);
border-color: var(--secondary-dark);
color: #ffffff;
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}

.btn-outline {
background: transparent;
color: var(--primary);
border-color: var(--neutral-300);
}

.btn-outline:hover {
background: var(--primary);
color: #ffffff;
border-color: var(--primary);
}

.btn-sm {
padding: 8px 20px;
font-size: 0.8125rem;
}

.btn-block {
width: 100%;
}

.section {
padding: 72px 0;
}

.section-alt {
background: var(--bg-alt);
}

.section-title {
font-size: 1.875rem;
font-weight: 700;
margin-bottom: 20px;
color: var(--primary);
letter-spacing: -0.01em;
}

.section-intro {
font-size: 1.0625rem;
color: var(--text-muted);
max-width: 700px;
margin-bottom: 48px;
line-height: 1.6;
}

.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 24px;
}

.card-grid-three {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
background: var(--bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px 24px;
transition: all var(--transition);
}

.card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-2px);
border-color: var(--neutral-300);
}

.card-icon {
font-size: 2rem;
color: var(--secondary);
margin-bottom: 16px;
}

.card-title {
font-size: 1.1875rem;
font-weight: 600;
margin-bottom: 12px;
color: var(--primary);
}

.card-text {
font-size: 0.9375rem;
color: var(--text-muted);
line-height: 1.6;
}

.card-mini {
padding: 24px 20px;
}

.coverage-card {
border-left: 3px solid var(--secondary);
}

.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}

.two-col-reverse .two-col-text {
order: 2;
}

.two-col-reverse .two-col-image {
order: 1;
}

.two-col-image img {
border-radius: var(--radius);
box-shadow: var(--shadow-md);
}

.rounded-img {
border-radius: var(--radius);
}

.two-col-text p {
margin-bottom: 16px;
color: var(--text-muted);
line-height: 1.7;
}

.two-col-text .btn {
margin-top: 16px;
}

.center-link {
text-align: center;
margin-top: 40px;
}

.contact-info-block {
background: var(--bg-alt);
border-radius: var(--radius);
padding: 20px 24px;
margin: 20px 0;
}

.contact-info-block p {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 8px;
font-size: 0.9375rem;
color: var(--text);
}

.contact-info-block p:last-child {
margin-bottom: 0;
}

.contact-info-block i {
color: var(--secondary);
font-size: 1.125rem;
}

.content-narrow {
max-width: 760px;
}

.content-narrow .section-title {
font-size: 1.5rem;
margin-top: 40px;
}

.content-narrow .section-title:first-child {
margin-top: 0;
}

.content-narrow p {
margin-bottom: 16px;
color: var(--text-muted);
line-height: 1.7;
}

.content-list {
margin: 16px 0 24px;
padding-left: 0;
}

.content-list li {
padding: 8px 0 8px 28px;
position: relative;
color: var(--text-muted);
line-height: 1.6;
font-size: 0.9375rem;
}

.content-list li::before {
content: '\2022';
position: absolute;
left: 8px;
top: 8px;
color: var(--secondary);
font-size: 1.25rem;
line-height: 1;
}

.content-list li strong {
color: var(--primary);
font-weight: 600;
}

.text-muted {
color: var(--text-muted);
font-size: 0.875rem;
}

.contact-list {
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 32px;
}

.contact-item {
display: flex;
gap: 16px;
align-items: flex-start;
}

.contact-icon {
width: 48px;
height: 48px;
background: var(--bg-alt);
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
font-size: 1.25rem;
color: var(--secondary);
}

.contact-label {
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-muted);
margin-bottom: 4px;
font-weight: 600;
}

.contact-value {
font-size: 0.9375rem;
color: var(--text);
line-height: 1.5;
}

.contact-value a {
color: var(--text);
}

.contact-value a:hover {
color: var(--secondary);
}

.contact-form {
background: var(--bg-alt);
padding: 32px 28px;
border-radius: var(--radius);
border: 1px solid var(--border);
}

.form-title {
font-size: 1.25rem;
margin-bottom: 24px;
color: var(--primary);
}

.form-group {
margin-bottom: 20px;
}

.form-label {
display: block;
font-size: 0.875rem;
font-weight: 600;
color: var(--text);
margin-bottom: 6px;
}

.form-optional {
font-weight: 400;
color: var(--text-muted);
font-size: 0.8125rem;
}

.form-input {
width: 100%;
padding: 12px 16px;
font-size: 0.9375rem;
font-family: var(--font-body);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
background: var(--bg);
color: var(--text);
transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 0 3px rgba(176,141,87,0.12);
}

.form-textarea {
resize: vertical;
}

.form-note {
margin-top: 16px;
font-size: 0.875rem;
color: var(--success);
min-height: 1.25rem;
}

.form-note.error {
color: var(--error);
}

.site-footer {
background: var(--primary-dark);
color: #b0b0b0;
padding: 56px 0 0;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 40px;
padding-bottom: 40px;
}

.footer-logo .site-name {
color: #ffffff;
}

.footer-text {
font-size: 0.875rem;
color: #909090;
margin-top: 12px;
line-height: 1.6;
}

.footer-heading {
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #ffffff;
margin-bottom: 16px;
font-weight: 600;
}

.footer-links li {
padding: 6px 0;
font-size: 0.875rem;
}

.footer-links li a {
color: #b0b0b0;
}

.footer-links li a:hover {
color: var(--secondary-light);
}

.footer-links li i {
color: var(--secondary);
margin-right: 8px;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.08);
padding: 20px 0;
}

.footer-bottom p {
font-size: 0.8125rem;
color: #808080;
text-align: center;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: var(--primary-dark);
color: #d4d4d4;
padding: 20px 0;
z-index: 200;
transform: translateY(100%);
transition: transform 0.4s ease;
border-top: 2px solid var(--secondary);
}

.cookie-consent.visible {
transform: translateY(0);
}

.cookie-content {
max-width: var(--container-max);
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
}

.cookie-text {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.875rem;
line-height: 1.5;
}

.cookie-text i {
font-size: 1.5rem;
color: var(--secondary);
flex-shrink: 0;
}

.cookie-text a {
color: var(--secondary-light);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 12px;
flex-shrink: 0;
}

.cookie-consent.hidden {
display: none;
}
