/* ============================================================
   VICARI – gemeinsame Basis-Styles (Layout, Typografie, Navigation, Footer)
   Wird von allen Seiten geladen und vom Browser gecacht.
   Seiten-spezifische Regeln stehen weiterhin inline in der
   jeweiligen HTML-Datei.
   ============================================================ */

:root {
    --bg: #F9F6F1;
    --bg-white: #FFFFFF;
    --text: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #888;
    --accent: #6B7D5E;
    --accent-dark: #4A5940;
    --accent-light: #EAF0E5;
    --accent-xlight: #F4F7F2;
    --border: #E2DDD6;
    --shadow: rgba(0,0,0,0.07);
  }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; }
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: var(--accent-dark); color: #fff; text-align: center; font-family: 'Inter', sans-serif; font-size: .78rem; letter-spacing: .02em; padding: .6rem 1rem; line-height: 1.4; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar .sep { margin: 0 .5rem; opacity: .5; }
@media (max-width: 480px) { .topbar { font-size: .7rem; padding: .55rem .75rem; } }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
/* TYPOGRAPHY */
  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 500; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); }
.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.page.active { display: block; }
/* HERO */
  .hero {
    min-height: 100vh;
    padding-top: 108px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    background-image: url('images/praxis-hero.webp');
    background-size: cover;
    background-position: center 40%;
  }
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(10,20,12,0.68) 0%, rgba(10,20,12,0.38) 60%, rgba(10,20,12,0.18) 100%);
    z-index: 0;
  }
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 6rem 2rem 4rem;
    position: relative; z-index: 1;
    display: flex; flex-direction: column; justify-content: center;
    min-height: 80vh;
  }
.hero-tag {
    display: inline-block;
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); font-weight: 600;
    margin-bottom: 1.2rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 2px;
  }
.hero h1 { margin-bottom: 1.2rem; color: white; }
.hero h1 em { font-style: italic; color: #9FD4A8; }
.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.78);
    margin-bottom: 2rem; max-width: 520px;
    line-height: 1.8;
  }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-img { display: none; }
.hero-img-badge { display: none; }
/* BUTTONS */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: white;
    padding: 0.85rem 2rem; border-radius: 4px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--text);
    padding: 0.85rem 2rem; border-radius: 4px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: 1.5px solid var(--border); cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero .btn-secondary {
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.5);
  }
.hero .btn-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
  }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--accent); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; background: none; border: none; cursor: pointer;
    padding: 0; transition: gap 0.2s;
  }
.btn-ghost:hover { gap: 0.7rem; }
.btn-ghost svg { width: 16px; height: 16px; }
/* SECTION */
  section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); font-weight: 600; margin-bottom: 0.8rem;
  }
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; line-height: 1.75; margin-bottom: 3rem; }
.section-divider { width: 40px; height: 2px; background: var(--accent); margin: 1.2rem 0 2rem; }
/* GRID LAYOUTS */
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
/* CARDS */
  .card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    transition: box-shadow 0.25s, transform 0.2s;
  }
.card:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-2px); }
.card-icon {
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-dark);
  }
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.93rem; color: var(--text-mid); }
/* USP STRIP */
  .usp-strip {
    background: var(--accent-dark);
    padding: 3rem 2rem;
    color: white;
  }
.usp-strip .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.usp-strip-light { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; color: #fff; }
.usp-item { text-align: center; }
.usp-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: #D4E4CC; margin-bottom: 0.3rem; }
.usp-item span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
/* LEISTUNGEN CARDS (Startseite) */
  .leistung-card {
    background: var(--bg-white);
    border-radius: 6px; overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.2s;
    cursor: pointer;
  }
.leistung-card:hover { box-shadow: 0 12px 40px var(--shadow); transform: translateY(-3px); }
.leistung-card-img { aspect-ratio: 16/9; overflow: hidden; }
.leistung-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.leistung-card:hover .leistung-card-img img { transform: scale(1.04); }
.leistung-card-body { padding: 1.5rem; }
.leistung-card-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.leistung-card-body p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1rem; }
/* TEAM CARDS */
  .team-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 6px; overflow: hidden;
    text-align: center;
    transition: box-shadow 0.25s;
  }
