@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --anthracite: #2b2d2e;
  --anthracite-light: #3a3d3f;
  --anthracite-soft: #4a4e50;
  --lime: #a8c55b;
  --lime-bright: #bdd463;
  --lime-muted: #8aaa3e;
  --lime-pale: #d4e4a6;
  --white: #fafbf7;
  --offwhite: #f2f3ed;
  --text: #2b2d2e;
  --text-light: #6a6e70;
  --text-on-dark: rgba(242,243,237,0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.25; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
nav.on {
  background: rgba(43,45,46,0.97);
  backdrop-filter: blur(10px);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo img { height: 45px; transition: height 0.4s ease; }
nav.on .nav-logo img { height: 35px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(242,243,237,0.65); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); }
.nav-cta { padding: 0.4rem 1.2rem !important; border: 1px solid var(--lime) !important; color: var(--lime) !important; }
.nav-cta:hover { background: var(--lime) !important; color: var(--anthracite) !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: rgba(242,243,237,.7); transition: all .3s; }
.burger.x span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== LAYOUT ===== */
section { padding: 6rem 2rem; }
.container { max-width: 960px; margin: 0 auto; }
.section-label { display: block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime-muted); margin-bottom: 1rem; font-weight: 500; }
.section-title { font-size: clamp(2rem,5vw,3rem); font-weight: 400; line-height: 1.3; margin-bottom: 1.5rem; color: var(--anthracite); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 2rem;
  background: linear-gradient(160deg, var(--anthracite) 0%, #333638 40%, var(--anthracite-soft) 100%);
  color: var(--offwhite); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,197,91,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(189,212,99,0.05) 0%, transparent 50%);
  animation: drift 20s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-2%,1%) rotate(1deg); }
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-logo-img { max-width: 380px; width: 80%; margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s ease forwards 0.3s; }
.hero-tagline { font-size: clamp(1rem,2.5vw,1.25rem); font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(242,243,237,0.5); margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 1s ease forwards 0.6s; }
.hero-text { font-size: 1.05rem; line-height: 1.9; color: var(--text-on-dark); max-width: 560px; margin: 0 auto 3rem; opacity: 0; animation: fadeUp 1s ease forwards 0.9s; }
.hero-cta { display: inline-block; padding: 0.9rem 2.5rem; border: 1px solid var(--lime); color: var(--lime); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.4s ease; opacity: 0; animation: fadeUp 1s ease forwards 1.2s; }
.hero-cta:hover { background: var(--lime); color: var(--anthracite); }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeUp 1s ease forwards 1.8s; z-index: 1; }
.scroll-hint span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,243,237,.3); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(168,197,91,.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity:.5; } 50% { opacity:1; } }

/* ===== PHILOSOPHIE (WHY) ===== */
.why { background: var(--offwhite); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-text { font-size: 1.05rem; max-width: 680px; color: var(--text-light); line-height: 1.85; }
.why-text p + p { margin-top: 1.2rem; }
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.3rem 1.2rem; background: var(--white); border-left: 3px solid var(--lime); transition: transform .3s; margin-bottom: .9rem; }
.why-item:hover { transform: translateX(4px); }
.why-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.why-item strong { display: block; font-weight: 500; font-size: .94rem; margin-bottom: .2rem; color: var(--anthracite); }
.why-item span { font-size: .88rem; color: var(--text-light); }

/* ===== ZITAT ===== */
.zitat { background: var(--anthracite); text-align: center; padding: 5rem 2rem; position: relative; }
.zitat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--lime), transparent); }
.zitat blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem,3vw,1.8rem); font-style: italic; color: var(--offwhite); max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.6; }
.zitat cite { font-family: 'Outfit', sans-serif; font-style: normal; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime); }

/* ===== ANGEBOT CARDS ===== */
.angebot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; margin-top: 3rem; }
.angebot-card { padding: 2.5rem 2rem; background: var(--offwhite); border-radius: 2px; transition: all 0.4s ease; border-left: 3px solid var(--lime); }
.angebot-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(43,45,46,0.08); }
.angebot-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: var(--anthracite); }
.angebot-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }
.more-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2.5rem; font-size: .85rem; letter-spacing: .08em; color: var(--lime-muted); text-decoration: none; transition: gap .3s; }
.more-link:hover { gap: .9rem; }

