/*
 * Shingi Ittai HOME — approved local prototype parity layer.
 *
 * Loaded last and only on the front page.  This file owns final typography,
 * spacing and responsive geometry so SWELL/Gutenberg flow margins cannot
 * change the approved composition.
 */

.si-page--home {
  --si-home-shell: 1180px;
  margin: 0 !important;
  color: var(--si-ink);
  font-family: var(--si-font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.si-page--home,
.si-page--home *,
.si-page--home *::before,
.si-page--home *::after {
  box-sizing: border-box;
}

.si-page--home :where(p, figure, h1, h2, h3, dl, dd) {
  margin-block-start: 0;
}

.si-page--home :where(p, figure, h1, h2, h3, dl, dd):last-child {
  margin-block-end: 0;
}

.si-page--home :where(p, li, dd, summary) {
  font-weight: 400;
}

.si-page--home :where(h1, h2, h3) {
  font-family: var(--si-font-serif);
  font-weight: 500;
}

.si-page--home .si-shell {
  width: min(var(--si-home-shell), calc(100% - 64px));
  max-width: none;
  margin: 0 auto !important;
}

.si-page--home
  :is(
    .si-hero,
    .si-proof-rail,
    .si-section,
    .si-practice,
    .si-media-index-v5,
    .si-contact-band,
    .si-audience,
    .si-service-grid,
    .si-faq,
    .si-faq__list,
    .si-contact-band__inner,
    .si-media-index-v5-heading,
    .si-media-index-v5-stage,
    .si-media-index-v5-nav
  ) {
  margin-block: 0 !important;
}

/* First view */
.si-page--home .si-hero {
  display: grid;
  min-height: max(620px, calc(100svh - 80px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--si-paper-light);
}

.si-page--home .si-hero__copy,
.si-page--home .si-hero__media {
  min-width: 0;
  min-height: max(620px, calc(100svh - 80px));
  margin: 0 !important;
}

.si-page--home .si-hero__copy {
  display: flex;
  padding:
    clamp(46px, 6vh, 64px)
    clamp(32px, 4vw, 64px)
    clamp(46px, 6vh, 64px)
    clamp(32px, 4.8vw, 78px);
  flex-direction: column;
  justify-content: center;
  background-color: var(--si-paper-light);
  background-image: var(--si-washi);
  background-repeat: repeat;
  background-size: 1024px 1024px;
  background-blend-mode: multiply;
}

.si-page--home .si-hero__kicker {
  margin: 0 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--si-gold);
  color: var(--si-ink-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.65;
}

.si-page--home .si-hero__title {
  max-width: none;
  margin: 0 0 22px;
  font-size: clamp(50px, 4vw, 58px);
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.si-page--home .si-hero__title-line {
  display: block;
  width: fit-content;
  max-width: none;
  white-space: nowrap;
  font-style: normal;
  overflow-wrap: normal;
}

.si-page--home .si-hero__title-line:nth-child(2) {
  margin-top: 0.08em;
}

.si-page--home .si-hero__description {
  max-width: 620px;
  margin: 0;
  color: #484b45;
  font-size: 17px;
  line-height: 2;
}

.si-page--home .si-hero__desktop-break {
  display: inline;
}

.si-page--home .si-hero__actions {
  display: flex;
  margin: 28px 0 0 !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
}

.si-page--home .si-hero__actions > p {
  display: flex;
  margin: 0 !important;
  line-height: 0;
}

.si-page--home .si-hero__operator {
  margin: 30px 0 0;
  color: #686961;
  font-family: var(--si-font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.si-page--home .si-hero__operator strong {
  color: var(--si-ink);
}

.si-page--home .si-hero__media {
  position: relative;
  overflow: hidden;
  background: #c8c1b4;
}

.si-page--home .si-hero__image,
.si-page--home .si-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.si-page--home .si-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, 0.62), transparent 34%);
  content: "";
  pointer-events: none;
}

.si-page--home .si-hero__caption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  margin: 0 !important;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
}

.si-page--home .si-hero__caption p {
  margin: 0;
}

.si-page--home .si-hero__caption-text {
  margin: 0;
  font-family: var(--si-font-serif);
  font-size: 20px;
  line-height: 1.85;
}

.si-page--home .si-hero__credit {
  margin: 0 !important;
  color: #fff;
  font-family: var(--si-font-sans);
  font-size: 11px;
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.si-page--home .si-hero__credit a {
  color: inherit;
  text-decoration: none;
}

.si-page--home .si-hero .si-button {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.si-page--home .si-hero .si-button--clay {
  min-height: 58px;
  padding: 0 24px;
  gap: 56px;
}

.si-page--home .si-hero .si-button--line {
  min-height: 0;
  padding: 8px 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: var(--si-ink);
  line-height: 1.85;
}

@media (hover: hover) and (pointer: fine) {
  .si-page--home .si-hero__credit a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

/* Four-part proof rail */
.si-page--home .si-proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 0;
  border-bottom: 0;
  background: var(--si-ink);
  color: #fff;
}

.si-page--home .si-proof-rail__item {
  min-width: 0;
  min-height: 96px;
  margin: 0 !important;
  padding: 19px clamp(20px, 3vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.si-page--home .si-proof-rail__item:last-child {
  border-right: 0;
}

.si-page--home .si-proof-rail__item p {
  margin: 8px 0 0 !important;
  font-family: var(--si-font-serif);
  font-size: 16px;
  line-height: 1.85;
}

.si-page--home .si-proof-rail__item .si-proof-rail__code {
  display: inline;
  margin: 0 !important;
  color: var(--si-gold-on-dark);
  font-family: var(--si-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.85;
}

/* Shared section rhythm */
.si-page--home
  :is(.si-section--audience, .si-section--services, .si-section--faq) {
  padding-block: 96px;
}

/* Keep the prototype's paper grain continuous instead of restarting it at
   each light section. The page stylesheet is loaded only on the home page. */
#body_wrap.si-theme-scope:has(.si-page--home) .si-site {
  background-position: 0 -80px;
}

.si-page--home .si-section--audience,
.si-page--home .si-section--faq {
  background-color: transparent;
  background-image: none;
  background-blend-mode: normal;
}

.si-page--home .si-section-head {
  display: grid;
  margin: 0 0 48px !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 72px;
}

.si-page--home .si-section-head > * {
  margin-block: 0 !important;
}

.si-page--home .si-section-head .si-eyebrow {
  margin: 0 0 20px;
}

.si-page--home .si-section-head .si-heading {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.5;
}

.si-page--home .si-section-head__copy {
  margin: 0;
  color: var(--si-ink-muted);
  font-size: 15px;
  line-height: 1.95;
}

.si-page--home .si-section-head__copy > span {
  display: block;
}

.si-page--home .si-section--services .si-section-head__copy > span {
  display: inline;
}

.si-page--home .si-section--services .si-section-head .si-eyebrow {
  margin: 0;
  color: #554f46;
  font-family: var(--si-font-sans);
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: 0.09em;
}

.si-page--home .si-section--services .si-section-head .si-heading {
  max-width: 12em;
  font-size: clamp(34px, 3.45vw, 50px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
}

.si-page--home .si-section--services .si-section-head__copy {
  margin: 0 0 7px !important;
}

/* Audience / scope */
.si-page--home .si-section-head--audience {
  margin-bottom: 58px !important;
  grid-template-columns: 150px minmax(460px, 1fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 40px;
}

.si-page--home .si-section-head--audience .si-eyebrow,
.si-page--home .si-section-head--audience .si-section-head__copy {
  margin-top: 4px;
}

.si-page--home .si-section-head--audience .si-heading {
  max-width: 12em;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
}

.si-page--home .si-section-head--audience .si-heading > span {
  display: block;
}

.si-page--home .si-section-head--audience .si-section-head__copy {
  font-size: 16px;
  line-height: 2;
}

.si-page--home .si-audience {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(69, 60, 48, 0.28);
  background: rgba(255, 252, 243, 0.62);
  box-shadow: 0 18px 44px rgba(35, 30, 24, 0.055);
}

.si-page--home .si-audience__image {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(490px, 36vw, 610px);
  height: 100%;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(151, 197, 178, 0.16) 0 22%, transparent 22.5%),
    radial-gradient(circle at 92% 88%, rgba(205, 169, 104, 0.15) 0 25%, transparent 25.5%),
    rgba(250, 247, 238, 0.9);
  align-self: stretch;
}

.si-page--home .si-audience__image::after {
  display: none;
}

.si-page--home .si-audience__graphic,
.si-page--home .si-audience__graphic img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.si-page--home .si-audience__graphic img {
  position: relative;
  z-index: 1;
  max-width: none;
  object-fit: cover;
  filter: none;
  transform: none;
}

.si-page--home .si-audience__list {
  position: relative;
  display: grid;
  height: 100%;
  margin: 0 !important;
  padding: clamp(8px, 1.2vw, 16px) clamp(26px, 2.6vw, 38px);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(90deg, rgba(205, 169, 104, 0.08), transparent 18%),
    rgba(255, 252, 243, 0.82);
}

.si-page--home .si-audience__item {
  display: grid;
  min-height: 0;
  margin: 0 !important;
  padding: clamp(18px, 1.8vw, 26px) 0;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.4vw, 18px);
  border-top: 0;
  border-bottom: 1px solid var(--si-line);
}

.si-page--home .si-audience__item:first-child {
  border-top: 0;
}

.si-page--home .si-audience__item:last-child {
  border-bottom: 0;
}

.si-page--home .si-audience__number {
  position: relative;
  align-self: start;
  margin: 0 !important;
  padding-top: 8px;
  color: var(--si-clay);
  font-family: var(--si-font-serif);
  font-size: 20px;
}

.si-page--home .si-audience__number::after {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 13px;
  background: #b58b3e;
  content: "";
}

.si-page--home .si-audience__item > .wp-block-group,
.si-page--home
  .si-audience__item
  > .wp-block-group__inner-container
  > .wp-block-group {
  min-width: 0;
  margin: 0 !important;
}

.si-page--home .si-audience__item h3 {
  margin: 0 0 9px;
  font-size: clamp(22px, 1.8vw, 25px);
  line-height: 1.45;
}

.si-page--home .si-audience__item p {
  margin: 0;
  color: var(--si-ink-muted);
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.75;
}

/* Four-step service atlas */
.si-page--home .si-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(69, 60, 48, 0.4);
}

.si-page--home .si-service-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  margin: 0 !important;
  padding: 28px 24px 26px;
  border-right: 1px solid rgba(69, 60, 48, 0.22);
  border-bottom: 1px solid rgba(69, 60, 48, 0.22);
  background: transparent;
  flex-direction: column;
}

.si-page--home .si-service-card:last-child {
  border-right: 0;
}

.si-page--home .si-service-card__head {
  display: flex;
  margin: 0 !important;
  align-items: baseline;
  justify-content: space-between;
  color: #62625c;
  font-family: var(--si-font-latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.si-page--home .si-service-card__head p {
  margin: 0 !important;
}

.si-page--home .si-service-card__number {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
  color: var(--si-clay);
  font-family: var(--si-font-serif);
  font-size: clamp(30px, 2.25vw, 38px);
  line-height: 1;
}

.si-page--home .si-service-card__number strong {
  font-family: var(--si-font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.si-page--home .si-service-card__label {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.si-page--home .si-service-card__visual {
  display: grid;
  width: min(100%, 190px);
  aspect-ratio: 1;
  margin: 18px auto 8px;
  place-items: center;
}

.si-page--home .si-service-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.si-page--home .si-service-card h3 {
  margin: auto 0 0;
  font-size: clamp(18px, 1.15vw, 21px);
  line-height: 1.55;
  text-align: center;
}

.si-page--home .si-service-card h3::before {
  display: none;
}

.si-page--home .si-service-card h3 > span {
  display: block;
}

.si-page--home .si-service-cta {
  display: flex;
  margin: 34px 0 0 !important;
  justify-content: flex-end;
}

.si-page--home .si-service-cta .si-button {
  min-width: 285px;
  min-height: 0;
  padding: 17px 0;
  gap: 0;
  border: 0;
  border-bottom: 1px solid var(--si-ink);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

@media (hover: hover) and (pointer: fine) {
  .si-page--home
    .si-service-cta
    .si-button:hover
    .si-button__arrow {
    transform: none;
  }
}

/* Dark evidence section */
.si-page--home .si-practice {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-bottom: 1px solid rgba(221, 201, 145, 0.2);
  background: var(--si-sumi);
  color: #f5f1e8;
}

.si-page--home .si-practice__visual,
.si-page--home .si-practice__copy {
  position: relative;
  min-width: 0;
  min-height: clamp(500px, 34vw, 560px);
  margin: 0 !important;
  padding: 64px clamp(44px, 6vw, 82px);
  background: var(--si-sumi);
}

.si-page--home .si-practice__visual {
  isolation: isolate;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  color: #f5f1e8;
}

.si-page--home .si-practice__visual::before {
  position: absolute;
  z-index: 0;
  top: 52%;
  left: 50%;
  width: 96%;
  aspect-ratio: 1600 / 591;
  background: var(--si-gold);
  content: "";
  opacity: 0.2;
  transform: translate(-50%, -50%);
  -webkit-mask: url("../images/brand/shingi-ittai-logo.png") center / contain
    no-repeat;
  mask: url("../images/brand/shingi-ittai-logo.png") center / contain no-repeat;
}

/* =========================================================
   Approved HOME creative / exact WordPress parity pass
   Keep this block last among the desktop declarations. The additional
   specificity deliberately wins over SWELL's block wrappers and defaults.
   ========================================================= */

#body_wrap .si-page--home .si-hero__kicker {
  border-left-color: #b58b3e;
}

#body_wrap .si-page--home .si-hero__actions .si-button {
  letter-spacing: 0.015em;
}

#body_wrap .si-page--home .si-section-head--audience .si-eyebrow {
  margin: 0 !important;
  color: #554f46 !important;
  font-family: var(--si-font-sans) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.85 !important;
  letter-spacing: 0.09em !important;
}

#body_wrap .si-page--home .si-audience__number {
  color: var(--si-clay) !important;
  font-family: var(--si-font-serif) !important;
  font-size: 20px !important;
  line-height: 1.85 !important;
}

#body_wrap .si-page--home .si-audience__item h3 {
  letter-spacing: 0.05em;
}

#body_wrap .si-page--home .si-audience__item p {
  max-width: 600px;
}

#body_wrap .si-page--home .si-service-card__number {
  letter-spacing: 0.24px;
}

#body_wrap .si-page--home .si-service-card__label {
  font-family: var(--si-font-sans) !important;
  font-weight: 700 !important;
}

#body_wrap .si-page--home .si-service-card h3 {
  letter-spacing: 0.05em;
}

#body_wrap .si-page--home .si-service-cta {
  margin-top: 34px !important;
}

