:root {
  --green-900: #081c15;
  --green-800: #1b4332;
  --green-600: #2d6a4f;
  --orange: #e85d04;
  --orange-hover: #f48c06;
  --cream: #f8f5f0;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(8, 28, 21, 0.18);
  --radius: 14px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(8, 28, 21, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}

.brand img {
  border-radius: 50%;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.header-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(8, 28, 21, 0.88) 0%,
    rgba(27, 67, 50, 0.55) 55%,
    rgba(8, 28, 21, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  color: var(--white);
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-hover);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stats span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-head h2,
.about h2,
.join h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--green-800);
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.about-grid,
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-list,
.join-perks {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.feature-list li,
.join-perks li {
  margin-bottom: 0.5rem;
}

.about-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-visual figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  background: var(--white);
  color: var(--text-muted);
}

/* Ride cards */
.rides {
  background: var(--white);
}

.ride-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ride-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.ride-card--featured {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ride-card--featured .ride-route {
  color: rgba(255, 255, 255, 0.85);
}

.ride-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.ride-card--featured .ride-tag {
  color: var(--orange-hover);
}

.ride-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.ride-route {
  font-weight: 700;
  color: var(--green-600);
  margin: 0 0 0.75rem;
}

.ride-card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Gallery preview (home) */
.gallery-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gallery-preview-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--green-800);
}

.gallery-preview-text p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.gallery-preview-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-preview-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Gallery page */
.page-gallery .site-header {
  position: sticky;
}

.gallery-page-hero {
  padding: 6.5rem 0 2rem;
  background: var(--green-800);
  color: var(--white);
}

.gallery-page-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.gallery-page-hero p {
  margin: 0;
  max-width: 640px;
  opacity: 0.9;
}

.back-link {
  display: inline-block;
  color: var(--orange-hover);
  font-weight: 600;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--white);
}

.gallery-editor {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.editor-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.editor-panel h2 {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  color: var(--green-800);
}

.add-item-form {
  display: grid;
  gap: 1rem;
}

.add-item-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.label-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.add-item-form input[type="file"],
.add-item-form input[type="number"],
.add-item-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d4d0c8;
  border-radius: 10px;
  font: inherit;
}

.add-item-form textarea {
  resize: vertical;
  min-height: 100px;
}

.add-item-form input[type="number"] {
  max-width: 8rem;
}

.add-item-form input:focus,
.add-item-form textarea:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 1px;
}

.admin-section {
  background: var(--white);
}

.admin-panel {
  max-width: 420px;
  margin-inline: auto;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.admin-panel h2 {
  margin: 0 0 0.5rem;
  color: var(--green-800);
}

.admin-status {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.admin-login-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-login-form input {
  padding: 0.75rem 1rem;
  border: 1px solid #d4d0c8;
  border-radius: 10px;
  font: inherit;
}

.admin-logged-in {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-logged-in[hidden] {
  display: none;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-user {
  padding-top: 1rem;
}

.gallery-user-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-user-head h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--green-800);
}

.gallery-empty {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.gallery-empty.is-hidden {
  display: none;
}

.user-gallery-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 75vw;
  max-width: 75vw;
  margin-inline: auto;
}

.user-gallery-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(8, 28, 21, 0.1);
  border: 1px solid rgba(27, 67, 50, 0.08);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

.user-gallery-card:hover {
  box-shadow: 0 10px 28px rgba(8, 28, 21, 0.14);
  transform: translateY(-2px);
}

.user-gallery-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-height: 220px;
  background-color: #f3f0e6;
  background-image: url("assets/gallery-frame-pattern.svg");
  background-repeat: repeat;
  background-size: 280px 280px;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.user-gallery-card__media--has-image {
  cursor: zoom-in;
}

.user-gallery-card__image-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
}

.user-gallery-card__image-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

.user-gallery-card__zoom {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(8, 28, 21, 0.55);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.user-gallery-card__media--has-image:hover .user-gallery-card__zoom,
.user-gallery-card__media--has-image:focus-within .user-gallery-card__zoom {
  opacity: 1;
}

.user-gallery-card__zoom:hover {
  background: rgba(8, 28, 21, 0.72);
}

.user-gallery-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 721px) {
  .user-gallery-card__media:not(.user-gallery-card__media--placeholder) {
    max-height: 440px;
  }

  .user-gallery-card__image-wrap img,
  .user-gallery-card__media:not(.user-gallery-card__media--placeholder) > img {
    max-height: 440px;
  }
}

.user-gallery-card__media--placeholder {
  aspect-ratio: auto;
  height: 3rem;
  max-height: 3rem;
  background: #eef2ee;
}

.user-gallery-card__media--placeholder img {
  opacity: 0.92;
  object-fit: cover;
  object-position: center;
}

.user-gallery-card__media--placeholder::after {
  content: "Öffnen";
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  right: 0.5rem;
  bottom: 0.3rem;
}

.user-gallery-card__body {
  padding: 1.15rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.user-gallery-card__text {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: visible;
}

.user-gallery-card__text strong {
  font-weight: 700;
}

.user-gallery-card__text em {
  font-style: italic;
}

.user-gallery-card__text s {
  text-decoration: line-through;
  color: var(--text-muted);
}

.text-format-hint {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.45;
}

.user-gallery-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.user-gallery-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.user-gallery-card__index {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.user-gallery-card .btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Modal (lightbox + edit) */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 21, 0.88);
  cursor: pointer;
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: auto;
}

.gallery-edit .gallery-modal__panel {
  width: min(96vw, 980px);
  max-height: 96vh;
  padding: 2rem;
}

.gallery-edit .add-item-form textarea {
  min-height: 260px;
}

.gallery-edit__preview img {
  max-height: 320px;
}

.gallery-edit__title {
  margin: 0.5rem 0 0;
  padding-right: 2.5rem;
  font-size: 1.35rem;
  color: var(--green-800);
}

.gallery-edit__preview {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--green-900);
}

