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

    :root {
      --leather-darkest: #1A0F08;
      --leather-dark:    #2C1A0E;
      --leather-mid:     #3D2410;
      --leather-warm:    #5C3318;
      --leather-light:   #7A4A28;
      --leather-surface: #241408;

      --gold:      #C9942A;
      --gold-light: #E8C97A;
      --gold-pale:  #F5E8C0;
      --gold-dark:  #8A5F18;
      --gold-line:  #A07420;

      --cream:     #F4EDD8;
      --cream-dark:#E8DFC0;
      --parchment: #F9F3E3;

      --text-on-dark:  #F0E6CC;
      --muted-on-dark: rgba(240,230,204,0.58);
      --border-dark:   rgba(201,148,42,0.22);
      --border-gold:   rgba(201,148,42,0.55);

      --radius: 6px;
      --shadow-gold: 0 0 40px rgba(201,148,42,0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'EB Garamond', Georgia, serif;
      background: var(--leather-darkest);
      color: var(--text-on-dark);
      line-height: 1.7;
      font-size: 17px;
      /* leather grain texture via CSS noise */
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    }

    /* ── decorative ornamental line ── */
    .ornament {
      display: flex; align-items: center; justify-content: center;
      gap: 0.75rem; margin: 1.25rem 0;
      color: var(--gold);
      font-size: 13px; letter-spacing: 0.15em;
    }
    .ornament::before, .ornament::after {
      content: '';
      flex: 1; max-width: 120px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
    }

    /* ─────── HEADER ─────── */
    .site-header {
      background: var(--leather-surface);
      border-bottom: 1px solid var(--border-gold);
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,0.50);
    }

    .header-inner {
      max-width: 1080px; margin: 0 auto;
      padding: 0 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 66px; gap: 1rem;
    }

    .logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; flex-shrink: 0;
    }

    .logo-cross {
      width: 50px; height:50px;
      /*border: 1.5px solid var(--gold);*/
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 19px; color: var(--gold);
      font-family: 'Cinzel', serif;
     /* background: var(--leather-mid);*/
    }

    .logo-text { line-height: 1.15; }
    .logo-text strong {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 16px; font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.04em;
    }
    .logo-text span {
      font-size: 11px;
      color: var(--muted-on-dark);
      letter-spacing: 0.08em;
    }

    .nav-links {
      display: flex; list-style: none;
      gap: 0.15rem; align-items: center;
    }
    .nav-links a {
      color: var(--muted-on-dark);
      text-decoration: none; font-size: 14px;
      font-family: 'EB Garamond', serif;
      padding: 6px 14px; border-radius: var(--radius);
      transition: all 0.2s; white-space: nowrap;
      letter-spacing: 0.03em;
    }
    .nav-links a:hover { color: var(--gold-light); background: rgba(201,148,42,0.10); }
    .nav-dl {
      border: 1px solid var(--border-gold) !important;
      color: var(--gold-light) !important;
    }
    .nav-dl:hover { background: rgba(201,148,42,0.18) !important; }

    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      color: var(--gold-light); flex-direction: column; gap: 5px; padding: 4px;
    }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: currentColor; }

    @media (max-width: 700px) {
      .hamburger { display: flex; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 66px; left: 0; right: 0;
        background: var(--leather-surface);
        border-bottom: 1px solid var(--border-gold);
        padding: 1rem; gap: 0.25rem; z-index: 99;
      }
      .nav-links.open a { padding: 10px 16px; }
    }

    /* ─────── HERO ─────── */
    .hero {
      padding: 5.5rem 1.5rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,148,42,0.10) 0%, transparent 65%),
        var(--leather-dark);
    }

    /* ornamental corner borders */
    .hero::before, .hero::after {
      content: '';
      position: absolute;
      width: 80px; height: 80px;
      border-color: var(--gold-line);
      border-style: solid;
      opacity: 0.45;
    }
    .hero::before {
      top: 24px; left: 24px;
      border-width: 1px 0 0 1px;
    }
    .hero::after {
      bottom: 24px; right: 24px;
      border-width: 0 1px 1px 0;
    }

    .hero-content { position: relative; max-width: 780px; margin: 0 auto; }

    .hero-crown {
      font-family: 'Cinzel', serif;
      font-size: 11px; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .hero-crown::before, .hero-crown::after {
      content: '✦'; font-size: 9px; opacity: 0.7;
    }

    .hero h1 {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 900;
      color: var(--gold-pale);
      line-height: 1.12;
      letter-spacing: 0.02em;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    }

    .hero-subtitle {
      font-family: 'Cinzel', serif;
      font-size: clamp(1rem, 2.5vw, 1.35rem);
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 0.10em;
      margin-bottom: 1.75rem;
    }

    .hero p {
      font-size: 18px;
      color: var(--muted-on-dark);
      max-width: 580px; margin: 0 auto 2.5rem;
      font-style: italic; line-height: 1.8;
    }

    .hero-actions {
      display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, #A07015 100%);
      color: var(--leather-darkest);
      border: none; padding: 14px 30px; border-radius: var(--radius);
      font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700;
      letter-spacing: 0.08em; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(201,148,42,0.35);
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,148,42,0.50); }

    .btn-outline {
      background: transparent;
      color: var(--gold-light);
      border: 1px solid var(--border-gold);
      padding: 14px 30px; border-radius: var(--radius);
      font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600;
      letter-spacing: 0.08em; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.2s;
    }
    .btn-outline:hover { background: rgba(201,148,42,0.12); border-color: var(--gold); }

    /* ─────── VERSE STRIP ─────── */
    .verse-strip {
      background: var(--leather-mid);
      border-top: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark);
      padding: 1.5rem 1.5rem;
      text-align: center;
    }
    .verse-strip blockquote {
      font-family: 'EB Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-style: italic;
      color: var(--gold-pale);
      max-width: 680px; margin: 0 auto;
      line-height: 1.75;
    }
    .verse-strip cite {
      display: block; margin-top: 0.5rem;
      font-style: normal; font-size: 13px;
      color: var(--gold); letter-spacing: 0.08em;
      font-family: 'Cinzel', serif;
    }

    /* ─────── DOWNLOADS SECTION ─────── */
    .downloads-section {
      max-width: 1080px; margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .section-header { text-align: center; margin-bottom: 2.5rem; }
    .section-tag {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); border: 1px solid var(--border-gold);
      padding: 4px 16px; border-radius: 2px; margin-bottom: 1rem;
    }
    .section-header h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: var(--gold-pale); font-weight: 700;
      letter-spacing: 0.04em; line-height: 1.25;
    }
    .section-header p {
      font-size: 16px; color: var(--muted-on-dark);
      margin-top: 0.75rem; font-style: italic;
    }

    .downloads-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .dl-card {
      background: var(--leather-dark);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.25s;
      position: relative;
    }
    .dl-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.50), 0 0 0 1px var(--gold-line);
    }

    /* top gold line accent */
    .dl-card::before {
      content: '';
      display: block; height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    }

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

    .dl-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Cinzel', serif; font-size: 11px;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--leather-darkest);
      background: var(--gold);
      padding: 3px 12px; border-radius: 2px;
      margin-bottom: 1.25rem; font-weight: 700;
    }

    .dl-card h3 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 700; color: var(--gold-pale);
      line-height: 1.25; margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }

    .dl-card-edition {
      font-family: 'Cinzel', serif;
      font-size: 12px; color: var(--gold);
      letter-spacing: 0.10em; margin-bottom: 1rem;
    }

    .dl-card p {
      font-size: 15px; color: var(--muted-on-dark);
      line-height: 1.75; margin-bottom: 1.25rem;
    }

    .dl-specs {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .dl-spec {
      background: rgba(201,148,42,0.10);
      border: 1px solid var(--border-dark);
      color: var(--gold-light);
      font-size: 12px; padding: 4px 10px;
      border-radius: 3px;
      font-family: 'Cinzel', serif; letter-spacing: 0.06em;
    }

    .dl-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

    .btn-download {
      background: linear-gradient(135deg, var(--gold) 0%, #8A5F18 100%);
      color: var(--leather-darkest);
      border: none; padding: 12px 22px; border-radius: var(--radius);
      font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700;
      letter-spacing: 0.07em; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 7px;
      transition: all 0.2s;
      box-shadow: 0 3px 14px rgba(201,148,42,0.30);
    }
    .btn-download:hover { transform: translateY(-1px); box-shadow: 0 5px 20px rgba(201,148,42,0.45); }

    .btn-download-ghost {
      background: transparent;
      color: var(--gold-light); border: 1px solid var(--border-gold);
      padding: 12px 22px; border-radius: var(--radius);
      font-family: 'Cinzel', serif; font-size: 13px; font-weight: 600;
      letter-spacing: 0.07em; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 7px;
      transition: all 0.2s;
    }
    .btn-download-ghost:hover { background: rgba(201,148,42,0.12); }

    /* ─────── ABOUT VERSIONS ─────── */
    .about-section {
      background: var(--leather-dark);
      border-top: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark);
      padding: 4rem 1.5rem;
    }
    .about-inner { max-width: 1080px; margin: 0 auto; }

    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
    @media (max-width: 680px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

    .about-col h3 {
      font-family: 'Cinzel', serif;
      font-size: 1.2rem; font-weight: 700;
      color: var(--gold-light); margin-bottom: 1rem;
      letter-spacing: 0.04em;
    }
    .about-col p {
      font-size: 15px; color: var(--muted-on-dark);
      line-height: 1.80; margin-bottom: 0.75rem;
    }
    .about-col p strong { color: var(--text-on-dark); font-weight: 600; }

    /* ─────── HOW TO USE ─────── */
    .howto-section {
      max-width: 1080px; margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .step-card {
      background: var(--leather-dark);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
      position: relative;
    }
    .step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      border: 1px solid var(--gold-line);
      border-radius: 50%;
      font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700;
      color: var(--gold); margin-bottom: 1rem;
    }
    .step-card h4 {
      font-family: 'Cinzel', serif; font-size: 14px;
      font-weight: 700; color: var(--gold-pale);
      margin-bottom: 0.5rem; letter-spacing: 0.03em;
    }
    .step-card p { font-size: 14px; color: var(--muted-on-dark); line-height: 1.65; }

    /* ─────── SEO TEXT ─────── */
    .seo-section {
      background: var(--leather-dark);
      border-top: 1px solid var(--border-dark);
      padding: 3.5rem 1.5rem;
    }
    .seo-inner { max-width: 820px; margin: 0 auto; }
    .seo-inner h2 {
      font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 700;
      color: var(--gold-light); margin-bottom: 0.75rem; margin-top: 2rem;
      letter-spacing: 0.03em;
    }
    .seo-inner h2:first-child { margin-top: 0; }
    .seo-inner p { font-size: 15px; color: var(--muted-on-dark); line-height: 1.80; margin-bottom: 0.75rem; }
    .seo-inner strong { color: var(--text-on-dark); }

    /* ─────── FOOTER ─────── */
    .site-footer {
      background: var(--leather-surface);
      border-top: 1px solid var(--border-gold);
      padding: 3rem 1.5rem 1.5rem;
      color: var(--muted-on-dark);
    }
    .footer-inner { max-width: 1080px; margin: 0 auto; }

    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 2.5rem; padding-bottom: 2rem;
      border-bottom: 1px solid var(--border-dark);
    }
    @media (max-width: 680px) { .footer-top { grid-template-columns: 1fr; gap: 1.5rem; } }

    .footer-brand p { font-size: 14px; line-height: 1.75; margin-top: 0.75rem; font-style: italic; }

    .footer-col h4 {
      font-family: 'Cinzel', serif; font-size: 11px;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col a { color: var(--muted-on-dark); text-decoration: none; font-size: 14px; transition: color 0.15s; }
    .footer-col a:hover { color: var(--gold-light); }

    .footer-bottom {
      padding-top: 1.5rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-bottom p { font-size: 13px; color: rgba(240,230,204,0.32); }
    .footer-bottom a { color: rgba(240,230,204,0.45); text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold-light); }

    /* ─────── COOKIE ─────── */
    .cookie-banner {
      position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
      background: var(--leather-mid);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius); padding: 1rem 1.25rem;
      display: flex; align-items: center; gap: 1rem;
      max-width: 560px; width: calc(100% - 2rem);
      box-shadow: 0 8px 32px rgba(0,0,0,0.50); z-index: 200;
    }
    .cookie-banner p { font-size: 13px; color: var(--muted-on-dark); line-height: 1.5; flex: 1; font-style: italic; }
    .cookie-banner a { color: var(--gold-light); }
    .cookie-banner button {
      background: var(--gold); border: none; color: var(--leather-darkest);
      font-size: 13px; font-weight: 700; padding: 8px 18px;
      border-radius: var(--radius); cursor: pointer; white-space: nowrap;
      font-family: 'Cinzel', serif; letter-spacing: 0.06em;
    }

    /* ─────── ANIMATIONS ─────── */
    @keyframes fadeInUp {
      from { opacity:0; transform: translateY(18px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .fadein   { animation: fadeInUp 0.7s ease both; }
    .fadein-2 { animation: fadeInUp 0.7s ease 0.15s both; }
    .fadein-3 { animation: fadeInUp 0.7s ease 0.30s both; }
    .fadein-4 { animation: fadeInUp 0.7s ease 0.45s both; }
    
    
    
