@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --ink: #030812;
  --ink-2: #050b15;
  --bone: #f0eee9;
  --bone-dim: #b8b6b0;
  --violet: #a000ff;
  --field: #7a7e78;
  --line: rgba(240,238,233,.16);
  --line-soft: rgba(240,238,233,.09);
  --ui: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--ink); color: var(--bone); }
body { font-family: var(--mono); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* ---------- shared header ---------- */
.site-shell { min-height: 100vh; background: radial-gradient(circle at 50% 35%, rgba(23,31,45,.28), transparent 45%), var(--ink); }
.site-header {
  position: relative;
  height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line-soft);
  z-index: 20;
}
.header-logo {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo img { width: 170px; height: auto; display: block; }
.menu-trigger {
  grid-column: 3;
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}
.menu-trigger .label {
  font-family: var(--ui);
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-icon { width: 28px; height: 18px; display: grid; align-content: space-between; }
.menu-icon span { display: block; height: 2px; background: var(--violet); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,8,18,.985);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.menu-overlay-inner {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 112px 1fr auto;
  padding: 0 5vw 4vw;
}
.menu-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.menu-top img { grid-column: 2; width: 170px; }
.menu-close {
  grid-column: 3;
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--bone);
  font-family: var(--ui);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 15px;
}
.menu-links {
  align-self: center;
  width: min(820px, 88vw);
  margin: 0 auto;
}
.menu-links a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: clamp(30px, 4vw, 58px);
  transition: color .2s ease, padding .2s ease;
}
.menu-links a:hover { color: var(--violet); padding-left: 10px; }
.menu-links .num { color: var(--violet); font-size: 12px; font-family: var(--mono); letter-spacing: .08em; }
.menu-links .arrow { font-size: 16px; color: var(--violet); }
.menu-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--bone-dim);
  font-family: var(--ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* ---------- intro ---------- */
.intro-page {
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.intro-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  background: #000;
}
.intro-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 24%, rgba(0,0,0,.08) 64%, rgba(0,0,0,.2) 100%);
}
.intro-logo-button {
  position: relative;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  padding: 28px;
  pointer-events: none;
}
.intro-logo-button img {
  width: clamp(205px, 21vw, 305px);
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
}
.intro-page.intro-ready .intro-logo-button {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.intro-page.intro-ready .intro-logo-button img {
  animation: logo-nudge 2.6s ease-in-out .7s infinite;
}
.intro-logo-button:hover img {
  animation: none !important;
  transform: translateY(-3px) scale(1.025);
}
.intro-logo-button:focus-visible { outline: 1px solid var(--violet); outline-offset: 10px; }
@keyframes logo-nudge {
  0%, 74%, 100% { transform: translateY(0); }
  82% { transform: translateY(-7px); }
  89% { transform: translateY(1px); }
  95% { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .intro-page.intro-ready .intro-logo-button img { animation: none; }
}

/* ---------- agency ---------- */
.agency-main {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 6vh 5vw 0;
}
.dictionary-wrap {
  align-self: center;
  justify-self: center;
  width: min(650px, 88vw);
  text-align: left;
  padding: 1.5vh 0 5vh;
}
.dictionary-entry { width: fit-content; margin: 0 auto; min-width: min(520px, 88vw); }
.dictionary-word {
  margin: 0 0 14px;
  text-align: left;
  font-family: var(--mono);
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
.dictionary-pronunciation { color: var(--bone-dim); font-size: clamp(12px, 1.1vw, 16px); margin: 0 0 8px; }
.dictionary-origin { color: var(--bone-dim); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.violet-rule { width: 28px; height: 1px; background: var(--violet); margin: 22px 0 17px; }
.definition-list { margin: 0; padding: 0; list-style: none; }
.definition-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 1.8vw, 28px);
}
.definition-list .definition-number { font-family: var(--mono); font-size: .7em; font-weight: 500; }
.agency-bottom {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 8vw, 130px);
  padding: 44px 14vw 38px;
}
.eyebrow { color: var(--violet); font-family: var(--ui); text-transform: uppercase; letter-spacing: .16em; font-size: 14px; margin: 0 0 16px; }
.agency-lead {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.33;
  margin: 0;
}
.agency-copy { color: var(--bone-dim); font-size: 14px; line-height: 1.75; max-width: 540px; margin: 26px 0 0; }
.agency-footer, .services-footer, .contact-footer {
  border-top: 1px solid var(--line-soft);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5vw;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- services ---------- */
.services-main { min-height: calc(100vh - 112px); display: grid; grid-template-rows: 1fr auto auto; }
.services-workspace {
  display: grid;
  grid-template-columns: minmax(255px, 24vw) 1fr minmax(270px, 26vw);
  min-height: 650px;
}
.service-nav { border-right: 1px solid var(--line); padding: 32px 0 0; }
.section-label { padding: 0 32px 22px; color: var(--bone-dim); font-family: var(--ui); letter-spacing: .14em; text-transform: uppercase; font-size: 14px; }
.service-nav button {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  color: var(--bone);
  min-height: 54px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 17px;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.service-nav button:last-child { border-bottom: 1px solid var(--line-soft); }
.service-nav button:hover, .service-nav button.is-active { background: rgba(160,0,255,.035); color: var(--violet); }
.service-nav .num { font-family: var(--mono); font-size: 12px; }
.service-nav .arrow { opacity: 0; transform: translateX(-5px); transition: .2s ease; }
.service-nav button.is-active .arrow, .service-nav button:hover .arrow { opacity: 1; transform: translateX(0); }
.service-stage {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 55%, rgba(255,255,255,.055), transparent 26%);
}
.service-stage::after { content: ''; position: absolute; left: 8%; right: 8%; bottom: 19%; height: 1px; background: linear-gradient(90deg, transparent, rgba(240,238,233,.18), transparent); }
.service-art { width: min(58%, 510px); aspect-ratio: 1 / 1; position: relative; display: grid; place-items: center; z-index: 1; }
.service-art svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 28px 34px rgba(0,0,0,.6)); }
.service-details { border-left: 1px solid var(--line); padding: clamp(58px, 9vh, 110px) clamp(34px, 4vw, 72px); }
.service-code { font-family: var(--ui); font-size: clamp(28px, 3vw, 42px); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 26px; }
.service-code .num { color: var(--violet); }
.service-materials { margin: 0; padding: 0; list-style: none; font-family: var(--ui); font-size: 22px; text-transform: uppercase; letter-spacing: .1em; line-height: 1.85; }
.service-description { color: var(--bone-dim); font-size: 13px; line-height: 1.7; margin: 34px 0 0; max-width: 360px; }
.service-thumbs { display: grid; grid-template-columns: repeat(9, 1fr); border-top: 1px solid var(--line); }
.service-thumb {
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  min-height: 112px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--bone-dim);
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  padding: 12px 8px;
  transition: color .2s ease, background .2s ease;
}
.service-thumb:last-child { border-right: 0; }
.service-thumb:hover, .service-thumb.is-active { color: var(--violet); background: rgba(160,0,255,.035); }
.service-thumb svg { width: 54px; height: 54px; margin-bottom: 7px; opacity: .82; }

