:root {
  --ink: #44302a;
  --text: #5c4238;
  --muted: #796456;
  --paper: #f7f1e8;
  --surface: #e8dfd3;
  --night: #49342c;
  --line: rgba(90, 69, 61, 0.24);
  --terracotta: #a5492d;
  --title-beige: #9a8c7d;
  --title-blue: #8a9999;
  --green: #8a9999;
  --taupe: #9a8c7d;
  --blue-soft: #d9e0df;
  --beige-soft: #e8dfd3;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(73, 52, 44, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(154, 140, 125, 0.22), rgba(247, 241, 232, 0.94) 38%, rgba(138, 153, 153, 0.24));
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(73, 52, 44, 0.14);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease;
}

.topbar.is-scrolled,
.topbar.menu-visible {
  box-shadow: 0 18px 42px rgba(73, 52, 44, 0.2);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 168px;
  width: 168px;
  height: 54px;
  overflow: hidden;
}

.logo-link img {
  width: 168px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  border-radius: var(--radius);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--terracotta);
}

.social-nav {
  opacity: 0.74;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span:not(.screen-reader) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(640px, 78svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(154, 140, 125, 0.58), rgba(138, 153, 153, 0.48));
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  top: 100px;
  bottom: auto;
  height: calc(100% - 100px);
  object-fit: contain;
  object-position: right top;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(73, 52, 44, 0.62), rgba(154, 140, 125, 0.42) 48%, rgba(138, 153, 153, 0.18)),
    linear-gradient(0deg, rgba(73, 52, 44, 0.48), transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 96px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--surface);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn.solid {
  background: var(--terracotta);
  color: var(--white);
}

.btn.solid:hover,
.btn.solid:focus-visible {
  background: var(--ink);
}

.btn.glass {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.btn.glass:hover,
.btn.glass:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.quick-info {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 32px));
  margin: 24px auto 0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(154, 140, 125, 0.18), rgba(255, 255, 255, 0.76) 44%, rgba(138, 153, 153, 0.18));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-info a {
  min-height: 104px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease;
}

.quick-info a:last-child {
  border-right: 0;
}

.quick-info a:hover,
.quick-info a:focus-visible {
  background: rgba(138, 153, 153, 0.18);
}

.quick-info span,
.card-label,
.contact-links span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong,
.contact-links strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 98px) 0;
}

.editorial,
.advice-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.editorial p:not(.kicker),
.advice-copy p,
.contact-intro,
.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-note {
  margin-top: 18px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.mode-card {
  display: grid;
  grid-template-rows: clamp(340px, 31vw, 430px) 1fr;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 44px rgba(73, 52, 44, 0.1);
  overflow: hidden;
}

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

.mode-card img[src$="Herren_Sommer.png"],
.look-image-button img[src$="Herren_Sommer.png"] {
  object-position: center top;
}

.look-image-button img[src$="Damen_Blond_Only.png"],
.look-image-button img[src$="HD2a.jpg"],
.look-image-button img[src$="HD3a.jpg"],
.look-image-button img[src$="HN1a.jpg"],
.look-image-button img[src$="HN2a.jpg"],
.look-image-button img[src$="HN3a.jpg"] {
  object-position: center top;
}

.mode-card img[src$="Mode_Damen_Leinenhose.png"],
.mode-card img[src$="Mode_Herren_Blumenhemd.png"] {
  object-position: center top;
}

.mode-card img[src$="Mode_Damen_Teddyjacke.png"] {
  object-position: center center;
}

.mode-card img[src$="Damen_Blond_Only.png"] {
  object-fit: contain;
  object-position: center center;
  background: var(--beige-soft);
}

.text-card {
  align-content: center;
  min-height: 100%;
  background: var(--surface);
}

.mode-card div {
  padding: 24px;
}

.mode-card p:not(.card-label) {
  margin: 12px 0 0;
  color: var(--muted);
}

.accent-card {
  background: rgba(154, 140, 125, 0.18);
}

.advice-band {
  background:
    linear-gradient(135deg, rgba(154, 140, 125, 0.26), rgba(138, 153, 153, 0.24));
}

.advice-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.advice-copy li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

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

.look-card {
  position: relative;
  display: block;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 44px rgba(73, 52, 44, 0.1);
  overflow: hidden;
}

.look-image-button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.look-image-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.look-image-button span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(73, 52, 44, 0.72);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.look-image-button:hover img,
.look-image-button:focus-visible img {
  transform: scale(1.035);
}

.look-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: end;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(73, 52, 44, 0.03) 0%, rgba(250, 246, 239, 0.54) 42%, rgba(250, 246, 239, 0.96) 100%);
  color: var(--ink);
  pointer-events: none;
}

.look-content[hidden] {
  display: none;
}

.look-content .card-label,
.look-content h3,
.look-content .product-list {
  width: min(58%, 260px);
}

.look-content .card-label {
  color: var(--ink);
}

.look-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.look-card.is-open .look-image-button img {
  transform: scale(1.02);
  filter: saturate(0.92) brightness(0.95);
}

.look-card.is-open .look-image-button span {
  opacity: 0;
}

.product-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 9px 0;
  border-top: 1px solid rgba(73, 52, 44, 0.2);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.product-list strong {
  color: var(--terracotta);
  font-size: 0.82rem;
  white-space: nowrap;
}

.locations-section {
  background:
    linear-gradient(135deg, rgba(154, 140, 125, 0.32), rgba(138, 153, 153, 0.24));
  color: var(--ink);
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 74px);
}

.sticky-title {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.locations-section .section-note {
  color: var(--muted);
}

.location-list {
  display: grid;
  gap: 22px;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.7);
  box-shadow: 0 14px 44px rgba(73, 52, 44, 0.1);
  overflow: hidden;
}

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

.panel-content {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
}

address {
  margin: 20px 0 10px;
  color: var(--muted);
  font-style: normal;
}

.phone,
.route {
  color: var(--ink);
  font-weight: 800;
}

.hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours p {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 800;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: minmax(128px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
}

.route {
  margin-top: auto;
  padding-top: 24px;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(138, 153, 153, 0.26), rgba(247, 241, 232, 0.88) 54%, rgba(154, 140, 125, 0.2));
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.contact-intro {
  margin-top: 18px;
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: grid;
  grid-template-columns: minmax(148px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(16px, 3vw, 28px);
  min-height: 76px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-links a:hover strong,
.contact-links a:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-links img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
  object-fit: cover;
}

.contact-links span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.contact-links strong {
  color: var(--ink);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(16px, 4vw, 48px);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--ink);
}

@media (max-width: 980px) {
  .main-nav {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .main-nav a {
    padding: 14px 12px;
  }

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

  .quick-info,
  .editorial,
  .advice-layout,
  .locations-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .quick-info a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mode-grid {
    grid-template-columns: 1fr;
  }

  .look-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-title {
    position: static;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .location-panel img {
    aspect-ratio: 16 / 9;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .logo-link {
    flex-basis: 146px;
    width: 146px;
    height: 49px;
  }

  .logo-link img {
    width: 146px;
    max-height: 49px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding: 170px 0 58px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
  }

  .look-grid {
    grid-template-columns: 1fr;
  }

  .look-content {
    align-content: end;
    justify-items: start;
    padding: 20px;
    background:
      linear-gradient(180deg, rgba(73, 52, 44, 0.02) 0%, rgba(250, 246, 239, 0.82) 34%, rgba(250, 246, 239, 0.98) 100%);
  }

  .look-content .card-label,
  .look-content h3,
  .look-content .product-list {
    width: 100%;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-links a {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .look-image-button:hover img {
    transform: none;
  }
}
