/* ============================================================
   Demirci & Aksu Hukuk Bürosu — tek stil dosyası
   Palet: fildişi / grafit / bordo, altın yalnızca ince detayda
   Karakter: serifli, keskin köşeli, çizgi-temelli (gölgesiz)
   ============================================================ */

/* 1. Tokens */
:root {
  --ink: #23262B;
  --accent: #7A1F2B;
  --accent-dark: #5E1621;
  --gold: #B08D3E;
  --sand: #D9CDB8;
  --ivory: #F7F4EF;
  --paper: #FFFFFF;
  --muted: #6E6A62;
  --wa: #25D366;
  --radius: 2px;
  --max-w: 1120px;
  --serif: Georgia, "Times New Roman", Times, serif;
}

/* 2. Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
ul[class], ol[class] { list-style: none; }
a { color: var(--accent); }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* 3. Skip link */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 10px 18px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* 4. Type */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: .01em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.18; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.25; }
h3 { font-size: 1.25rem; line-height: 1.35; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .76rem; font-weight: 700; color: var(--accent); margin-bottom: 12px;
}
.rule { width: 56px; height: 2px; background: var(--accent); margin-bottom: 18px; }
.rule-center { margin-inline: auto; }
.rule-gold { background: var(--gold); }

/* 5. Layout */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 8vw, 88px); }
.section-paper { background: var(--paper); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 5vw, 48px); }
.section-head p { color: var(--muted); margin-top: 8px; }

/* 6. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); padding: 13px 24px; min-height: 44px;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-wa { background: var(--paper); border-color: var(--wa); color: var(--ink); }
.btn-wa:hover { background: var(--wa); color: #fff; }
.btn-light { background: #fff; color: var(--accent); }
.btn-light:hover { background: var(--sand); color: var(--ink); }

/* 7. Header & nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 239, .95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: .04em;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand b { color: var(--accent); font-weight: 400; }
.brand small { display: block; margin-top: 2px; font-size: .56rem; letter-spacing: .22em; color: var(--muted); font-family: system-ui, sans-serif; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a:not(.btn) {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .88rem;
  white-space: nowrap; position: relative; padding-block: 6px;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.nav-cta { padding: 10px 16px; }
.nav-toggle { display: none; }
.lang-switch { display: inline-flex; }
.lang-toggle {
  position: relative; display: inline-flex; align-items: center;
  border: 1px solid var(--sand); border-radius: 999px; background: var(--paper);
  padding: 3px; text-decoration: none; transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-opt {
  position: relative; z-index: 1; width: 30px; text-align: center;
  font-size: .7rem; font-weight: 700; color: var(--muted); line-height: 20px;
  transition: color .2s;
}
.lang-opt.is-active { color: #fff; }
.lang-knob {
  position: absolute; top: 3px; bottom: 3px; left: 3px; width: 30px;
  border-radius: 999px; background: var(--accent);
  view-transition-name: lang-knob;
}
.lang-toggle-en .lang-knob { left: auto; right: 3px; }

@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; background: none;
    border: 0; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 2px; width: 100%; background: var(--ink);
    transition: transform .25s, opacity .25s;
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--ivory); padding: 16px 20px 24px;
    border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
    visibility: hidden; opacity: 0; transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .nav-open .nav-links {
    visibility: visible; opacity: 1; transform: none; pointer-events: auto;
    transition: opacity .24s ease, transform .24s ease;
  }
  .nav-links li { opacity: 0; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease; }
  .nav-open .nav-links li { opacity: 1; transform: none; }
  .nav-open .nav-links li:nth-child(1) { transition-delay: .03s }
  .nav-open .nav-links li:nth-child(2) { transition-delay: .06s }
  .nav-open .nav-links li:nth-child(3) { transition-delay: .09s }
  .nav-open .nav-links li:nth-child(4) { transition-delay: .12s }
  .nav-open .nav-links li:nth-child(5) { transition-delay: .15s }
  .nav-open .nav-links li:nth-child(6) { transition-delay: .18s }
  .nav-open .nav-links li:nth-child(7) { transition-delay: .21s }
  .nav-open .nav-links li:nth-child(8) { transition-delay: .24s }
  .nav-links a:not(.btn) { padding: 12px 8px; }
  li.lang-switch { justify-content: center; align-self: center; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

/* 8. Hero — video arka planlı, ortalanmış beyanname */
.hero { position: relative; overflow: hidden; background: var(--ivory); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,244,239,.94), rgba(247,244,239,.86));
}
.hero-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 760px; margin-inline: auto;
  padding: clamp(64px, 10vw, 120px) 20px clamp(40px, 6vw, 64px);
}
.hero-inner p.sub { color: var(--muted); font-size: 1.1rem; max-width: 52ch; margin: 18px auto 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* 9. Credentials şeridi */
.credentials {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
  background: rgba(255,255,255,.6);
}
.cred { text-align: center; padding: 22px 8px; border-left: 1px solid var(--sand); }
.cred:first-child { border-left: 0; }
.cred b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--accent); line-height: 1.2; }
.cred span { color: var(--muted); font-size: .88rem; font-weight: 600; }
@media (max-width: 699px) {
  .credentials { grid-template-columns: 1fr 1fr; }
  .cred:nth-child(3) { border-left: 0; }
  .cred:nth-child(n+3) { border-top: 1px solid var(--sand); }
}

