/* =====================================================================
   INKWELL — Writer & Journalist Portfolio Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images;
   every visual is a CSS gradient, inline SVG, or Unicode/emoji glyph).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the whole look from the :root block below. Swap
   --accent / --accent2 for your own palette, adjust --bg / --surface to
   match, and update --font-head / --font-body plus the Google Fonts
   <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #fffdf8;   /* warm paper background                 */
  --ink:      #1f1b16;   /* near-black ink (headings/body)        */
  --accent:   #8a5a2b;   /* ink-brown (primary accent)            */
  --accent-d: #6f4621;   /* darker brown for hovers               */
  --accent2:  #2c5d63;   /* teal (secondary accent)               */
  --accent2-d:#214a4f;   /* darker teal                           */
  --muted:    #6f675c;   /* muted text                            */
  --surface:  #ffffff;   /* card / panel surface                  */
  --line:     #ece4d6;   /* borders / hairlines                   */
  --soft:     #f7f1e6;   /* soft alternate section background     */

  /* --- Fonts --- */
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* --- Shape & motion --- */
  --radius:    16px;
  --radius-sm: 11px;
  --shadow:    0 10px 30px rgba(31, 27, 22, .07);
  --shadow-lg: 0 24px 60px rgba(31, 27, 22, .13);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1140px;
  --gutter: 24px;
  --header-h: 74px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-d); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(138, 90, 43, .09);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.14rem; color: var(--muted); }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(138, 90, 43, .28);
}
.btn-primary:hover { background: var(--accent-d); color: #fff; box-shadow: 0 12px 30px rgba(138, 90, 43, .36); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-light:hover { background: #fff; color: var(--accent2-d); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(138, 90, 43, .3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 9px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--soft); color: var(--accent); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--soft);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 460px at 88% -8%, rgba(44,93,99,.12), transparent 60%),
    radial-gradient(680px 480px at -5% 108%, rgba(138,90,43,.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--soft) 100%);
  padding: 86px 0 92px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { max-width: 540px; margin-bottom: 30px; color: var(--muted); }
.hero-role {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--accent2);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .88rem; color: var(--muted); }

