:root {
--forest: #1B4332;
--forest-light: #2D6A4F;
--terracotta: #BC4749;
--terracotta-light: #E76F51;
--gold: #D4A373;
--gold-light: #E9C46A;
--cream: #FAEDCD;
--cream-dark: #F5E6C8;
--white: #FEFAE0;
--charcoal: #1A1A2E;
--gray: #6B705C;
--font-serif: 'Playfair Display', Georgia, serif;
--font-sans: 'Inter', -apple-system, sans-serif;
--shadow-sm: 0 1px 3px rgba(27,67,50,0.08);
--shadow-md: 0 8px 32px rgba(27,67,50,0.12);
--shadow-lg: 0 20px 60px rgba(27,67,50,0.16);
--radius: 16px;
--radius-sm: 8px;
}

* { box-sizing: border-box; }

html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}

body {
font-family: var(--font-sans);
background-color: #FFFFFF;
color: var(--charcoal);
line-height: 1.75;
font-size: 1.0625rem;
font-weight: 400;
overflow-x: hidden;
}

.skip-link {
position: absolute;
top: -50px;
left: 2rem;
background: var(--forest);
color: var(--white);
padding: 0.75rem 1.5rem;
font-weight: 600;
text-decoration: none;
border-radius: 0 0 var(--radius-sm) var(--radius-sm);
z-index: 10000;
transition: top 0.2s ease;
font-family: var(--font-sans);
font-size: 0.9375rem;
}

.skip-link:focus { top: 0; outline: none; }

.navbar {
background: transparent;
padding: 1.25rem 0;
transition: all 0.4s ease;
z-index: 9999;
}

.navbar.scrolled {
background: rgba(255,255,255,0.96);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 0.75rem 0;
box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-link { color: var(--forest) !important; }
.navbar.scrolled .nav-link:hover { color: var(--terracotta) !important; }
.navbar.scrolled .navbar-toggler { border-color: var(--forest); }
.navbar.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B4332' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.logo-img { height: 68px; width: auto; }

.nav-link {
color: var(--white) !important;
font-family: var(--font-sans);
font-weight: 500;
font-size: 0.9375rem;
letter-spacing: 0.01em;
padding: 0.625rem 1rem !important;
border-radius: var(--radius-sm);
transition: all 0.25s ease;
position: relative;
}

.nav-link:hover {
color: var(--gold-light) !important;
background: rgba(255,255,255,0.08);
}

.nav-link:focus-visible {
outline: 3px solid var(--gold-light);
outline-offset: 2px;
border-radius: var(--radius-sm);
}

.navbar-toggler {
border: 2px solid rgba(255,255,255,0.6);
border-radius: var(--radius-sm);
padding: 0.5rem;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--gold-light); }

.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28254,250,224,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
width: 1.3em;
height: 1.3em;
}

.nav-social {
display: flex;
gap: 0.75rem;
align-items: center;
}

.social-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
color: var(--white);
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.25s ease;
font-size: 1.1rem;
border: 1.5px solid rgba(255,255,255,0.2);
}

.social-btn:hover {
background: var(--terracotta);
color: var(--white);
border-color: var(--terracotta);
transform: translateY(-2px);
}

.navbar.scrolled .social-btn {
background: var(--forest);
color: var(--white);
border-color: var(--forest);
}

.navbar.scrolled .social-btn:hover { background: var(--terracotta); border-color: var(--terracotta); }

.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image-wrap {
position: absolute;
inset: 0;
z-index: 0;
}

.hero-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(26,26,46,0.55) 0%, rgba(27,67,50,0.7) 60%, rgba(27,67,50,0.85) 100%);
}

.hero-content {
position: relative;
z-index: 2;
padding: 140px 0 100px;
width: 100%;
}

.hero-eyebrow {
font-family: var(--font-sans);
font-size: 0.9375rem;
font-weight: 500;
color: var(--gold-light);
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 1.5rem;
opacity: 0.95;
}

