body, html {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ellograph CF Light', Arial, sans-serif;
  background: #f7f6f2;
  overflow: hidden;
  position: relative;
}

/* ====== BACKDROP ====== */
.backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: url('images/nariicedteascene-1-3.png') center center no-repeat;
  background-size: cover; /* fills the screen, like your mock-up */
  z-index: 0;
}

/* ====== HEADER ====== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background: transparent;
  border-bottom: 1px solid #fff; /* more narrow border */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 48px;
  z-index: 20;
}
.logo-header {
  width: 90px;
  height: auto;
  display: block;
}

/* ====== STORY IMAGE CONTAINER ====== */
.story-left-container {
  position: absolute;
  top: 100px;      /* height of header */
  bottom: 100px;   /* height of footer */
  left: 3vw;       /* left padding */
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 2;
  pointer-events: none;
  box-sizing: border-box;
  height: auto;
  padding-top: 2vw;    /* add vertical padding */
  padding-bottom: 2vw; /* add vertical padding */
}
.story-left-img {
  height: 90%;
  width: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
  /* Subtle warm filter for orange contrast, but preserves whites */
  filter: sepia(0.3) hue-rotate(-10deg) saturate(1.5) contrast(1.25) brightness(1.05);
}

/* ====== FOOTER ====== */
.footer-black {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  padding: 0; /* or padding: 0 24px; for a small gutter */
}

.logo-footer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
  display: block;
  z-index: 1;
}

.footer-legal {
  color: #fff;
  font-family: 'Ellograph CF Light', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  opacity: 0.85;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}

.footer-legal-left {
  flex: 1 1 0;
  justify-content: flex-end;
  text-align: right;
  display: flex;
  align-items: center;
  margin-right: 120px; /* space for centered logo */
}

.footer-legal-right {
  flex: 1 1 0;
  justify-content: flex-start;
  text-align: left;
  display: flex;
  align-items: center;
  margin-left: 120px; /* space for centered logo */
}

/* ====== RESPONSIVE: TABLET ====== */
@media (max-width: 1400px) and (min-width: 701px) {
  .main-header {
    height: 80px;
    padding-left: 20px;
    background: transparent;
    border-bottom: 1px solid #fff; /* more narrow border */
  }
  .logo-header {
    width: 64px;
  }
  .story-left-container {
    position: absolute;
    top: 80px;        /* height of header */
    bottom: 80px;     /* height of footer */
    left: 2vw;        /* left padding */
    width: 54vw;      /* make image much larger */
    min-width: 320px;
    max-width: 950px; /* allow it to be larger */
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 2;
    pointer-events: none;
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
  }
  .story-left-img {
    object-fit: contain;
    display: block;
  }
  .footer-black {
    height: 80px;
  }
  .logo-footer {
    width: 64px;
  }
  .backdrop {
    background-size: cover;
    background-position: center center;
  }
}

/* ====== RESPONSIVE: MOBILE ====== */
@media (max-width: 700px) {
  html, body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: fixed;
  }
  .main-header {
    height: 56px;
    padding-left: 10px;
    background: transparent;
    border-bottom: 1px solid #fff; /* more narrow border */
  }
  .logo-header {
    width: 40px;
  }
  .story-left-container {
    position: fixed;
    left: 2.5vw;
    right: 2.5vw;
    bottom: 56px; /* height of the footer */
    top: auto;
    width: auto;
    min-width: 0;
    max-width: 95vw;
    height: auto;
    min-height: 35vh;
    max-height: 45vh;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
    z-index: 4;
    pointer-events: none;
  }
  .story-left-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;  
    object-fit: contain;
    display: block;
    margin-bottom: 2.5vw; /* add space below image */
  }
  .footer-black {
    height: 56px;
    padding: 0 12px;
  }
  .logo-footer {
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .footer-legal {
    font-size: 0.55rem;
  }
  .footer-legal-left,
  .footer-legal-right {
    margin: 0 48px;
  }
}