/* Hero visual — pure CSS "open book / manuscript" mock */
.hero-visual {
  position: relative;
  background: linear-gradient(160deg, #fffaf0, #fff);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
  opacity: .8;
}
.hv-byline {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.hv-byline .hv-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600;
}
.hv-byline b { font-family: var(--font-head); color: var(--ink); display: block; line-height: 1.2; }
.hv-byline span { font-size: .8rem; color: var(--muted); }
.hv-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hv-lines { display: grid; gap: 9px; }
.hv-lines i {
  display: block; height: 9px; border-radius: 4px;
  background: linear-gradient(90deg, var(--line), #f3ead9);
}
.hv-lines i:nth-child(3) { width: 86%; }
.hv-lines i:nth-child(6) { width: 72%; }
.hv-pull {
  margin-top: 18px;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 16px;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--accent2-d);
  font-size: 1.02rem;
  line-height: 1.4;
}
.hero-quill {
  position: absolute; right: 18px; bottom: 16px;
  font-size: 1.6rem; opacity: .5;
}

/* ---------------------------------------------------------------------
   FEATURED-IN STRIP
   --------------------------------------------------------------------- */
.featured { padding: 40px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.featured p { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 44px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  opacity: .7;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------------------------------------------------------------
   ARTICLE / CLIP CARDS
   --------------------------------------------------------------------- */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(138,90,43,.28); }
.article-card .cat {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}
.article-card h3 {
  font-size: 1.32rem;
  line-height: 1.22;
  margin-bottom: 12px;
}
.article-card h3 a { color: var(--ink); }
.article-card h3 a:hover { color: var(--accent); }
.article-card .excerpt { color: var(--muted); font-size: .98rem; margin-bottom: 18px; }
.article-card .meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .84rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.article-card .meta .pub { color: var(--ink); font-weight: 600; }
.article-card .meta .dot { opacity: .5; }

/* ---------------------------------------------------------------------
   FILTER BAR (writing page)
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-chip {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  color: var(--muted);
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------------------------------------------------------------------
   SPLIT (about teaser / image-ish block + content)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 20px;
  min-height: 360px;
  background: linear-gradient(155deg, var(--accent2-d), var(--accent2));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 34px;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(380px 300px at 78% 18%, rgba(255,255,255,.16), transparent 60%);
}
.split-media .sm-inner { position: relative; z-index: 1; text-align: center; }
.split-media .sm-inner .em { font-size: 3rem; margin-bottom: 8px; }
.split-media .sm-inner strong { font-family: var(--font-head); font-size: 1.5rem; display: block; }
.split-media .sm-inner p { color: rgba(255,255,255,.85); margin: 8px 0 0; }

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-head);
  box-shadow: 0 6px 14px rgba(138,90,43,.28);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background: linear-gradient(135deg, var(--accent2-d), var(--accent2));
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  color: #fff;
}
.stat span { color: rgba(255,255,255,.82); font-size: .92rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS / PULL QUOTES
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.quote-card .mark { font-family: var(--font-head); font-size: 2.6rem; line-height: 0; color: var(--accent); display: block; height: 22px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.12rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-style: italic;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 8%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(135deg, var(--accent-d), var(--accent));
  color: #fff;
  border-radius: 26px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(640px 360px at 85% -20%, rgba(44,93,99,.13), transparent 60%),
    linear-gradient(180deg, var(--soft), var(--bg));
  padding: 62px 0 54px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 620px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   EXPERIENCE TIMELINE (about)
   --------------------------------------------------------------------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 13px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 34px 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 6px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.tl-item .yr { font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent2); }
.tl-item h3 { font-size: 1.18rem; margin: 4px 0 2px; }
.tl-item .org { font-weight: 600; color: var(--ink); }
.tl-item p { margin: 6px 0 0; color: var(--muted); font-size: .98rem; }

/* ---------------------------------------------------------------------
   EXPERTISE / VALUE CARDS (about)
   --------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(138,90,43,.25); }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(138,90,43,.12), rgba(44,93,99,.16));
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks + process
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-block .s-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--soft);
  display: grid; place-items: center;
  font-size: 1.9rem;
}
.service-block h3 { margin-bottom: 8px; }
.service-block p { color: var(--muted); }
.deliverables { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.deliverables li {
  font-size: .82rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent);
  background: rgba(138,90,43,.08);
  padding: 6px 13px;
  border-radius: 999px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* Pricing / packages */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); border-width: 2px; }
.price-card .ribbon {
  align-self: flex-start;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-card .price { font-family: var(--font-head); font-size: 2.2rem; color: var(--ink); margin: 6px 0 2px; }
.price-card .price span { font-size: .9rem; color: var(--muted); font-family: var(--font-body); }
.price-card .desc { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.price-list { display: grid; gap: 10px; margin: 0 0 24px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.price-list li::before { content: "\2713"; color: var(--accent2); font-weight: 700; flex: 0 0 auto; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* FAQ (details/summary) */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--muted); }

/* ---------------------------------------------------------------------
   ABOUT — bio portrait block
   --------------------------------------------------------------------- */
.portrait {
  border-radius: 20px;
  min-height: 420px;
  background:
    radial-gradient(300px 240px at 70% 20%, rgba(255,255,255,.2), transparent 60%),
    linear-gradient(155deg, var(--accent-d), var(--accent));
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  color: #fff; text-align: center; padding: 34px;
  position: relative; overflow: hidden;
}
.portrait .initials {
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 12px;
}
.portrait p { color: rgba(255,255,255,.85); margin: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(138,90,43,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c0392b; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #eef6ef;
  border: 1px solid #b9dcc0;
  color: #2f6b43;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: var(--surface);
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }
.info-row a { color: var(--accent); }

.contact-social { display: flex; gap: 12px; margin-top: 4px; }
.contact-social a {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--soft); display: grid; place-items: center;
  font-size: 1.1rem; color: var(--ink);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.contact-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #1a1712;
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.66); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.68); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem; color: #fff;
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.72); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
}
