:root {
  --ink: #11110f;
  --paper: #fffdf7;
  --cream: #f8f3e8;
  --cream-2: #efe7d8;
  --sun: #f5b800;
  --sun-deep: #d99600;
  --muted: #6f6c63;
  --line: rgba(17, 17, 15, .12);
  --container: min(1180px, calc(100vw - 40px));
  --header-h: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
}
* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0, rgba(245,184,0,.14), transparent 28rem), var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }
.topbar {
  height: 40px;
  display: flex;
  align-items: center;
  background: var(--sun);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  overflow: hidden;
}
.topbar-inner { width: var(--container); margin-inline: auto; display: flex; justify-content: space-between; gap: 22px; align-items: center; }
.topbar-marquee { flex: 1; min-width: 0; overflow: hidden; white-space: nowrap; }
.topbar-marquee-track { display: inline-flex; gap: 42px; min-width: max-content; animation: topbarMarquee 24s linear infinite; }
.topbar-marquee-track span::after { content: "\2022"; margin-left: 42px; opacity: .55; }
.topbar-links { display: flex; gap: 22px; white-space: nowrap; }
@keyframes topbarMarquee { to { transform: translateX(-50%); } }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,253,247,.96);
  border-bottom: 1px solid rgba(17,17,15,.08);
  box-shadow: 0 8px 24px rgba(20,18,10,.06);
}
.nav-wrap { width: var(--container); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; min-width: 245px; }
.brand-logo { width: min(330px, 44vw); height: 70px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) { position: relative; font-size: .9rem; font-weight: 760; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--sun-deep);
  transition: right .25s var(--ease);
}
.nav-links a:not(.btn):hover::after { right: 0; }
.nav-item { position: relative; }
.nav-service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: .9rem;
  font-weight: 800;
}
.nav-service-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-item:hover .nav-service-toggle svg, .nav-item:focus-within .nav-service-toggle svg { transform: rotate(180deg); }
.services-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: min(900px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 10px;
  border-radius: 20px;
  background: #080807;
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .services-menu, .nav-item:focus-within .services-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.services-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -24px; height: 24px; }
.service-menu-group { min-width: 0; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.035); }
.service-menu-title { margin-bottom: 12px; color: var(--sun); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-menu-group a { display: block; padding: 8px 0; color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 800; line-height: 1.25; transition: color .18s ease, transform .18s ease; }
.service-menu-group a::after { display: none; }
.service-menu-group a:hover { color: white; transform: translateX(4px); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 10px; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.btn {
  --btn-bg: var(--ink);
  --btn-fg: white;
  --btn-border: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(17,17,15,.13);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(17,17,15,.18); }
.btn-sun { --btn-bg: var(--sun); --btn-fg: var(--ink); --btn-border: var(--sun); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-border: rgba(17,17,15,.28); box-shadow: none; }
.btn-arrow { width: 20px; height: 20px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--sun-deep);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.03; }
h1 { font-size: clamp(2.65rem, 4.35vw, 4.45rem); margin-bottom: 14px; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.7rem); margin-bottom: 10px; }
.lead { font-size: clamp(.95rem, 1.12vw, 1.08rem); color: var(--muted); max-width: 640px; }
.accent { color: var(--sun-deep); }
.service-hero { padding: 48px 0 40px; }
.service-hero-grid { display: grid; grid-template-columns: .94fr .9fr; gap: 58px; align-items: center; }
.service-copy h1 { max-width: 690px; line-height: .98; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.hero-tag { padding: 6px 10px; border-radius: 999px; background: rgba(245,184,0,.16); font-size: .72rem; font-weight: 850; color: var(--ink); }
.service-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}
.service-visual::before { display: none; }
.book-showcase {
  position: relative;
  width: min(250px, 52%);
  aspect-ratio: 2 / 3;
  transform: rotate(-4deg);
  border-radius: 12px 18px 18px 12px;
  box-shadow: 22px 20px 44px rgba(17,17,15,.23);
}
.book-showcase::before {
  content: "";
  position: absolute;
  top: 2.8%;
  right: -11px;
  width: 22px;
  height: 95.2%;
  border-radius: 0 16px 16px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.52), transparent 38%),
    repeating-linear-gradient(90deg, #fff7dc 0 4px, #e5d6b8 4px 7px, #cdbb98 7px 8px);
  box-shadow: inset 7px 0 10px rgba(17,17,15,.16), 9px 8px 16px rgba(17,17,15,.1);
  transform: skewY(3deg);
  z-index: 0;
}
.book-showcase img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.book-showcase.wide {
  width: min(620px, 100%);
  aspect-ratio: auto;
  transform: none;
  border-radius: 0;
  box-shadow: none;
}
.book-showcase.wide::before { display: none; }
.book-showcase.wide img {
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 22px 42px rgba(17,17,15,.18));
}
.section { padding: 58px 0; }
.section-cream {
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), transparent 36%),
    var(--cream);
}
.section-dark { background: #0c0c0b; color: white; }
.section-dark .lead { color: rgba(255,255,255,.66); }
.section-dark .eyebrow { color: var(--sun); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 20px; }
.section-head h2 { max-width: 650px; font-size: clamp(2rem, 3.2vw, 3.25rem); margin-bottom: 0; }
.section-head p { max-width: 390px; margin-bottom: 2px; font-size: .98rem; }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.deliverable-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(28,24,12,.06);
}
.deliverable-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sun);
  font-size: .78rem;
  font-weight: 900;
}
.deliverable-card h3 {
  margin: 1px 0 8px;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.deliverable-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}