/* ===== ÜBER MICH ===== */
.ueber { background: var(--anthracite); color: var(--offwhite); }
.ueber .section-label { color: var(--lime); }
.ueber .section-title { color: var(--offwhite); }
.ueber-grid { display: grid; grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: start; margin-top: 1rem; }
.ueber-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; filter: grayscale(15%); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.ueber-photo-accent { position: relative; }
.ueber-photo-accent::after { content: ''; position: absolute; bottom: -8px; left: -8px; width: 60px; height: 60px; border-left: 3px solid var(--lime); border-bottom: 3px solid var(--lime); }
.ueber-text { font-size: 1.05rem; color: var(--text-on-dark); line-height: 1.9; }
.ueber-text p + p { margin-top: 1.2rem; }
.ueber-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--lime); margin-top: 2rem; font-weight: 400; font-style: italic; }

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
  min-height: 36vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, var(--anthracite) 0%, #333638 45%, var(--anthracite-soft) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 60%, rgba(168,197,91,.08) 0%, transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--lime); }
.page-hero h1 { font-size: clamp(2rem,5vw,3.2rem); color: var(--offwhite); max-width: 560px; }

/* ===== ANGEBOT DETAIL (Leistungen) ===== */
.leistung { padding: 5rem 2rem; }
.leistung:nth-child(odd) { background: var(--white); }
.leistung:nth-child(even) { background: var(--offwhite); }
.l-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 160px 1fr; gap: 3.5rem; align-items: start; }
.l-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 400; color: var(--lime-pale); line-height: 1; margin-bottom: .8rem; }
.l-inner h2 { font-size: 2rem; color: var(--anthracite); margin-bottom: 1.2rem; }
.l-body { font-size: .98rem; color: var(--text-light); line-height: 1.85; }
.l-body p + p { margin-top: 1rem; }
.l-for { margin-top: 1.8rem; padding: 1.2rem 1.5rem; background: var(--anthracite); }
.l-for p { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: .6rem; font-weight: 500; }
.l-for ul { list-style: none; }
.l-for li { font-size: .9rem; color: var(--text-on-dark); padding: .2rem 0 .2rem 1rem; position: relative; }
.l-for li::before { content: '—'; position: absolute; left: 0; color: var(--lime-muted); font-size: .75rem; }

/* ===== CV ===== */
.cv-block { margin-bottom: 3rem; }
.cv-block:last-child { margin-bottom: 0; }
.cv-block h3 { font-size: 1.4rem; font-weight: 600; color: var(--anthracite); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--lime); display: inline-block; }
.cv-item { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 0.6rem 0; font-size: 0.95rem; color: var(--text-light); }
.cv-year { font-weight: 500; color: var(--anthracite); font-size: 0.85rem; }
.cv-desc { line-height: 1.6; }

/* ===== PUBLIKATIONEN ===== */
.publikationen { background: var(--anthracite); color: var(--offwhite); }
.publikationen .section-label { color: var(--lime); }
.publikationen .section-title { color: var(--offwhite); }
.pub-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(168,197,91,0.12); }
.pub-item:last-child { border-bottom: none; }
.pub-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--lime-pale); margin-bottom: 0.4rem; line-height: 1.5; }
.pub-source { font-size: 0.85rem; color: rgba(242,243,237,0.5); }

/* ===== MITGLIEDSCHAFTEN ===== */
.member-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 2rem; }
.member-item { padding: 1rem 1.2rem; background: var(--offwhite); border-radius: 2px; font-size: 0.9rem; color: var(--text-light); border-left: 2px solid var(--lime); line-height: 1.5; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--anthracite); padding: 5rem 2rem; text-align: center; position: relative; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--lime), transparent); }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--offwhite); margin-bottom: 1rem; }
.cta-band p { color: var(--text-on-dark); margin-bottom: 2.5rem; max-width: 440px; margin-inline: auto; }