#body_wrap .si-page--home .si-practice__fact {
  gap: 0;
}

#body_wrap
  .si-page--home
  .si-faq
  > .wp-block-group__inner-container
  > .wp-block-group:first-child
  > .wp-block-group__inner-container
  > p:last-child {
  max-width: 520px;
  margin: 28px 0 0 !important;
  color: var(--si-ink-muted) !important;
  font-size: 15px !important;
  line-height: 1.85;
}

#body_wrap .si-page--home .si-contact-band {
  position: relative;
  overflow: hidden;
}

#body_wrap .si-page--home .si-contact-band .si-button--ivory {
  padding-block: 0;
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.si-site-footer .si-site-footer__column > h2 {
  font-family: var(--si-font-sans) !important;
}

.si-page--home .si-practice__visual::after {
  display: none;
}

.si-page--home .si-practice__statement {
  position: relative;
  z-index: 1;
  max-width: 12em;
  margin: 0;
  font-family: var(--si-font-serif);
  font-size: clamp(38px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.58;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

.si-page--home .si-practice__statement-line {
  display: block;
}

.si-page--home .si-practice__copy {
  display: flex;
  border-left: 1px solid rgba(205, 169, 104, 0.2);
  color: #fff;
  flex-direction: column;
  justify-content: center;
}

.si-page--home .si-practice__copy h2 {
  margin: 0 0 32px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.si-page--home .si-practice__lead {
  max-width: 600px;
  margin: 0;
  color: #d9d4ca;
  font-size: 16px;
  line-height: 2;
}

.si-page--home .si-practice__facts {
  margin: 34px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.si-page--home .si-practice__fact {
  display: grid;
  margin: 0 !important;
  padding: 14px 0;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.si-page--home .si-practice__fact p {
  margin: 0;
}

.si-page--home .si-practice__fact-label {
  color: #e8e3d9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.si-page--home .si-practice__fact-value {
  color: #fff;
  font-family: var(--si-font-serif);
  font-size: 16px;
}

.si-page--home .si-practice__copy > p:last-child {
  width: min(100%, 300px);
  margin: 32px 0 0;
}

.si-page--home
  .si-practice__copy
  > .wp-block-group__inner-container
  > p:last-child {
  width: min(100%, 300px);
  margin: 32px 0 0 !important;
}

.si-page--home .si-practice__copy > p:last-child .si-button {
  width: 100%;
  min-height: 0;
  padding: 15px 0;
  gap: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.si-page--home
  .si-practice__copy
  > .wp-block-group__inner-container
  > p:last-child
  .si-button {
  width: 100%;
  min-height: 0;
  padding: 15px 0;
  gap: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

@media (hover: hover) and (pointer: fine) {
  .si-page--home .si-practice__copy > p:last-child .si-button:hover,
  .si-page--home
    .si-practice__copy
    > .wp-block-group__inner-container
    > p:last-child
    .si-button:hover {
    color: #fff;
  }

  .si-page--home .si-practice__copy > p:last-child .si-button:hover .si-button__arrow,
  .si-page--home
    .si-practice__copy
    > .wp-block-group__inner-container
    > p:last-child
    .si-button:hover
    .si-button__arrow {
    transform: none;
  }
}

/* The media bridge uses Gutenberg groups, so preserve the prototype's
   explicit section rhythm after the global flow reset above. */
.si-page--home .si-media-index-v5-shell,
.si-page--home .si-media-index-v5-copy,
.si-page--home .si-media-index-v5-business {
  margin-bottom: 0 !important;
}

.si-page--home .si-media-index-v5-heading {
  margin-bottom: 34px !important;
}

.si-page--home .si-media-index-v5-brand {
  font-weight: 700;
}

.si-page--home .si-media-index-v5-copy h2 {
  color: var(--si-media-coral);
}

.si-page--home .si-media-index-v5-summary {
  margin: 24px 0 0 !important;
}

.si-page--home .si-media-index-v5-copy .si-media-index-v5-primary {
  margin: 28px 0 0 !important;
}

.si-page--home .si-media-index-v5-business {
  font-size: 11px;
  line-height: 1.85;
}

.si-page--home .si-media-index-v5-nav {
  margin-top: 34px !important;
}

.si-page--home .si-media-index-v5-visual noscript {
  display: none;
}

/* FAQ */
.si-page--home .si-faq {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 6vw, 88px);
}

.si-page--home .si-faq > div:first-child {
  margin: 0 !important;
}

.si-page--home .si-section--faq .si-heading {
  max-width: 12em;
  margin: 0;
  font-size: clamp(42px, 3.2vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
}

.si-page--home .si-section--faq .si-heading > span {
  display: block;
}

.si-page--home .si-faq > div:first-child > p:last-child {
  max-width: 520px;
  margin: 28px 0 0 !important;
  color: var(--si-ink-muted);
  font-size: 15px;
}

.si-page--home .si-faq__list details {
  margin: 0 !important;
  border-top: 0;
  border-bottom: 1px solid var(--si-line);
}

.si-page--home .si-faq__list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--si-font-serif);
  font-size: 18px;
  line-height: 1.85;
}

.si-page--home .si-faq__list summary::marker,
.si-page--home .si-faq__list summary::-webkit-details-marker {
  display: none;
  content: "";
}

.si-page--home .si-faq__list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--si-clay);
  content: "＋";
}

.si-page--home .si-faq__list details[open] summary::after {
  content: "−";
}

.si-page--home .si-faq__list details p {
  margin: 0 !important;
  padding: 0 42px 28px 0;
  color: var(--si-ink-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* Conversion band */
.si-page--home .si-contact-band {
  padding-block: clamp(96px, 7vw, 116px);
  border-bottom: 1px solid rgba(255, 246, 235, 0.22);
  background: #843f2d;
  color: var(--si-white);
}

.si-page--home .si-contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(64px, 7vw, 112px);
}

.si-page--home .si-contact-band__heading,
.si-page--home .si-contact-band__copy {
  min-width: 0;
  margin: 0 !important;
}

.si-page--home .si-contact-band .si-eyebrow--light {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 14px;
  color: #f1dcc3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: 0.09em;
}

.si-page--home .si-contact-band .si-eyebrow--light::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.si-page--home .si-contact-band h2 {
  max-width: none;
  margin: 0;
  color: var(--si-white);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.si-page--home .si-media-index-v5-copy .si-media-index-v5-primary {
  font-size: 14px;
}

.si-page--home .si-contact-band__copy {
  max-width: 520px;
  transform: translateY(24px);
}

.si-page--home .si-contact-band__copy > p:first-child {
  max-width: 460px;
  margin: 0;
  color: #f5e9e2;
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.9;
}

.si-page--home
  .si-contact-band__copy
  > .wp-block-group__inner-container
  > p:first-child {
  max-width: 460px;
  margin: 0 !important;
  color: #f5e9e2;
  font-size: 15px;
  line-height: 1.9;
}

.si-page--home .si-contact-band__copy > p:last-child {
  margin: 28px 0 0;
}

.si-page--home
  .si-contact-band__copy
  > .wp-block-group__inner-container
  > p:last-child {
  margin: 28px 0 0 !important;
}

.si-page--home .si-contact-band .si-button--ivory {
  min-width: clamp(300px, 22vw, 344px);
  min-height: 64px;
  padding-inline: 28px;
  justify-content: space-between;
  gap: 36px;
  border-color: #f8f3e9;
  background-color: #f8f3e9;
  color: #5f281b;
  font-size: 15px;
}

/* The approved interaction reverses the ivory CTA to sumi and luminous gold.
   This rule intentionally matches the specificity of the HOME rest state. */
.si-page--home .si-contact-band .si-button--ivory:focus-visible {
  border-color: var(--si-gold-on-dark);
  background-color: var(--si-ink);
  color: var(--si-gold-on-dark);
  outline: 2px solid #f8f3e9;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--si-ink);
}

.si-page--home
  .si-contact-band
  .si-button--ivory:focus-visible
  .si-button__arrow {
  transform: translateX(5px);
}

@media (hover: hover) and (pointer: fine) {
  .si-page--home .si-contact-band .si-button--ivory:hover {
    border-color: var(--si-gold-on-dark);
    background-color: var(--si-ink);
    color: var(--si-gold-on-dark);
  }

  .si-page--home
    .si-contact-band
    .si-button--ivory:hover
    .si-button__arrow {
    transform: translateX(5px);
  }
}

/* SWELL footer markup is semantically equivalent to the prototype but uses
   headings and smaller helper text by default. Match the approved footer's
   typographic metrics exactly on the front page. */
.si-site-footer__column > h2 {
  margin: 0 0 18px;
  color: #f0ece4;
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.16em;
}

.si-site-footer__small {
  font-size: 12px;
  line-height: 1.85;
}

.si-site-footer__photo-sources {
  margin-top: 0 !important;
}

/* Large desktop uses the same optical centres as the approved prototype. */
@media (min-width: 1440px) {
  .si-page--home .si-hero__copy {
    padding-right: clamp(96px, 6vw, 132px);
    padding-left: clamp(140px, 9vw, 190px);
  }

  .si-page--home .si-hero__kicker {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .si-page--home .si-hero__title {
    margin-bottom: 28px;
    font-size: clamp(62px, 3.9vw, 80px);
    line-height: 1.24;
  }

  .si-page--home .si-hero__description {
    font-size: clamp(18px, 1vw, 20px);
    line-height: 1.95;
  }

  .si-page--home .si-hero__actions {
    margin-top: 34px !important;
  }

  .si-page--home .si-hero .si-button {
    font-size: 15px;
  }

  .si-page--home .si-hero .si-button--clay {
    min-height: 62px;
    padding-inline: 26px;
  }

  .si-page--home .si-practice__visual {
    padding-right: clamp(56px, 4vw, 82px);
    padding-left: clamp(110px, 9vw, 184px);
  }

  .si-page--home .si-practice__copy {
    padding-right: clamp(110px, 9vw, 184px);
    padding-left: clamp(56px, 4vw, 82px);
  }
}

@media (max-width: 1180px) {
  .si-page--home .si-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .si-page--home .si-hero__copy {
    min-height: 0;
    padding: 56px max(32px, calc((100vw - 980px) / 2));
  }

  .si-page--home .si-hero__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .si-page--home .si-section-head--audience {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .si-page--home .si-section-head--audience .si-section-head__copy {
    grid-column: 2;
  }

  .si-page--home .si-practice {
    grid-template-columns: minmax(0, 1fr);
  }

  .si-page--home .si-practice__visual {
    min-height: 420px;
  }

  .si-page--home .si-practice__copy {
    min-height: 0;
    border-top: 1px solid rgba(205, 169, 104, 0.2);
    border-left: 0;
  }
}

@media (max-width: 1100px) {
  .si-page--home .si-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .si-page--home .si-service-card {
    min-height: 360px;
  }

  .si-page--home .si-service-card:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 1000px) {
  .si-page--home .si-audience {
    overflow: visible;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .si-page--home .si-audience__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 1;
  }

  .si-page--home .si-audience__list {
    height: auto;
    border: 1px solid rgba(69, 60, 48, 0.24);
  }

  .si-page--home .si-contact-band__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .si-page--home .si-contact-band__copy {
    width: 100%;
    max-width: 520px;
  }

  .si-page--home .si-contact-band__copy {
    transform: none;
  }
}

@media (max-width: 960px) {
  .si-page--home .si-faq {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  #body_wrap.si-theme-scope:has(.si-page--home) .si-site {
    background-position: 0 -68px;
  }

  .si-page--home {
    font-size: 16px;
  }

  .si-page--home .si-hero__copy {
    padding: 50px 20px 42px;
  }

  .si-page--home .si-hero__kicker {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .si-page--home .si-hero__title {
    margin-bottom: 22px;
    font-size: clamp(35px, 9.4vw, 39px);
    line-height: 1.4;
    letter-spacing: 0.015em;
    word-break: keep-all;
  }

  .si-page--home .si-hero__title-line {
    width: fit-content;
    max-width: none;
    white-space: normal;
  }

  .si-page--home .si-hero__description {
    font-size: 16px;
    line-height: 2;
  }

  .si-page--home .si-hero__actions {
    margin-top: 28px !important;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .si-page--home .si-hero__actions .si-button--clay {
    width: 100%;
  }

  .si-page--home .si-hero__actions .si-button--line {
    width: fit-content;
    min-height: 0;
    padding: 8px 0;
    line-height: 1.85;
  }

  .si-page--home .si-hero__media {
    aspect-ratio: 4 / 3;
  }

  .si-page--home .si-hero__caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
  }

  .si-page--home .si-hero__credit {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }

  .si-page--home .si-proof-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .si-page--home .si-proof-rail__item {
    padding: 19px 18px;
  }

  .si-page--home .si-proof-rail__item p {
    font-size: 14px;
  }

  .si-page--home .si-proof-rail__item .si-proof-rail__code {
    font-size: 11px;
  }

  .si-page--home .si-proof-rail__item:nth-child(2) {
    border-right: 0;
  }

  .si-page--home .si-proof-rail__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .si-page--home
    :is(.si-section--audience, .si-section--services, .si-section--faq) {
    padding-block: 70px;
  }

  .si-page--home .si-section-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .si-page--home .si-section-head--audience {
    margin-bottom: 58px !important;
  }

  .si-page--home .si-section-head--audience .si-section-head__copy {
    grid-column: auto;
  }

  .si-page--home .si-section-head--audience .si-eyebrow {
    margin: 0 !important;
    line-height: 1.85;
  }

  .si-page--home .si-section-head--audience .si-heading {
    font-size: 30px !important;
    line-height: 1.52;
  }

  .si-page--home .si-section--faq .si-heading {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.52;
  }

  .si-page--home .si-section-head .si-heading {
    font-size: clamp(30px, 8vw, 38px);
  }

  .si-page--home .si-section--services .si-section-head {
    gap: 28px;
  }

  .si-page--home .si-section--services .si-section-head .si-heading {
    font-size: 32px !important;
    line-height: 1.52;
  }

  .si-page--home .si-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .si-page--home .si-service-card,
  .si-page--home .si-service-card:nth-child(odd) {
    display: grid;
    min-height: 0;
    padding: 22px 20px;
    grid-template-columns: minmax(0, 1fr) 116px;
    align-items: center;
    column-gap: 18px;
    border-right: 0;
  }

  .si-page--home .si-service-card__head,
  .si-page--home .si-service-card h3 {
    grid-column: 1;
  }

  .si-page--home .si-service-card__visual {
    width: 116px;
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .si-page--home .si-service-card h3 {
    margin-top: 24px;
    text-align: left;
  }

  .si-page--home .si-section--services .si-service-cta {
    margin-top: 34px !important;
  }

  .si-page--home .si-service-cta .si-button {
    width: 285px;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 17px 0;
    line-height: 1.85;
  }

  .si-page--home .si-practice__visual {
    min-height: 340px;
    padding: 44px 20px;
  }

  .si-page--home .si-practice__copy {
    min-height: 0;
    padding: 54px 20px;
  }

  .si-page--home .si-practice__statement {
    max-width: 11em;
    font-size: 31px;
  }

  .si-page--home .si-practice__copy h2 {
    font-size: 28px;
    line-height: 1.52;
    letter-spacing: 0.02em;
  }

  .si-page--home .si-practice__fact {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  #body_wrap .si-page--home .si-practice__fact {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .si-page--home
    .si-faq
    > .wp-block-group__inner-container
    > .wp-block-group:first-child {
    margin: 0 !important;
  }

  .si-page--home
    .si-faq
    > .wp-block-group__inner-container
    > .wp-block-group:first-child
    p:last-child {
    margin-top: 28px !important;
  }

  .si-page--home .si-faq__list summary {
    padding: 27px 48px 27px 0;
    font-size: 18px;
  }

  .si-page--home .si-faq__list summary::after {
    top: 25px;
  }

  .si-page--home .si-contact-band h2 {
    font-size: 36px;
  }
}

@media (max-width: 800px) {
  .si-page--home .si-media-index-v5-heading {
    display: block !important;
    margin-bottom: 25px !important;
  }

  .si-page--home .si-media-index-v5-summary {
    margin-top: 17px !important;
  }

  .si-page--home .si-media-index-v5-copy .si-media-index-v5-primary {
    margin-bottom: 0 !important;
    font-size: 14px;
    line-height: 1.85;
  }

  .si-page--home .si-media-index-v5-visual {
    padding: 10px;
  }

  .si-page--home .si-media-index-v5-visual img {
    height: auto !important;
  }

  .si-page--home .si-media-index-v5-nav {
    margin-top: 28px !important;
  }

  .si-page--home .si-media-index-v5-nav strong {
    font-size: 18px;
  }

  .si-page--home .si-media-index-v5-business {
    line-height: 1.7;
  }

  .si-page--home .si-media-index-v5-business-label {
    line-height: 1.7;
  }

  .si-page--home .si-media-index-v5-business-note {
    font-size: 13px;
  }

  .si-page--home .si-media-index-v5-business-action {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (min-width: 721px) and (max-width: 800px) {
  .si-page--home .si-media-index-v5-shell {
    width: min(var(--si-home-shell), calc(100% - 64px));
  }
}

@media (max-width: 600px) {
  .si-page--home .si-audience__list {
    padding: 4px 20px;
  }

  .si-page--home .si-audience__item {
    padding-block: 24px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .si-page--home
    .si-audience__item
    > .wp-block-group__inner-container
    > .wp-block-group {
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  #body_wrap .si-page--home .si-contact-band .si-button--ivory {
    width: min(300px, 100%);
    max-width: none;
    min-width: min(300px, 100%);
  }
}

@media (max-width: 360px) {
  .si-page--home .si-hero__title {
    font-size: clamp(30px, 9.4vw, 34px);
  }

  .si-page--home .si-section-head--audience .si-heading {
    font-size: 26px !important;
  }

  .si-page--home .si-section--faq .si-heading {
    font-size: 30px;
  }

  .si-page--home .si-practice__statement {
    font-size: clamp(27px, 8.5vw, 31px);
    word-break: normal;
  }

  .si-page--home .si-practice__copy h2 {
    font-size: 26px;
    word-break: normal;
  }
}

@media (max-width: 720px) {
  .si-page--home .si-shell {
    width: calc(100% - 36px);
  }
}

@media (max-width: 680px) {
  .si-page--home .si-shell {
    width: calc(100% - 36px);
  }

  .si-page--home .si-hero__desktop-break {
    display: none;
  }

  .si-site-footer__inner {
    width: min(1180px, calc(100% - 36px));
  }

  .si-site-footer__grid {
    gap: 50px;
  }

  .si-site-footer__legal {
    gap: 0;
  }

  .si-site-footer__legal nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
