:root {
  --gold: #f8d174;
  --black: #000000;
  --cream: #f7f1e5;
  --white: #ffffff;
  --muted: #aaaaaa;
  --line: rgba(248, 209, 116, 0.34);
}


/* GRUNDEINSTELLUNGEN */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
}

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

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

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

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.1;
}


/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 88px;
  padding: 0 5vw;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.brand img {
  width: 210px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 30px 0;

  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;

  height: 2px;

  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

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


/* HEADER-BUTTON UND ALLGEMEINE BUTTONS */
.header-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border: 1px solid var(--gold);

  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.header-button,
.btn-gold {
  color: var(--black);
  background: var(--gold);
}

.header-button:hover,
.btn-gold:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  color: var(--black);
  background: var(--gold);
}


/* MOBILE MENÜ */
.menu-toggle {
  display: none;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px;

  background: var(--gold);
}


/* ALLGEMEINE BEREICHE */
.section {
  padding: 95px 6vw;
}

.eyebrow {
  display: block;

  margin-bottom: 18px;

  color: var(--gold);

  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 65px;
  align-items: start;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-top: 45px;
}


/* HERO */
.page-hero {
  padding: 110px 6vw 85px;

  background: linear-gradient(135deg, #111111, #000000);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 18px;

  color: var(--gold);
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;

  color: #cccccc;
}


/* DETAILBEREICH */
.detail {
  padding-top: 90px;
}

.detail-image-wrapper {
  align-self: start;
}

.detail-image {
  width: 100%;
  height: 650px;

  object-fit: cover;
  object-position: center;

  border: 1px solid var(--line);
}

.detail-content {
  align-self: start;
}

.detail-content .eyebrow {
  margin-bottom: 24px;
}

.detail h2 {
  margin-bottom: 36px;

  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.price-note {
  margin: 0 0 44px;

  color: #dddddd;
  line-height: 1.75;
}


/* PREISLISTE */
.price-list {
  margin-top: 0;
}

.price-list h3 {
  margin: 44px 0 0;
  padding: 16px 0 14px;

  color: var(--white);
  border-top: 1px solid var(--line);

  font-size: 1.25rem;
}

.price-list h3:first-child {
  margin-top: 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(248, 209, 116, 0.22);
}

.price-item span {
  min-width: 0;
}

.price-item strong {
  flex-shrink: 0;

  color: var(--gold);
  white-space: nowrap;
}


/* FOOTER */
.site-footer {
  padding: 38px 6vw 20px;

  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.footer-inner img {
  width: 190px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a:hover {
  color: var(--gold);
}

.site-footer p {
  margin-top: 30px;

  color: #777777;
  font-size: 0.78rem;
  text-align: center;
}


/* EINBLEND-ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s,
    transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* LOGO IM HEADER AUSBLENDEN */
header .brand img {
  visibility: hidden;
}


/* TABLET UND HANDY */
@media (max-width: 900px) {

  .site-header {
    height: 78px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 180px;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;

    position: fixed;
    top: 78px;
    right: 0;
    left: 0;

    flex-direction: column;
    gap: 0;

    padding: 20px 6vw;

    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    padding: 15px 0;
  }

  .main-nav a::after {
    bottom: 7px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-image {
    height: 520px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


/* KLEINE HANDYS */
@media (max-width: 768px) {

  .section {
    padding: 70px 6vw;
  }

  .page-hero {
    padding: 80px 6vw 60px;
  }

  .detail {
    padding-top: 70px;
  }

  .detail-image {
    height: 420px;
  }

  .detail-content {
    margin-top: 5px;
  }

  .detail-content .eyebrow {
    margin-bottom: 18px;
  }

  .detail h2 {
    margin-bottom: 26px;
  }

  .price-note {
    margin-bottom: 34px;
  }

  .price-list h3 {
    margin-top: 36px;
  }

  .price-item {
    gap: 18px;
    padding: 16px 0;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

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

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;
  }

  .footer-inner img {
    display: block;
    margin: 0 auto;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-footer p {
    margin-top: 20px;
    text-align: center;
  }
}


/* SEHR KLEINE HANDYS */
@media (max-width: 480px) {

  .detail-image {
    height: 340px;
  }

  .price-item {
    font-size: 0.9rem;
  }

  .price-item strong {
    font-size: 0.88rem;
  }
}