:root {
  --jra-blue: #006F9F;
  --deep-blue: #07364A;
  --midnight: #082C3B;
  --globe-green: #4F7E58;
  --light-green: #B8D87F;
  --gold: #C9A24D;
  /* Sister-brand colours, sampled from the official AzzoPro and JRA-IC logos. */
  --azzopro: #404898;
  --jraic: #90C840;
  /* Darkened JRA-IC green for text and buttons; the logo lime fails contrast on light backgrounds. */
  --jraic-ink: #4E7522;
  --steel-gray: #7A858C;
  --off-white: #F6F4EF;
  --soft-blue: #EAF3F5;
  --white: #FFFFFF;
  --ink: #102D38;
  --muted: #59676D;
  --line: #D7E1E4;
  --shadow: 0 24px 70px rgba(8, 44, 59, .12);
  --shadow-soft: 0 14px 36px rgba(8, 44, 59, .09);
  --max: 1200px;
  --header: 104px;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: var(--sans);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 220ms ease;
}

body.is-ready,
body.coming-soon-page {
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(201, 162, 77, .7);
  outline-offset: 4px;
}

.sr-only,
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  background: var(--deep-blue);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, .94);
  border-bottom: 1px solid rgba(16, 45, 56, .1);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(8, 44, 59, .06);
}

.nav-shell {
  min-height: var(--header);
  width: min(100%, var(--max));
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: clamp(250px, 34vw, 390px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.footer-brand img {
  width: min(320px, 100%);
  height: auto;
}

.brand strong {
  display: block;
  color: var(--deep-blue);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  display: none;
  color: var(--muted);
  font-size: .74rem;
}

.menu-toggle {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(16, 45, 56, .14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--deep-blue);
}

.primary-nav {
  position: fixed;
  inset: var(--header) 0 auto 0;
  display: none;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  padding: .85rem 0;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--deep-blue);
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  position: relative;
  background: var(--midnight);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 44, 59, .68);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 8rem) 1rem clamp(4.5rem, 9vw, 7.5rem);
  color: var(--white);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--globe-green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero .eyebrow,
.cta-band .eyebrow,
.trading-preview .eyebrow,
.coming-soon-panel .eyebrow {
  color: var(--gold);
}

.hero h1,
.hero .lead {
  max-width: min(100%, 21rem);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: 2rem;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 3.9rem);
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 710px;
  margin-top: 1.35rem;
  font-size: 1rem;
  color: inherit;
  font-weight: 500;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button-row.compact {
  margin-top: 1.25rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(8, 44, 59, .12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8, 44, 59, .18);
}

.button.primary {
  background: var(--deep-blue);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--deep-blue);
  border-color: rgba(16, 45, 56, .16);
}

.hero .button.secondary,
.cta-band .button.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.text-link {
  color: var(--deep-blue);
  font-weight: 800;
  text-underline-offset: .25em;
  text-decoration-thickness: 2px;
}

.credibility {
  max-width: var(--max);
  margin: -2.6rem auto 0;
  padding: 0 1rem 1.25rem;
  display: grid;
  gap: .85rem;
  background: transparent;
  border-bottom: 0;
  position: relative;
  z-index: 2;
}

.credibility div {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid rgba(16, 45, 56, .1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.credibility strong {
  color: var(--deep-blue);
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
}

.credibility span {
  color: var(--muted);
  font-weight: 700;
  font-size: .93rem;
}

.split-section,
.section,
.page-intro,
.service-detail-list,
.contact-layout,
.inquiry-panel,
.trading-preview,
.cta-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 1rem;
}

.split-section {
  display: grid;
  gap: 2rem;
}

.split-section > div > p,
.story-stack p,
.service-card p,
.service-detail p,
.inquiry-panel p {
  font-size: 1.05rem;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2.35rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.55rem;
  border: 1px solid rgba(16, 45, 56, .1);
  border-top: 3px solid transparent;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 44, 59, .06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 111, 159, .3);
  box-shadow: var(--shadow);
}

.service-card h2,
.service-card h3 {
  margin-bottom: .9rem;
  font-size: 1.75rem;
}

.service-card p {
  margin-bottom: 0;
}

.service-card .text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1.1rem;
}

.card-media {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 1.15rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--jra-blue);
  transition: color 180ms ease, transform 180ms ease;
}

.service-card:hover .card-icon {
  color: var(--globe-green);
  transform: translateY(-2px);
}

