/* =========================================================
   DAS STUDIO
   Nur seitenbezogene Styles.
   Header, Footer, Offcanvas, Variablen und Basisstyles
   kommen aus shared.css.
========================================================= */

.studio-page {
  background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.studio-hero {
  position: relative;
  min-height: 392px;

  display: grid;
  place-items: center;

  overflow: hidden;

  color: var(--white);

  background:
    url("../img/hero.jpg")
    center 45% / cover no-repeat;
}

.studio-hero__shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(178, 139, 90, .42),
      rgba(207, 169, 113, .72)
    );
}

.studio-hero__content {
  position: relative;
  z-index: 2;

  width: min(100%, 560px);

  padding:
    105px 20px
    48px;

  text-align: center;
}

.studio-hero__eyebrow {
  display: block;

  margin-bottom: 16px;

  font-family: var(--display);

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.studio-hero h1 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      2.35rem,
      8vw,
      3.7rem
    );

  font-weight: 600;

  line-height: 1.05;
}


/* =========================================================
   GENERAL
========================================================= */

.studio-inner {
  width: min(100%, 760px);

  margin: 0 auto;
}

.studio-inner--wide {
  width: min(100%, 980px);
}

.studio-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: var(--red);

  font-family: var(--display);

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: .14em;

  text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.studio-intro {
  padding:
    40px 20px
    42px;

  text-align: center;

  background: #fff;
}

.studio-intro h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      2.5rem,
      8vw,
      3.8rem
    );

  font-weight: 600;

  line-height: 1.06;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.studio-main-image {
  height: 305px;

  overflow: hidden;

  background: #ddd;
}

.studio-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.studio-description {
  padding:
    36px 20px
    48px;

  background: #fff;
}

.studio-description__lead {
  margin:
    0 0
    38px;

  font-family: var(--display);

  font-size: 1.4rem;
  font-weight: 500;

  line-height: 1.14;
}

.studio-gallery {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr) 105px;

  gap: 10px;

  overflow: hidden;
}

.studio-gallery__item {
  height: 200px;

  margin: 0;

  overflow: hidden;

  background: #ddd;
}

.studio-gallery__item img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   RENTAL
========================================================= */

.studio-rental {
  padding:
    58px 20px
    60px;

  text-align: center;

  background: #fff;
}

.studio-rental h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(
      2.55rem,
      8vw,
      3.8rem
    );

  font-weight: 600;

  line-height: 1.04;
}

.studio-rental__button {
  display: block;

  width: min(100%, 240px);

  margin:
    46px auto
    0;

  padding:
    13px 22px;

  border-radius: 999px;

  color: #fff;

  background: var(--red);

  text-align: center;

  font-family: var(--display);

  font-size: 1.1rem;
  font-weight: 500;

  transition:
    transform .2s ease,
    filter .2s ease;
}

.studio-rental__button:hover,
.studio-rental__button:focus-visible {
  color: #fff;

  transform:
    translateY(-2px);

  filter:
    brightness(1.06);
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 760px) {

  .studio-hero {
    min-height: 560px;
  }

  .studio-hero__content {
    width: min(100%, 760px);

    padding-top: 130px;
  }

  .studio-intro {
    padding:
      75px 30px
      70px;
  }

  .studio-main-image {
    height: 520px;
  }

  .studio-description {
    padding:
      60px 30px
      80px;
  }

  .studio-description__lead {
    font-size: 1.7rem;
  }

  .studio-gallery {
    grid-template-columns:
      2fr 1fr;

    gap: 18px;
  }

  .studio-gallery__item {
    height: 330px;
  }

  .studio-rental {
    padding:
      85px 30px
      90px;
  }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1100px) {

  .studio-hero {
    min-height: 650px;
  }

  .studio-hero h1 {
    font-size: 4.1rem;
  }

  .studio-intro h2,
  .studio-rental h2 {
    font-size: 4rem;
  }

  .studio-main-image {
    height: 620px;
  }

  .studio-description__lead {
    max-width: 900px;

    font-size: 1.9rem;
  }

  .studio-gallery__item {
    height: 420px;
  }

}
