/* ITL Translations - prototype stylesheet
   Draft messaging build. Palette: deep ink navy + gold accent, serif display + sans body. */

/* ---------- tokens ---------- */
:root {
  --ink:      #16263d;   /* brand navy - headings, primary buttons */
  --ink-soft: #2c3e58;
  --body:     #46566b;   /* body copy */
  --muted:    #6b7888;
  --gold:     #9a6b1f;   /* accent on light (eyebrows, rules) */
  --gold-lt:  #d9a94e;   /* accent on dark */
  --parch:    #f6f2ea;   /* warm soft band */
  --cool:     #eef1f5;   /* cool soft band */
  --line:     #e4e1d8;
  --line-cool:#dde3ea;
  --white:    #ffffff;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --shadow: 0 18px 50px -28px rgba(22, 38, 61, .35);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 76px); }
.band-parch { background: var(--parch); }
.band-cool  { background: var(--cool); }
.band-ink   { background: var(--ink); color: #cdd6e2; }
.band-ink h1, .band-ink h2, .band-ink h3 { color: #fff; }

/* eyebrow (no leading dash, per house style) */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px;
}
.band-ink .eyebrow { color: var(--gold-lt); }
.eyebrow.ink { color: var(--ink); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
h2.title { font-size: clamp(28px, 4vw, 40px); }
.lead { font-size: 19px; color: var(--body); margin-top: 18px; }
.band-ink .lead { color: #aeb9c8; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 10px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--primary:hover { background: #0e1b2e; border-color: #0e1b2e; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.band-ink .btn--primary { background: var(--gold-lt); color: var(--ink); border-color: var(--gold-lt); }
.band-ink .btn--primary:hover { background: #e8bd66; border-color: #e8bd66; color: var(--ink); }
.band-ink .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.band-ink .btn--ghost:hover { border-color: #fff; }
.btn .tag-tbd { font-weight: 500; font-size: 11px; opacity: .6; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 13px; position: relative; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 46px; width: auto; }
.brand__divider { width: 1px; height: 30px; background: var(--line); }
.brand__tag { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); max-width: 20ch; line-height: 1.45; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__links a, .nav__toplink {
  font-family: var(--sans); font-weight: 500; font-size: 15.5px; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 8px; transition: background .15s ease, color .15s ease;
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.nav__links a:hover, .nav__toplink:hover { background: var(--cool); color: var(--ink); }
.nav__links a.active, .nav__toplink.active { color: var(--ink); font-weight: 600; }
.nav__toplink .caret { width: 11px; height: 11px; transition: transform .2s ease; }

/* CTA in nav - matches .btn--primary; explicit colour beats generic link rule */
.nav__cta { margin-left: 8px; }
.nav__links .nav__cta .btn { color: #fff; background: var(--ink); border-color: var(--ink); padding: 12px 24px; }
.nav__links .nav__cta .btn:hover { color: #fff; background: #0e1b2e; border-color: #0e1b2e; }

/* dropdown submenu */
.nav__submenu {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  display: none; z-index: 60;
}
.nav__item--has-menu:hover .nav__submenu,
.nav__item--has-menu:focus-within .nav__submenu { display: block; }
/* transparent bridge so the menu doesn't close while crossing the gap */
.nav__submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 14px; }
.nav__submenu a { display: block; font-size: 15px; padding: 9px 13px; border-radius: 7px; color: var(--ink-soft); font-weight: 500; }
.nav__submenu a:hover { background: var(--cool); color: var(--ink); }
.nav__submenu-all { font-weight: 600; color: var(--gold) !important; border-bottom: 1px solid var(--line); border-radius: 0 !important; margin-bottom: 5px; padding-bottom: 11px !important; }
.nav__submenu-all:hover { background: transparent !important; color: var(--ink) !important; }

.nav__toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: 9px;
  width: 44px; height: 42px; cursor: pointer; padding: 0;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; transition: .2s;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .brand__tag, .brand__divider { display: none; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 22px; box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a, .nav__toplink { padding: 12px 14px; font-size: 17px; width: 100%; justify-content: space-between; }
  /* on mobile, the index pages replace the dropdown - top-level links navigate there */
  .nav__submenu { display: none !important; }
  .nav__toplink .caret { display: none; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(32px, 4.5vw, 64px) clamp(24px, 3.5vw, 48px); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5.5vw, 80px);
  align-items: center;
}
.hero h1 { font-size: clamp(27px, 3.4vw, 39px); line-height: 1.03; color: var(--ink); }
.hero h1 .hl { color: var(--gold); }   /* gold "We used AI to save time" incl. quotes */
.hero__body { font-size: 16px; margin: 16px 0 0; max-width: 32em; }
.hero .cta-row { margin-top: 28px; }

/* hero testimonial - flush with content's left edge */
.hero__quote {
  margin: 26px 0 0; padding: 0; border: 0;
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-soft); line-height: 1.4;
  max-width: 34em;
}
.hero__quote .qmark { color: var(--gold); font-style: normal; font-weight: 600; }
.hero__quote cite { display: block; font-family: var(--sans); font-style: normal; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-top: 8px; letter-spacing: .02em; }

/* hero artwork (placeholder portrait) */
.hero__art { position: relative; }
.artframe {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #1b2f4c 0%, #16263d 60%, #101d30 100%);
  aspect-ratio: 1 / 1; box-shadow: var(--shadow);
  display: grid; place-items: end center;
}
.artframe .silhouette { width: 70%; height: auto; align-self: end; }
.art-caption { text-align: center; margin-top: 18px; }
.art-caption strong { display: block; font-family: var(--serif); font-size: 19px; color: var(--ink); }
.art-caption span { font-size: 14px; color: var(--muted); }
.art-note {
  position: absolute; left: 14px; top: 12px;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* ---------- logo bar ---------- */
.logobar { border-top: 1px solid var(--line); margin-top: clamp(14px, 2vw, 24px); padding-block: 16px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logobar__track { display: flex; align-items: center; gap: clamp(44px, 6vw, 84px); width: max-content; animation: logo-marquee 30s linear infinite; }
.logobar:hover .logobar__track { animation-play-state: paused; }
.logobar__track img { height: 46px; width: auto; opacity: .62; filter: grayscale(1); transition: opacity .2s ease; }
.logobar__track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes logo-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logobar__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- problem (without / with) ---------- */
.islands { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.island { padding: 34px; border-radius: var(--radius); }
.island h3 { font-size: 13px; font-family: var(--sans); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.island p { font-size: 16.5px; }
.island--bad { background: #fff; border: 1px solid var(--line); }
.island--bad h3 { color: var(--muted); }
.island--bad p { color: #5d6473; }
.island--good { background: var(--ink); border: 1px solid var(--ink); }
.island--good h3 { color: var(--gold-lt); }
.island--good p { color: #d3dbe6; }
.island ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.island li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.45; }
.island li .m { flex: none; font-weight: 700; margin-top: 1px; }
.island--bad li { color: #5d6473; }
.island--bad li .m { color: #a4502f; }
.island--good li { color: #d3dbe6; }
.island--good li .m { color: var(--gold-lt); }

/* ---------- feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.cards--quad { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px) { .cards--quad { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .18s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.band-cool .card, .band-parch .card { border-color: var(--line-cool); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__ico { width: 44px; height: 44px; border-radius: 11px; background: var(--cool); color: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.card__ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 16px; }
.card__link { font-family: var(--sans); font-weight: 600; font-size: 14.5px; color: var(--gold); margin-top: 16px; display: inline-flex; gap: 6px; align-items: center; }
.card__tag { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

/* ---------- proof stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 30px; }
.stat__num { font-family: var(--serif); font-size: clamp(38px, 5vw, 54px); color: var(--gold-lt); line-height: 1; }
.stat__label { font-size: 15px; margin-top: 10px; color: #aeb9c8; }

/* ---------- testimonial (full-width, scattered) ---------- */
.tmonial { text-align: center; max-width: 820px; margin-inline: auto; }
.tmonial__mug {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 24px;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 28px;
  background: var(--ink); color: #fff; border: 3px solid var(--gold-lt);
}
.tmonial__quote { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.32; color: var(--ink); }
.band-ink .tmonial__quote { color: #fff; }
.tmonial__who { font-family: var(--sans); font-size: 15px; margin-top: 22px; color: var(--muted); }
.tmonial__who strong { color: var(--ink); font-weight: 600; }
.band-ink .tmonial__who strong { color: #fff; }

/* ---------- AI stance split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.stance-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.stance-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; }
.stance-list .dot { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(154,107,31,.13); color: var(--gold); display: grid; place-items: center; margin-top: 2px; font-size: 13px; }
.stance-list--risk .dot { background: rgba(164,80,47,.12); color: #a4502f; font-weight: 700; }
.stance-list--risk li strong { color: var(--ink); font-weight: 600; }

/* AI illustration */
.ai-art { border-radius: var(--radius); background: var(--cool); padding: 30px; box-shadow: var(--shadow); }
.ai-flow { display: flex; align-items: center; gap: 16px; }
.ai-node { flex: 1; border-radius: 12px; padding: 22px 18px; text-align: center; }
.ai-node--ai { background: #fff; border: 1px solid var(--line-cool); }
.ai-node--human { background: var(--ink); color: #fff; }
.ai-node .tag { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ai-node--ai .tag { color: var(--gold); }
.ai-node--human .tag { color: var(--gold-lt); }
.ai-node .big { font-family: var(--serif); font-size: 30px; margin: 8px 0 4px; color: var(--ink); }
.ai-node--human .big { color: #fff; }
.ai-node small { font-size: 13px; color: var(--muted); }
.ai-node--human small { color: #aeb9c8; }
.ai-arrow { color: var(--gold); flex: none; }

/* ---------- lead magnet section ---------- */
.lm { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.lm__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.lm__doc { aspect-ratio: 16/10; border-radius: 10px; background: linear-gradient(150deg,#20344f,#16263d); display: grid; place-items: center; margin-bottom: 20px; }
.lm__doc span { font-family: var(--serif); font-size: 34px; color: rgba(255,255,255,.4); }
.lm__placeholder { color: var(--muted); font-size: 15px; }

/* ---------- breadcrumbs ---------- */
.crumb-bar { border-bottom: 1px solid var(--line); }
.crumb-bar .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; padding-block: 13px; font-size: 13.5px; color: var(--muted); }
.crumb-bar a { color: var(--muted); font-weight: 500; }
.crumb-bar a:hover { color: var(--ink); }
.crumb-bar .sep { color: #c3c8cf; }
.crumb-bar .cur { color: var(--ink); font-weight: 600; }

/* ---------- leaf-page hero (centered) ---------- */
.leaf-hero { padding-block: clamp(34px, 5vw, 60px) clamp(20px, 4vw, 40px); text-align: center; }
.leaf-hero .eyebrow { display: block; }
.leaf-hero h1 { font-size: clamp(32px, 5vw, 50px); max-width: 16ch; margin: 0 auto; }
.leaf-hero p { font-size: 18px; max-width: 46ch; margin: 22px auto 0; }
.leaf-hero .cta-row { justify-content: center; margin-top: 30px; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }

/* ---------- blog ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.post { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .18s ease, box-shadow .2s ease; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__img { aspect-ratio: 16/9; background: linear-gradient(150deg, #20344f, #16263d); display: grid; place-items: center; }
.post__img span { font-family: var(--serif); font-size: 30px; color: rgba(255,255,255,.32); }
.post__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; gap: 10px; }
.post__meta .date { color: var(--muted); font-weight: 600; }
.post h3 { font-size: 20px; line-height: 1.22; margin-bottom: 10px; }
.post p { font-size: 15.5px; }
.post__link { margin-top: auto; padding-top: 16px; font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.contact-aside { background: var(--ink); color: #cdd6e2; border-radius: var(--radius); padding: 36px; }
.contact-aside h3 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.contact-aside ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; font-size: 15.5px; }
.contact-aside li { display: flex; gap: 12px; align-items: flex-start; }
.contact-aside .dot { color: var(--gold-lt); }

/* ---------- footer ---------- */
.site-footer { background: #101d30; color: #93a1b3; padding-block: 56px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #93a1b3; display: block; padding: 5px 0; font-size: 15px; }
.site-footer a:hover { color: #fff; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-blurb { font-size: 15px; margin-top: 18px; max-width: 32ch; color: #93a1b3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #6c7d92; }

/* ---------- final cta ---------- */
.finalcta { text-align: center; }
.finalcta h2 { font-size: clamp(30px, 4.5vw, 46px); max-width: 18ch; margin-inline: auto; }
.finalcta .cta-row { justify-content: center; margin-top: 30px; }

/* ---------- modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(13,22,36,.6);
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 18px; max-width: 560px; width: 100%;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5); overflow: hidden; position: relative;
  max-height: 92vh; overflow-y: auto;
}
.modal__top { background: var(--ink); padding: 34px 36px; color: #fff; }
.modal__top .eyebrow { color: var(--gold-lt); }
.modal__top h2 { color: #fff; font-size: 27px; }
.modal__body { padding: 30px 36px 36px; }
.modal__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 13px; }
.modal__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.modal__list .dot { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(154,107,31,.13); color: var(--gold); display: grid; place-items: center; margin-top: 2px; font-size: 13px; }
.modal__quote { background: var(--parch); border-radius: 12px; padding: 20px 22px; font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--ink-soft); margin-bottom: 24px; }
.modal__quote cite { display: block; font-family: var(--sans); font-style: normal; font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 8px; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 0; color: #fff; font-size: 20px; cursor: pointer; line-height: 1;
}
.modal__close:hover { background: rgba(255,255,255,.3); }
.modal .btn { width: 100%; justify-content: center; }

/* ---------- prototype ribbon ---------- */
.proto-flag {
  position: fixed; bottom: 14px; left: 14px; z-index: 80;
  background: var(--ink); color: #fff; font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px;
  box-shadow: var(--shadow); opacity: .82;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero__grid, .islands, .split, .lm, .contact-grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .island, .card, .contact-aside { padding: 24px; }
  .ai-flow { flex-direction: column; }
  .ai-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WordPress additions (single post + blog images) ---------- */
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post h3 a { color: var(--ink); }
.post h3 a:hover { color: var(--gold); }

/* single post */
.post-hero .post-meta { font-size: 13.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin: 18px 0 0; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.post-hero .post-meta .date { color: var(--muted); font-weight: 600; }
.post-content { max-width: 720px; margin-inline: auto; font-size: 17.5px; }
.post-content > *:first-child { margin-top: 0; }
.post-content h2 { font-size: clamp(24px, 3vw, 32px); margin: 1.6em 0 .5em; }
.post-content h3 { font-size: 22px; margin: 1.5em 0 .5em; }
.post-content h4 { font-size: 18px; margin: 1.4em 0 .5em; }
.post-content p { margin: 0 0 1.15em; }
.post-content ul, .post-content ol { margin: 0 0 1.15em; padding-left: 1.3em; display: grid; gap: 8px; }
.post-content li { line-height: 1.55; }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--ink); }
.post-content img { border-radius: var(--radius); margin: 1.5em auto; }
.post-content blockquote { border-left: 3px solid var(--gold-lt); margin: 1.6em 0; padding: 4px 0 4px 22px; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-soft); }
.post-content figure { margin: 1.5em 0; }
.post-content figcaption { font-size: 13.5px; color: var(--muted); text-align: center; margin-top: 8px; }
.featured-wrap { max-width: 860px; margin: 0 auto clamp(28px,4vw,44px); }
.featured-wrap img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.post-back { max-width: 720px; margin: 34px auto 0; }
.post-back a { font-weight: 600; font-size: 14.5px; color: var(--gold); }

/* ---------- editable testimonials: real mugshot photo ---------- */
.tmonial__mug--photo { padding: 0; overflow: hidden; background: var(--ink); }
.tmonial__mug--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
/* editable hero portrait image */
.artframe > img.hero-portrait { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
