*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root {
--ink: #1c1a17;
--ink-soft: #3d3529;
--ink-muted: #6b5e4f;
--parchment: #f5f1ea;
--parchment-deep: #ece6db;
--warm: #c4a265;
--warm-light: #d9c89a;
--mid: #2a5a3a;
--mid-deep: #1e4a2e;
--mid-light: #e4f0e8;
--shadow-soft: 0 2px 20px rgba(28,26,23,0.06);
--shadow-lift: 0 8px 40px rgba(28,26,23,0.08);
--shadow-card: 0 2px 12px rgba(28,26,23,0.05);
} body {
background: var(--parchment);
color: var(--ink);
font-family: 'Lora', Georgia, serif;
font-weight: 400;
line-height: 1.8;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
margin: 0;
padding: 0;
} #wpadminbar { display: none !important; }
html { margin-top: 0 !important; } .site-nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
background: rgba(245,241,234,0.92);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(196,162,101,0.15);
transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
box-shadow: 0 2px 24px rgba(28,26,23,0.08);
}
.nav-inner {
max-width: 960px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
}
.nav-brand {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 600;
color: var(--ink);
text-decoration: none;
letter-spacing: -0.01em;
transition: color 0.2s;
}
.nav-brand:hover { color: var(--mid); }
.nav-brand span { color: var(--mid); font-weight: 700; }
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
padding: 0;
margin: 0;
}
.nav-links > li {
position: relative;
}
.nav-links a {
font-family: 'Lora', serif;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-muted);
text-decoration: none;
position: relative;
padding: 0.25rem 0;
transition: color 0.2s;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 0; height: 1.5px;
background: var(--mid);
transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--mid); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a { color: var(--mid); }
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current-menu-ancestor > a::after { width: 100%; } .nav-dropdown {
display: none;
position: absolute;
top: 100%;
left: -0.75rem;
background: rgba(245,241,234,0.97);
backdrop-filter: blur(12px);
border: 1px solid rgba(196,162,101,0.15);
border-radius: 3px;
padding: 0.5rem 0;
min-width: 180px;
box-shadow: var(--shadow-soft);
list-style: none;
margin-top: 0.4rem;
}
.nav-links > li:hover .nav-dropdown {
display: block;
}
.nav-dropdown li { padding: 0; }
.nav-dropdown a {
display: block;
padding: 0.5rem 1.25rem;
font-size: 0.78rem;
letter-spacing: 0.06em;
white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: rgba(42,90,58,0.06); } .nav-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
color: var(--ink);
}
.nav-toggle svg {
width: 22px; height: 22px;
stroke: currentColor; stroke-width: 2; fill: none;
} .hero {
text-align: center;
padding: 8rem 2rem 4rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background:
radial-gradient(ellipse 60% 50% at 50% 0%, rgba(42,90,58,0.04) 0%, transparent 100%),
radial-gradient(ellipse 80% 40% at 50% 100%, rgba(196,162,101,0.06) 0%, transparent 100%);
pointer-events: none;
}
.hero-label {
font-family: 'Lora', serif;
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--warm);
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}
.hero-label::before,
.hero-label::after {
content: '\00b7';
margin: 0 0.6em;
opacity: 0.5;
}
.hero h1 {
font-family: 'Cormorant Garamond', Georgia, serif;
font-weight: 300;
font-size: clamp(2.2rem, 5.5vw, 3.5rem);
line-height: 1.15;
color: var(--ink);
letter-spacing: -0.01em;
margin-bottom: 1.5rem;
}
.hero h1 em {
font-style: italic;
font-weight: 500;
color: var(--mid);
}
.hero-intro,
.hero-sub {
font-size: 1.1rem;
font-weight: 400;
line-height: 1.9;
color: var(--ink-muted);
max-width: 560px;
margin: 0 auto;
}
.hero-rule {
width: 60px;
height: 1px;
background: var(--warm);
margin: 2.5rem auto 0;
position: relative;
}
.hero-rule::after {
content: '\2726';
position: absolute;
left: 50%; top: 50%;
transform: translate(-50%, -50%);
background: var(--parchment);
padding: 0 0.6rem;
font-size: 0.75rem;
color: var(--warm);
} .weg-container {
max-width: 720px;
margin: 0 auto;
padding: 0 2rem;
} .section-divider {
width: 40px;
height: 1px;
background: var(--warm-light);
margin: 3rem auto;
position: relative;
}
.section-divider::after {
content: '\2726';
position: absolute;
left: 50%; top: 50%;
transform: translate(-50%, -50%);
background: var(--parchment);
padding: 0 0.5rem;
font-size: 0.6rem;
color: var(--warm-light);
} .site-footer {
text-align: center;
padding: 2.5rem 2rem;
border-top: 1px solid var(--warm-light);
}
.site-footer p {
font-size: 0.75rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--ink-muted);
opacity: 0.6;
}
.site-footer a {
color: var(--mid);
text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; } @media (max-width: 720px) {
.hero { padding: 7rem 1.5rem 3rem; }
.weg-container { padding: 0 1.25rem; }
.nav-links {
display: none;
position: absolute;
top: 60px; left: 0; right: 0;
background: rgba(245,241,234,0.97);
backdrop-filter: blur(12px);
flex-direction: column;
padding: 1rem 2rem 1.5rem;
gap: 0;
border-bottom: 1px solid rgba(196,162,101,0.15);
}
.nav-links.open { display: flex; }
.nav-links li {
padding: 0.6rem 0;
border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-links li:last-child { border-bottom: none; }
.nav-toggle { display: block; }
.nav-dropdown {
position: static;
display: block;
background: none;
border: none;
box-shadow: none;
backdrop-filter: none;
padding: 0;
margin: 0;
min-width: 0;
}
.nav-dropdown li { padding: 0.4rem 0; border-bottom: none; }
.nav-dropdown a {
padding: 0.3rem 0 0.3rem 1rem;
font-size: 0.75rem;
color: var(--ink-muted);
}
}
@media (max-width: 480px) {
.hero h1 { font-size: 2rem; }
}