/*
Theme Name: DailySimplify
Theme URI: https://dailysimplify.in
Description: Clean, fast, AdSense-ready editorial theme for DailySimplify. Presentation + WooCommerce only — all SEO is delegated to Yoast.
Author: DailySimplify
Version: 4.0.2
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: dailysimplify
*/

/* ==========================================================================
   0. TOKENS
   ========================================================================== */
:root {
  /* chrome — near-monochrome so category colors carry the energy */
  --ink:    #16171B;
  --paper:  #FFFFFF;
  --soft:   #F6F6F4;
  --line:   #E6E5E1;
  --muted:  #5C6066;
  --muted-2:#8A8E95;

  /* single brand accent for interactive chrome (links, primary buttons, focus) */
  --brand:  #1A56DB;
  --brand-ink: #103FA6;

  /* category spine — the signature device */
  --cat: var(--ink);

  /* type */
  --display: "Syne", system-ui, sans-serif;
  --body: "DM Sans", system-ui, -apple-system, sans-serif;

  /* scale */
  --step--1: clamp(.82rem, .8rem + .1vw, .88rem);
  --step-0:  clamp(1rem, .97rem + .15vw, 1.08rem);
  --step-1:  clamp(1.15rem, 1.08rem + .35vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.25rem + .7vw, 1.85rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem);

  --measure: 42rem;
  --wide: 72rem;
  --radius: 14px;
  --radius-sm: 9px;
  --gap: clamp(1.2rem, 1rem + 1vw, 2rem);
  --shadow: 0 1px 2px rgba(16,17,27,.04), 0 8px 24px rgba(16,17,27,.06);
}

