:root {
  --black: #050509;
  --ink: #111018;
  --paper: #fff8df;
  --cream: #fff3bc;
  --yellow: #ffd43b;
  --cyan: #26d9d0;
  --purple: #8d5cff;
  --pink: #ff4f9a;
  --text: #fff9e8;
  --muted: rgba(255, 249, 232, 0.72);
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 212, 59, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(38, 217, 208, 0.05) 1px, transparent 1px),
    var(--black);
  background-size: 76px 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-color: var(--line);
  background: rgba(5, 5, 9, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(38, 217, 208, 0.16));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 249, 232, 0.86);
  font-size: 0.92rem;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 70px) 42px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(141, 92, 255, 0.28), transparent 32%),
    radial-gradient(circle at 18% 76%, rgba(38, 217, 208, 0.2), transparent 30%),
    radial-gradient(circle at 52% 44%, rgba(255, 212, 59, 0.16), transparent 28%);
}

.hero::after {
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--black));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.hero-copy-block {
  max-width: 680px;
}

.brand-stamp {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  max-width: min(500px, 100%);
  border: 2px solid rgba(255, 212, 59, 0.34);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 212, 59, 0.08);
  box-shadow: 8px 8px 0 rgba(38, 217, 208, 0.18);
  backdrop-filter: blur(10px);
}

.brand-stamp::after {
  position: absolute;
  left: 18px;
  bottom: -17px;
  width: 116px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--purple));
}

.brand-stamp img {
  width: min(390px, 100%);
  height: auto;
  border-radius: 5px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: min(700px, 100%);
  font-size: clamp(3.1rem, 6.15vw, 5.7rem);
  line-height: 1.06;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
}

h1::selection,
h2::selection,
p::selection {
  color: var(--black);
  background: var(--yellow);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.25rem);
}

h3 {
  font-size: 1.32rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button.primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--purple);
}

.button.secondary {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(38, 217, 208, 0.08);
}

.moment-board {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-auto-rows: 190px;
  gap: 14px;
  transform: rotate(1deg);
}

.photo-card {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 3px solid var(--black);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.52);
  isolation: isolate;
}

.photo-card::before,
.photo-card::after,
.story-tile::before,
.story-tile::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.photo-card::before,
.story-tile::before {
  inset: 0;
  z-index: -2;
}

.photo-card::after,
.story-tile::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(5, 5, 9, 0.78)),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.24), transparent 9%),
    radial-gradient(circle at 70% 36%, rgba(255, 255, 255, 0.15), transparent 7%);
  mix-blend-mode: screen;
}

.photo-card span,
.story-label span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-card strong {
  max-width: 210px;
  margin-top: 5px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.festival {
  grid-row: span 2;
}

.festival::before {
  background:
    radial-gradient(circle at 28% 22%, var(--yellow), transparent 7%),
    radial-gradient(circle at 50% 28%, var(--pink), transparent 8%),
    radial-gradient(circle at 74% 18%, var(--cyan), transparent 7%),
    linear-gradient(135deg, #3b1747, #0c0b12 48%, #161016);
}

.night::before {
  background:
    linear-gradient(90deg, rgba(38, 217, 208, 0.28), transparent 40%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 212, 59, 0.8) 18px 22px, transparent 22px 34px),
    linear-gradient(150deg, #070714, #182b48);
}

.portrait::before {
  background:
    radial-gradient(circle at 45% 30%, rgba(255, 243, 188, 0.82), transparent 18%),
    radial-gradient(circle at 53% 42%, rgba(141, 92, 255, 0.52), transparent 24%),
    linear-gradient(160deg, #151018, #352448);
}

.community::before {
  background:
    radial-gradient(circle at 24% 44%, var(--cyan), transparent 12%),
    radial-gradient(circle at 62% 30%, var(--yellow), transparent 13%),
    radial-gradient(circle at 78% 62%, var(--purple), transparent 12%),
    linear-gradient(135deg, #10161f, #141015);
}

.intro-strip {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: space-between;
  gap: 16px;
  padding-top: 0;
  padding-bottom: clamp(54px, 7vw, 86px);
}

.intro-strip p {
  margin: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 15px 18px;
  color: var(--black);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--cyan);
  font-weight: 950;
}

.intro-strip p:nth-child(2) {
  box-shadow: 6px 6px 0 var(--yellow);
}

.intro-strip p:nth-child(3) {
  box-shadow: 6px 6px 0 var(--purple);
}

.section {
  padding: clamp(76px, 10vw, 126px) clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto clamp(34px, 6vw, 58px);
}

.symbol-badge,
.contact-symbol {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 6px 6px 0 rgba(141, 92, 255, 0.9);
}

.section-heading p:not(.eyebrow),
.split-heading > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-intro {
  display: grid;
  max-width: 820px;
  gap: 14px;
  margin-top: 22px;
}

.section-heading .service-intro p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading .service-intro .service-highlight {
  width: fit-content;
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 14px 16px;
  color: #111111;
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--purple);
  font-weight: 1000;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
  gap: 28px;
  align-items: end;
}

.services {
  background:
    linear-gradient(180deg, rgba(5, 5, 9, 0.4), rgba(17, 16, 24, 0.94)),
    var(--black);
}

.service-grid {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 310px;
  padding: 26px;
  border: 3px solid var(--black);
  border-radius: 8px;
  color: var(--black);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.42);
}

.service-card.yellow {
  background: var(--yellow);
}

.service-card.cyan {
  background: var(--cyan);
}

.service-card.purple {
  color: var(--text);
  background: var(--purple);
}

.service-card.black {
  color: var(--text);
  background: #111018;
  border-color: rgba(255, 255, 255, 0.18);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 950;
}

.service-card h3 {
  margin-top: 76px;
}

.service-card p {
  margin: 16px 0 0;
  color: currentColor;
}

.portfolio {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 212, 59, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(141, 92, 255, 0.22), transparent 28%),
    #09090f;
}

