:root {
  --ink: #20211e;
  --muted: #696a64;
  --line: #e7e5df;
  --soft: #f7f5f1;
  --warm: #eee7dd;
  --accent: #6c5a77;
  --radius: 19px;
  --font: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin: auto;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.main-logo {
  width: 237px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: .2s;
}

.nav-button {
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
}

.nav-button:hover,
.primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.hero {
  padding: 32px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  min-height: 620px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
}

.hero-copy {
  padding: clamp(35px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  margin-bottom: 21px;
}

h1 {
  font-size: clamp(46px, 5.7vw, 76px);
  letter-spacing: -.082em;
  line-height: .95;
  max-width: 590px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 505px;
  margin-top: 28px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 33px;
}

.button {
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid var(--ink);
}

.primary {
  background: var(--ink);
  color: #fff;
}

.outline:hover {
  background: #fff;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  background: #ddd;
  min-height: 390px;
}

.hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photos img:first-child {
  grid-row: span 2;
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border: 0;
}

.trust-item strong {
  display: block;
  font-size: 15px;
}

.trust-item span {
  font-size: 14px;
  color: var(--muted);
}

section {
  padding: 94px 0;
}

.head {
  max-width: 690px;
  margin-bottom: 40px;
}

h2 {
  font-size: clamp(35px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.073em;
}

.head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 16px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.location {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: .25s;
}

.location:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px #00000012;
}

.gallery-wrap {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  min-height: 350px;
  background: #eee;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery img:first-child {
  grid-row: span 2;
}

.gallery-logo {
  position: absolute !important;
  top: 18px;
  right: 20px;
  z-index: 20;

  display: block;
  width: 155px;
  height: auto;
  max-width: none;
  margin: 0 !important;

  padding: 8px 11px;
  border-radius: 10px;

  background: rgba(255, 255, 255, .38);
  opacity: 1;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35));
}


.gallery-logo.six-logo {
  width: 115px;
  height: auto;
  border-radius: 0;
}

.gallery-logo.salon-logo {
  width: 145px;
  height: auto;
}

.location-info {
  padding: 27px;
}

.location-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.location-services {
  margin-top: 27px;
}

.location-services .eyebrow {
  margin-bottom: 12px;
}

.location-services .tags {
  margin-bottom: 0;
}
h3 {
  font-size: 28px;
  letter-spacing: -.06em;
}

.city {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.location-info p {
  color: var(--muted);
  margin: 14px 0 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  font-size: 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
}

.text-link {
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.text-link:hover {
  color: var(--accent);
}

#preise {
  padding: 94px 0;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 32px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px 24px;
  background: #fff;
  margin-bottom: 25px;
}

.price-card h3 {
  font-size: 24px;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.price-card li ul {
  margin-top: 6px;
  margin-left: 16px;
}

.price-card li ul li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.prices-cta {
  display: block;
  width: 100%;
  margin-top: 50px;
  padding-top: 0;
  text-align: center;
}

.price-card-last {
  margin-bottom: 80px;
}


.planning {
  background: var(--soft);
}

.planning-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: start;
}

.planning-intro {
  position: sticky;
  top: 25px;
}

.planning-intro p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 18px;
}

.planning-cta {
  margin-top: 31px;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.number {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding-top: 4px;
}

.step h3 {
  font-size: 23px;
}

.step p {
  color: var(--muted);
  margin-top: 8px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.extra {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 151px;
  transition: .2s;
}

.extra:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.extra span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.extra h3 {
  font-size: 21px;
  margin-top: 13px;
}

.extra p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}

.history-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 425px;
  border-radius: 21px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.history-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 320px;
}