.trading-preview {
  display: grid;
  gap: 1.5rem;
  background: var(--deep-blue);
  color: var(--white);
  max-width: none;
}

.trading-preview > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.trading-preview img {
  width: min(calc(100% - 2rem), var(--max));
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trading-preview p {
  color: rgba(255, 255, 255, .78);
}

.trading-preview .button.secondary {
  margin-top: 1.5rem;
  background: var(--white);
  color: var(--deep-blue);
  border-color: transparent;
}

.cta-band {
  max-width: none;
  background: var(--midnight);
  color: var(--white);
  text-align: center;
  border-top: 8px solid var(--gold);
}

.cta-band > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.cta-band .button {
  margin-top: 1.6rem;
  background: var(--gold);
  color: var(--midnight);
}

.page-intro {
  padding-top: clamp(4.5rem, 10vw, 8rem);
  background: var(--off-white);
}

.page-intro.narrow {
  max-width: 850px;
  margin-left: max(0px, calc((100% - var(--max)) / 2));
}

.about-intro,
.media-intro {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.about-intro figure {
  margin: 0;
}

.about-intro img,
.media-intro img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(16, 45, 56, .12);
  border-radius: 8px;
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.media-intro img {
  aspect-ratio: 4 / 3;
}

figcaption {
  margin-top: .6rem;
  color: var(--muted);
  font-size: .9rem;
}

.fact-panel {
  border-top: 4px solid var(--gold);
  background: var(--deep-blue);
  padding: 1.35rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.fact-panel p {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  font-weight: 800;
}

.story-stack {
  display: grid;
  gap: 2rem;
}

.story-stack article,
.service-detail {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(16, 45, 56, .12);
}

.story-stack h2 {
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.service-detail-list {
  display: grid;
  gap: 2.5rem;
}

.service-detail {
  display: grid;
  gap: 1rem;
}

.service-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.service-detail ul,
.inquiry-panel ul {
  display: grid;
  gap: .7rem;
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.service-detail li::marker,
.inquiry-panel li::marker {
  color: var(--gold);
}

.inquiry-panel {
  background: var(--soft-blue);
  max-width: none;
}

.inquiry-panel > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.inquiry-panel .button {
  margin-top: 1.5rem;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.contact-form,
.direct-contact {
  border: 1px solid rgba(16, 45, 56, .1);
  border-radius: 8px;
  padding: 1.35rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-form h2,
.direct-contact h2 {
  margin-bottom: .9rem;
  font-size: 2rem;
}

label {
  display: grid;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 45, 56, .14);
  border-radius: 8px;
  padding: .85rem .9rem;
  color: var(--ink);
  background: #FBFAF7;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--jra-blue);
  box-shadow: 0 0 0 4px rgba(0, 111, 159, .12);
  outline: 0;
}

textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1rem;
}

.form-status {
  margin-top: 1rem;
  font-weight: 800;
}

.form-status.is-error {
  color: #9A3412;
}

.form-status.is-success {
  color: var(--globe-green);
}

.direct-contact {
  display: grid;
  gap: .75rem;
}

.direct-contact a,
.direct-contact p {
  display: grid;
  gap: .15rem;
  padding: 1rem 0;
  color: var(--deep-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.direct-contact span,
.footer-contact span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  background: var(--midnight);
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
}

.footer-grid,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: .55rem;
}

.footer-grid a {
  color: var(--white);
  text-decoration: none;
}

.footer-grid p,
.footer-contact span {
  color: rgba(255, 255, 255, .72);
}

.footer-intro {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  max-width: 46ch;
}

.footer-brand {
  margin-bottom: .1rem;
}

.footer-description {
  margin: 0;
  line-height: 1.7;
}

.footer-label {
  margin: 0 0 .35rem;
  color: rgba(255, 255, 255, .5) !important;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-sisters {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-sister-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}

/* The sister logos are supplied on white, so each sits on its own light chip. */
.footer-sister {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: .5rem .85rem;
  background: rgba(255, 255, 255, .94);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-sister img {
  width: auto;
  height: 100%;
  max-width: 132px;
  object-fit: contain;
}

.footer-sister:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.footer-sister.brand-azzopro:hover {
  border-color: var(--azzopro);
}

.footer-sister.brand-jraic:hover {
  border-color: var(--jraic);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.footer-location-icon {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  gap: .65rem;
  color: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

@media (min-width: 700px) {
  .eyebrow {
    font-size: .78rem;
    letter-spacing: .12em;
  }

  h1 {
    font-size: clamp(4.2rem, 8vw, 5.6rem);
  }

  .lead {
    font-size: clamp(1.12rem, 2vw, 1.35rem);
  }

  .hero h1,
  .hero .lead {
    max-width: 900px;
  }

  .brand small {
    display: block;
  }

  .credibility,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form,
  .direct-contact {
    padding: 1.65rem;
  }
}

@media (min-width: 940px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .primary-nav a {
    padding: .35rem 0;
    border: 0;
    position: relative;
  }

  .primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.35rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .primary-nav a[aria-current="page"]::after,
  .primary-nav a:hover::after {
    transform: scaleX(1);
  }

  .hero {
    min-height: 650px;
  }

  .credibility {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-section,
  .about-intro,
  .media-intro,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trading-preview {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
    padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  }

  .trading-preview > *,
  .trading-preview img {
    width: 100%;
  }

  .service-detail {
    grid-template-columns: 120px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr .6fr .8fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.coming-soon-page {
  min-height: 100svh;
  background: var(--midnight);
}

.coming-soon {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 1rem;
  overflow: hidden;
}

.coming-soon-media {
  position: absolute;
  inset: 0;
}

.coming-soon-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 44, 59, .72);
}

.coming-soon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-panel {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  border-left: 6px solid var(--gold);
}

.coming-soon-logo {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  background: rgba(255, 255, 255, .95);
  border-radius: 8px;
  padding: .65rem .9rem;
}

.coming-soon-panel h1 {
  max-width: 720px;
}

.coming-soon-panel .lead {
  color: rgba(255, 255, 255, .88);
}

.coming-soon-note {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
}

.coming-soon-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.coming-soon-contact a,
.coming-soon-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .6rem .8rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
  font-weight: 800;
}

.coming-soon-contact a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}

/* --- Group structure and sister brands ------------------------------- */

.group-section .group-row {
  margin-top: 0;
}

.group-row {
  display: grid;
  gap: 1rem;
}

.story-stack .group-row {
  margin-top: 1.5rem;
}

.group-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid rgba(16, 45, 56, .1);
  border-top: 3px solid var(--jra-blue);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 44, 59, .06);
}

.group-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.group-card p {
  margin: 0;
  font-size: .98rem;
  color: var(--muted);
}

.group-note {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--steel-gray);
}

.group-card .text-link {
  margin-top: auto;
  padding-top: .7rem;
  font-size: .95rem;
}

/* Inside a group card the flex gap already supplies the rhythm, so the slot is tighter. */
.group-card .card-media {
  min-height: 38px;
  margin-bottom: 0;
}

.group-card .card-icon {
  width: 34px;
  height: 34px;
}

.group-card .brand-card-logo {
  height: 34px;
  max-width: 168px;
  margin-bottom: 0;
}

.group-card.is-sister.brand-azzopro,
.service-card.is-sister.brand-azzopro {
  border-top-color: var(--azzopro);
  border-top-width: 3px;
  border-top-style: solid;
}

.group-card.is-sister.brand-jraic,
.service-card.is-sister.brand-jraic {
  border-top-color: var(--jraic);
  border-top-width: 3px;
  border-top-style: solid;
}

.brand-card-logo {
  width: auto;
  height: 38px;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
}

/* Card logos sit in the shared media slot; only the services-page detail block
   still stacks its logo directly above the heading. */
.service-detail .brand-card-logo {
  height: 48px;
  max-width: 220px;
  margin-bottom: .9rem;
}

/* Sister-brand names carry their own colour wherever they appear. */
.brand-mention {
  font-weight: 700;
  text-underline-offset: .25em;
}

.brand-azzopro,
a.brand-azzopro,
.text-link.brand-azzopro {
  color: var(--azzopro);
}

.brand-jraic,
a.brand-jraic,
.text-link.brand-jraic {
  color: var(--jraic-ink);
}

.button.primary.brand-azzopro {
  background: var(--azzopro);
  border-color: var(--azzopro);
  color: var(--white);
}

.button.primary.brand-jraic {
  background: var(--jraic-ink);
  border-color: var(--jraic-ink);
  color: var(--white);
}

@media (min-width: 700px) {
  .group-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 940px) {
  .group-section .group-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .story-stack .group-row.is-sisters {
    grid-template-columns: repeat(2, 1fr);
  }
}