.process-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 0;
  align-items: stretch;
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 4%, rgba(245,184,0,.08), transparent 26%),
    #0c0c0b;
  border: 1px solid rgba(17,17,15,.1);
  box-shadow: 0 26px 76px rgba(17,17,15,.18);
  overflow: hidden;
}
.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  padding: 36px 36px 38px;
  border-radius: 24px 0 0 24px;
  background: transparent;
  color: white;
  overflow: hidden;
}
.process-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 58px solid rgba(245,184,0,.12);
}
.process-card::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  opacity: .8;
}
.process-card h2 { max-width: 680px; font-size: clamp(1.85rem, 2.65vw, 2.75rem); margin-bottom: 12px; text-wrap: balance; }
.process-card .lead { max-width: 660px; font-size: .94rem; color: rgba(255,255,255,.7); }
.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}
.process-item {
  position: relative;
  min-height: 0;
  padding: 0 0 0 54px;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.process-item b {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-size: .78rem;
  box-shadow: 0 0 0 6px rgba(245,184,0,.08);
}
.process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 42px;
  bottom: -12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--sun), rgba(245,184,0,.12));
}
.process-item strong { display: block; margin-bottom: 5px; line-height: 1.18; color: #fff; }
.process-item p { margin: 0; color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.45; }
.image-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 430px;
  padding: 18px 4px;
}
.image-strip::before {
  display: none;
}
.strip-book {
  position: relative;
  left: auto;
  top: auto;
  width: clamp(145px, 29%, 185px);
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  transform-origin: center bottom;
  filter: drop-shadow(12px 16px 18px rgba(17,17,15,.22));
}
.strip-book::before {
  display: none;
}
.strip-book::after {
  display: none;
}
.strip-book img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.strip-book:nth-child(1) {
  z-index: 1;
  transform: none;
}
.strip-book:nth-child(2) {
  z-index: 3;
  transform: none;
}
.strip-book:nth-child(3) {
  z-index: 2;
  transform: none;
}
.service-scope {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  height: 100%;
  padding: 38px 36px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(245,184,0,.18), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f6edda 100%);
  border: 1px solid rgba(17,17,15,.08);
  box-shadow: none;
  overflow: hidden;
}
.service-scope::before {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -155px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 54px solid rgba(245,184,0,.18);
}
.scope-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  text-align: center;
}
.scope-kicker::before,
.scope-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--sun);
}
.service-scope h3 {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 16px auto 26px;
  font-size: clamp(1.55rem, 1.85vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-align: center;
}
.scope-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.scope-item {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,17,15,.08);
  box-shadow: 0 14px 34px rgba(28,24,12,.075), inset 0 1px 0 rgba(255,255,255,.75);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.scope-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245,184,0,.36);
  box-shadow: 0 18px 38px rgba(28,24,12,.12), inset 0 1px 0 rgba(255,255,255,.85);
}
.scope-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
}
.scope-item strong {
  display: block;
  font-size: clamp(1.08rem, 1.22vw, 1.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.faq-item { align-self: start; background: white; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(28,24,12,.06); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; border: 0; background: transparent; padding: 18px 20px; text-align: left; font-weight: 900; }
.faq-plus { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--cream); transition: transform .25s ease, background .25s ease; }
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--sun); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 20px 18px; margin: 0; color: var(--muted); font-size: .9rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 44px 52px;
  background: radial-gradient(circle at 4% 100%, rgba(255,255,255,.32) 0 0, transparent 17%), linear-gradient(135deg, #ffc20a 0%, #f4b000 62%, #df9a00 100%);
  box-shadow: 0 22px 60px rgba(17,17,15,.14);
}
.cta-shell::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -150px; top: -210px; border: 58px solid rgba(17,17,15,.08); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .74fr 1.26fr; gap: 42px; align-items: center; }
.cta-shell h2 { font-size: clamp(2.15rem, 3.35vw, 3.7rem); line-height: .98; }
.cta-shell p { max-width: 430px; color: rgba(17,17,15,.82); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px; border-radius: 22px; background: rgba(255,255,255,.92); border: 1px solid rgba(17,17,15,.08); box-shadow: 0 18px 46px rgba(17,17,15,.12); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(17,17,15,.14); background: #fff; border-radius: 12px; padding: 13px 14px; color: var(--ink); outline: none; }
.field textarea { min-height: 88px; resize: vertical; }
.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: .72rem; line-height: 1.45; color: rgba(17,17,15,.72); }
.contact-form .btn { grid-column: 1 / -1; justify-self: start; --btn-bg: var(--ink); --btn-fg: white; --btn-border: var(--ink); }
footer { background: radial-gradient(circle at 18% 0, rgba(251,187,0,.08), transparent 34%), #0c0c0b; color: white; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.22fr .7fr .78fr 1fr; gap: 46px; align-items: start; }
.footer-logo-card { display: inline-flex; align-items: center; width: min(340px, 100%); padding: 12px 18px; border-radius: 18px; background: linear-gradient(135deg, #fffdf6, #f3ead8); border: 1px solid rgba(251,187,0,.22); box-shadow: 0 18px 42px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.85); }
.footer-logo-card img { width: 100%; height: 78px; object-fit: contain; object-position: left center; }
.footer-brand p { color: rgba(255,255,255,.64); max-width: 370px; margin-top: 24px; line-height: 1.7; }
.footer-col h4 { margin-bottom: 18px; font-size: .82rem; text-transform: uppercase; letter-spacing: .15em; color: var(--sun); }
.footer-col a, .footer-col span { display: block; margin: 10px 0; color: rgba(255,255,255,.68); font-size: .9rem; transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: white; transform: translateX(3px); }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); border-radius: 50%; color: white; }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.socials a:hover { background: var(--sun); color: var(--ink); border-color: var(--sun); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .74rem; }
.toast { position: fixed; z-index: 10000; left: 50%; bottom: 28px; transform: translate(-50%, 28px); background: var(--ink); color: white; padding: 14px 18px; border-radius: 999px; box-shadow: 0 20px 55px rgba(17,17,15,.2); opacity: 0; pointer-events: none; transition: .3s var(--ease); font-size: .84rem; font-weight: 800; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 1100px) {
  .service-hero-grid, .process-panel, .cta-grid { grid-template-columns: 1fr; }
  .service-visual { min-height: 360px; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .process-panel { gap: 0; padding: 14px; }
  .process-card { min-height: 0; border-radius: 22px 22px 0 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-item { min-height: 0; }
  .service-scope { min-height: 0; max-width: none; width: 100%; margin-inline: auto; border-radius: 0 0 22px 22px; }
  .image-strip { min-height: 380px; max-width: 680px; width: 100%; margin-inline: auto; }
  .strip-book { width: clamp(140px, 29%, 178px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  :root { --header-h: 72px; --container: min(100% - 30px, 760px); }
  body.menu-open { overflow: hidden; }
  .topbar-inner { justify-content: center; }
  .topbar-links { display: none; }
  .site-header { background: rgba(255,253,247,.96); }
  .brand { min-width: 0; }
  .brand-logo { width: min(275px, 60vw); height: 61px; }
  .site-header { z-index: 1200; }
  .nav-wrap { position: relative; z-index: 2; }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 3;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: calc(var(--header-h) + 30px) 24px 34px;
    border-radius: 0;
    background:
      radial-gradient(circle at 100% 0, rgba(245,184,0,.20), transparent 34%),
      linear-gradient(180deg, #fffdf7 0%, #fff5db 100%);
    box-shadow: none;
    border: 0;
    opacity: 1;
    transform: translateX(100%);
    pointer-events: none;
    overflow-y: auto;
    transition: transform .32s var(--ease);
    z-index: 1;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-item { width: 100%; }
  .nav-links a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(17,17,15,.08);
    font-size: 1.04rem;
  }
  .nav-links .btn {
    width: 100%;
    margin-top: 16px;
    border-bottom: 0;
  }
  .nav-service-toggle {
    min-height: 56px;
    padding: 16px 4px;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(17,17,15,.08);
    font-size: 1.04rem;
  }
  .services-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    margin: 8px 0 14px;
    padding: 12px;
    border-radius: 18px;
    display: none;
  }
  .nav-item:hover .services-menu, .nav-item:focus-within .services-menu { transform: none; display: none; }
  .nav-item.is-services-open .services-menu { display: grid; }
  .nav-item.is-services-open .nav-service-toggle svg { transform: rotate(180deg); }
  .services-menu::before { display: none; }
  .service-hero { padding: 42px 0; }
  .section { padding: 54px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .faq-list, .deliverables-grid, .contact-form { grid-template-columns: 1fr; }
  .cta-shell,
  .contact-form,
  .field,
  .field input,
  .field select,
  .field textarea {
    max-width: 100%;
    min-width: 0;
  }
  .field input,
  .field select,
  .field textarea,
  .publish-form input,
  .publish-form select,
  .publish-form textarea {
    font-size: 16px;
  }
  .process-panel {
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }
  .process-card {
    padding: 28px 22px 22px;
    border-radius: 22px;
  }
  .service-scope {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 24px 18px 18px;
    border-radius: 22px;
    text-align: center;
    justify-items: center;
    align-items: center;
    background:
      radial-gradient(circle at 88% 72%, rgba(245,184,0,.16), transparent 42%),
      linear-gradient(135deg, #fffbf0 0%, #fff6df 100%);
  }
  .service-scope::before {
    right: -120px;
    bottom: -130px;
    width: 260px;
    height: 260px;
    border-width: 38px;
    opacity: .75;
  }
  .scope-kicker { justify-content: center; margin-inline: auto; }
  .service-scope h3 { margin: 0 auto 18px; text-align: center; max-width: 320px; }
  .scope-grid {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .scope-item {
    min-height: 104px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .scope-item span {
    width: 34px;
    height: 34px;
    margin-inline: auto;
    flex: 0 0 auto;
  }
  .scope-item strong {
    font-size: .95rem;
    line-height: 1.12;
  }
  .image-strip { min-height: 320px; gap: 12px; padding: 10px 0; }
  .strip-book { width: clamp(104px, 29%, 145px); }
  .cta-shell { padding: 36px 24px; border-radius: 24px; }
  .field.full, .consent, .contact-form .btn { grid-column: auto; }
  footer { padding: 28px 0 16px; text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    align-items: start;
    justify-items: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
  }
  .footer-logo-card { width: min(252px, 86vw); padding: 7px 11px; border-radius: 14px; }
  .footer-logo-card img { height: 54px; object-position: center; }
  .footer-brand p { max-width: 292px; margin-top: 12px; font-size: .84rem; line-height: 1.42; }
  .footer-col { width: 100%; }
  .footer-col h4 { margin-bottom: 8px; font-size: .68rem; letter-spacing: .13em; }
  .footer-col a, .footer-col span { margin: 6px 0; font-size: .78rem; line-height: 1.4; }
  .footer-col a:hover { transform: none; }
  .footer-col:nth-child(4) { grid-column: 1 / -1; max-width: 300px; }
  .socials { justify-content: center; margin-top: 10px; }
  .socials a { width: 32px; height: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding-top: 14px;
    font-size: .64rem;
    line-height: 1.35;
  }
}
@media (max-width: 580px) {
  :root { --container: min(100% - 24px, 540px); }
  h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .service-visual { min-height: 300px; border-radius: 24px; }
  .book-showcase { width: min(205px, 58%); }
  .process-panel {
    padding: 10px;
    border-radius: 24px;
  }
  .service-scope { padding: 22px 14px 16px; }
  .service-scope h3 {
    max-width: 280px;
    font-size: clamp(1.35rem, 7vw, 1.65rem);
  }
  .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    max-width: 340px;
  }
  .scope-item {
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 16px;
  }
  .image-strip { min-height: 280px; gap: 8px; }
  .strip-book { width: clamp(86px, 29%, 118px); }
  .hero-actions .btn { width: 100%; }
}
