@import url("styles.css");

:root {
  --ink: #17202f;
  --muted: #596273;
  --paper: #f7f4ee;
  --white: #ffffff;
  --yellow: #f4c542;
  --red: #d9473f;
  --blue: #285f9f;
  --dark-blue: #111827;
  --line: rgba(23, 32, 47, 0.12);
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf7 0, var(--paper) 560px),
    var(--paper);
}

.site-header {
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 32, 47, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.brand {
  gap: 14px;
  font-weight: 850;
}

.logo-tile {
  width: 46px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.brand-mark {
  top: -8px;
  left: -16px;
  width: 78px;
}

.brand-text,
.nav {
  color: var(--ink);
}

.nav {
  gap: 18px;
  color: rgba(23, 32, 47, 0.72);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a:hover {
  color: var(--blue);
}

.nav-button {
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--ink);
}

.hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: clamp(34px, 5vw, 86px);
  min-height: auto;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 78px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 197, 66, 0.24), transparent 26%),
    linear-gradient(120deg, #fffdf8 0%, #f2f6fb 58%, #edf2f7 100%);
}

.hero-brand {
  --hero-logo-width: clamp(108px, 13vw, 150px);
  width: calc(var(--hero-logo-width) + 22px);
  margin-bottom: 24px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
  transform: none;
}

.eyebrow,
.hero-eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-eyebrow {
  margin-bottom: 14px;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

h1,
h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.02;
  text-transform: none;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.1rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 850;
}

h3 {
  font-size: 1rem;
  font-weight: 850;
}

.hero-text {
  max-width: 700px;
  color: rgba(23, 32, 47, 0.72);
  font-size: clamp(1.04rem, 1.32vw, 1.22rem);
}

.hero-reassurance {
  gap: 8px;
  margin-top: 22px;
}

.hero-reassurance li {
  border: 1px solid rgba(40, 95, 159, 0.14);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(40, 95, 159, 0.08);
  box-shadow: none;
}

.button {
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.14);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(23, 32, 47, 0.22);
  background: rgba(255, 255, 255, 0.68);
}