/* category palette — class sets --cat, components read it */
.cat--ai     { --cat:#7C3AED; }
.cat--earn   { --cat:#15803D; }
.cat--tech   { --cat:#0E7490; }
.cat--acad   { --cat:#B45309; }
.cat--book   { --cat:#9D174D; }
.cat--gadget { --cat:#0891B2; }
.cat--world  { --cat:#475569; }
.cat--def    { --cat:#16171B; }

/* ==========================================================================
   1. RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-ink); }
strong, b { font-weight: 600; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 3px; }

.container { width: min(100% - 2.4rem, var(--wide)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 999; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px; }

/* ==========================================================================
   2. EYEBROW — the category signature
   ========================================================================== */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cat);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.eyebrow::before { content: ""; width: 18px; height: 3px; border-radius: 2px; background: var(--cat); }

/* ==========================================================================
   3. HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.site-header__inner {
  width: min(100% - 2.4rem, var(--wide)); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 64px;
}
.site-logo {
  font-family: var(--display); font-weight: 800; font-size: 1.35rem;
  color: var(--ink); letter-spacing: -.02em; white-space: nowrap;
}
.site-logo span { color: var(--brand); }

.site-nav { margin-left: auto; }
.site-nav__list { list-style: none; display: flex; gap: 1.4rem; padding: 0; margin: 0; align-items: center; }
.site-nav__list a { color: var(--ink); font-weight: 500; font-size: .96rem; padding: .3rem 0; position: relative; }
.site-nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: .85rem; }
.site-cart { position: relative; display: inline-flex; color: var(--ink); }
.site-cart:hover { color: var(--brand); }
.ds-cart-count {
  position: absolute; top: -8px; right: -10px; min-width: 18px; height: 18px; padding: 0 4px;
  font-family: var(--display); font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
  background: var(--brand); color: #fff; border-radius: 999px;
}

.nav-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; color: var(--ink); }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: .7rem 1.25rem; border-radius: 999px; border: 1px solid transparent;
  background: var(--brand); color: #fff; cursor: pointer; transition: transform .12s ease, background .15s ease;
}
.btn:hover { background: var(--brand-ink); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--soft); color: var(--ink); border-color: var(--ink); }
.btn--cat { background: var(--cat); }
.btn--cat:hover { background: var(--cat); filter: brightness(.92); }

/* ==========================================================================
   5. LAYOUT GRID (content + sidebar)
   ========================================================================== */
.layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: var(--gap); padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.layout--full { grid-template-columns: 1fr; }
@media (max-width: 900px) { .layout { grid-template-columns: 1fr; } }

/* ==========================================================================
   6. CARDS
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: var(--gap); }
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card__bar { height: 4px; background: var(--cat); }
.card__media { aspect-ratio: 16/9; background: var(--soft); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--empty { display: grid; place-items: center; font-size: 2.2rem; background: color-mix(in srgb, var(--cat) 9%, var(--soft)); }
.card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__title { font-size: var(--step-1); }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--cat); }
.card__meta { margin-top: auto; font-size: var(--step--1); color: var(--muted); display: flex; gap: .8rem; }

/* lead/hero card (homepage) */
.lead {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: var(--gap);
}
.lead__media { background: var(--soft); min-height: 320px; }
.lead__media img { width: 100%; height: 100%; object-fit: cover; }
.lead__body { padding: clamp(1.4rem, 1rem + 2vw, 2.6rem); display: flex; flex-direction: column; gap: 1rem; justify-content: center; border-left: 4px solid var(--cat); }
.lead__title { font-size: var(--step-3); }
.lead__title a { color: var(--ink); }
.lead__title a:hover { color: var(--cat); }
.lead__excerpt { color: var(--muted); }
@media (max-width: 760px) { .lead { grid-template-columns: 1fr; } .lead__media { min-height: 200px; } .lead__body { border-left: 0; border-top: 4px solid var(--cat); } }

/* section header */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: clamp(2rem,1.5rem+1.5vw,3rem) 0 1.2rem; }
.section-head h2 { font-size: var(--step-2); }
.section-head a { font-weight: 600; font-size: .95rem; }

/* ==========================================================================
   7. SINGLE ARTICLE
   ========================================================================== */
.breadcrumb, .breadcrumb a { font-size: var(--step--1); color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

.article-head { margin-bottom: 1.6rem; }
.article-head h1 { font-size: var(--step-4); margin: .7rem 0 1rem; max-width: 22ch; }
.byline { display: flex; align-items: center; gap: .7rem; font-size: var(--step--1); color: var(--muted); flex-wrap: wrap; }
.byline__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--soft); object-fit: cover; }
.byline strong { color: var(--ink); font-weight: 600; }
.byline .dot::before { content: "•"; margin: 0 .5rem; color: var(--muted-2); }

.article-hero { border-radius: var(--radius); overflow: hidden; margin-bottom: 1.8rem; border: 1px solid var(--line); }

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.15em; }
.prose p, .prose li { font-size: 1.075rem; line-height: 1.8; }
.prose h2 { font-size: var(--step-2); margin-top: 2.2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .4rem; }
.prose img { border-radius: var(--radius-sm); margin-inline: auto; }
.prose blockquote {
  border-left: 4px solid var(--cat); padding: .4rem 0 .4rem 1.2rem; margin-left: 0;
  font-family: var(--display); font-size: 1.2rem; line-height: 1.5; color: var(--ink);
}
.prose figure figcaption { font-size: var(--step--1); color: var(--muted); text-align: center; margin-top: .5rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .98rem; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.prose th { background: var(--soft); font-family: var(--display); }
.prose code { background: var(--soft); padding: .12em .4em; border-radius: 5px; font-size: .9em; }

/* ad slot — always labeled, never disguised as content */
.ad-slot { margin: 2rem auto; max-width: var(--measure); text-align: center; }
.ad-slot__label { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .4rem; }
.ad-slot__box { min-height: 90px; display: grid; place-items: center; background: var(--soft); border: 1px dashed var(--line); border-radius: var(--radius-sm); color: var(--muted-2); font-size: .85rem; }

/* affiliate disclosure box */
.disclosure { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: var(--step--1); color: var(--muted); margin-bottom: 1.6rem; }

/* author box — flexible for named or persona identity */
.author-box {
  display: flex; gap: 1.1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; margin: 2.4rem 0;
  border-left: 4px solid var(--cat);
}
.author-box__avatar { width: 64px; height: 64px; border-radius: 50%; flex: none; background: var(--soft); object-fit: cover; }
.author-box__name { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.author-box__role { font-size: var(--step--1); color: var(--cat); font-weight: 600; margin-bottom: .4rem; }
.author-box__bio { font-size: .96rem; color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.6rem 0; }
.tags a { font-size: var(--step--1); background: var(--soft); color: var(--muted); padding: .35rem .8rem; border-radius: 999px; }
.tags a:hover { background: var(--cat); color: #fff; }

/* ==========================================================================
   8. SIDEBAR / WIDGETS
   ========================================================================== */
.sidebar { display: flex; flex-direction: column; gap: 1.6rem; }
.sb-widget { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.sb-title { font-family: var(--display); font-weight: 700; font-size: 1.02rem; margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 2px solid var(--soft); }
.sb-widget ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.sb-widget li a { color: var(--ink); font-size: .96rem; }
.sb-widget li a:hover { color: var(--brand); }

/* ==========================================================================
   9. PAGINATION
   ========================================================================== */
.ds-page { display: flex; gap: .4rem; justify-content: center; margin: 2.5rem 0; flex-wrap: wrap; }
.ds-page a, .ds-page span {
  font-family: var(--display); font-weight: 700; min-width: 42px; height: 42px;
  display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line); color: var(--ink); padding: 0 .5rem;
}
.ds-page a:hover { border-color: var(--brand); color: var(--brand); }
.ds-page .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: #C9CBD1; margin-top: 3rem; }
.site-footer a { color: #C9CBD1; }
.site-footer a:hover { color: #fff; }
.site-footer__inner { width: min(100% - 2.4rem, var(--wide)); margin-inline: auto; padding: 3rem 0 2rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer__inner { grid-template-columns: 1fr; } }
.footer-brand .site-logo { color: #fff; }
.footer-brand p { color: #9A9DA5; font-size: .92rem; margin-top: .7rem; max-width: 32ch; }
.footer-col h3 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col nav { display: flex; flex-direction: column; gap: .5rem; font-size: .94rem; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar div { width: min(100% - 2.4rem, var(--wide)); margin-inline: auto; padding: 1.1rem 0; font-size: .85rem; color: #8A8E95; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   11. WOOCOMMERCE (light touch — Woo renders its own markup inside .layout)
   ========================================================================== */
.woocommerce-wrap { max-width: var(--wide); margin-inline: auto; }

.woocommerce .button, .woocommerce a.button, .woocommerce button.button {
  background: var(--brand) !important; color: #fff !important; border-radius: 999px !important;
  font-family: var(--display); font-weight: 700; padding: .7rem 1.3rem !important;
}
.woocommerce .button:hover { background: var(--brand-ink) !important; }
.woocommerce ul.products li.product .price { color: var(--ink); font-family: var(--display); }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { border-top-color: var(--brand); }
.woocommerce-product-gallery img { border-radius: var(--radius-sm); }
.single-product .product .price { font-family: var(--display); color: var(--brand-ink); }

/* classic [woocommerce_cart] / [woocommerce_checkout] shortcode layout */
.woocommerce table.shop_table { width: 100%; border-color: var(--line); }
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; float: none; }
.woocommerce-cart-form { width: 100%; }
.woocommerce .cart-collaterals .cross-sells { width: 100%; }
@media (min-width: 768px) {
  .woocommerce-cart-form { display: block; }
  .woocommerce-cart .cart-collaterals { max-width: 420px; margin-left: auto; }
  .woocommerce-checkout #customer_details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* block cart/checkout safety net — don't collapse to mobile in a wide container */
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { max-width: var(--wide); margin-inline: auto; }
.wc-block-components-sidebar-layout { display: flex; gap: 2rem; flex-wrap: wrap; }
.wc-block-cart__main, .wc-block-checkout__main { flex: 1 1 56%; min-width: 300px; }
.wc-block-cart__sidebar, .wc-block-checkout__sidebar { flex: 1 1 300px; }

/* ==========================================================================
   12. MOBILE NAV
   ========================================================================== */
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .site-nav {
    position: fixed; inset: 64px 0 auto 0; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .25s ease; margin: 0;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.2rem 1.2rem; }
  .site-nav__list a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .site-nav__list a::after { display: none; }
}

/* ==========================================================================
   13. UTIL / MISC
   ========================================================================== */
.lead-grid-spacer { height: 1px; }
.entry-content { /* alias if Woo/page content uses it */ }
.page-title { font-size: var(--step-3); margin-bottom: 1.4rem; }
.no-results { padding: 3rem 0; text-align: center; color: var(--muted); }
.search-form { display: flex; gap: .5rem; }
.search-form input[type="search"] { flex: 1; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; }

/* ==========================================================================
   14. ABOUT PAGE COMPONENTS  (.ds-about)
   Placed AFTER .prose so equal-specificity conflicts resolve in About's
   favour by source order. Paste the About markup as plain HTML — no inline
   <style> needed. Edit here once; the About page updates automatically.
   ========================================================================== */
.ds-about { max-width: 760px; margin-inline: auto; }
.ds-about > * { max-width: 100%; }

/* hero */
.ds-about .ds-hero { display: flex; align-items: center; gap: 30px; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 30px 34px; margin: 8px 0 22px; }
.ds-about .ds-hero img { width: 118px; height: 118px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid #fff; box-shadow: 0 4px 18px rgba(16,17,27,.12); margin: 0; }
.ds-about .ds-name { font-family: var(--display); font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; color: var(--ink); }
.ds-about .ds-role { font-family: var(--display); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin: 0 0 12px; }
.ds-about .ds-tagline { font-size: 1rem; color: var(--muted); margin: 0 0 16px; line-height: 1.6; }
.ds-about .ds-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ds-about .ds-tag { font-family: var(--display); font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: #fff; color: var(--brand-ink); border: 1px solid var(--line); }

/* credibility strip */
.ds-about .ds-strip { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin: 0 0 44px; }
.ds-about .ds-strip-item { font-size: .8rem; font-weight: 600; color: var(--brand-ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; display: inline-flex; align-items: center; gap: 7px; }

/* sections */
.ds-about .ds-section { margin: 0 0 38px; }
.ds-about .ds-section h2 { font-family: var(--display); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin: 0 0 14px; padding: 0 0 8px; border-bottom: 2px solid var(--soft); display: flex; align-items: center; gap: .5rem; }
.ds-about .ds-section h2::before { content: ""; width: 18px; height: 3px; border-radius: 2px; background: var(--brand); flex: none; }
.ds-about .ds-section p { font-size: 1rem; color: #2c2e33; margin: 0 0 15px; line-height: 1.8; }
.ds-about .ds-section p:last-child { margin: 0; }
.ds-about a { color: var(--brand); font-weight: 600; text-decoration: none; }
.ds-about a:hover { color: var(--brand-ink); text-decoration: underline; }

/* research list */
.ds-about .ds-process { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 12px; }
.ds-about .ds-process li { display: flex; gap: 12px; font-size: 1rem; color: #2c2e33; line-height: 1.7; margin: 0; }
.ds-about .ds-process svg { flex: none; margin-top: 4px; }
.ds-about .ds-process strong { color: var(--ink); font-weight: 600; }

/* what I cover grid */
.ds-about .ds-covers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 4px; }
.ds-about .ds-cover { --cat: var(--brand); background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.ds-about .ds-cover:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(16,17,27,.10); border-color: transparent; }
.ds-about .ds-cover .bar { height: 4px; background: var(--cat); }
.ds-about .ds-cover .in { padding: 16px 18px; }
.ds-about .ds-cover h3 { font-family: var(--display); font-size: .9rem; font-weight: 700; color: var(--ink); margin: 0 0 5px; }
.ds-about .ds-cover p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.55; }
.ds-about .c-ai { --cat: #7C3AED; }
.ds-about .c-earn { --cat: #15803D; }
.ds-about .c-tech { --cat: #0E7490; }
.ds-about .c-career { --cat: #B45309; }

/* independence + promise */
.ds-about .ds-indie { background: var(--soft); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 12px; padding: 22px 26px; }
.ds-about .ds-indie p { font-size: .95rem; color: #2c2e33; margin: 0; line-height: 1.75; }
.ds-about .ds-promise { background: var(--soft); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 12px; padding: 26px 30px; margin-top: 38px; }
.ds-about .ds-promise .lbl { font-family: var(--display); font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); margin: 0 0 10px; }
.ds-about .ds-promise .q { font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.5; letter-spacing: -.01em; }
.ds-about .ds-promise .sig { font-size: .9rem; color: var(--muted); margin-top: 14px; }

/* contact */
.ds-about .ds-contact { margin-top: 38px; }
.ds-about .ds-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ds-about .ds-contact-card { background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.ds-about .ds-contact-card .l { font-family: var(--display); font-size: .82rem; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.ds-about .ds-contact-card .s { font-size: .8rem; color: var(--muted); margin: 0 0 9px; }

/* cta — inline-block is defensive so buttons never overlap even if flex fails */
.ds-about .ds-cta { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.ds-about .ds-btn { display: inline-block; font-family: var(--display); font-size: .88rem; font-weight: 700; padding: 12px 26px; border-radius: 999px; text-decoration: none; transition: transform .15s ease, background .15s ease; }
.ds-about .ds-btn-primary { background: var(--brand); color: #fff; }
.ds-about .ds-btn-primary:hover { transform: translateY(-2px); background: var(--brand-ink); color: #fff; text-decoration: none; }
.ds-about .ds-btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.ds-about .ds-btn-ghost:hover { transform: translateY(-2px); background: var(--soft); color: var(--ink); text-decoration: none; }

@media (max-width: 600px) {
  .ds-about .ds-hero { flex-direction: column; align-items: flex-start; padding: 22px; gap: 18px; }
  .ds-about .ds-covers { grid-template-columns: 1fr; }
  .ds-about .ds-contact-grid { grid-template-columns: 1fr; }
}
