:root {
  --ink: #142337;
  --navy: #0b213b;
  --navy-deep: #07182c;
  --muted: #5c6977;
  --line: #d8e0e5;
  --paper: #f2f5f3;
  --white: #ffffff;
  --accent: #c9922d;
  --accent-soft: #f4e8c8;
  --shadow: 0 24px 70px rgba(12, 33, 59, .14);
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1.15; }
.brand strong { color: var(--navy); font-size: 20px; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--navy);
  border-radius: 7px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}
.header-cta:hover,
.primary-cta:hover { transform: translateY(-2px); background: #16365a; }
.primary-cta {
  min-height: 54px;
  padding-inline: 26px;
  border-color: var(--accent);
  color: var(--navy);
  background: var(--accent);
}
.primary-cta:hover { background: #d8a544; }

.hero {
  min-height: 0;
  display: block;
  padding: 78px 0 82px;
  background: var(--white);
  text-align: center;
}
.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kicker {
  margin: 0 0 19px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.2;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
  text-wrap: balance;
}
.offer-row {
  width: min(100%, 440px);
  display: block;
  margin: 25px 0 23px;
  padding: 17px 22px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  color: var(--navy);
  background: var(--paper);
  text-align: left;
}
.offer-badge {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}
.offer-note {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.hero-example {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.hero-example span { color: var(--accent); font-weight: 900; letter-spacing: .08em; }
.hero-example strong { font-weight: 600; }
.hero-media {
  width: min(1080px, calc(100% - 48px));
  height: clamp(250px, 30vw, 390px);
  margin: 52px auto 0;
  overflow: hidden;
  border-radius: 16px;
  background: #e3e8e6;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; }

section { padding: 94px 0; }
.section-title {
  max-width: 760px;
  margin: 0 0 17px;
  color: var(--navy);
  font-size: clamp(29px, 3.2vw, 45px);
  line-height: 1.32;
  letter-spacing: -.045em;
}
.section-lead { max-width: 730px; margin: 0; color: var(--muted); font-size: 15px; }

.bridge { color: var(--white); background: var(--navy); }
.bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
  gap: 76px;
  align-items: center;
}
.bridge .section-title { color: var(--white); }
.bridge .section-lead { color: rgba(255, 255, 255, .73); }
.quote {
  max-width: 620px;
  margin: 30px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  color: var(--accent-soft);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.7;
}
.bridge-detail-title { margin: 26px 0 7px; color: var(--white); font-size: 18px; line-height: 1.5; }
.bridge-detail-body { max-width: 600px; margin: 0; color: rgba(255, 255, 255, .73); font-size: 14px; }
.bridge-visual { padding: 10px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.bridge-visual img { width: 100%; aspect-ratio: 1.45; object-fit: cover; border-radius: 7px; }

/* The bridge section explains the range of possible work before showing one industry example. */
.bridge-grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
.bridge-grid > div:first-child { max-width: none; }
.bridge .section-title { max-width: 900px; }
.bridge .section-lead { max-width: 780px; }
.bridge-task-label {
  margin: 42px 0 14px;
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}
.possible-tasks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.possible-tasks li {
  position: relative;
  padding: 15px 17px 15px 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .055);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.possible-tasks li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.bridge-example-label {
  margin: 48px 0 14px;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.bridge .quote {
  max-width: 900px;
  margin-top: 0;
}
.bridge-detail-title { max-width: 900px; }
.bridge-detail-body { max-width: 780px; }
.bridge-visual {
  max-width: 1020px;
  margin: 48px auto 0;
}

.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 82px; align-items: start; }
.why-copy { max-width: 500px; }
.why-copy p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.reason-list { border-top: 1px solid var(--line); }
.reason {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.reason-number { color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.reason h3 { margin: 0 0 4px; color: var(--navy); font-size: 18px; }
.reason p { margin: 0; color: var(--muted); font-size: 14px; }

.process { background: var(--paper); }
.process-head { margin-bottom: 38px; }
.process-grid { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: 145px minmax(220px, .62fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 116px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 0; }
.step-no { color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.process-step h3 { margin: 0; color: var(--navy); font-size: 19px; line-height: 1.45; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }
.process-note {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 42px;
  align-items: center;
  margin-top: 44px;
}
.process-note img { width: 100%; aspect-ratio: 2.14; object-fit: cover; border-radius: var(--radius); }
.process-note p { margin: 0; color: var(--muted); font-size: 14px; }

.profile { background: var(--white); }
.profile-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 58px; align-items: center; }
.profile-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; filter: saturate(.85); }
.profile-role { margin: 0 0 9px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .06em; }
.profile h2 { margin-bottom: 14px; }
.profile-copy { color: var(--muted); font-size: 14px; }
.profile-copy p { margin: 0 0 13px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.proof { padding: 7px 10px; border: 1px solid var(--line); color: var(--navy); background: var(--paper); font-size: 12px; font-weight: 700; }

.faq { background: var(--paper); }
.faq-list { max-width: 920px; margin-top: 32px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 19px 48px 19px 0; color: var(--navy); cursor: pointer; font-size: 16px; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 15px; color: var(--accent); font-size: 25px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; margin: -2px 0 20px; color: var(--muted); font-size: 14px; }

.final-cta { padding: 78px 0 84px; color: var(--white); background: var(--navy); }
.final-grid { display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.final-cta .section-title { color: var(--white); }
.final-cta .section-lead { color: rgba(255, 255, 255, .75); }
.final-cta .primary-cta { flex: 0 0 auto; color: var(--navy); background: var(--accent); border-color: var(--accent); }
.footer { padding: 27px 0; color: rgba(255, 255, 255, .66); background: var(--navy-deep); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 22px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
@media (max-width: 980px) {
  .hero-copy { max-width: 920px; padding: 0 24px; }
  .hero-media { height: clamp(260px, 42vw, 360px); }
  .bridge-grid, .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-step { grid-template-columns: 125px minmax(200px, .7fr) 1fr; gap: 18px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 36px, 1160px); }
  .header-inner { min-height: 66px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 8px; }
  .header-cta { min-height: 42px; padding: 8px 11px; font-size: 11px; }
  .hero { padding: 56px 0 62px; }
  .hero-copy { padding: 0 18px; }
  .hero h1 { max-width: 360px; font-size: 36px; }
  .hero-lead { font-size: 15px; }
  .hero-example { display: block; margin-top: 18px; }
  .hero-example span { display: block; margin-bottom: 4px; }
  .hero-media { width: calc(100% - 36px); height: 250px; margin-top: 40px; border-radius: 12px; }
  section { padding: 70px 0; }
  .bridge-grid, .why-grid { gap: 34px; }
  .section-title { font-size: 31px; }
  .quote { font-size: 18px; }
  .bridge-task-label { margin-top: 32px; }
  .possible-tasks { grid-template-columns: 1fr; gap: 8px; }
  .possible-tasks li { padding-block: 13px; }
  .possible-tasks li::before { top: 20px; }
  .bridge-example-label { margin-top: 38px; }
  .bridge-visual { margin-top: 36px; }
  .process-step { grid-template-columns: 1fr; gap: 7px; padding: 22px 0 24px; }
  .process-step h3 { font-size: 18px; }
  .process-note { grid-template-columns: 1fr; gap: 22px; }
  .profile-grid { grid-template-columns: 1fr; gap: 28px; }
  .profile-grid img { width: 150px; }
  .final-grid { display: block; }
  .final-grid .primary-cta { width: 100%; margin-top: 28px; }
  .footer-inner { display: block; }
}

/* Construction hero prototypes rebuilt against the 1672 x 941 reference renders. */
.layout-editorial,
.layout-poster {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}
.layout-editorial .site-header,
.layout-poster .site-header { display: none; }
.layout-editorial .hero,
.layout-poster .hero {
  min-height: 100dvh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.layout-editorial .hero-copy,
.layout-poster .hero-copy {
  max-width: none;
  width: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.layout-editorial .hero-brand,
.layout-poster .hero-brand {
  display: flex;
  color: inherit;
}
.layout-editorial .hero-brand strong,
.layout-poster .hero-brand strong,
.layout-editorial .hero-brand small,
.layout-poster .hero-brand small { color: inherit; }
.reference-artboard { display: none; }

/* Proposal 01: editorial split. The 890:782 columns and photo crop map to the source render. */
.layout-editorial .hero {
  display: grid;
  grid-template-columns: 890fr 782fr;
  grid-template-rows: minmax(0, 1fr);
  color: #071e3b;
  background: #faf9f6;
}
.layout-editorial .hero-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 52px 58px 76px 80px;
}
.layout-editorial .hero-brand {
  align-items: center;
  gap: 34px;
  margin: 0 0 72px;
  line-height: 1;
}
.layout-editorial .hero-brand strong {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: .018em;
  line-height: 1.08;
}
.layout-editorial .hero-brand-divider {
  width: 1px;
  height: 40px;
  background: #9da3aa;
}
.layout-editorial .hero-brand small {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.25;
}
.layout-editorial .kicker {
  display: flex;
  align-items: center;
  height: 49px;
  margin: 0 0 50px;
  padding: 0 0 0 21px;
  border-left: 4px solid #c47b18;
  color: #071e3b;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1;
}
.layout-editorial .hero h1 {
  max-width: none;
  margin: 0;
  color: #071e3b;
  font-size: clamp(44px, 4.2vw, 70px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: 1.3;
  text-align: left;
  text-wrap: pretty;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}
.layout-editorial .hero-lead {
  max-width: none;
  margin: 17px 0 0;
  color: #0b2342;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.7;
  text-align: left;
  text-wrap: pretty;
  white-space: normal;
  word-break: keep-all;
}
.layout-editorial .offer-row {
  display: none;
}
.layout-editorial .hero-media {
  position: relative;
  background-image: none;
}
.layout-editorial .hero-media img {
  position: absolute;
  top: 50%;
  right: 0;
  width: auto;
  height: 100%;
  max-width: none;
  opacity: 1;
  object-fit: initial;
  transform: translateY(-50%);
}
.layout-editorial .hero .primary-cta {
  margin-top: 30px;
}
/* The offer is expressed by the CTA in the approved hero composition. */
.layout-poster .offer-row {
  display: none;
}
.layout-poster .hero-media {
  position: relative;
  background-image: none;
}
.layout-poster .hero-media img {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  height: 100%;
  max-width: none;
  opacity: 1;
  object-fit: initial;
  transform: translateY(-50%);
}
.layout-poster .hero .primary-cta {
  margin-top: 30px;
}

/* Proposal 01: editorial split. The 890:782 columns and photo crop map to the source render. */
.layout-editorial .hero {
  display: grid;
  grid-template-columns: 890fr 782fr;
  grid-template-rows: minmax(0, 1fr);
  color: #071e3b;
  background: #faf9f6;
}
.layout-editorial .hero-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 52px 58px 76px 80px;
}
.layout-editorial .hero-brand {
  align-items: center;
  gap: 34px;
  margin: 0 0 72px;
  line-height: 1;
}
.layout-editorial .hero-brand strong {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: .018em;
  line-height: 1.08;
}
.layout-editorial .hero-brand-divider {
  width: 1px;
  height: 40px;
  background: #9da3aa;
}
.layout-editorial .hero-brand small {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.25;
}
.layout-editorial .kicker {
  display: flex;
  align-items: center;
  height: 49px;
  margin: 0 0 50px;
  padding: 0 0 0 21px;
  border-left: 4px solid #c47b18;
  color: #071e3b;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1;
}
.layout-editorial .hero h1 {
  max-width: none;
  margin: 0;
  color: #071e3b;
  font-size: clamp(44px, 4.2vw, 70px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: 1.3;
  text-align: left;
  text-wrap: pretty;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}
.layout-editorial .hero-lead {
  max-width: none;
  margin: 17px 0 0;
  color: #0b2342;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.7;
  text-align: left;
  text-wrap: pretty;
  white-space: normal;
  word-break: keep-all;
}
.layout-editorial .hero .primary-cta {
  display: inline-flex;
  width: min(520px, 100%);
  min-height: 92px;
  height: 92px;
  margin-left: 5px;
  padding: 0 24px 0 38px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #001d3b;
  font-size: 27px;
  font-weight: 700;
  justify-content: space-between;
  gap: 18px;
  line-height: 1;
}
.layout-editorial .hero .primary-cta::after {
  content: "→";
  flex: 0 0 auto;
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
}
.layout-editorial .hero .primary-cta:hover {
  color: #fff;
  background: #001d3b;
  transform: none;
}
.layout-editorial .hero-example { display: none; }

/* Proposal 04: terracotta poster. The 710:962 columns and photo crop map to the source render. */
.layout-poster .hero-media img {
  left: 0;
  right: auto;
}

/* Proposal 01: editorial split. The 890:782 columns and photo crop map to the source render. */
.layout-editorial .hero-media {
  grid-column: 2;
  grid-row: 1;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background-color: #d9d7d0;
  box-shadow: none;
}

/* Proposal 04: terracotta poster. The 710:962 columns and photo crop map to the source render. */
/* Proposal 04: terracotta poster. The 710:962 columns and photo crop map to the source render. */
.layout-poster {
  --poster: #ad3a28;
  --poster-cream: #fff2dd;
  --poster-muted: rgba(255, 242, 221, .92);
}
.layout-poster .hero {
  display: grid;
  grid-template-columns: 710fr 962fr;
  grid-template-rows: minmax(0, 1fr);
  color: var(--poster-cream);
  background: linear-gradient(145deg, #ad3a28 0%, #a93626 56%, #b13f2d 100%);
}
.layout-poster .hero-copy {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  padding: 35px 64px 31px 109px;
}
.layout-poster .hero-brand {
  align-self: flex-end;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 0 12px;
  text-align: right;
}
.layout-poster .hero-brand strong {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: .018em;
  line-height: 1;
}
.layout-poster .hero-brand-divider { display: none; }
.layout-poster .hero-brand small {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.2;
}
.layout-poster .kicker {
  display: inline-block;
  margin: 0 0 26px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 3px solid var(--poster-cream);
  color: var(--poster-cream);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.25;
}
.layout-poster .hero h1 {
  max-width: none;
  margin: 0;
  color: var(--poster-cream);
  font-size: clamp(48px, 4.65vw, 78px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1.33;
  text-align: left;
  text-wrap: pretty;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}
.layout-poster .hero-lead {
  max-width: none;
  margin: 13px 0 0;
  color: var(--poster-muted);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.45;
  text-align: left;
  text-wrap: pretty;
  white-space: normal;
  word-break: keep-all;
}
.layout-poster .offer-row {
  width: auto;
  margin: 27px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}
.layout-poster .offer-badge {
  display: inline-block;
  padding: 0 0 8px;
  border-bottom: 3px solid var(--poster-cream);
  color: var(--poster-cream);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.14;
}
.layout-poster .offer-note { display: none; }
.layout-poster .hero .primary-cta {
  position: absolute;
  right: 64px;
  bottom: 43px;
  display: inline-flex;
  width: 470px;
  min-height: 0;
  height: 48px;
  padding: 0 0 11px;
  border: 0;
  border-bottom: 3px solid var(--poster-cream);
  border-radius: 0;
  color: var(--poster-cream);
  background: transparent;
  font-size: 26px;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1;
}
.layout-poster .hero .primary-cta::after {
  content: "→";
  font-size: 43px;
  font-weight: 400;
  line-height: .62;
}
.layout-poster .hero .primary-cta:hover {
  color: var(--poster-cream);
  background: transparent;
  transform: none;
}
.layout-poster .hero-example {
  position: absolute;
  left: 35px;
  bottom: 24px;
  display: block;
  margin: 0;
  color: var(--poster-muted);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
}
.layout-poster .hero-example span {
  display: inline;
  margin: 0;
  color: var(--poster-cream);
  font-weight: 700;
}
.layout-poster .hero-example span::after { content: "｜"; }
.layout-poster .hero-example strong { font-weight: 600; }
.layout-poster .hero-media {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background-color: #372b22;
  background-image: none;
  box-shadow: none;
}
.layout-poster .hero-media img {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  height: 100%;
  max-width: none;
  opacity: 1;
  object-fit: initial;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .layout-editorial .hero,
  .layout-poster .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .layout-editorial .hero-copy,
  .layout-poster .hero-copy {
    width: 100%;
    padding: clamp(32px, 5vw, 52px) clamp(22px, 5.6vw, 80px) clamp(42px, 6vw, 76px);
  }
  .layout-editorial .hero-media,
  .layout-poster .hero-media {
    width: 100%;
    height: min(66vw, 470px);
    flex: 0 0 auto;
  }
  .layout-editorial .hero-media img,
  .layout-poster .hero-media img {
    top: 50%;
    height: 220%;
    max-width: none;
    transform: translateY(-50%);
  }
  .layout-editorial .hero-media { order: 2; }
  .layout-poster .hero-copy { order: 1; }
  .layout-poster .hero-media { order: 2; }
  .layout-editorial .hero-brand { margin-bottom: 38px; }
  .layout-editorial .hero h1,
  .layout-poster .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 6.2vw, 64px);
    line-height: 1.22;
    white-space: normal;
  }
  .layout-editorial .hero-lead,
  .layout-poster .hero-lead {
    max-width: 34em;
    white-space: normal;
    font-size: clamp(16px, 2.8vw, 20px);
  }
  .layout-editorial .hero .primary-cta {
    width: min(100%, 520px);
    margin-left: 0;
  }
  .layout-poster .hero-brand { margin-bottom: 31px; }
  .layout-poster .kicker { margin-bottom: 24px; }
  .layout-poster .offer-badge { font-size: clamp(40px, 7vw, 56px); }
  .layout-poster .hero .primary-cta {
    position: static;
    width: min(100%, 470px);
    margin-top: 34px;
  }
  .layout-poster .hero-example {
    position: static;
    margin-top: 22px;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .layout-editorial .hero-copy,
  .layout-poster .hero-copy { padding: 30px 22px 42px; }
  .layout-editorial .hero-brand { flex-wrap: nowrap; gap: 20px; margin-bottom: 31px; }
  .layout-editorial .hero-brand strong { font-size: 33px; white-space: nowrap; }
  .layout-editorial .hero-brand small { font-size: 13px; white-space: nowrap; }
  .layout-editorial .hero-brand-divider { height: 30px; }
  .layout-editorial .kicker { height: 39px; margin-bottom: 30px; font-size: 20px; }
  .layout-editorial .hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.32;
    white-space: normal;
  }
  .layout-poster .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.22;
    white-space: normal;
  }
  .layout-editorial .hero-lead,
  .layout-poster .hero-lead { font-size: 17px; line-height: 1.65; }
  .layout-editorial .offer-row { margin-top: 31px; }
  .layout-editorial .offer-badge { font-size: 31px; }
  .layout-editorial .hero .primary-cta { min-height: 70px; height: 70px; padding-inline: 18px; gap: 12px; font-size: 18px; }
  .layout-editorial .hero .primary-cta::after { font-size: 29px; }
  .layout-poster .hero-brand strong { font-size: 39px; }
  .layout-poster .hero-brand small { font-size: 14px; }
  .layout-poster .kicker { font-size: 20px; }
  .layout-poster .offer-badge { font-size: 37px; }
  .layout-poster .hero .primary-cta { height: 42px; font-size: 19px; }
  .layout-poster .hero .primary-cta::after { font-size: 32px; }
  .layout-poster .hero-example { font-size: 14px; }
}

/* The approved 1672 x 941 creative is the desktop source of truth. */
@media (min-width: 981px) {
  /* Keep the editorial/poster hero as real HTML at every breakpoint.
     The image is only the visual half; copy stays selectable and can wrap. */
  .reference-artboard { display: none; }
}
