:root {
  --red: #df1115;
  --brown: #715b42;
  --sand: #a88961;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text: #26211f;
  --gold: #e9a716;
  --menu-background: #241c15;
  --menu-text: #f5efe5;
  --menu-accent: #e8a936;
  --menu-divider: rgba(255,255,255,.35);
  --display: "Barlow Condensed", sans-serif;
  --body: "Montserrat", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
}

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

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

/* ===== HEADER – unverändert aus der Startseite ===== */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  padding: 18px 16px;
}

.menu-button {
  width: 34px;
  height: 30px;
  padding: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin-bottom: 5px;
  background: var(--white);
}

.menu-button span:nth-child(2) { width: 12px; }

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.brand-mark {
  position: relative;
  width: 120px;
  height: 74px;
  margin-bottom: 5px;
}

.brand-s {
  position: absolute;
  top: -8px;
  left: 38px;
  font-family: Georgia, serif;
  font-size: 72px;
  font-style: italic;
  line-height: 1;
  transform: rotate(-8deg);
}

.brand-orbit {
  position: absolute;
  left: 24px;
  width: 75px;
  height: 24px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  transform: skewX(-18deg);
}

.brand-orbit--one { top: 10px; }

.brand-orbit--two {
  bottom: 4px;
  transform: rotate(180deg) skewX(-18deg);
}

.brand-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.brand-dot--one {
  top: 13px;
  left: 10px;
}

.brand-dot--two {
  right: 8px;
  bottom: 11px;
}

.brand-word {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.brand-subline {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* ===== FOOTER – unverändert aus der Startseite ===== */
.footer {
  position: relative;
  min-height: 310px;
  padding: 32px 24px 36px;
  color: var(--white);
  background: var(--brown);
}

.footer-links {
  display: grid;
  gap: 10px;
  width: fit-content;
  font-family: var(--display);
  font-size: 0.95rem;
}

.footer-socials {
  position: absolute;
  top: 78px;
  right: 28px;
  display: flex;
  gap: 14px;
  font-size: 1.65rem;
}

.brand--footer {
  align-items: flex-start;
  margin-top: 40px;
}

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

.brand--footer .brand-word { font-size: 2.45rem; }

.brand-mark--small {
  width: 74px;
  height: 44px;
  margin: 0;
}

.brand-mark--small .brand-s {
  top: -5px;
  left: 24px;
  font-size: 43px;
}

.brand-mark--small .brand-orbit {
  left: 12px;
  width: 54px;
  height: 16px;
  border-top-width: 1.5px;
}

.brand-mark--small .brand-orbit--one { top: 6px; }
.brand-mark--small .brand-orbit--two { bottom: 2px; }

.brand--footer .brand-subline {
  margin-top: -2px;
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .footer {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 270px;
    padding: 48px max(6vw, 40px);
  }

  .footer-socials {
    position: static;
    align-self: start;
  }

  .brand--footer { grid-column: 1 / -1; }
}

/* ===== OFFCANVAS – aus der Startseite ===== */
.menu-btn {
  color:#fff;
  font-size:1.8rem;
  border:none;
  background:none;
  padding:0;
}

.menu-btn:focus { box-shadow:none; }

.studio-offcanvas {
  width: 100%;
  color: var(--menu-text);
  background: var(--menu-background);
  border-right: 0;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-offcanvas-header {
  min-height: 45px;
  padding: 8px 14px;
}

.studio-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--menu-text);
  font-size: 20px;
  font-weight: 300;
  background: transparent;
  border: 0;
  opacity: 0.9;
  transition: color 0.2s ease, transform 0.2s ease;
}

.studio-close:hover {
  color: var(--menu-accent);
  transform: rotate(90deg);
}

.offcanvas-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--menu-text);
  text-decoration: none;
}

.brand-symbol {
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1;
}

.studio-offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 0 21px 20px;
  overflow-y: auto;
}

.studio-menu { margin-top: 4px; }

.studio-menu-highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 2px;
}

.studio-menu-highlight a {
  color: var(--menu-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.studio-menu-divider {
  width: 100%;
  height: 1px;
  margin: 14px 0 12px;
  background: var(--menu-divider);
}

.studio-menu-main {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.studio-menu-main a {
  color: var(--menu-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.studio-menu a:hover,
.studio-menu a:focus {
  color: var(--menu-accent);
  transform: translateX(4px);
}

.studio-menu-socials {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
}

.studio-menu-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--menu-text);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.studio-menu-socials a:hover {
  color: var(--menu-accent);
  transform: translateY(-2px);
}

.offcanvas-backdrop.show { opacity: 0.55; }

@media (min-width: 768px) {
  .studio-offcanvas { width: 285px !important; }

  .studio-offcanvas-body {
    padding-right: 28px;
    padding-left: 28px;
  }
}

/* ===== GEMEINSAMES SKELETON ===== */
.skeleton-load {
  position: relative;
  overflow: hidden;
}

.skeleton-load::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 999;
  background: #e2e2e2;
  pointer-events: none;
  animation: skeleton-breathe 2.5s ease-in-out infinite;
  transition: opacity 0.45s ease;
}

.skeleton-load.skeleton-loaded::after {
  opacity: 0;
  animation: none;
}

@keyframes skeleton-breathe {
  0%, 100% { background-color: #e0e0e0; }
  50% { background-color: #e9e9e9; }
}