.team-card:hover { box-shadow: 0 8px 32px var(--shadow); }
.team-card-photo {
    aspect-ratio: 4/5; overflow: hidden;
    background: var(--accent-xlight);
  }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-photo .initials {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: var(--accent-dark);
  }
.team-card-body { padding: 1.5rem; }
.team-card-body h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card-body .role { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.75rem; }
.team-card-body p { font-size: 0.85rem; color: var(--text-mid); }
/* TECH ITEM */
  .tech-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.tech-item:last-child { border-bottom: none; }
.tech-icon { width: 52px; height: 52px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-dark); }
.tech-icon svg { width: 24px; height: 24px; }
.tech-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.tech-text p { font-size: 0.88rem; color: var(--text-mid); }
/* PAGE HERO (sub-pages) */
  .page-hero {
    background: var(--accent-dark);
    padding: 9rem 2rem 5rem;
    color: white;
  }
.page-hero .container { max-width: 800px; }
.page-hero .section-tag { color: #A8C49E; }
.page-hero h1 { color: white; font-size: clamp(2.2rem,5vw,3.8rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; }
/* SYMPTOM LIST */
  .symptom-list { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; margin: 1.5rem 0; }
.symptom-list li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.93rem; color: var(--text-mid);
    background: var(--bg-white); border: 1px solid var(--border);
    padding: 0.75rem 1rem; border-radius: 4px;
  }
.symptom-list li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
/* PROCESS STEPS */
  .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; counter-reset: step; }
.step { text-align: center; position: relative; }
.step::before {
    content: counter(step, decimal-leading-zero); counter-increment: step;
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300; color: var(--accent-light);
    line-height: 1; margin-bottom: 0.5rem;
  }
.step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--text-mid); }
/* HIGHLIGHT BOX */
  .highlight-box {
    background: var(--accent-xlight);
    border: 1px solid var(--accent-light);
    padding: 1.5rem 2rem;
    border-radius: 0 6px 6px 0;
    margin: 2rem 0;
  }
.highlight-box p { color: var(--text); font-size: 0.95rem; }
.highlight-box strong { color: var(--accent-dark); }
/* KONTAKT SECTION */
  .kontakt-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  }
.kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-item { display: flex; gap: 1rem; align-items: flex-start; }
.kontakt-item-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-dark); flex-shrink: 0;
  }
.kontakt-item-icon svg { width: 20px; height: 20px; }
.kontakt-item-text strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; font-weight: 600; }
.kontakt-item-text span { font-size: 0.95rem; color: var(--text-mid); }
/* ÖFFNUNGSZEITEN TABLE */
  .oeffnungszeiten { width: 100%; border-collapse: collapse; }
.oeffnungszeiten td { padding: 0.6rem 0; font-size: 0.9rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.oeffnungszeiten td:first-child { font-weight: 500; color: var(--text); width: 50%; }
.oeffnungszeiten tr:last-child td { border-bottom: none; }
/* DOCTOLIB BUTTON */
  .doctolib-cta {
    background: var(--accent);
    border-radius: 6px;
    padding: 2.5rem;
    text-align: center;
    color: white;
  }
.doctolib-cta h3 { color: white; margin-bottom: 0.5rem; font-size: 1.6rem; }
.doctolib-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.btn-doctolib {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: white; color: var(--accent-dark);
    padding: 0.9rem 2rem; border-radius: 4px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: transform 0.2s;
  }
.btn-doctolib:hover { transform: translateY(-2px); }
/* FOOTER */
  footer {
    background: #1A1A1A; color: #aaa;
    padding: 3rem 2rem 2rem;
  }
footer .container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: .85rem; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 0.18em; color: white; line-height: 1; }
.footer-logo-text em { color: #8BB898; font-style: normal; }
.footer-logo-sub { display: block; font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; color: rgba(255,255,255,0.45); text-transform: uppercase; margin-top: .18rem; }
.footer-text { font-size: 0.85rem; line-height: 1.7; }
footer h5 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: white; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
footer ul li a, footer ul li button {
    font-size: 0.85rem; color: #aaa; text-decoration: none;
    background: none; border: none; cursor: pointer; padding: 0; text-align: left;
    transition: color 0.2s;
  }
footer ul li a:hover, footer ul li button:hover { color: white; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.78rem; }
/* SECTION BG VARIANTS */
  .bg-white { background: var(--bg-white); }
.bg-cream { background: var(--bg); }
.bg-accent { background: var(--accent-xlight); }
/* BREADCRUMB */
  .breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; letter-spacing: 0.05em; }