/* ===== BTN ===== */
.btn { display: inline-block; padding: 0.9rem 2.5rem; border: 1px solid var(--lime); color: var(--lime); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.4s ease; font-family: 'Outfit', sans-serif; cursor: pointer; background: transparent; }
.btn:hover, .btn-solid { background: var(--lime); color: var(--anthracite); }

/* ===== KONTAKT ===== */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2.5rem; }
.kontakt-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--anthracite); }
.kontakt-info p { color: var(--text-light); font-size: .93rem; margin-bottom: .45rem; }
.kontakt-info a { color: var(--lime-muted); text-decoration: none; transition: color .3s; }
.kontakt-info a:hover { color: var(--anthracite); }
.kontakt-note { font-size: .84rem !important; font-style: italic; }

/* ===== FORMULAR ===== */
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: .4rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem .9rem; background: var(--white); border: 1px solid rgba(43,45,46,.18); font-family: 'Outfit', sans-serif; font-size: .93rem; font-weight: 300; color: var(--text); transition: border-color .3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--lime); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-msg { padding: .9rem 1.2rem; margin-bottom: 1.3rem; border-left: 3px solid var(--lime); font-size: .9rem; background: rgba(168,197,91,.1); color: var(--anthracite); }
.form-msg.error { border-left-color: #c0392b; background: rgba(192,57,43,.07); color: #c0392b; }

/* ===== ANFAHRT ===== */
.anfahrt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.a-block h3 { font-size: 1.2rem; margin-bottom: 1.2rem; color: var(--anthracite); }
.navi-box { background: var(--anthracite); padding: 1rem 1.3rem; margin-bottom: 1.4rem; display: flex; gap: .8rem; align-items: flex-start; }
.navi-badge { background: var(--lime); color: var(--anthracite); font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; white-space: nowrap; flex-shrink: 0; margin-top: .1rem; }
.navi-box p { font-size: .9rem; color: var(--offwhite); line-height: 1.5; }
.navi-box strong { color: var(--lime); font-weight: 500; }
.navi-box a { display: inline-block; margin-top: .6rem; font-size: .78rem; color: var(--lime); text-decoration: none; letter-spacing: .07em; }
.a-steps { list-style: none; }
.a-steps li { font-size: .9rem; color: var(--text-light); padding: .65rem 0 .65rem 1.4rem; position: relative; border-bottom: 1px solid rgba(43,45,46,.06); line-height: 1.55; }
.a-steps li:last-child { border-bottom: none; }
.a-steps li::before { content: '—'; position: absolute; left: 0; color: var(--lime-muted); font-size: .75rem; }
.a-steps li em { color: var(--anthracite); font-style: normal; font-weight: 500; }
.oev-hint { margin-top: 1.4rem; padding: .9rem 1.2rem; background: var(--offwhite); border-left: 2px solid var(--lime); font-size: .85rem; color: var(--text-light); }

/* ===== MAP ===== */
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; filter: grayscale(15%); }

/* ===== FOOTER ===== */
footer { background: var(--anthracite); padding: 3rem 2rem 1.8rem; border-top: 1px solid rgba(168,197,91,.15); }
.ft { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; }
.ft-info p { font-size: .86rem; color: rgba(242,243,237,.5); line-height: 1.9; }
.ft-info a { color: var(--lime); text-decoration: none; }
.ft-info strong { color: var(--offwhite); font-weight: 500; display: block; margin-bottom: .3rem; }
.ft-logo { text-align: center; }
.ft-logo img { height: 48px; margin: 0 auto .7rem; }
.ft-logo p { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,243,237,.3); }
.ft-nav { text-align: right; }
.ft-nav p { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--lime-muted); margin-bottom: .7rem; font-weight: 500; }
.ft-nav a { display: block; color: rgba(242,243,237,.5); text-decoration: none; font-size: .83rem; margin-bottom: .3rem; transition: color .3s; cursor: pointer; }
.ft-nav a:hover { color: var(--lime); }
.ft-bottom { max-width: 960px; margin: 2rem auto 0; border-top: 1px solid rgba(168,197,91,.1); padding-top: 1.3rem; font-size: .72rem; color: rgba(242,243,237,.3); text-align: center; }