/* ---------- contact / project intake ---------- */
.contact-form-main {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(520px, 1.55fr);
  grid-template-areas:
    "intro form"
    "direct form"
    "footer footer";
  align-items: start;
}
.contact-intro {
  grid-area: intro;
  padding: clamp(72px, 10vh, 116px) 4.8vw 40px;
  min-height: 340px;
  border-right: 1px solid var(--line-soft);
}
.contact-intro .page-code { margin-bottom: 30px; }
.contact-intro h1 {
  margin: 0;
  font-family: var(--ui);
  font-size: clamp(38px, 4.3vw, 64px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-intro h1::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 30px;
  background: var(--violet);
}
.contact-intro p {
  margin: 28px 0 0;
  max-width: 340px;
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.8;
}
.contact-form-section {
  grid-area: form;
  min-height: 690px;
  padding: clamp(62px, 9vh, 98px) clamp(44px, 7vw, 110px) 80px;
}
.project-form { width: min(890px, 100%); margin: 0 auto; }
.form-row { display: grid; gap: 38px; margin-bottom: 34px; }
.form-row-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 10px; min-width: 0; }
.field > span, .field-kicker {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.field b { color: var(--violet); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(240,238,233,.26);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--bone);
  font: 400 16px/1.5 var(--mono);
  padding: 10px 0 14px;
  transition: border-color .2s ease, background-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(184,182,176,.48); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--violet); }
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 34px;
  background-image: linear-gradient(45deg, transparent 50%, var(--violet) 50%), linear-gradient(135deg, var(--violet) 50%, transparent 50%);
  background-position: calc(100% - 10px) 50%, calc(100% - 5px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field select option { background: var(--ink); color: var(--bone); }
.field-message textarea { min-height: 155px; resize: vertical; }
.attachment-row {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 8px 0 20px;
  border-bottom: 1px solid var(--line);
}
.attachment-copy { display: grid; gap: 8px; }
.attachment-copy small { color: rgba(184,182,176,.65); font-size: 10px; line-height: 1.5; }
.file-picker { cursor: pointer; }
.file-picker input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.file-picker span {
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  color: var(--bone);
  border-bottom: 1px solid var(--violet);
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.file-picker:hover span { color: var(--violet); }
.file-list { min-height: 22px; margin: -18px 0 34px; color: var(--bone-dim); font-size: 11px; line-height: 1.65; }
.file-list .file-error { color: #ff91bd; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-action-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-top: 46px;
}
.turnstile-wrap { min-height: 40px; display: grid; align-content: end; }
.security-status { margin: 0; color: rgba(184,182,176,.55); font-size: 10px; line-height: 1.4; }
.project-submit, .new-inquiry {
  border: 0;
  border-bottom: 1px solid var(--violet);
  background: transparent;
  padding: 10px 0;
  color: var(--bone);
  font-family: var(--ui);
  font-size: 16px;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
}
.project-submit { display: inline-flex; align-items: center; gap: 18px; }
.project-submit span:last-child { color: var(--violet); transition: transform .2s ease; }
.project-submit:hover:not(:disabled) { color: var(--violet); }
.project-submit:hover:not(:disabled) span:last-child { transform: translateX(4px); }
.project-submit:disabled { opacity: .35; cursor: not-allowed; }
.form-status { min-height: 26px; margin-top: 22px; color: var(--bone-dim); font-size: 12px; line-height: 1.6; }
.form-status.is-error { color: #ff91bd; }
.form-status.is-working { color: var(--violet); }
.form-success {
  width: min(740px, 100%);
  margin: clamp(55px, 12vh, 120px) auto 0;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.form-success[hidden] { display: none; }
.success-code { color: var(--violet); font-family: var(--ui); font-size: 12px; letter-spacing: .16em; }
.form-success h2 { margin: 26px 0 12px; font-family: var(--ui); font-size: clamp(42px, 5vw, 68px); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.form-success p { margin: 0 0 34px; color: var(--bone-dim); }
.new-inquiry { font-size: 13px; }
.contact-direct {
  grid-area: direct;
  min-height: 250px;
  padding: 40px 4.8vw 54px;
  border-top: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  display: grid;
  align-content: start;
  gap: 34px;
  color: var(--bone-dim);
  font-family: var(--ui);
  font-size: 14px;
  letter-spacing: .08em;
}
.contact-direct > div { display: grid; gap: 8px; }
.contact-direct-label { color: var(--violet); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.contact-direct a { width: fit-content; color: var(--bone); border-bottom: 1px solid rgba(240,238,233,.18); padding-bottom: 4px; }
.contact-direct a:hover { color: var(--violet); border-color: var(--violet); }
.contact-footer { grid-area: footer; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .site-header, .menu-top { height: 90px; }
  .site-header { padding: 0 24px; }
  .header-logo img, .menu-top img { width: 140px; }
  .menu-trigger .label { display: none; }
  .menu-overlay-inner { grid-template-rows: 90px 1fr auto; padding: 0 24px 28px; }
  .menu-links a { min-height: 72px; grid-template-columns: 38px 1fr auto; font-size: clamp(26px, 7vw, 42px); }
  .agency-main { min-height: calc(100vh - 90px); padding: 4vh 24px 0; }
  .dictionary-entry { min-width: 0; width: min(520px, 100%); }
  .agency-bottom { grid-template-columns: 1fr; gap: 22px; padding: 34px 20px; }
  .agency-copy { margin-top: 0; }
  .services-main { min-height: calc(100vh - 90px); }
  .services-workspace { grid-template-columns: 1fr; min-height: 0; }
  .service-nav { border-right: 0; padding-top: 18px; }
  .service-nav button { min-height: 48px; }
  .service-stage { min-height: 430px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .service-details { border-left: 0; padding: 44px 32px 54px; }
  .service-thumbs { grid-template-columns: repeat(3, 1fr); }
  .service-thumb { border-bottom: 1px solid var(--line); }
  .contact-main { min-height: calc(100vh - 90px); }
  .contact-grid { grid-template-columns: 1fr; min-height: 0; }
  .contact-copy { padding: 70px 30px 80px; min-height: 560px; }
  .contact-visual { min-height: 520px; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: 1fr auto 1fr; }
  .header-logo img { width: 122px; }
  .menu-icon { width: 24px; height: 15px; }
  .intro-logo-button img { width: 225px; }
  .curtain { width: 64%; }
  .intro-ready .curtain-left { transform: translateX(-78%); }
  .intro-ready .curtain-right { transform: translateX(78%) scaleX(-1); }
  .dictionary-word { font-size: 40px; }
  .definition-list li { font-size: 22px; grid-template-columns: 34px 1fr; }
  .agency-footer, .services-footer, .contact-footer { flex-direction: column; align-items: flex-start; padding: 18px 24px; }
  .service-thumbs { grid-template-columns: repeat(2, 1fr); }
  .contact-title { font-size: 58px; }
  .contact-email { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .intro-ready .curtain-left { transform: translateX(-83%); }
  .intro-ready .curtain-right { transform: translateX(83%) scaleX(-1); }
}

/* ---------- v4 refinements ---------- */
/* Smaller interior logo and restrained navigation */
.header-logo img { width: 178px; }
.menu-top img { width: 178px; }
.menu-links { width: min(680px, 84vw); }
.menu-links a {
  grid-template-columns: 44px 1fr auto;
  min-height: 72px;
  font-size: clamp(24px, 3.1vw, 42px);
  letter-spacing: .085em;
}
.menu-links .num { font-size: 11px; }
.menu-links .arrow { font-size: 14px; }

/* Dictionary entry is the visual focus, but at a quieter scale */
.dictionary-wrap {
  width: min(610px, 88vw);
  text-align: center;
  padding: 1vh 0 4vh;
}
.dictionary-entry {
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  text-align: left;
}
.dictionary-word {
  text-align: center;
  font-size: clamp(34px, 3.8vw, 54px);
  margin-bottom: 12px;
}
.dictionary-pronunciation { font-size: clamp(11px, .95vw, 14px); }
.dictionary-origin { font-size: 11px; }
.dictionary-entry .violet-rule { margin-left: auto; margin-right: auto; }
.definition-list { width: min(330px, 78vw); margin: 0 auto; text-align: left; }
.definition-list li {
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 6px 0;
  font-size: clamp(18px, 1.55vw, 24px);
}
.agency-bottom { padding-top: 38px; }

/* Brighter, more dimensional packaging artwork based on the approved mockup */
.service-stage {
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.095), rgba(255,255,255,.025) 25%, transparent 48%),
    radial-gradient(circle at 50% 90%, rgba(110,130,160,.08), transparent 40%);
}
.service-stage::after { bottom: 16%; opacity: .85; }
.service-art { width: min(66%, 585px); }
.service-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 36px rgba(0,0,0,.42));
  animation: service-art-in .34s ease both;
}
@keyframes service-art-in {
  from { opacity: 0; transform: translateY(5px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.service-details-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 56px;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid var(--violet);
  background: transparent;
  cursor: pointer;
  color: var(--bone);
  font-family: var(--ui);
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-details-toggle span { color: var(--violet); transition: transform .2s ease; }
.service-details-toggle:hover { color: var(--violet); }
.service-details-toggle:hover span { transform: translateX(4px); }
.service-description[hidden] { display: none; }
.service-description { margin-top: 20px; }
.service-thumb {
  min-height: 122px;
  padding: 8px 6px;
  overflow: hidden;
}
.service-thumb img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  opacity: .96;
  filter: drop-shadow(0 9px 10px rgba(0,0,0,.28));
  transition: transform .2s ease, opacity .2s ease;
}
.service-thumb:hover img,
.service-thumb.is-active img { transform: translateY(-2px) scale(1.035); opacity: 1; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 820px) {
  .header-logo img, .menu-top img { width: 150px; }
  .menu-links a { min-height: 64px; font-size: clamp(22px, 6vw, 34px); }
  .dictionary-word { font-size: clamp(32px, 10vw, 46px); }
  .definition-list li { font-size: 20px; }
  .service-art { width: min(78%, 520px); }
  .service-details-toggle { margin-top: 34px; }
  .service-thumb img { width: 78px; height: 78px; }
}


/* V5 service photography: approved white packaging on true black */
.service-stage {
  background: #000;
}
.service-stage::after { opacity: .34; }
.service-art { width: min(70%, 620px); }
.service-art img {
  background: #000;
  border-radius: 0;
  filter: none;
}
.service-thumb { background: #000; }
.service-thumb img {
  width: 94px;
  height: 94px;
  background: #000;
  filter: none;
}
.service-thumb:hover, .service-thumb.is-active {
  background: #050008;
}
@media (max-width: 820px) {
  .service-art { width: min(84%, 560px); }
  .service-thumb img { width: 84px; height: 84px; }
}

/* ---------- V9 contact responsiveness ---------- */
@media (max-width: 920px) {
  .contact-form-main {
    min-height: calc(100vh - 90px);
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "form" "direct" "footer";
  }
  .contact-intro { min-height: 0; padding: 58px 30px 52px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .contact-intro p { max-width: none; }
  .contact-form-section { min-height: 0; padding: 58px 30px 66px; }
  .contact-direct { min-height: 0; padding: 34px 30px 42px; border-right: 0; }
}
@media (max-width: 620px) {
  .form-row-2 { grid-template-columns: 1fr; gap: 28px; }
  .form-row { margin-bottom: 28px; }
  .attachment-row { grid-template-columns: 1fr; align-items: start; }
  .form-action-row { align-items: start; flex-direction: column; }
  .project-submit { align-self: flex-end; }
  .contact-intro h1 { font-size: 42px; }
  .field-message textarea { min-height: 190px; }
}

/* V10 service image lock: display approved artwork exactly as supplied. */
.service-art img,
.service-thumb img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
.service-art img {
  width: min(76%, 720px) !important;
  height: min(76%, 620px) !important;
  object-fit: contain !important;
}
.service-thumb img {
  width: 78% !important;
  height: 78% !important;
  object-fit: contain !important;
}

/* ---------- v14 intro end state ---------- */
.intro-page,
.intro-stage {
  background-color: #000 !important;
}
.intro-video {
  transition: opacity .35s ease;
}
.intro-page.intro-ended .intro-video {
  opacity: 0;
}


/* ---------- V15 refinements ---------- */
/* 20% larger interior/menu wordmark and visually normalized service photography. */
.header-logo img,
.menu-top img {
  width: 178px;
}
.service-art {
  width: min(70%, 620px);
}
.service-art img {
  width: 82% !important;
  height: 82% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.service-thumb img {
  width: 82% !important;
  height: 82% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
@media (max-width: 820px) {
  .header-logo img, .menu-top img { width: 150px; }
  .service-art { width: min(84%, 560px); }
}

/* ---------- V17 Agency copy refinement ---------- */
.agency-copy .inline-brand-logo {
  display: inline-block;
  width: 88px;
  height: auto;
  margin: 0 .22em;
  vertical-align: -0.18em;
  filter: none;
}
@media (max-width: 820px) {
  .agency-copy .inline-brand-logo { width: 78px; }
}

/* ---------- V19 welcome + dictionary agency ---------- */
/* Welcome is now a clean black stage with the Sine Pari wordmark only. */
.intro-page,
.intro-stage {
  background: #000 !important;
}
.intro-stage::after {
  display: none !important;
}
.intro-logo-button {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.intro-logo-button img {
  width: clamp(267px, 27.3vw, 397px); /* 30% larger than the prior welcome logo */
  filter: none;
}

/* Agency page: centered dictionary composition at the same restrained scale as the rest of the site. */
.agency-main.agency-dictionary-page {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  padding: clamp(68px, 9vh, 98px) 7vw 0;
}
.dictionary-composition {
  width: min(780px, 82vw);
  margin: 0;
  text-align: left;
}
.dictionary-line-one {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--bone);
  font-family: Georgia, 'Times New Roman', serif;
}
.dictionary-line-one .dictionary-word {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1;
  text-align: left;
}
.dictionary-separator {
  color: var(--bone-dim);
  font-size: clamp(20px, 1.85vw, 28px);
  font-weight: 300;
}
.dictionary-line-one .dictionary-pronunciation {
  margin: 0;
  color: var(--bone);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: .01em;
}
.dictionary-line-one .dictionary-origin {
  color: var(--bone);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(13px, 1.1vw, 17px);
  text-transform: none;
  letter-spacing: 0;
}
.definition-list.definition-inline {
  display: flex;
  justify-content: flex-start;
  width: auto;
  margin: 24px 0 0;
  gap: 20px;
  text-align: left;
}
.definition-list.definition-inline li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.25;
}
.definition-list.definition-inline .definition-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1em;
  font-weight: 700;
}
.dictionary-description {
  margin: 30px 0 0;
  max-width: 760px;
  color: var(--bone);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  letter-spacing: .005em;
  text-align: left;
}
.agency-dedicated {
  width: min(650px, 72vw);
  margin-top: auto;
  margin-left: 0;
  padding: clamp(48px, 7vh, 78px) 0 46px;
  text-align: left;
}
.agency-dedicated-rule {
  width: 70px;
  height: 1px;
  background: rgba(240, 238, 233, .72);
  margin-bottom: 22px;
}
.agency-dedicated-title {
  margin: 0 0 8px;
  color: var(--bone);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  letter-spacing: .17em;
}
.agency-dedicated-copy {
  margin: 0;
  max-width: 650px;
  color: var(--bone-dim);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(12px, .95vw, 15px);
  line-height: 1.72;
}
.agency-dedicated-copy .inline-brand-logo {
  display: inline-block;
  width: 78px;
  height: auto;
  margin: 0 .24em 0 .06em;
  vertical-align: -0.16em;
  filter: none;
}

@media (max-width: 900px) {
  .agency-main.agency-dictionary-page {
    padding: 62px 6vw 0;
  }
  .dictionary-composition {
    width: min(700px, 100%);
  }
  .agency-dedicated {
    width: min(620px, 88vw);
    margin-left: 0;
    padding-top: 58px;
  }
  .dictionary-description .desktop-break { display: none; }
}

@media (max-width: 620px) {
  .intro-logo-button img {
    width: clamp(250px, 78vw, 330px);
  }
  .agency-main.agency-dictionary-page {
    padding: 50px 24px 0;
  }
  .dictionary-line-one {
    gap: 7px 9px;
  }
  .dictionary-line-one .dictionary-word {
    width: 100%;
    font-size: 30px;
  }
  .dictionary-separator { display: none; }
  .dictionary-line-one .dictionary-pronunciation,
  .dictionary-line-one .dictionary-origin {
    font-size: 14px;
  }
  .definition-list.definition-inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 22px;
  }
  .definition-list.definition-inline li {
    font-size: 17px;
  }
  .dictionary-description {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.58;
  }
  .agency-dedicated {
    width: 100%;
    padding: 54px 0 34px;
  }
  .agency-dedicated-copy {
    font-size: 13px;
  }
  .agency-dedicated-copy .inline-brand-logo {
    width: 72px;
  }
}

/* ---------- V22 agency placement refinement ---------- */
/* Keep the dictionary entry left-aligned, but place the block in the visual center-left of the viewport. */
@media (min-width: 901px) {
  .agency-main.agency-dictionary-page {
    padding-top: clamp(78px, 10.5vh, 112px);
  }
  .dictionary-composition {
    width: min(760px, 62vw);
    margin-left: clamp(110px, 17vw, 290px);
    margin-right: auto;
    text-align: left;
  }
  .agency-dedicated {
    margin-left: 0;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .agency-main.agency-dictionary-page {
    padding-top: 72px;
  }
  .dictionary-composition {
    width: min(680px, 78vw);
    margin-left: clamp(36px, 9vw, 92px);
    margin-right: auto;
    text-align: left;
  }
}

/* ---------- V23 agency centered dictionary placement ---------- */
/* Keep the dictionary typography left-aligned, but center the whole definition block
   within the usable screen width so its position remains balanced at every desktop size. */
@media (min-width: 901px) {
  .agency-main.agency-dictionary-page {
    padding-top: clamp(82px, 11.5vh, 120px);
  }
  .dictionary-composition {
    width: min(760px, 72vw);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .agency-dedicated {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .agency-main.agency-dictionary-page {
    padding-top: 76px;
  }
  .dictionary-composition {
    width: min(680px, 82vw);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .dictionary-composition {
    width: min(100%, 540px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- V25 client refinements ---------- */
/* Increase the primary header/menu wordmark by 20% while preserving the existing header proportions. */
.header-logo img,
.menu-top img {
  width: 214px;
}

/* Dedicated Service: slightly larger and more traditional dictionary/editorial typography. */
.agency-dedicated-title,
.agency-dedicated-copy {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 400;
}
.agency-dedicated-title {
  font-size: 13px;
  letter-spacing: .15em;
}
.agency-dedicated-copy {
  max-width: 700px;
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.66;
}
.agency-dedicated-copy .inline-brand-logo {
  width: 84px;
}

@media (max-width: 820px) {
  .header-logo img,
  .menu-top img {
    width: 180px;
  }
}

@media (max-width: 620px) {
  .agency-dedicated-title {
    font-size: 12px;
  }
  .agency-dedicated-copy {
    font-size: 14px;
    line-height: 1.62;
  }
  .agency-dedicated-copy .inline-brand-logo {
    width: 76px;
  }
}

/* ---------- V30 trademark refinement ---------- */
.tm-mark {
  display: inline-block;
  margin-left: .08em;
  font-size: .52em;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -.04em;
}

/* V32 footer wordmark and studio credit */
.agency-footer .tm-mark, .services-footer .tm-mark, .contact-footer .tm-mark { font-size: 1em; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }
.footer-credit { font-size: 10px; line-height: 1.5; letter-spacing: .04em; text-transform: none; }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { color: #fff; }
.footer-credit a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
@media (max-width: 620px) { .footer-brand { align-items: flex-start; text-align: left; } }