.breadcrumb span { margin: 0 0.4rem; }
/* ANIMATIONS */
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-2 { animation: fadeInUp 0.6s 0.1s ease both; }
.fade-in-3 { animation: fadeInUp 0.6s 0.2s ease both; }
/* RESPONSIVE */
  @media (max-width: 900px) {
    .grid-2, .grid-4, .steps { grid-template-columns: 1fr 1fr; }
    .grid-3, .usp-strip .container, .usp-strip-light, .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .hero-img { display: none; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .symptom-list { grid-template-columns: 1fr; }
    .nav-links { display: none !important; }
    .nav-burger { display: flex; }
  }
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4, .steps, .usp-strip .container, .usp-strip-light, .footer-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 1.25rem; }
    .page-hero { padding: 7rem 1.25rem 4rem; }
  }
/* MOBILE NAV OPEN */
  .nav-links.open {
    display: flex !important; flex-direction: column;
    position: fixed; top: 108px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 1.5rem 2rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 999;
  }
.nav-links.open a, .nav-links.open button { font-size: 1.1rem; padding: 1rem 1.25rem; min-height: 48px; display: flex; align-items: center; width: 100%; box-sizing: border-box; }
.nav-links.open .dropdown li a, .nav-links.open .nav-dropdown-menu li a { font-size: 1rem; padding: .85rem 1rem; min-height: 44px; display: flex; align-items: center; }
/* ══ PREMIUM ENHANCEMENTS ══ */
  /* hero background via inline style */
  .hero-img { box-shadow: 0 28px 70px rgba(74,89,64,0.2); }