.history-photos img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.history-copy {
  padding: clamp(34px, 5vw, 67px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.history-copy .eyebrow {
  color: #dec6ad;
}

.history-copy h2 {
  color: #fff;
}

.history-copy p {
  color: #ffffffbc;
  margin: 18px 0 25px;
}

.rimbach {
  padding-top: 0;
}

.rimbach-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rimbach-box h3 {
  font-size: 24px;
}

.rimbach-box p {
  color: var(--muted);
  margin-top: 6px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 25px;
  min-height: 650px;
  padding: clamp(40px, 6vw, 82px);
  background: var(--ink);
  color: #fff;
}

.contact-intro .eyebrow {
  color: #dec6ad;
}

.contact-intro h2 {
  color: #fff;
}

.contact-intro > p {
  max-width: 430px;
  color: #ffffffbc;
  font-size: 17px;
  margin-top: 20px;
}

.contact-intro .button {
  margin-top: 30px;
}

.contact-phone {
  border-top: 1px solid #ffffff45;
  margin-top: 52px;
  padding-top: 22px;
}

.contact-phone p {
  color: #ffffffbc;
  font-size: 14px;
}

.contact-phone a {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.contact-content {
  padding: clamp(40px, 6vw, 82px);
  background: #fff;
}

.contact-lead {
  color: var(--muted);
  font-size: 17px;
  margin-top: 15px;
}

.calendar-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
}

.contact-info-box {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.contact-info-box h3,
.contact-closing h3 {
  font-size: 22px;
}

.contact-info-box p,
.contact-closing p {
  color: var(--muted);
  margin-top: 10px;
}

.reservation-info {
  background: #fff;
}

.contact-closing {
  margin-top: 32px;
}

.contact-closing a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}

.request-form {
  margin-top: 28px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}

.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.form-field label span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #c9c5be;
  border-radius: 8px;
  background: #faf9f7;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.4;
  padding: 12px 13px;
  outline: none;
}

.form-field input,
.form-field select {
  height: 48px;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

.form-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.captcha-field {
  grid-column: 1 / -1;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-row img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 180px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.captcha-row input {
  width: 180px;
  max-width: 100%;
}

.request-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
}

.request-submit:hover {
  background: var(--accent);
}

.form-message {
  margin: 28px 0;
  padding: 16px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.form-error {
  background: #fff0f0;
  border: 1px solid #dd7878;
  color: #8a2525;
}

.form-success {
  background: #edf8ef;
  border: 1px solid #78ad7e;
  color: #245d2b;
}

footer {
  background: var(--ink);
  color: #fff;
  padding: 45px 0;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.footer-logo {
  width: 330px;
  height: auto;
}

.footer small {
  display: block;
  color: #bdbdb8;
  margin-top: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #c5c5c0;
}

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

/* ===========================
   Mobile-Anpassungen (Hero)
   =========================== */

@media (max-width: 850px) {
  .nav-links a:not(.nav-button) {
    display: none;
  }

  .hero-grid,
  .planning-layout,
  .history-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Hero: weniger Höhe, damit Text nicht ins Bild rutscht */
  .hero {
    padding: 20px 0 50px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 35px 22px 45px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .hero-copy p {
    font-size: 16px;
    margin-top: 18px;
  }

  .hero-photos {
    order: -1;
    min-height: 260px;
  }

  .planning-intro,
  .contact-intro {
    position: static;
  }

  .contact-intro {
    min-height: auto;
  }

  .trust-grid,
  .location-grid,
  .prices-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .rimbach-box,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 67px 0;
  }

  .contact-section {
    padding: 0;
  }
}

/* Sehr kleine Handys */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full,
  .captcha-field {
    grid-column: auto;
  }

  .request-form {
    padding: 18px;
  }

  .captcha-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .captcha-row input {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-photos {
    min-height: 230px;
  }
}

/* Extra kleine Handys */
@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 30px);
  }

  .main-logo {
    width: 190px;
  }

  .gallery {
    min-height: 275px;
  }

  .gallery-logo {
    top: 13px;
    right: 14px;
    max-width: 125px;
  }

  .location-info {
    padding: 21px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  
  .hero-photos {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  max-height: 170px;
}

.hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photos img:first-child {
  grid-row: span 2;
}
  
}

/* Logos direkt auf der Galerie */
.gallery-wrap {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.gallery-wrap .gallery {
  position: relative;
  z-index: 1;
}

.gallery-logo {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 5;
  display: block;
  width: 145px;
  height: 58px;
  margin: 0;
  object-fit: contain;
  object-position: right center;
  opacity: .88;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .35));
}

/* Beide Logos erhalten denselben Platz */
.gallery-logo.six-logo,
.gallery-logo.salon-logo {
  width: 145px;
  height: 58px;
  border-radius: 0;
}

/* Hero-Fotos auf Mobile: Grid wie bei den Locations */
@media (max-width: 850px) {
  .hero {
    padding: 15px 0 40px;
  }

  .hero-grid {
    min-height: auto;
    border-radius: 16px;
  }

  .hero-copy {
    padding: 25px 18px 35px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .hero-copy p {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-photos {
    order: -1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    max-height: 220px;
  }

  .hero-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-photos img:first-child {
    grid-row: span 2;
  }
}

/* Sehr kleine Handys */
@media (max-width: 600px) {
  .hero-photos {
    max-height: 190px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 14px;
  }
}

/* Extra kleine Handys */
@media (max-width: 480px) {
  .hero-photos {
    max-height: 170px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }
}
#preise .price-card-last {
  margin-bottom: 80px !important;
}

#preise .prices-cta {
  margin-top: 40px !important;
  text-align: center;
}

@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photos {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 1fr 1fr;
    height: 300px;
    min-height: 0;
    max-height: none;
    gap: 5px;
  }

  .hero-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-photos img:first-child {
    grid-row: 1 / 3;
  }
}

@media (max-width: 480px) {
  .hero-photos {
    height: 240px;
  }
}

@media (max-width: 850px) {
  .hero-copy .eyebrow {
    position: relative;
    z-index: 2;
    margin-top: 70px;
  }
}