.portfolio h2 {
  position: relative;
  max-width: 920px;
  font-size: clamp(2.25rem, 4.8vw, 4.55rem);
}

.portfolio h2::after {
  display: block;
  width: min(240px, 42vw);
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--purple));
}

.story-gallery {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.story-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 3px solid var(--black);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  isolation: isolate;
}

.tile-large {
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
}

.tile-event::before {
  background:
    radial-gradient(circle at 21% 26%, var(--yellow), transparent 6%),
    radial-gradient(circle at 43% 20%, var(--pink), transparent 7%),
    radial-gradient(circle at 70% 28%, var(--cyan), transparent 7%),
    linear-gradient(155deg, #26113f, #0d0d15 55%, #21120c);
}

.tile-portrait::before {
  background:
    radial-gradient(circle at 48% 33%, rgba(255, 248, 223, 0.88), transparent 16%),
    linear-gradient(145deg, #4b3280, #111018);
}

.tile-night::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 212, 59, 0.9) 0 5px, transparent 5px 22px),
    linear-gradient(160deg, #061b2a, #060609);
}

.tile-community::before {
  background:
    radial-gradient(circle at 15% 60%, var(--cyan), transparent 13%),
    radial-gradient(circle at 38% 40%, var(--yellow), transparent 12%),
    radial-gradient(circle at 70% 52%, var(--purple), transparent 13%),
    radial-gradient(circle at 88% 34%, var(--pink), transparent 10%),
    linear-gradient(140deg, #10141d, #0a090d);
}

.story-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.story-label h3 {
  max-width: 520px;
  margin-top: 6px;
}

.about {
  display: grid;
  max-width: calc(var(--max-width) + 140px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.about-note {
  position: relative;
  border-left: 8px solid var(--yellow);
  padding-left: clamp(22px, 4vw, 42px);
}

.about-wordmark {
  width: min(430px, 100%);
  margin-bottom: 28px;
  border: 2px solid rgba(255, 212, 59, 0.32);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(38, 217, 208, 0.18);
}

.about-symbol {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 5px 5px 0 rgba(141, 92, 255, 0.9);
}

.about-note::before {
  position: absolute;
  top: 12px;
  left: -20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 36px 42px 0 var(--purple), 16px 86px 0 var(--yellow);
}

.about-copy {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.approach-list {
  display: grid;
  gap: 16px;
}

.approach-list article {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.approach-list span {
  display: block;
  width: 48px;
  height: 6px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--purple));
}

.approach-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.other-moments {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(255, 212, 59, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(38, 217, 208, 0.045) 1px, transparent 1px),
    rgba(5, 5, 9, 0.72);
  background-size: 76px 76px;
}

.other-moments-inner {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.other-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.project-card {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 28px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 8px 8px 0 rgba(141, 92, 255, 0.45);
}

.project-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--purple));
}

.project-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  box-shadow: 5px 5px 0 rgba(38, 217, 208, 0.5);
}

.project-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.project-status {
  width: fit-content;
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 10px 13px;
  color: #111111;
  background: var(--yellow);
  font-weight: 950;
}

.contact {
  background:
    linear-gradient(135deg, rgba(255, 212, 59, 0.16), transparent 26%),
    linear-gradient(225deg, rgba(38, 217, 208, 0.12), transparent 30%),
    #111018;
}

.contact-panel {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-copy .contact-email {
  margin-top: 18px;
  color: var(--text);
  font-weight: 800;
}

.contact-email span {
  color: var(--cyan);
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-tags span {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--black);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  border: 3px solid var(--black);
  border-radius: 8px;
  color: var(--black);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--purple);
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--black);
  border-radius: 8px;
  color: var(--black);
  background: #ffffff;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(141, 92, 255, 0.18);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #126d68;
  font-size: 0.9rem;
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--black);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 950;
}

.thank-you {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 130px;
}

.thank-you-card {
  width: min(720px, 100%);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 10px 10px 0 rgba(141, 92, 255, 0.55);
}

.thank-you-card h1 {
  max-width: 620px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
}

.thank-you-card .button {
  margin-top: 18px;
}

@media (max-width: 1020px) {
  .hero-inner,
  .about,
  .contact-panel,
  .other-moments-inner,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .moment-board {
    max-width: 720px;
  }

  .service-grid,
  .story-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    position: relative;
    z-index: 30;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 22px;
    background: rgba(5, 5, 9, 0.96);
    font-size: 1.35rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.65rem, 11.2vw, 4rem);
    line-height: 1.08;
  }

  .brand-stamp {
    margin-bottom: 30px;
    max-width: min(360px, 100%);
  }

  .moment-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 166px;
    transform: none;
  }

  .festival {
    grid-row: auto;
  }

  .photo-card {
    min-height: 160px;
    padding: 14px;
  }

  .photo-card strong {
    font-size: 1.05rem;
  }

  .intro-strip {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

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

  .service-grid,
  .story-gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .service-card h3 {
    margin-top: 54px;
  }

  .story-gallery {
    grid-auto-rows: 300px;
  }

  .tile-large,
  .tile-wide {
    grid-column: auto;
    grid-row: auto;
  }
}
