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

  :root {
    --ink: #1a1209;
    --ink-muted: #5a4e3c;
    --ink-light: #9a8e7c;
    --cream: #f5f0e8;
    --cream-dark: #ede6d8;
    --gold: #b8943a;
    --gold-light: #d4aa55;
    --gold-pale: #f0e4c0;
    --sepia: #7a5c2e;
    --accent: #4a3520;
    --white: #faf8f4;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,148,58,0.25);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 10px;
  }

  .nav-logo .tree-icon {
    width: 32px; height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--ink-muted);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 2px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 5vw 6rem 8vw;
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block; width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--sepia);
  }

  .hero-desc {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 400px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--accent); }

  .btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 14px 32px;
    border: 1px solid rgba(26,18,9,0.3);
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-right {
    position: relative; overflow: hidden;
  }

  .hero-image-wrap {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #c8b99a 0%, #a0896e 40%, #7a5c2e 100%);
    overflow: hidden;
  }

  .hero-image-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
  }

  /* Decorative tree SVG in hero */
  .hero-tree {
    position: absolute; right: 5%; bottom: 10%;
    opacity: 0.12;
    z-index: 0;
  }

  /* Animated lines */
  .hero-ornament {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    z-index: 1;
    text-align: center;
    color: var(--white);
  }

  .hero-ornament-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 1rem;
  }

  .genealogy-card {
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(184,148,58,0.4);
    padding: 2rem;
    border-radius: 4px;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(26,18,9,0.2);
  }

  .gen-card-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gold-pale);
  }

  .gen-person {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .gen-person:last-child { border: none; }

  .gen-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold-pale);
    border: 1.5px solid var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--sepia);
    font-weight: 600;
    flex-shrink: 0;
  }

  .gen-person-info { flex: 1; }
  .gen-name { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
  .gen-dates { font-size: 0.75rem; color: var(--ink-light); }

  .gen-line {
    width: 1px; height: 24px;
    background: var(--gold-light);
    margin: 0 18px;
  }

  /* ── STATS ── */
  .stats-strip {
    background: var(--ink);
    padding: 3rem 8vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat-item { text-align: center; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.5);
  }

  /* ── SECTION COMMON ── */
  section { padding: 6rem 8vw; }

  .section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }

  .section-lead {
    font-size: 1rem;
    color: var(--ink-muted);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.8;
  }

  /* ── SERVICES ── */
  .services { background: var(--white); }

  .services-intro {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184,148,58,0.15);
    border: 1.5px solid rgba(184,148,58,0.15);
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: var(--cream); }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 1rem;
    user-select: none;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .service-text {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 10px; }

  /* ── BLOG ── */
  .blog { background: var(--cream); }

  .blog-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    background: var(--white);
    border: 1px solid rgba(184,148,58,0.15);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,18,9,0.1);
  }

  .blog-img {
    height: 200px;
    background: linear-gradient(135deg, #c8b99a, #a0896e);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .blog-img-large { height: 280px; }

  .blog-img-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: rgba(250,248,244,0.3);
    font-weight: 600;
    font-style: italic;
  }

  .blog-img-1 { background: linear-gradient(135deg, #b8943a, #7a5c2e); }
  .blog-img-2 { background: linear-gradient(135deg, #8a7560, #5a4e3c); }
  .blog-img-3 { background: linear-gradient(135deg, #9a8570, #6a5845); }

  .blog-body { padding: 1.5rem; }

  .blog-cat {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.6rem;
  }

  .blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .blog-card:nth-child(1) .blog-title { font-size: 1.6rem; }

  .blog-excerpt {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-meta {
    display: flex; align-items: center; gap: 12px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
    font-size: 0.78rem;
    color: var(--ink-light);
  }

  /* ── BOOK CTA ── */
  .book-cta {
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    min-height: 400px;
  }

  .book-cta-left {
    padding: 5rem 4vw 5rem 8vw;
    display: flex; flex-direction: column; justify-content: center;
  }

  .book-cta .section-tag { color: var(--gold-light); }

  .book-cta .section-title {
    color: var(--white);
    margin-bottom: 1rem;
  }

  .book-cta .section-lead {
    color: rgba(250,248,244,0.6);
    margin-bottom: 2rem;
  }

  .book-cta-right {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #3d2f1a, #1a1209);
    display: flex; align-items: center; justify-content: center;
    padding: 3rem;
  }

  .book-mockup {
    background: var(--cream);
    width: 200px;
    padding: 0;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.4), 8px -4px 0 var(--gold);
    transform: rotate(-3deg);
  }

  .book-cover-top {
    background: linear-gradient(135deg, var(--ink), var(--sepia));
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .book-cover-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .book-cover-sub {
    font-size: 0.7rem;
    color: rgba(250,248,244,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .book-cover-bottom {
    padding: 1.5rem;
    text-align: center;
    border-top: 3px solid var(--gold);
  }

  .book-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
  }

  .book-price-label {
    font-size: 0.75rem;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ── PROCESS ── */
  .process { background: var(--white); }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }

  .process-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
    height: 1px;
    background: linear-gradient(to right, var(--gold-pale), var(--gold-light), var(--gold-pale));
    z-index: 0;
  }

  .process-step {
    text-align: center;
    padding: 0 1.5rem 2rem;
    position: relative; z-index: 1;
  }

  .process-dot {
    width: 72px; height: 72px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s;
  }

  .process-step:hover .process-dot {
    background: var(--gold);
    color: var(--white);
  }

  .process-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .process-step-text {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── TESTIMONIAL ── */
  .testimonial-section {
    background: var(--cream-dark);
    padding: 6rem 8vw;
    text-align: center;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    position: relative;
  }

  .testimonial-quote::before {
    content: '\201C';
    position: absolute; top: -0.5em; left: -0.4em;
    font-size: 4em;
    color: var(--gold-pale);
    line-height: 1; z-index: 0;
  }

  .testimonial-author {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
  }

  /* ── FOOTER ── */
  footer {
    background: #120e08;
    color: var(--cream);
    padding: 5rem 8vw 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(184,148,58,0.2);
    margin-bottom: 2rem;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1rem;
  }

  .footer-tagline {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.45);
    line-height: 1.7;
    font-weight: 300;
    max-width: 240px;
  }

  .footer-heading {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
  }

  .footer-links {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(245,240,232,0.55);
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s;
  }

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

  .footer-newsletter-text {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.55);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .footer-form {
    display: flex;
    border: 1px solid rgba(184,148,58,0.3);
    overflow: hidden;
  }

  .footer-input {
    flex: 1;
    background: rgba(245,240,232,0.05);
    border: none;
    outline: none;
    padding: 10px 14px;
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
  }

  .footer-input::placeholder { color: rgba(245,240,232,0.25); }

  .footer-submit {
    background: var(--gold);
    border: none; cursor: pointer;
    padding: 10px 16px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    transition: background 0.2s;
  }

  .footer-submit:hover { background: var(--gold-light); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8rem;
    color: rgba(245,240,232,0.3);
  }

  /* ── ORNAMENTAL DIVIDER ── */
  .ornament {
    text-align: center;
    color: var(--gold-pale);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin: 1rem 0;
    user-select: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 300px; }
    .hero-left { padding: 4rem 6vw; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .book-cta { grid-template-columns: 1fr; }
    .book-cta-right { height: 280px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 4vw; }
    .nav-links { display: none; }
    section { padding: 4rem 6vw; }
  }

  /* Entrance animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.25s; }
  .hero-desc { animation-delay: 0.4s; }
  .hero-btns { animation-delay: 0.55s; }
/* WordPress-spezifische Ergänzungen */

/* Blog thumbnail fill */
.blog-thumb-img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.blog-img { position:relative; }
.hero-bg-img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; opacity:0.4; }

/* WordPress body padding for fixed nav */
body { padding-top: 68px; }
.hero { padding-top: 0 !important; }

/* WooCommerce basic overrides */
.woocommerce .button, .woocommerce button.button { background: var(--ink); color: var(--white); border-radius: 2px; font-family: 'Jost', sans-serif; font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 32px; border: none; cursor: pointer; transition: background 0.2s; }
.woocommerce .button:hover { background: var(--accent); color: var(--white); }

/* Pagination */
.page-numbers { display:inline-flex; gap:8px; margin-top:2rem; list-style:none; }
.page-numbers a, .page-numbers span { padding:8px 14px; border:1px solid rgba(26,18,9,0.2); border-radius:2px; font-size:0.875rem; color:var(--ink-muted); text-decoration:none; transition:all 0.2s; }
.page-numbers .current { background:var(--ink); color:var(--white); border-color:var(--ink); }
.page-numbers a:hover { border-color:var(--gold); color:var(--gold); }

/* Scroll animations */
.fade-up { opacity:0; transform:translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* Mobile nav open */
@media (max-width: 900px) {
  .nav-toggle { display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
  .nav-toggle span { display:block; width:24px; height:2px; background:var(--ink); border-radius:2px; transition: transform 0.2s; }
  .nav-links.nav-open { display:flex; flex-direction:column; position:absolute; top:68px; left:0; right:0; background:var(--cream); border-bottom:1px solid rgba(184,148,58,0.2); padding:1.5rem 5vw; gap:1rem; z-index:99; }
}
@media (min-width: 901px) {
  .nav-toggle { display:none; }
}

/* Scrolled nav */
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(26,18,9,0.08); }

/* Blog title links */
.blog-title a { text-decoration:none; color:inherit; }
.blog-title a:hover { color:var(--gold); }

/* ── Testimonial Slider ── */
.tslider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tslider-viewport {
  overflow: hidden;
  flex: 1;
}

.tslider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tslider-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border: 1px solid rgba(184,148,58,0.2);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .tslider-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .tslider-card { flex: 0 0 100%; }
}

.tslider-photo-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold-pale);
  box-shadow: 0 4px 16px rgba(184,148,58,0.2);
}

.tslider-photo {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tslider-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--gold-light);
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sepia);
  margin: 0 auto 1rem;
}

.tslider-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.tslider-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tslider-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.tslider-location {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: 2px;
}

.tslider-btn {
  background: var(--white);
  border: 1px solid rgba(184,148,58,0.35);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.tslider-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.tslider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gold-pale);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.tslider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