.page-hero { background: linear-gradient(140deg, #364630 0%, var(--accent-dark) 100%); }
.usp-strip { background: linear-gradient(90deg, #354530 0%, var(--accent-dark) 45%, #354530 100%); }
.card { border-top: 2px solid transparent; transition: border-top-color 0.3s, box-shadow 0.28s, transform 0.22s; }
.card:hover { border-top-color: var(--accent); box-shadow: 0 14px 44px rgba(107,125,94,0.14); transform: translateY(-3px); }
.section-tag::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--accent); margin-bottom: 0.5rem; opacity: 0.65; }
.hero-img-badge { backdrop-filter: blur(10px); background: rgba(255,255,255,0.93); border: 1px solid rgba(107,125,94,0.12); }
.leistung-card-img { background: var(--accent-xlight); display: flex; align-items: center; justify-content: center; transition: filter 0.28s, transform 0.35s; min-height: 200px; }
.leistung-card-img svg { display: block; }
.leistung-card:hover .leistung-card-img { filter: brightness(1.12); }
.btn-primary { box-shadow: 0 4px 16px rgba(74,89,64,0.25); }
.btn-primary:hover { box-shadow: 0 6px 24px rgba(74,89,64,0.32); }
.team-card-photo { background: linear-gradient(135deg, var(--accent-xlight) 0%, #d8e8d0 100%); }
.usp-item strong { font-feature-settings: "tnum"; letter-spacing: -0.02em; }
/* ══ FLOATING ACTION BUTTON ══ */
  #fab-termin {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
    display: flex; align-items: center; gap: .55rem;
    background: var(--accent-dark); color: white;
    border: none; border-radius: 50px; padding: .82rem 1.45rem;
    font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
    letter-spacing: .03em; cursor: pointer;
    box-shadow: 0 8px 30px rgba(74,89,64,.45);
    opacity: 0; transform: translateY(80px);
    animation: fabIn .6s .9s cubic-bezier(.34,1.56,.64,1) forwards;
    transition: background .25s, box-shadow .25s;
  }
#fab-termin:hover { background: #253020; box-shadow: 0 14px 42px rgba(74,89,64,.6); transform: translateY(-3px) !important; }
@keyframes fabIn { to { transform: translateY(0); opacity: 1; } }
/* ══ FAQ ACCORDION ══ */
  .faq-section { max-width: 760px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none; text-align: left; cursor: pointer;
    padding: 1.25rem 0; font-size: 1rem; font-family: 'Inter', sans-serif;
    color: var(--text); font-weight: 500; display: flex; justify-content: space-between; align-items: center;
    transition: color .2s; gap: 1rem;
  }
.faq-q:hover { color: var(--accent-dark); }
.faq-arrow { font-size: 1.3rem; flex-shrink: 0; transition: transform .3s cubic-bezier(.25,.46,.45,.94); color: var(--accent); }
.faq-q.open .faq-arrow { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.25,.46,.45,.94); }
.faq-a p { padding: 0 0 1.2rem; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; }
/* ══ CARD HOVER LIFT ══ */
  .card { transition: transform .28s cubic-bezier(.25,.46,.45,.94), box-shadow .28s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(74,89,64,.14); }
/* ══ SCROLL REVEAL ══ */
  .reveal { opacity:0; transform:translateY(16px); transition:opacity .55s cubic-bezier(.23,1,.32,1), transform .55s cubic-bezier(.23,1,.32,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
.reveal-d4 { transition-delay:.4s; }
@keyframes pagein { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
/* ══ HERO ENTRY ══ */
  .hero-inner { animation: heroIn .9s .1s ease both; }
@keyframes heroIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-img { animation: heroImgIn 1s .25s ease both; }
@keyframes heroImgIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
/* ══ SCROLL PROGRESS BAR ══ */
  #progress-bar { position:fixed; top:0; left:0; height:2px; width:0%; background:linear-gradient(90deg,var(--accent),var(--accent-dark)); z-index:1001; pointer-events:none; transition:width .08s linear; }
/* ══ BESCHWERDEN-FINDER ══ */
  .finder-section { background:linear-gradient(148deg,#253020 0%,var(--accent-dark) 55%,#3a5030 100%); padding:5rem 0; }
.finder-intro { text-align:center; margin-bottom:2.5rem; }
.finder-intro .section-tag { color:rgba(255,255,255,.5); }
.finder-intro h2 { color:#fff; }
.finder-intro p { color:rgba(255,255,255,.65); max-width:520px; margin:.75rem auto 0; font-size:.95rem; }
.finder-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.85rem; margin-bottom:1.25rem; }
.finder-tile { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:1.4rem 1rem; text-align:center; cursor:pointer; color:rgba(255,255,255,.82); transition:background .22s,border-color .22s,transform .18s,color .22s,box-shadow .22s; user-select:none; }
.finder-tile:hover { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.3); transform:translateY(-3px); color:#fff; box-shadow:0 8px 24px rgba(0,0,0,.18); }
.finder-tile.active { background:#fff; border-color:#fff; color:var(--accent-dark); box-shadow:0 8px 28px rgba(0,0,0,.2); }
.finder-tile svg { width:34px; height:34px; display:block; margin:0 auto .7rem; }
.finder-tile span { display:block; font-size:.77rem; font-weight:600; letter-spacing:.03em; line-height:1.35; }
.finder-result { background:rgba(255,255,255,.97); border-radius:12px; padding:2rem 2.5rem; display:none; align-items:center; gap:2rem; animation:finderIn .35s ease both; }
@keyframes finderIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.finder-result.show { display:flex; }
.finder-icon-wrap { width:62px; height:62px; background:var(--accent-light); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--accent-dark); }
.finder-icon-wrap svg { width:28px; height:28px; }
.finder-result-body h3 { color:var(--accent-dark); margin-bottom:.4rem; font-size:1.3rem; }
.finder-result-body p { color:var(--text-mid); font-size:.9rem; margin-bottom:1.1rem; max-width:500px; }
.finder-result-actions { display:flex; gap:1rem; flex-wrap:wrap; }
@media(max-width:768px){ .finder-grid{grid-template-columns:repeat(2,1fr);} .finder-result{flex-direction:column; padding:1.5rem;} }
/* ── HORIZONTAL STICKY TIMELINE ── */
  .tl-driver { height:1400vh; }
.tl-sticky { position:sticky; top:0; height:100vh; overflow:hidden; display:flex; flex-direction:column; justify-content:center; background:#F8F6F2; }
.tl-viewport { overflow:hidden; padding:0 6vw; flex:1; display:flex; align-items:center; }
.tl-belt { display:flex; align-items:flex-start; padding:2rem calc(50vw - 130px) 2rem 6vw; will-change:transform; }
.tl-item { flex-shrink:0; width:260px; display:flex; flex-direction:column; align-items:center; padding:0 1rem; opacity:.3; transform:scale(.93); transition:opacity .5s, transform .5s; }
.tl-item.tl-past { opacity:.65; transform:scale(.96); }
.tl-item.tl-active { opacity:1; transform:scale(1); }
.tl-dot { width:16px; height:16px; border-radius:50%; background:var(--border); border:2px solid white; box-shadow:0 0 0 2px var(--border); transition: background-color .5s ease, box-shadow .5s ease; flex-shrink:0; margin-bottom:1.2rem; }
.tl-item.tl-past .tl-dot { background:var(--accent); box-shadow:0 0 0 2px var(--accent); }
.tl-item.tl-active .tl-dot { background:var(--accent-dark); box-shadow:0 0 0 5px rgba(74,89,64,.2), 0 0 16px rgba(74,89,64,.3); }
.tl-card { background:white; border:1px solid var(--border); border-radius:12px; padding:1.3rem 1.4rem; width:100%; box-shadow:0 2px 12px rgba(0,0,0,.05); transition:box-shadow .4s, border-color .4s, transform .4s; }
.tl-item.tl-active .tl-card { box-shadow:0 10px 36px rgba(0,0,0,.12); border-color:var(--accent-light); transform:translateY(-4px); }
.tl-year { font-family:'Cormorant Garamond',serif; font-size:2.6rem; font-weight:700; color:var(--accent); line-height:1; margin-bottom:.35rem; }
.tl-item.tl-active .tl-year { color:var(--accent-dark); }
.tl-title { font-weight:600; font-size:.88rem; color:var(--text); margin-bottom:.35rem; line-height:1.4; }
.tl-desc { font-size:.78rem; color:var(--text-mid); line-height:1.6; }
.tl-line-wrap { flex-shrink:0; display:flex; align-items:center; padding-bottom:1.2rem; align-self:flex-start; margin-top:0; padding-top:7px; }
.tl-hline { height:2px; width:60px; background:var(--border); transition:background .5s; }
.tl-hline.tl-done { background:var(--accent); }
.tl-progress { display:flex; justify-content:center; gap:.6rem; padding:1.5rem 0 .5rem; flex-shrink:0; }
.tl-pip { width:7px; height:7px; border-radius:50%; background:var(--border); transition:background .4s, transform .3s; }
.tl-pip.tl-done { background:var(--accent); transform:scale(1.35); }
.tl-counter { text-align:center; font-family:'Cormorant Garamond',serif; font-size:.85rem; color:var(--text-light); letter-spacing:.1em; padding-bottom:.5rem; flex-shrink:0; }
@media(max-width:700px){ .tl-driver{height:900vh;} .tl-item{width:200px;} .tl-hline{width:30px;} .tl-belt{padding:2rem calc(50vw - 100px) 2rem 4vw;} }
@media(max-width:900px){
    .reviews-grid { grid-template-columns: 1fr 1fr !important; }
  }
@media(max-width:600px){
    .reviews-grid { grid-template-columns: 1fr !important; }
  }
.has-dropdown:hover .dropdown { display: block; }
