@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700");
/*
	Editorial by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  html,
  body {
    min-width: 320px;
  }
}

body {
  background: #ffffff;
}
body.is-preload,
body.is-resizing {
  animation: none;
}

body.is-preload .content,
body.is-resizing .content {
  transition: none;
}

/* Bio Card Section */
#founder-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin: 50px auto;
}

#founder-card .major {
  align-self: flex-start;
}

.card {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

@media screen and (max-width: 736px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .card img.profile-picture {
    margin: 0 auto 20px auto;
    display: block;
  }

  .card-content {
    text-align: left;
  }

  #banner .content,
  .features .content,
  #founder-card .card-content {
    font-size: 16px;
    line-height: 1.6;
  }
}

.card img.profile-picture {
  max-width: 120px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
  margin-right: 0;
}

.card-content {
  flex: 1;
}

.card h2 {
  margin: 0;
  font-size: 24px;
}

.card h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #555;
}

.card p {
  font-size: 16px;
  color: #666;
}

/* Type */
body,
input,
select,
textarea {
  color: #7f888f;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  font-size: clamp(9pt, 2vw, 13pt);
}

a {
  transition: color 0.2s ease-in-out;
  color: #f56a6a;
  text-decoration: none;
}

a:hover {
  border-bottom-color: #f56a6a;
  color: #f56a6a;
}
a:hover strong {
  color: inherit;
}

strong,
b {
  color: #3d4449;
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3d4449;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1em 0;
}

h1 {
  font-size: 4em;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1.1em;
}
h5 {
  font-size: 0.9em;
}
h6 {
  font-size: 0.7em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

@media screen and (max-width: 1680px) {
  h1 {
    font-size: 3.5em;
  }
}

@media screen and (max-width: 980px) {
  h1 {
    font-size: 3.25em;
  }
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 2em;
    line-height: 1.4;
  }
  h2 {
    font-size: 1.5em;
  }
}

blockquote {
  border-left: solid 3px rgba(210, 215, 217, 0.75);
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

hr {
  border: 0;
  border-bottom: solid 1px rgba(210, 215, 217, 0.75);
  margin: 2em 0;
}
hr.major {
  margin: 3em 0;
}

header.major > :last-child {
  border-bottom: solid 3px #f56a6a;
  display: inline-block;
  margin: 0 0 2em 0;
  padding: 0 0.75em 0.5em 0;
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}
.icon:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}
.icon > .label {
  display: none;
}

.image {
  border-radius: 0.375em;
  border: 0;
  display: inline-block;
  position: relative;
}
.image img {
  border-radius: 0.375em;
  display: block;
}
.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}
.image.fit img {
  width: 100%;
}

a.image {
  overflow: hidden;
}
a.image img {
  transition: transform 0.2s ease;
}
a.image:hover img {
  transform: scale(1.075);
}

/* List */
ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}
ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}
ul li {
  padding-left: 0.5em;
}

dl {
  margin: 0 0 2em 0;
}
dl dt {
  display: block;
  font-weight: 600;
  margin: 0 0 1em 0;
}
dl dd {
  margin-left: 2em;
}

ul.actions {
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0;
}
ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}
ul.actions.special {
  justify-content: center;
  width: 100%;
  margin-left: 0;
}
ul.actions.special li:first-child {
  padding-left: 0;
}
ul.actions.stacked {
  flex-direction: column;
  margin-left: 0;
}
ul.actions.stacked li {
  padding: 1.3em 0 0 0;
}
ul.actions.stacked li:first-child {
  padding-top: 0;
}
ul.actions.fit {
  width: calc(100% + 1em);
}
ul.actions.fit li {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
}
ul.actions.fit li > * {
  width: 100%;
}
ul.actions.fit.stacked {
  width: 100%;
}

/* Icons */
ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}
ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}
ul.icons li:last-child {
  padding-right: 0;
}
ul.icons li .icon {
  color: inherit;
}
ul.icons li .icon:before {
  font-size: 1.25em;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: inset 0 0 0 2px #f56a6a;
  color: #f56a6a;
  padding: 0 2.25em;
  border-radius: 0.375em;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8em;
  text-align: center;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  height: 3.5em;
  line-height: 3.5em;
  white-space: nowrap;
}

.button:hover {
  background-color: rgba(245, 106, 106, 0.05);
}

.button:active {
  background-color: rgba(245, 106, 106, 0.15);
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 2em;
  width: 100%;
  justify-content: flex-start;
  gap: 3em;
}

.features article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: calc(50% - 3em);
  min-height: 300px;
  gap: 1em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  position: relative;
  padding: 0.6em;
}

.features article:last-of-type {
  margin-bottom: 0;
}

.features article .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10em;
  width: 10em;
  margin: 0 auto;
  position: relative;
}

.features article .icon:before {
  color: #f56a6a;
  font-size: 2.75rem;
  position: relative;
}