.hero-title {
font-family: var(--font-serif);
font-size: clamp(3.5rem, 8vw, 7rem);
font-weight: 700;
color: var(--white);
line-height: 1.05;
margin-bottom: 2rem;
letter-spacing: -0.02em;
text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-desc {
font-size: 1.2rem;
color: rgba(254,250,224,0.92);
line-height: 1.85;
max-width: 680px;
margin: 0 auto 1.25rem;
font-weight: 400;
}

.hero-desc-secondary {
opacity: 0.85;
font-size: 1.1rem;
max-width: 600px;
}

.hero-cta {
margin-top: 3rem;
padding: 2rem;
background: rgba(255,255,255,0.06);
backdrop-filter: blur(10px);
border-radius: var(--radius);
border: 1px solid rgba(255,255,255,0.12);
display: inline-block;
}

.cta-label {
font-family: var(--font-sans);
font-size: 1.05rem;
font-weight: 600;
color: var(--gold-light);
margin-bottom: 1.25rem;
letter-spacing: 0.02em;
}

.cta-label i { margin-right: 0.5rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary-cta {
background: var(--terracotta);
color: var(--white);
border: none;
font-family: var(--font-sans);
font-weight: 600;
font-size: 1rem;
padding: 0.875rem 2rem;
border-radius: 50px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.btn-primary-cta:hover {
background: var(--terracotta-light);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(188,71,73,0.35);
color: var(--white);
}

.btn-secondary-cta {
background: transparent;
color: var(--white);
border: 2px solid rgba(255,255,255,0.4);
font-family: var(--font-sans);
font-weight: 600;
font-size: 1rem;
padding: 0.8rem 2rem;
border-radius: 50px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.btn-secondary-cta:hover {
background: rgba(255,255,255,0.1);
border-color: var(--white);
color: var(--white);
}

.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}

.scroll-indicator::before {
content: '';
display: block;
width: 1px;
height: 40px;
background: linear-gradient(to bottom, transparent, var(--gold-light));
animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
0%, 100% { opacity: 0.3; height: 30px; }
50% { opacity: 1; height: 50px; }
}

.section { padding: 80px 0; }

.editorial-section { background: #FFFFFF; }

.section-offset { background: #FAFAF7; }

.editorial-card {
background: #FFFFFF;
border-radius: var(--radius);
box-shadow: var(--shadow-md);
overflow: hidden;
transition: all 0.4s ease;
border: 1px solid rgba(27,67,50,0.06);
}

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

.card-right { margin-left: 2rem; margin-right: -0.5rem; }
.card-left { margin-right: 2rem; margin-left: -0.5rem; }

.card-image-wrap {
height: 100%;
overflow: hidden;
position: relative;
}

.card-image-wrap::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(27,67,50,0.08) 0%, transparent 60%);
pointer-events: none;
}

.card-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
min-height: 420px;
}

.editorial-card:hover .card-image { transform: scale(1.04); }

.card-body-wrap {
padding: 3.5rem;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}

.card-body-dark {
background: var(--forest);
}

.card-body-terracotta {
background: linear-gradient(135deg, var(--terracotta) 0%, #A63C3E 100%);
}

.card-body-forest {
background: linear-gradient(135deg, var(--forest) 0%, #142E22 100%);
}

.card-tag {
font-family: var(--font-sans);
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--forest-light);
margin-bottom: 1rem;
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(45,106,79,0.08);
border-radius: 50px;
}

.tag-gold {
color: var(--gold-light);
background: rgba(233,196,106,0.15);
}

.tag-light {
color: var(--white);
background: rgba(255,255,255,0.15);
}

.card-title {
font-family: var(--font-serif);
font-size: clamp(1.9rem, 4vw, 2.8rem);
font-weight: 700;
color: var(--forest);
line-height: 1.2;
margin-bottom: 0;
}

.title-light { color: var(--white); }

.card-divider {
width: 60px;
height: 3px;
background: var(--gold);
border-radius: 2px;
margin: 1.5rem 0;
transition: width 0.4s ease;
}

.editorial-card:hover .card-divider { width: 100px; }

.divider-gold { background: var(--gold-light); }
.divider-light { background: rgba(255,255,255,0.5); }

.card-text {
font-size: 1rem;
line-height: 1.85;
color: var(--gray);
margin-bottom: 1.25rem;
}

.text-light {
color: rgba(254,250,224,0.88);
}

.commitment-section {
background: linear-gradient(135deg, #FAFAF7 0%, var(--cream) 100%);
padding: 100px 0;
}

.commitment-card {
background: var(--white);
border-radius: var(--radius);
padding: 4rem 3rem;
box-shadow: var(--shadow-md);
border: 1px solid rgba(27,67,50,0.05);
}

.commitment-icon {
font-size: 3rem;
color: var(--forest-light);
margin-bottom: 1.5rem;
display: block;
}

.commitment-title {
font-family: var(--font-serif);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
color: var(--forest);
margin-bottom: 0;
}

.commitment-divider {
width: 80px;
height: 3px;
background: var(--gold);
border-radius: 2px;
margin: 1.5rem auto 2.5rem;
}

.commitment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
text-align: left;
}

.commitment-item {
padding: 1.5rem;
background: #FAFAF7;
border-radius: var(--radius-sm);
border-left: 3px solid var(--forest-light);
transition: all 0.3s ease;
}

.commitment-item:hover {
background: var(--white);
box-shadow: var(--shadow-sm);
transform: translateX(4px);
}

.commitment-item i {
color: var(--forest-light);
font-size: 1.25rem;
margin-bottom: 0.75rem;
display: block;
}

.commitment-item p {
font-size: 0.975rem;
color: var(--gray);
line-height: 1.8;
margin-bottom: 0;
}

.community-section {
padding: 100px 0;
background: var(--white);
}

.community-icon {
font-size: 3rem;
color: var(--terracotta);
margin-bottom: 1.5rem;
display: block;
}

.community-title {
font-family: var(--font-serif);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
color: var(--forest);
margin-bottom: 0;
}

.community-divider {
width: 80px;
height: 3px;
background: var(--terracotta);
border-radius: 2px;
margin: 1.5rem auto 2rem;
}

.community-text {
font-size: 1.1rem;
color: var(--gray);
line-height: 1.85;
max-width: 700px;
margin: 0 auto 1.25rem;
}

.community-cta {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2.5rem;
}

.btn-community-primary {
background: var(--terracotta);
color: var(--white);
border: none;
font-family: var(--font-sans);
font-weight: 600;
padding: 0.875rem 2.25rem;
border-radius: 50px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.btn-community-primary:hover {
background: var(--terracotta-light);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(188,71,73,0.3);
color: var(--white);
}

.btn-community-secondary {
background: transparent;
color: var(--forest);
border: 2px solid var(--forest);
font-family: var(--font-sans);
font-weight: 600;
padding: 0.8rem 2.25rem;
border-radius: 50px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.btn-community-secondary:hover {
background: var(--forest);
color: var(--white);
}

.closing-section {
background: var(--forest);
padding: 100px 0;
position: relative;
overflow: hidden;
}

.closing-section::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(233,196,106,0.08) 0%, transparent 70%);
}

.closing-section::after {
content: '';
position: absolute;
bottom: -80px;
left: -80px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(188,71,73,0.08) 0%, transparent 70%);
}

.closing-eyebrow {
font-family: var(--font-serif);
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
font-style: italic;
color: var(--gold-light);
margin-bottom: 2.5rem;
line-height: 1.25;
}

.closing-text {
font-size: 1.1rem;
color: rgba(254,250,224,0.88);
line-height: 1.9;
max-width: 700px;
margin: 0 auto 1.5rem;
}

.closing-brand {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(254,250,224,0.15);
}

.closing-name {
font-family: var(--font-serif);
font-size: 1.5rem;
font-weight: 700;
color: var(--white);
display: block;
margin-bottom: 0.5rem;
}

.closing-tagline {
font-family: var(--font-sans);
font-size: 1rem;
color: var(--gold-light);
letter-spacing: 0.05em;
}

.site-footer {
background: var(--charcoal);
padding: 2.5rem 0;
color: rgba(254,250,224,0.6);
}

.footer-logo { height: 70px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); opacity: 0.7; }

.footer-copy {
font-size: 0.9375rem;
margin-bottom: 0;
}

.footer-social {
display: flex;
gap: 1rem;
justify-content: flex-end;
}

.footer-social a {
color: rgba(254,250,224,0.6);
font-size: 1.25rem;
transition: all 0.25s ease;
text-decoration: none;
}

.footer-social a:hover {
color: var(--gold-light);
transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible {
outline: 3px solid var(--gold-light);
outline-offset: 3px;
border-radius: var(--radius-sm);
}

@media (max-width: 991px) {
.hero-content { padding: 120px 0 80px; }

.navbar-collapse {
background: rgba(27,67,50,0.98);
backdrop-filter: blur(20px);
padding: 1.5rem;
border-radius: var(--radius);
margin-top: 0.75rem;
border: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled .navbar-collapse {
background: rgba(255,255,255,0.98);
border: 1px solid rgba(27,67,50,0.1);
}

.nav-social {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-social {
border-top-color: rgba(27,67,50,0.1);
}

.card-right,
.card-left {
margin-left: 0;
margin-right: 0;
}

.card-body-wrap { padding: 2.5rem; }

.card-image { min-height: 300px; }

.commitment-grid { grid-template-columns: 1fr; }

.commitment-card { padding: 2.5rem 1.5rem; }

.footer-social { justify-content: center; margin-top: 1rem; }

.section { padding: 60px 0; }
}

@media (max-width: 576px) {
.hero-title { font-size: 2.75rem; }

.hero-desc { font-size: 1.05rem; }

.hero-cta { padding: 1.5rem; margin-top: 2rem; }

.card-body-wrap { padding: 1.75rem; }

.card-title { font-size: 1.7rem; }

.editorial-card { border-radius: var(--radius-sm); }

.btn-primary-cta,
.btn-secondary-cta,
.btn-community-primary,
.btn-community-secondary {
width: 100%;
justify-content: center;
}

.cta-buttons { flex-direction: column; }

.community-cta { flex-direction: column; }

.closing-text { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