/* ===== POPUP ===== */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 500; align-items: center; justify-content: center; }
.popup-overlay.open { display: flex; }
.popup-box { background: var(--white); max-width: 680px; width: 90%; max-height: 80vh; overflow-y: auto; padding: 2.5rem; position: relative; }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.popup-title { font-size: 2rem; margin-bottom: 1.5rem; color: var(--anthracite); }
p.ds { font-size: .85rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
p.ds strong { color: var(--anthracite); }
p.ds a { color: var(--lime-muted); text-decoration: none; }
p.ds-stand { font-size: .8rem; color: var(--text-light); }

/* ===== FADE-IN ===== */
.fi { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.fi.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .angebot-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ueber-photo { max-width: 250px; }
  .member-grid { grid-template-columns: 1fr; }
  .hero-logo-img { max-width: 280px; }
  .nav-logo img { height: 35px; }
  nav { padding: 0.8rem 1rem; }
  nav.on { padding: 0.5rem 1rem; }
  .cv-item { grid-template-columns: 1fr; gap: 0.2rem; }
  .cv-year { font-size: 0.8rem; color: var(--lime-muted); }
  .hero { min-height: 90vh; padding: 4rem 1.5rem; }
  .hero-tagline { letter-spacing: 0.08em; }
  .zitat { padding: 3.5rem 1.5rem; }
  .kontakt-map { min-height: 150px; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .l-inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .l-num { font-size: 3.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .anfahrt-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 280px; }
  .burger { display: flex; }
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(43,45,46,.98); flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .ft { grid-template-columns: 1fr; text-align: center; }
  .ft-nav { text-align: center; }
  .ft-logo img { margin: 0 auto .7rem; }
  section { padding: 3rem 1.2rem; }
  .section-title { font-size: 1.6rem; margin-bottom: 1rem; }
  .section-label { font-size: 0.65rem; margin-bottom: 0.6rem; }
  .angebot-card { padding: 1.8rem 1.4rem; }
  .angebot-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
  .angebot-card p { font-size: 0.88rem; }
  .angebot-grid { gap: 1rem; margin-top: 1.5rem; }
  .hero-text { font-size: 0.95rem; margin-bottom: 2rem; }
  .why-text { font-size: 0.95rem; }
  .why-item { padding: 1rem; }
  .why-item strong { font-size: 0.88rem; }
  .why-item span { font-size: 0.82rem; }
  .ueber-text { font-size: 0.95rem; }
  .cta-band { padding: 3.5rem 1.5rem; }
}

/* ===== FOOTER NEU ===== */
.ft-contact { text-align: right; }
.ft-contact p { font-size: .86rem; color: rgba(242,243,237,.5); margin-bottom: .3rem; }
.ft-contact a { color: var(--lime); text-decoration: none; transition: color .3s; }
.ft-contact a:hover { color: var(--lime-bright); }
.ft-cta { display: inline-block; margin-top: 1rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1rem; border: 1px solid var(--lime); color: var(--lime); text-decoration: none; transition: all .3s; }
.ft-cta:hover { background: var(--lime); color: var(--anthracite); }
.ft-links { margin-top: .8rem; font-size: .78rem; }
.ft-links a { color: rgba(242,243,237,.5); text-decoration: none; cursor: pointer; transition: color .3s; }
.ft-links a:hover { color: var(--lime); }
.ft-links span { color: rgba(242,243,237,.25); margin: 0 .4rem; }
.sitemap-links { display: flex; flex-direction: column; gap: .6rem; }
.sitemap-links a { font-size: 1rem; color: var(--text-light); text-decoration: none; padding: .4rem 0; border-bottom: 1px solid rgba(43,45,46,.08); transition: color .3s; }
.sitemap-links a:last-child { border-bottom: none; }
.sitemap-links a:hover { color: var(--lime-muted); }

@media (max-width: 768px) {
  .ft-contact { text-align: center; }
}