.features article .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7em;
  height: 7em;
  border: 2px solid rgba(210, 215, 217, 0.75);
  border-radius: 0.25rem;
  transform: translate(-50%, -50%) rotate(45deg);
}

.features article .content {
  flex-grow: 1;
}

.features article .content > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 980px) {
  .features {
    margin: 0 0 2em 0;
    width: 100%;
  }

  .features article {
    margin: 0 0 3em 0;
    width: 100%;
  }

  /* Reduce icon size */
  .features article .icon {
    height: 8em;
    width: 8em;
  }

  .features article .icon:before {
    font-size: 2.25rem;
  }

  .features article .icon:after {
    width: 6em;
    height: 6em;
  }
}

@media screen and (max-width: 480px) {
  .features article {
    flex-direction: column;
    align-items: center; /* Ensures centered icon & text */
  }

  .features article .icon {
    height: 6em;
    width: 6em;
    margin-bottom: 1.5em;
  }

  .features article .icon:before {
    font-size: 1.5rem;
  }

  .features article .icon:after {
    width: 4em;
    height: 4em;
  }
}

.features article:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: rgba(240, 242, 245, 0.5);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Main */
#main {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
}

#main > .inner {
  padding: 0 6em 6em;
  margin: 0 auto;
  max-width: 110em;
}

#main > .inner > section + section {
  border-top: 2px solid rgba(210, 215, 217, 0.75);
  padding-top: 4rem;
}

@media screen and (max-width: 1680px) {
  #main > .inner {
    padding: 0 5em 0.1em 5em;
  }
  #main > .inner > section {
    padding: 5em 0 3em 0;
  }
}
@media screen and (max-width: 1280px) {
  #main > .inner {
    padding: 0 4em 0.1em 4em;
  }
  #main > .inner > section {
    padding: 4em 0 2em 0;
  }
}
@media screen and (max-width: 800px) {
  #main > .inner {
    padding: 0 2em 0.1em 2em;
  }
  #main > .inner > section {
    padding: 3em 0 1em 0;
  }
}

/* Header container */
#header {
  height: 64px;
  width: 100%;
  background-color: #f5f6f7;
  border-bottom: 3px solid #f56a6a;
  padding: 0;
  overflow: hidden;
}

.header-inner {
  max-width: 110em;
  margin: 0 auto;
  padding: 0 2em; /* Keep horizontal spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}

.header-column {
  flex: 1 1 250px;
}

.header-center {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

.header-logo {
  font-family: "Roboto Slab", serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1;
  color: #f56a6a;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}

#header.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f5f6f7;
  border-bottom: 3px solid #f56a6a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-nav {
  display: flex;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav li {
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #f56a6a;
}

.header-nav a.active {
  color: #f56a6a;
  border-bottom: 2px solid #f56a6a;
  padding-bottom: 0.1em;
}

.header-cta {
  display: inline-block;
  background: transparent;
  box-shadow: inset 0 0 0 2px #f56a6a;
  color: #f56a6a;
  padding: 0.75em 1.5em;
  border-radius: 0.375em;
  font-size: 0.85em;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header-cta:hover {
  background-color: rgba(245, 106, 106, 0.05);
}

@media screen and (max-width: 820px) {
  #header {
    height: 57px;
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1.5em;
  }

  .header-left,
  .header-center,
  .header-right {
    flex: 0 1 auto;
    margin: 0;
  }

  .header-center {
    justify-content: flex-start;
  }

  .header-nav {
    display: none;
  }

  #burger-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
  }

  .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
  }

  .header-cta {
    padding: 0.7em 1em;
    font-size: 0.75em;
  }

  .header-logo {
    font-size: 1.1em;
  }
}

#mobile-panel {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  background-color: #eaeaea;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mobile-panel.active {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

#mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 2em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}

#mobile-panel a {
  color: #666;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.2s ease;
}

#mobile-panel a:hover {
  color: #f56a6a;
}

#mobile-panel a.nav-link.active {
  color: #f56a6a;
  text-decoration: underline;
  text-decoration-color: #f56a6a;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#close-panel {
  position: absolute;
  top: 1em;
  right: 1em;
  background: none;
  border: none;
  font-size: 2em;
  color: #666;
  cursor: pointer;
  z-index: 1001;
}

/* Banner */
#banner {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#banner .content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2em;
  max-width: 124ch;
  margin: 0 auto;
}

#banner h1 {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1em;
  color: white;
}

#banner p {
  font-size: 1.2em;
  line-height: 1.6;
  color: white;
  margin-bottom: 2em;
}

#banner .actions {
  display: flex;
  justify-content: center;
}

#banner .actions .button {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 0.8em 1.6em;
  border-radius: 0.375em;
  transition: background 0.3s ease;
}