.gallery-edit__preview.is-hidden {
  display: none;
}

.gallery-edit__preview img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.gallery-edit__checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.gallery-edit__checkbox input {
  width: 1.1rem;
  height: 1.1rem;
}

.gallery-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-900);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-modal__close:hover {
  background: #e8e4dc;
}

.gallery-fs-viewer {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #081c15;
  position: relative;
}

.gallery-fs-viewer:fullscreen,
.gallery-fs-viewer:-webkit-full-screen {
  display: flex;
  position: relative;
}

.gallery-fs-viewer__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-fs-viewer__stage img {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
}

.gallery-fs-viewer img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-fs-viewer__close {
  display: none;
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__text {
  margin: 0;
  padding: 0 0.5rem 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  text-align: left;
}

.gallery-lightbox__text strong {
  font-weight: 700;
}

.gallery-lightbox__text em {
  font-style: italic;
}

.gallery-lightbox__text s {
  text-decoration: line-through;
  color: var(--text-muted);
}

.gallery-lightbox__text:empty {
  display: none;
}

.gallery-lightbox__text--solo {
  margin-top: 2.5rem;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  text-align: left;
  padding: 1rem 1.5rem 1.5rem;
}

body.modal-open {
  overflow: hidden;
}

.btn-danger {
  background: transparent;
  color: #b91c1c;
  border: 2px solid #fecaca;
}

.btn-danger:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}

.btn-ghost-dark {
  border: 2px solid rgba(27, 67, 50, 0.25);
  color: var(--green-800);
  background: transparent;
}

.btn-ghost-dark:hover {
  border-color: var(--green-600);
  background: rgba(27, 67, 50, 0.06);
}

/* Join form */
.join {
  background: linear-gradient(180deg, var(--cream) 0%, #ebe6de 100%);
}

.join-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.join-form input,
.join-form select {
  padding: 0.75rem 1rem;
  border: 1px solid #d4d0c8;
  border-radius: 10px;
  font: inherit;
}

.join-form input:focus,
.join-form select:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 1px;
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 900px) {
  .about-grid,
  .join-grid,
  .ride-cards,
  .gallery-preview-inner {
    grid-template-columns: 1fr;
  }

  .ride-card--featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .user-gallery-list {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
  }

  .user-gallery-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .user-gallery-card__body {
    padding-inline: 0.75rem;
  }

  .user-gallery-card__media:not(.user-gallery-card__media--placeholder) {
    max-height: none;
    width: 100%;
  }

  .user-gallery-card__image-wrap {
    width: 100%;
  }

  .user-gallery-card__image-wrap img,
  .user-gallery-card__media:not(.user-gallery-card__media--placeholder) > img {
    width: 100%;
    max-width: 100%;
    max-height: min(80vh, 720px);
  }

  .user-gallery-card__zoom {
    opacity: 1;
  }

  .user-gallery-card__image-wrap {
    touch-action: manipulation;
    cursor: pointer;
  }

  .gallery-fs-viewer:not([hidden]),
  .gallery-fs-viewer:fullscreen,
  .gallery-fs-viewer:-webkit-full-screen,
  .gallery-fs-viewer--overlay {
    display: flex !important;
  }

  .gallery-fs-viewer--overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    width: 100%;
    height: 100%;
    background: #081c15;
  }

  .gallery-fs-viewer:not([hidden]) .gallery-fs-viewer__close,
  .gallery-fs-viewer:fullscreen .gallery-fs-viewer__close,
  .gallery-fs-viewer:-webkit-full-screen .gallery-fs-viewer__close {
    display: flex;
    top: max(0.65rem, env(safe-area-inset-top, 0px));
    right: max(0.65rem, env(safe-area-inset-right, 0px));
  }

  .gallery-fs-viewer__stage {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .gallery-fs-viewer__stage img {
    -webkit-user-drag: none;
  }

  body.gallery-fs-open {
    overflow: hidden;
  }

  .user-gallery-card__media--placeholder {
    height: 2.75rem;
    max-height: 2.75rem;
  }

  .gallery-modal__panel {
    width: 100%;
    max-height: 94vh;
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--green-900);
    padding: 1rem 1.5rem 1.5rem;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}
