
  :root {
    --red: #D62828;
    --red-deep: #A41E1E;
    --ink: #1A1714;
    --ink-soft: #4A443E;
    --paper: #FBF8F3;
    --paper-warm: #F4EDE2;
    --line: #E2D9CB;
    --line-strong: #1A1714;
    --white: #FFFFFF;
    --max: 1240px;
    --gut: clamp(20px, 4vw, 56px);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

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

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  ::selection { background: var(--red); color: var(--white); }

  a { color: inherit; text-decoration: none; }

  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gut);
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
  }
  .eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
  }

  h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; }

  /* ============ HEADER / NAV ============ */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 248, 243, 0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .brand {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.55em;
  }
  .brand .dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
  }
  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .nav-links a {
    position: relative;
    color: var(--ink-soft);
    transition: color 0.2s ease;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.25s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6em 1.3em;
    border: 1.5px solid var(--line-strong);
    border-radius: 100px;
    transition: all 0.2s ease;
  }
  .nav-cta:hover { background: var(--ink); color: var(--paper); }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .burger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s;
  }

  /* ============ HERO ============ */
  .hero {
    padding: clamp(48px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: end;
  }
  .hero-eyebrow { margin-bottom: 1.8rem; }
  .hero h1 {
    font-size: clamp(2.9rem, 8.5vw, 6.3rem);
    line-height: 0.95;
  }
  .hero h1 .accent { color: var(--red); font-style: italic; font-weight: 500; }
  .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--ink-soft);
    max-width: 32ch;
    margin-top: 1.8rem;
    line-height: 1.5;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.4rem;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.95em 1.7em;
    border-radius: 100px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.22s ease;
  }
  .btn-primary { background: var(--red); color: var(--white); }
  .btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
  .btn-ghost { border-color: var(--line-strong); color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }
  .btn .arrow { transition: transform 0.22s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: 22px;
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    overflow: hidden;
  }
  .hero-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.85;
  }
  .hero-card .label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(251,248,243,0.55);
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
  .hero-card .quote {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    line-height: 1.3;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
  }
  .hero-card .who {
    margin-top: 1.6rem;
    font-size: 0.9rem;
    color: rgba(251,248,243,0.7);
    position: relative;
    z-index: 2;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: clamp(40px, 6vw, 72px);
    border-top: 1px solid var(--line);
  }
  .stat {
    padding: 1.8rem 0;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: none; }
  .stat .num {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
  }
  .stat .num span { color: var(--red); }
  .stat .desc {
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin-top: 0.5rem;
    max-width: 24ch;
  }

  /* ============ SECTION SCAFFOLD ============ */
  section { scroll-margin-top: 90px; }
  .sec-pad { padding: clamp(60px, 9vw, 120px) 0; }
  .sec-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
  }
  .sec-num {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--red);
    font-weight: 600;
    padding-top: 0.5rem;
    white-space: nowrap;
  }
  .sec-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  /* ============ O MNIE ============ */
  #omnie { border-bottom: 1px solid var(--line); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }
  .about-portrait {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    background:
      radial-gradient(circle at 30% 20%, rgba(214,40,40,0.12), transparent 55%),
      linear-gradient(155deg, var(--paper-warm), #E9DECB);
    border: 1px solid var(--line);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .about-portrait .mono {
    font-family: var(--serif);
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 600;
    color: var(--red);
    opacity: 0.16;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.04em;
  }
  .about-portrait .tag {
    position: relative;
    z-index: 2;
    margin: 1.4rem;
    background: var(--white);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-size: 0.82rem;
    box-shadow: 0 8px 30px rgba(26,23,20,0.1);
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .about-portrait .tag .pip { width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
  .about-portrait .tag strong { font-weight: 600; }

  .about-body p {
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
    line-height: 1.65;
  }
  .about-body p.lead {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 1.6rem;
  }
  .about-body p.lead em { color: var(--red); font-style: italic; }
  .credentials {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 0.9rem;
  }
  .credentials li {
    display: flex;
    gap: 0.9rem;
    font-size: 0.95rem;
    color: var(--ink);
    align-items: baseline;
  }
  .credentials li::before {
    content: "—";
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ============ OBSZARY ============ */
  #obszary { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .area {
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(28px, 3.5vw, 42px);
    transition: background 0.25s ease, transform 0.25s ease;
    position: relative;
  }
  .area:hover { background: var(--white); }
  .area .idx {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
  }
  .area .ico {
    width: 46px;
    height: 46px;
    margin: 1.2rem 0 1.3rem;
    color: var(--red);
  }
  .area h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
  }
  .area p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ============ OFERTA ============ */
  #oferta { border-bottom: 1px solid var(--line); }
  .offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
  .offer {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(26px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    background: var(--white);
  }
  .offer:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(26,23,20,0.08); }
  .offer.featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .offer.featured .offer-name,
  .offer.featured .price { color: var(--paper); }
  .offer.featured .offer-desc,
  .offer.featured .offer-feats li { color: rgba(251,248,243,0.78); }
  .offer-badge {
    align-self: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    padding: 0.35em 0.85em;
    border-radius: 100px;
    margin-bottom: 1.2rem;
  }
  .offer-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }
  .offer-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.5rem; min-height: 2.6em; }
  .price {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .price .unit { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
  .offer.featured .price .unit { color: rgba(251,248,243,0.6); }
  .offer-feats {
    list-style: none;
    margin: 1.6rem 0 2rem;
    display: grid;
    gap: 0.7rem;
    flex-grow: 1;
  }
  .offer-feats li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
  }
  .offer-feats li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
  .offer.featured .offer-feats li svg { color: #ff8a8a; }
  .offer .btn { justify-content: center; width: 100%; }
  .offer.featured .btn-ghost { border-color: rgba(251,248,243,0.3); color: var(--paper); }
  .offer.featured .btn-ghost:hover { background: var(--paper); color: var(--ink); }

  /* ============ OPINIE ============ */
  #opinie { background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--ink); }
  #opinie .eyebrow { color: #ff8a8a; }
  #opinie .eyebrow::before { background: #ff8a8a; }
  #opinie .sec-num { color: #ff8a8a; }
  #opinie .sec-title { color: var(--paper); }
  .reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  .review {
    border: 1px solid rgba(251,248,243,0.16);
    border-radius: 18px;
    padding: clamp(26px, 3vw, 38px);
    background: rgba(251,248,243,0.03);
  }
  .review .stars { color: var(--red); letter-spacing: 0.1em; margin-bottom: 1.2rem; font-size: 1rem; }
  .review blockquote {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.45;
    color: var(--paper);
  }
  .review .author {
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: rgba(251,248,243,0.7);
  }
  .review .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
  }
  .review .author strong { color: var(--paper); font-weight: 600; }

  /* ============ KONTAKT ============ */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
  }
  .contact-intro h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.4rem; }
  .contact-intro p {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 2.4rem;
    max-width: 38ch;
  }
  .contact-list { list-style: none; display: grid; gap: 1.5rem; }
  .contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-list .ci {
    width: 44px; height: 44px;
    border: 1.5px solid var(--line-strong);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    flex-shrink: 0;
  }
  .contact-list .ct-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); font-weight: 600; }
  .contact-list .ct-val { font-size: 1.05rem; font-weight: 500; color: var(--ink); }
  .contact-list a.ct-val:hover { color: var(--red); }

  form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(28px, 4vw, 44px);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .field { margin-bottom: 1.3rem; }
  .field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .field label .req { color: var(--red); }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.98rem;
    color: var(--ink);
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 0.85em 1em;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
  }
  .field textarea { resize: vertical; min-height: 120px; }
  .form-consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 1.6rem;
    line-height: 1.45;
  }
  .form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
  form .btn-primary { width: 100%; justify-content: center; }
  .form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-top: 1rem;
  }
  .form-success {
    display: none;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 1.4rem;
  }
  .form-success.show { display: block; }
  .form-success strong { color: var(--red); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    padding: clamp(48px, 6vw, 72px) 0 2rem;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
  }
  .foot-brand .brand { font-size: 1.4rem; margin-bottom: 1rem; }
  .foot-brand p { font-size: 0.92rem; color: var(--ink-soft); max-width: 34ch; line-height: 1.6; }
  .foot-col h4 { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); margin-bottom: 1.1rem; font-weight: 700; }
  .foot-col ul { list-style: none; display: grid; gap: 0.7rem; }
  .foot-col a { font-size: 0.92rem; color: var(--ink); transition: color 0.2s; }
  .foot-col a:hover { color: var(--red); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
  }

  /* ============ REVEAL ANIM ============ */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; align-items: start; }
    .hero-card { margin-top: 0.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-portrait { max-width: 420px; }
    .contact-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .offers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .reviews { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 640px) {
    .nav-links, .nav-cta { display: none; }
    .nav-links.open {
      display: flex;
      position: absolute;
      top: 72px; left: 0; right: 0;
      flex-direction: column;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      padding: 1.4rem var(--gut);
      gap: 1.3rem;
    }
    .burger { display: flex; }
    .hero-stats { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: none; }
    .areas-grid { grid-template-columns: 1fr; }
    .sec-head { grid-template-columns: 1fr; gap: 0.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
  }


/* ---- blog (generated) ---- */
.blog-main{padding-top:96px}
.blog-wrap{max-width:760px;margin:0 auto;padding:0 var(--gut)}
.blog-hero{max-width:900px;margin:0 auto;padding:56px var(--gut) 8px}
.blog-eyebrow{display:inline-block;font-family:var(--sans);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--red);font-weight:600;margin-bottom:14px}
.blog-hero h1{font-family:var(--serif);font-weight:600;font-size:clamp(2rem,4.6vw,3.1rem);line-height:1.08;color:var(--ink);letter-spacing:-.02em}
.blog-lead{font-family:var(--sans);font-size:1.15rem;line-height:1.7;color:var(--ink-soft);margin-top:18px}
.blog-meta{font-family:var(--sans);font-size:.85rem;color:var(--ink-soft);margin-top:18px;display:flex;gap:14px;flex-wrap:wrap;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:14px 0}
.article{font-family:var(--sans);font-size:1.06rem;line-height:1.8;color:var(--ink-soft);padding:8px 0 24px}
.article h2{font-family:var(--serif);font-weight:600;font-size:clamp(1.4rem,2.6vw,1.9rem);color:var(--ink);margin:38px 0 14px;line-height:1.2;letter-spacing:-.01em}
.article h3{font-family:var(--sans);font-weight:700;font-size:1.12rem;color:var(--ink);margin:26px 0 10px}
.article p{margin:0 0 18px}
.article ul,.article ol{margin:0 0 18px;padding-left:1.3em}
.article li{margin:0 0 9px}
.article a{color:var(--red);text-decoration:underline;text-underline-offset:2px}
.article strong{color:var(--ink);font-weight:600}
.faq{border-top:1px solid var(--line);margin-top:36px;padding-top:8px}
.faq h2{margin-bottom:6px}
.faq details{border-bottom:1px solid var(--line);padding:14px 0}
.faq summary{font-family:var(--sans);font-weight:600;color:var(--ink);cursor:pointer;list-style:none;font-size:1.03rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";float:right;color:var(--red);font-weight:700}
.faq details[open] summary::after{content:"–"}
.faq p{margin:12px 0 2px;font-family:var(--sans);color:var(--ink-soft)}
.cta-band{background:var(--paper-warm);border:1px solid var(--line);border-radius:18px;padding:32px;margin:40px 0;text-align:center}
.cta-band h3{font-family:var(--serif);font-weight:600;font-size:1.5rem;color:var(--ink);margin-bottom:8px}
.cta-band p{font-family:var(--sans);color:var(--ink-soft);margin-bottom:18px}
.related{border-top:1px solid var(--line);margin-top:40px;padding-top:24px}
.related h2{font-family:var(--serif);font-weight:600;font-size:1.4rem;color:var(--ink);margin-bottom:16px}
.related a{display:block;font-family:var(--sans);color:var(--ink);text-decoration:none;padding:12px 0;border-bottom:1px solid var(--line);font-weight:500}
.related a:hover{color:var(--red)}
.backlink{display:inline-block;font-family:var(--sans);color:var(--ink-soft);text-decoration:none;margin:24px 0;font-size:.95rem}
.backlink:hover{color:var(--red)}
.blog-index-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:22px;padding:24px 0 64px}
.blog-card{display:block;background:var(--white);border:1px solid var(--line);border-radius:16px;padding:26px;text-decoration:none;transition:transform .2s,box-shadow .2s}
.blog-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(26,23,20,.08)}
.blog-card .cat{font-family:var(--sans);font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:var(--red);font-weight:600}
.blog-card h2{font-family:var(--serif);font-weight:600;font-size:1.22rem;color:var(--ink);margin:10px 0 8px;line-height:1.25}
.blog-card p{font-family:var(--sans);font-size:.95rem;line-height:1.6;color:var(--ink-soft)}