#banner .actions .button:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1024px) {
  #banner {
    height: 520px;
  }

  #banner h1 {
    font-size: 2.4em;
  }

  #banner p {
    font-size: 1.1em;
  }

  #banner .actions .button {
    padding: 0.7em 1.4em;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 820px) {
  #banner {
    min-height: 670px;
    padding: 1em;
  }

  #banner .content {
    padding: 1.5em 1em;
  }

  #banner h1 {
    font-size: 2em;
  }

  #banner p {
    font-size: 1em;
    line-height: 1.5;
  }

  #banner .actions .button {
    padding: 0.6em 1.2em;
    font-size: 0.85em;
  }
}

/* Banner About Page*/
#banner-about {
  position: relative;
  height: 300px;
  background-image: url("../../images/index-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2em;
  overflow: hidden;
  margin-bottom: clamp(2rem, 6vw, 5rem);
}

#banner-about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#banner-about .content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 80ch;
}

#banner-about h1 {
  font-size: 2.2em;
  margin-bottom: 0.4em;
}

#banner-about p {
  font-size: 1.1em;
  margin: 0 auto;
}

.split-section:last-of-type {
  margin-bottom: clamp(2rem, 6vw, 5rem);
}

/* Footer */
#footer {
  width: 100%;
  background-color: #f5f6f7;
  color: #333;
  font-size: 0.9em;
  border-top: 3px solid #f56a6a;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 6em 1em 6em;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom {
  margin: 0 auto;
  padding: 0.75em 6em;
  background-color: #eaeaea;
  text-align: center;
  color: #333;
  font-size: 0.85em;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.2;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-center {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2em;
  color: #f56a6a;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav {
  display: flex;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.footer-nav li {
  margin: 0;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #f56a6a;
}

.footer-nav i.fa-brands {
  font-size: 1.1em;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 1.5em;
  justify-content: flex-end;
}

#footer .design-credit {
  color: #9fa3a6;
  font-size: 0.8em;
  margin-top: 0.5em;
}

#footer .design-credit a {
  color: inherit;
  text-decoration: none;
}

#footer .design-credit a:hover {
  color: #f56a6a;
  text-decoration: underline;
}

@media screen and (max-width: 803px) {
  .footer-top {
    flex-direction: column;
    padding: 1em 2em 2em 2em;
  }

  .footer-column,
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
    margin-top: 1.5em;
  }

  .footer-column:first-child {
    margin-top: 0;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    font-size: 0.75em;
    padding: 1em 2em;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  justify-items: center;
}

/* Burger menu button */
#burger-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #333;
  cursor: pointer;
}

/* Mobile nav layout */
@media screen and (max-width: 820px) {
  .header-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1em;
  }

  #burger-toggle {
    display: block;
    font-size: 1.5em;
    margin: 0;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .header-nav.active {
    display: flex;
  }
}

/* Contact Section Spacing */
#contact-form {
  margin-top: 50px;
}

#contact-form {
  scroll-margin-top: 80px;
}

/* Contact Form Enhancements */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-form .field {
  flex: 1 1 100%;
}

.contact-form .field.half {
  flex: 1 1 45%;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  background: #f9f9f9;
  font-size: 1rem;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #555;
  background: #fff;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .actions {
  margin-top: 2rem;
}

.contact-form .actions input[type="submit"] {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.4rem;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .actions input[type="submit"]:hover {
  background-color: #555;
}

.char-counter {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
  text-align: right;
}

@media screen and (max-width: 800px) {
  .contact-form .fields {
    gap: 1.2rem;
  }

  .contact-form .field.half {
    flex: 1 1 100%;
  }

  .contact-form .actions input[type="submit"] {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #contact.wrapper .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 800px) {
  #contact-alt.wrapper .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.wrapper .inner {
  padding: 0 4rem;
}

/* Contact Form Spam trap */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* About Page Split Styling */
.split-section {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.split-section .split-text {
  width: 50%;
  padding: 4em;
  box-sizing: border-box;
  background: #fff;
}

.split-section .split-image {
  width: 50%;
  padding: 0;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.split-section + .split-section {
  margin-top: 0;
  border-top: 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 800px) {
  .split-section {
    flex-direction: column;
  }
  .split-section .split-text,
  .split-section .split-image {
    width: 100%;
  }
}

.expander summary {
  cursor: pointer;
  font-weight: bold;
  margin-top: 1em;
  color: #f56a6a;
}

.expander-content {
  margin-top: 1em;
  padding: 1em;
  background-color: #f9f9f9;
  border-left: 3px solid #f56a6a;
}

/* Base split image styling */
.split-image {
  width: 50%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

/* Per-section decorative images (placeholder for now) */
.split--landscape-broken .split-image {
  background-image: url("https://placehold.co/1200x800/png?text=Section+1");
}
.split--where-i-come-in .split-image {
  background-image: url("https://placehold.co/1200x800/png?text=Section+2");
}
.split--working-together .split-image {
  background-image: url("https://placehold.co/1200x800/png?text=Section+3");
}

.split--test4 .split-image {
  background-image: url("https://placehold.co/1200x800/png?text=Section+4");
}