/* Page hero (iç sayfalar) */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--sand); }
.page-hero .container { padding-block: clamp(40px, 6vw, 64px); }
.page-hero p { color: var(--muted); max-width: 58ch; margin-top: 10px; font-size: 1.05rem; }

/* 10. Kartlar */
.cards-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 26px; transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card > svg { width: 40px; height: 40px; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

/* 11. Çalışma alanı kaşifi — dönüşümlü medya satırları */
.areas { display: grid; gap: 16px; }
.area { background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius); display: flex; overflow: hidden; }
.area-media { width: 34%; flex: none; }
.area-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.area:nth-child(even) { flex-direction: row-reverse; }
.area-main { flex: 1; padding: 24px; min-width: 0; }
.area-toggle {
  width: 100%; display: flex; align-items: flex-start; gap: 16px; text-align: left;
  background: none; border: 0; cursor: pointer; font: inherit; color: inherit; padding: 0;
}
.area-head { flex: 1; }
.area-head p { margin-top: 4px; font-size: .95rem; }
.area-teaser { margin-top: 12px; font-size: .92rem; }
.area-teaser b { color: var(--accent); }
.area-body-inner > h4 { font-family: var(--serif); font-weight: 400; font-size: 1.02rem; color: var(--accent); margin-top: 14px; margin-bottom: 4px; }
.area-body-inner ul { list-style: none; padding: 0; }
.area-body-inner li { padding-left: 18px; position: relative; color: #45484E; font-size: .95rem; margin-bottom: 4px; }
.area-body-inner li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.area-body-inner > p { color: #45484E; max-width: 68ch; font-size: .95rem; }
.area-body-inner .btn { margin-top: 16px; }
html.js .area-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.area-body-inner { overflow: hidden; }
html.js .area.open .area-body { grid-template-rows: 1fr; }
html.js .area.open .area-body-inner { padding-top: 4px; }
@media (max-width: 699px) {
  .area, .area:nth-child(even) { flex-direction: column; }
  .area-media { width: 100%; aspect-ratio: 16 / 9; }
}

/* +/− rozetleri (alan + makale + SSS için ortak çizim) */
.area-arrow, .article-arrow {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  color: var(--accent);
  background-color: var(--ivory);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 18px 2.5px, 2.5px 18px;
  background-position: center center, center center;
  background-repeat: no-repeat;
  border: 1px solid var(--sand);
  transition: background-color .2s, color .2s, border-color .2s;
}
.area-toggle:hover .area-arrow, .article-toggle:hover .article-arrow { border-color: var(--gold); }
.area.open .area-arrow, .article.open .article-arrow {
  background-color: var(--accent); color: #fff; border-color: var(--accent);
  background-size: 18px 2.5px, 0 0;
}

/* 12. Süreç / kilometre taşları */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius); padding: 24px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }
@media (max-width: 767px) { .timeline { grid-template-columns: 1fr; } }

