/* ==========================================================================
   Die kleine Auszeit — "Weiter Himmel" Visual Design
   Near-monochrome UI · Full-bleed photography · Elegant scroll animations
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Warm monochrome palette — photos provide all color */
  --color-bg:         #faf9f7;
  --color-bg-alt:     #f3f1ed;
  --color-white:      #ffffff;
  --color-heading:    #1a1a1a;
  --color-text:       #3a3a3a;
  --color-text-light: #6b6b6b;
  --color-text-muted: #999999;
  --color-border:     #e5e3df;
  --color-accent:     #b8a48a;
  --color-accent-dark:#9a8568;
  --color-cta:        #c4956a;
  --color-cta-hover:  #a87a52;
  --color-dark:       #1a1a1a;
  --overlay-dark:     rgba(20,20,20,0.35);
  --overlay-darker:   rgba(20,20,20,0.55);

  /* Typography */
  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-padding:    clamp(4rem, 8vw, 7rem);
  --container-width:    1140px;
  --container-narrow:   640px;
  --container-padding:  clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-heading);
}

ul, ol {
  padding-left: 1.5em;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.35;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.125em;
  max-width: 640px;
}

p:last-child {
  margin-bottom: 0;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

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

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* Transparent header on homepage hero */
body.page-home .site-header--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

body.page-home .site-header--transparent .site-brand,
body.page-home .site-header--transparent .nav-list a {
  color: rgba(255, 255, 255, 0.9);
}

body.page-home .site-header--transparent .nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

body.page-home .site-header--transparent .nav-toggle span {
  background: #fff;
}

body.page-home .site-header--transparent .btn-book {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body.page-home .site-header--transparent .btn-book:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.site-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.site-brand:hover {
  color: var(--color-accent-dark);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: 6px;
  transition: color 0.4s ease, background 0.4s ease;
  letter-spacing: 0.01em;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-heading);
  background: rgba(0, 0, 0, 0.04);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-cta);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-book:hover {
  color: #fff;
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-heading);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99;
  padding: 2rem var(--container-padding);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  pointer-events: none;
}

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

.mobile-nav .nav-list {
  flex-direction: column;
  gap: 0;
}

.mobile-nav .nav-list a {
  padding: 1rem 0;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-heading);
}

.mobile-nav .btn-book {
  margin: 2rem 0 0;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .header-right .nav-list,
  .header-right .btn-book {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .mobile-nav {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding: 0 var(--container-padding) clamp(4rem, 8vw, 6rem);
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.6) 0%,
    rgba(20, 20, 20, 0.15) 50%,
    transparent 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Subpage hero */
.hero--sub {
  min-height: 55vh;
  align-items: flex-end;
  padding-top: 70px;
}

.hero--sub .hero__overlay {
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.55) 0%,
    rgba(20, 20, 20, 0.1) 60%,
    transparent 100%
  );
}

.hero--sub .hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.4;
}

.btn--cta {
  color: #fff;
  background: var(--color-cta);
}

.btn--cta:hover {
  color: #fff;
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

.btn--outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--dark {
  color: #fff;
  background: var(--color-dark);
}

.btn--dark:hover {
  color: #fff;
  background: #333;
  transform: translateY(-1px);
}

.btn--subtle {
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.9375rem;
}

.btn--subtle:hover {
  border-color: var(--color-accent);
  color: var(--color-heading);
}

/* ---------- Parallax Panel ---------- */
.parallax-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-panel--100vh { min-height: 100vh; }
.parallax-panel--70vh  { min-height: 70vh; }
.parallax-panel--60vh  { min-height: 60vh; }
.parallax-panel--50vh  { min-height: 50vh; }
.parallax-panel--45vh  { min-height: 45vh; }

.parallax-panel__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax-panel__img img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.parallax-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.parallax-panel__overlay--dark {
  background: var(--overlay-dark);
}

.parallax-panel__overlay--darker {
  background: var(--overlay-darker);
}

.parallax-panel__overlay--gradient {
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.5) 0%,
    rgba(20, 20, 20, 0.1) 60%,
    transparent 100%
  );
}

.parallax-panel__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--container-padding);
  text-align: center;
  color: #fff;
}

/* ---------- Pull Quote ---------- */
.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.pull-quote--light {
  color: rgba(255, 255, 255, 0.95);
}

.pull-quote--dark {
  color: var(--color-heading);
  padding: clamp(3rem, 6vw, 5rem) var(--container-padding);
}

/* ---------- Features Grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.feature {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.feature:nth-child(3n) {
  border-right: none;
}

.feature:nth-child(n+4) {
  border-top: 1px solid var(--color-border);
}

.feature__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.feature__text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-heading);
  line-height: 1.5;
  max-width: none;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature:nth-child(3n) {
    border-right: 1px solid var(--color-border);
  }
  .feature:nth-child(2n) {
    border-right: none;
  }
  .feature:nth-child(n+3) {
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
  .feature {
    border-right: none !important;
    border-top: 1px solid var(--color-border);
  }
  .feature:first-child {
    border-top: none;
  }
}

/* ---------- Split Section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.split--reversed .split__text {
  order: 2;
}

.split--reversed .split__image {
  order: 1;
}

.split__text p {
  max-width: 480px;
}

.split__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split--reversed .split__text,
  .split--reversed .split__image {
    order: unset;
  }
}

/* ---------- Reviews ---------- */
.review {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding);
}

.review__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-heading);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: none;
}

.review__source {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ---------- Masonry Gallery ---------- */
.masonry {
  column-count: 3;
  column-gap: 0.75rem;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry {
    column-count: 1;
  }
}

/* Uniform gallery fallback */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.gallery__item {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- Maps Consent ---------- */
.maps-consent {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.maps-consent__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.maps-consent p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  max-width: 400px;
}

.maps-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 4px;
}

/* ---------- Inline Image ---------- */
.inline-image {
  margin: 2rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: auto;
}

.inline-image--rounded {
  border-radius: 4px;
}

/* ---------- Info Box ---------- */
.info-box {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 4px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
}

.info-box h2,
.info-box h3 {
  margin-bottom: 1rem;
}

.info-box li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.section--alt .info-box {
  background: var(--color-white);
}

/* ---------- CTA Panel (image-backed) ---------- */
.cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  color: #fff;
}

.cta-panel__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 5rem) var(--container-padding);
}

.cta-panel__content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel__content .hero__buttons {
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.4);
  padding: 2.5rem 0;
  font-size: 0.8125rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #fff;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-sep {
  margin: 0 0.75em;
  opacity: 0.3;
}

/* ---------- Content Utils ---------- */
.content-section h2 {
  margin-bottom: 1rem;
}

/* Legal pages */
.legal h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.legal h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal p {
  margin-bottom: 0.75rem;
}

.legal ul {
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.25rem;
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default: fade-up */
[data-reveal] {
  transform: translateY(30px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .parallax-panel__img img,
  .hero__bg img {
    will-change: auto !important;
    transform: none !important;
    height: 100% !important;
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* Body padding for fixed header */
body {
  padding-top: 70px;
}

/* Homepage: hero needs to be behind the transparent header */
body.page-home {
  padding-top: 0;
}

body.page-home .hero {
  padding-top: 70px;
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .mobile-nav,
  .btn,
  .hero__buttons,
  .parallax-panel,
  .cta-panel {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
    color: #000;
  }
  .hero__title {
    color: #000;
  }
  body {
    padding-top: 0;
  }
}