.quick-info {
  gap: 0;
  overflow: hidden;
  max-width: 820px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.quick-info div {
  padding: 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info dt {
  color: var(--muted);
}

.quick-info dd {
  color: var(--ink);
  font-weight: 850;
}

.hero-visual {
  margin-top: clamp(22px, 3vw, 42px);
}

.photo-card {
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-photo {
  aspect-ratio: 4 / 4.4;
  transform: none;
}

.hero-photo::before,
.hero-photo::after {
  display: none;
}

.hero-photo img {
  filter: saturate(0.96) contrast(1.02);
}

.hero-photo figcaption {
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.82);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transform: none;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.steps,
.date-grid,
.trust-grid {
  gap: 18px;
}

.steps article,
.date-grid article,
.trust-grid article,
.pricing-panel,
.info-panel,
.faq-list details,
.priority-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.steps article {
  min-height: 210px;
  padding: 24px;
}

.steps span {
  margin-bottom: 28px;
  color: var(--blue);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.priority-section-top,
.priority-section-bottom,
.practical,
.trust-confidence,
.faq {
  background: var(--paper);
}

.priority-section {
  align-items: start;
}

.priority-reassurance li,
.benefit-list li {
  border: 1px solid rgba(40, 95, 159, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.priority-reassurance li::before {
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
}

.priority-form input,
.priority-form select,
.priority-form textarea {
  border: 1px solid rgba(23, 32, 47, 0.18);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 600;
}

.priority-form input:focus,
.priority-form select:focus,
.priority-form textarea:focus {
  outline: 3px solid rgba(40, 95, 159, 0.18);
}

.parent-benefits {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(40, 95, 159, 0.88)),
    var(--dark-blue);
}

.parent-benefits .eyebrow {
  color: var(--yellow);
}

.parent-benefits h2,
.parent-benefits p {
  color: var(--white);
}

.benefit-photo {
  aspect-ratio: 2 / 1;
  border: 0;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transform: none;
}

.benefit-list li {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 250px;
}

.trust-icon {
  min-width: 0;
  min-height: 0;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(40, 95, 159, 0.1);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: none;
}

.trust-note {
  border: 1px solid rgba(40, 95, 159, 0.14);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.date-grid article {
  min-height: 180px;
}

.date-grid time {
  border-radius: 999px;
  color: var(--blue);
  background: rgba(40, 95, 159, 0.1);
}

.prices div {
  border-radius: 8px;
  background: rgba(244, 197, 66, 0.22);
}

.prices strong {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

.value-list li::before {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: none;
}

.faq-list summary {
  padding: 22px 24px;
}

.booking {
  background:
    linear-gradient(135deg, var(--ink), #285f9f);
}

.booking .eyebrow {
  color: var(--yellow);
}

.booking .button.primary {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.booking .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #10151f;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }

  .hero-photo {
    aspect-ratio: 1.35 / 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-block: 12px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .hero-brand {
    --hero-logo-width: min(148px, calc(100vw - 86px));
  }

  .hero-reassurance li,
  .priority-reassurance li,
  .benefit-list li {
    border-radius: 8px;
  }

  .quick-info {
    border-radius: 8px;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .hero-photo {
    aspect-ratio: 1.08 / 1;
    transform: none;
  }

  .hero-photo figcaption {
    right: 12px;
    bottom: 12px;
  }

  .benefit-photo {
    aspect-ratio: 1.45 / 1;
  }
}

/* Reference-inspired draft layer: editorial, high-contrast, agency-style finish. */
:root {
  --ink: #0e0f12;
  --muted: #62666f;
  --paper: #f3f0e8;
  --white: #ffffff;
  --yellow: #f2d64b;
  --red: #e2453c;
  --blue: #1f5f89;
  --dark-blue: #0e0f12;
  --line: rgba(14, 15, 18, 0.16);
  --shadow: 0 26px 70px rgba(14, 15, 18, 0.14);
}

body {
  background: var(--paper);
  overflow-x: hidden;
}

.site-header {
  padding-block: 18px;
  background: rgba(243, 240, 232, 0.86);
  box-shadow: 0 12px 30px rgba(14, 15, 18, 0.12);
}

.brand-text {
  text-transform: uppercase;
}

.logo-tile {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.nav {
  text-transform: uppercase;
}

.nav-button {
  color: var(--ink) !important;
  background: var(--yellow);
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.66fr);
  align-items: end;
  min-height: calc(100vh - 82px);
  padding-top: clamp(58px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(14, 15, 18, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f7f4ed, var(--paper));
  background-size: 78px 100%, auto;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto 0 clamp(18px, 3vw, 42px);
  z-index: -1;
  height: clamp(72px, 11vw, 142px);
  content: "BUILD  SHOOT  EDIT  PREMIERE  BUILD  SHOOT  EDIT  PREMIERE";
  color: rgba(14, 15, 18, 0.055);
  font-size: clamp(4.2rem, 11vw, 11rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  animation: banner-drift 22s linear infinite;
}

.hero-copy > * {
  animation: hero-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 270ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 360ms;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 450ms;
}

.hero-photo {
  animation: photo-settle 900ms cubic-bezier(0.16, 1, 0.3, 1) 240ms both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photo-settle {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes banner-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-42%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-copy > *,
  .hero-photo {
    animation: none;
  }
}

.hero-copy {
  max-width: 980px;
}

.hero-brand {
  margin-bottom: clamp(32px, 5vw, 62px);
  background: var(--white);
}

.hero-eyebrow {
  color: var(--ink);
}

h1 {
  max-width: 940px;
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 10vw, 10.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6.6vw, 7.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(14, 15, 18, 0.72);
}

.hero-reassurance {
  margin-top: 28px;
}

.hero-reassurance li {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 34px;
}

.quick-info {
  max-width: 940px;
  margin-top: clamp(42px, 6vw, 76px);
  border-radius: 0;
  border-color: var(--ink);
  background: transparent;
}

.quick-info div {
  border-color: var(--ink);
}

.quick-info dt {
  color: var(--ink);
}

.hero-visual {
  margin-top: 0;
}

.hero-photo {
  aspect-ratio: 0.8 / 1;
  border-radius: 8px;
}

.hero-photo figcaption {
  color: var(--ink);
  background: var(--yellow);
}

.hero-photo figcaption span {
  color: rgba(14, 15, 18, 0.62);
}

.section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 1050px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.section-heading p {
  max-width: 720px;
}

.priority-section,
.parent-benefits,
.practical,
.booking {
  gap: clamp(34px, 6vw, 92px);
}

.priority-section-top,
.priority-section-bottom,
.trust-confidence,
.dates,
.practical,
.faq {
  background: var(--paper);
}

.steps,
.date-grid,
.trust-grid {
  gap: 0;
  border-top: 1px solid var(--ink);
}

.steps article,
.date-grid article,
.trust-grid article {
  min-height: 0;
  padding: 26px 22px 32px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.steps article,
.date-grid article {
  border-right: 1px solid var(--ink);
  padding-left: 22px;
}

.steps article:nth-child(4n),
.date-grid article:nth-child(3n) {
  border-right: 0;
}

.steps span,
.date-grid time,
.trust-icon {
  color: var(--red);
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.date-grid time,
.trust-icon {
  border-radius: 0;
}

.steps h3,
.date-grid h3,
.trust-grid h3 {
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
}

.priority-form,
.pricing-panel,
.info-panel,
.faq-list details {
  border-color: var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.priority-reassurance li,
.benefit-list li {
  border-color: var(--ink);
  border-radius: 0;
  background: transparent;
}

.parent-benefits {
  background: var(--ink);
}

.benefit-photo {
  border-radius: 8px;
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-grid article {
  padding-left: 0;
}

.trust-note {
  border-color: var(--ink);
  border-left-color: var(--red);
  border-radius: 0;
  background: transparent;
}

.prices {
  gap: 0;
  border: 1px solid var(--ink);
}

.prices div {
  border-right: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.prices div:last-child {
  border-right: 0;
}

.faq {
  background: #faf8f2;
}

.faq-list details {
  border-radius: 0;
  box-shadow: none;
}

.lego-donations,
.private-bookings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.lego-donations {
  background: var(--paper);
}

.private-bookings {
  background: var(--white);
}

.lego-donations .section-heading,
.private-bookings .section-heading {
  margin-bottom: 0;
}

.lego-donations .button,
.private-bookings .button {
  white-space: nowrap;
}

.booking {
  background: var(--ink);
}

.booking h2 {
  letter-spacing: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) minmax(120px, 0.58fr) minmax(120px, 0.58fr) minmax(210px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: clamp(38px, 6vw, 70px) 24px;
}

.footer-cta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: clamp(32px, 5vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 8.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-logo {
  align-items: center;
  width: fit-content;
}

.footer-brand p,
.footer-contact p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-contact {
  min-width: 0;
}

.footer-contact a,
.footer-address {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-logo .brand-text {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  font-size: 0.74rem;
  font-weight: 800;
}

.footer-links a,
.footer-contact a,
.footer-legal-links a {
  color: var(--white);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal-links a:hover {
  color: var(--yellow);
}

.footer-address {
  font-size: 7.5pt;
  line-height: 1.45;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links span {
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
}

.legal-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8pt;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-photo {
    aspect-ratio: 1.35 / 1;
  }

  .steps article:nth-child(4n),
  .date-grid article:nth-child(3n) {
    border-right: 1px solid var(--ink);
  }

  .steps article:nth-child(2n),
  .date-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lego-donations,
  .private-bookings {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: var(--paper);
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    width: 100%;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 12vw, 4.2rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.5rem);
    line-height: 1.06;
  }

  .hero {
    gap: 28px;
    padding-top: 32px;
    background-size: 52px 100%, auto;
  }

  .hero::before {
    display: none;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-reassurance,
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo {
    aspect-ratio: 1.05 / 1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    padding: 22px 0;
  }

  .steps article,
  .date-grid article {
    border-right: 0 !important;
  }

  .prices {
    border-bottom: 0;
  }

  .prices div {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

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

.hero-copy,
.hero-visual,
.hero-photo {
  min-width: 0;
}

.hero-visual,
.hero-photo {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    justify-self: stretch;
  }
}