/* 13. SSS */
.faq details { background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px; }
.faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 40px; height: 40px; border-radius: 50%;
  color: var(--accent);
  background-color: var(--ivory);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 16px 2.5px, 2.5px 16px;
  background-position: center center, center center;
  background-repeat: no-repeat;
  border: 1px solid var(--sand);
  transition: background-color .2s, color .2s, border-color .2s;
}
.faq summary:hover::after { border-color: var(--gold); }
.faq details[open] summary::after {
  background-color: var(--accent); color: #fff; border-color: var(--accent);
  background-size: 16px 2.5px, 0 0;
}
.faq details p { margin-top: 10px; color: #45484E; max-width: 72ch; }

/* 14. Makaleler */
.articles { display: grid; gap: 16px; }
.article { background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius); padding: 24px; }
.article-toggle {
  width: 100%; display: flex; align-items: flex-start; gap: 16px; text-align: left;
  background: none; border: 0; cursor: pointer; font: inherit; color: inherit; padding: 0;
}
.article-head { flex: 1; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; font-size: .82rem; color: var(--muted); align-items: center; }
.article-meta .chip { border: 1px solid var(--sand); padding: 3px 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
html.js .article-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.article-body-inner { overflow: hidden; }
html.js .article.open .article-body { grid-template-rows: 1fr; }
html.js .article.open .article-body-inner { padding-top: 16px; }
.article-body-inner p { color: #45484E; max-width: 72ch; margin-bottom: 14px; }
.article-body-inner p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.2em; float: left; line-height: .85;
  padding-right: 8px; color: var(--accent);
}
.article-body-inner .disclaimer { font-size: .85rem; color: var(--muted); border-top: 1px solid var(--sand); padding-top: 12px; margin-bottom: 0; }

/* 15. Alıntılar (müvekkil yorumları) */
.quote {
  border-left: 3px solid var(--gold); padding-left: 18px;
  font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: #45484E;
}
.quote-source { display: block; margin-top: 10px; font-family: system-ui, sans-serif; font-style: normal; font-size: .85rem; font-weight: 700; color: var(--muted); }

/* 16. Kurucu ortak / avukat kartları */
.partner-card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius);
  display: flex; gap: 24px; padding: 26px; align-items: flex-start;
}
.partner-card img { width: 200px; height: 200px; object-fit: cover; flex: none; }
.partner-card .role { color: var(--accent); font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.partner-card p { margin-bottom: 6px; }
.partner-card .edu { font-size: .88rem; }
@media (max-width: 649px) {
  .partner-card { flex-direction: column; }
  .partner-card img { width: 100%; height: auto; aspect-ratio: 4/3; }
}
.lawyer-card { text-align: center; }
.lawyer-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.lawyer-card .role { color: var(--accent); font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
.lawyer-card .edu { font-size: .85rem; }
.values-strip { text-align: center; padding-block: clamp(36px, 6vw, 56px); }
.values-strip p { font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--ink); max-width: 40ch; margin-inline: auto; }

/* 17. Hakkımızda görseli */
.about-photo { display: block; border: 1px solid var(--sand); }

/* 18. CTA bandı */
.cta-band {
  background: linear-gradient(rgba(35,38,43,.92), rgba(35,38,43,.92)), url("img/ofis.webp") center/cover;
  color: #fff; border-radius: var(--radius);
  padding: clamp(36px, 6vw, 60px);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { color: #fff; }
.cta-band .rule { background: var(--gold); }
.cta-band p { color: #C9C4BA; margin-top: 6px; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-wa { border-color: #fff; background: transparent; color: #fff; }
.cta-band .btn-wa:hover { background: var(--wa); border-color: var(--wa); }

/* 19. Formlar */
.form-card { background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius); padding: clamp(22px, 4vw, 36px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 12px 14px; min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--accent); outline-offset: 1px; background: var(--paper);
}
.field-full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .88rem; margin-top: 14px; }
.form-success { text-align: center; padding: clamp(24px, 5vw, 40px); }
.form-success svg { width: 56px; height: 56px; margin-bottom: 14px; }
.form-success p { font-size: 1.1rem; font-weight: 600; max-width: 46ch; margin-inline: auto; margin-bottom: 20px; }
@media (max-width: 699px) { .form-grid { grid-template-columns: 1fr; } }

/* 20. İletişim / saatler */
.contact-card { text-align: left; }
.contact-card a { font-weight: 700; word-break: break-word; }
.contact-card .hint { font-size: .85rem; margin-top: 6px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--sand); }
.hours-table th { font-weight: 700; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* 21. Footer */
.site-footer { background: var(--ink); color: #C9C4BA; margin-top: clamp(48px, 8vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 36px; padding-block: 56px 40px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer a { color: #C9C4BA; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer li { margin-bottom: 10px; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand small { color: #8A857B; }
.site-footer p { font-size: .95rem; }
.footer-tagline { color: #8A857B; max-width: 32ch; }
.social-row { display: flex; gap: 14px; margin-top: 16px; }
.social-row a { display: inline-flex; padding: 8px; border: 1px solid rgba(255,255,255,.2); }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 20px; }
.footer-bottom p { font-size: .84rem; color: #8A857B; }
@media (max-width: 899px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* 22. Görünüme girince belirme — yalnızca JS varken gizlenir */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card:hover { transform: none; transition: none; }
  .area-body, .article-body, .nav-toggle span, .nav-links, .nav-links li { transition: none; }
  .faq summary::after, .area-arrow, .article-arrow { transition: none; }
  .hero-video { display: none; }
}

/* 23. Sayfa geçişleri (View Transitions API) */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-out .25s ease both; }
  ::view-transition-new(root) { animation: vt-in .25s ease both; }
  .site-header { view-transition-name: header; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; transform: translateY(8px); } }

/* 24. Mikro etkileşimler */
@media (prefers-reduced-motion: no-preference) {
  .btn:active { transform: scale(.97); }
  html.js .cards-grid > .reveal:nth-child(2), html.js .timeline > .reveal:nth-child(2) { transition-delay: .06s; }
  html.js .cards-grid > .reveal:nth-child(3), html.js .timeline > .reveal:nth-child(3) { transition-delay: .12s; }
  html.js .cards-grid > .reveal:nth-child(4), html.js .timeline > .reveal:nth-child(4) { transition-delay: .18s; }
  html.js .cards-grid > .reveal:nth-child(5) { transition-delay: .24s; }
  html.js .cards-grid > .reveal:nth-child(6) { transition-delay: .3s; }
}
