/* ============================================
   Custom Properties
   ============================================ */
:root {
  /* Colors */
  --color-bg: #0a0a0a;
  --color-bg-alt: #0f0f0f;
  --color-bg-card: #131211;
  --color-gold: #c9a227;
  --color-gold-light: #e0c25c;
  --color-cream: #f5f0e6;
  --color-muted: #9a9488;
  --color-border-gold: rgba(201, 162, 39, 0.25);
  --color-border-gold-strong: rgba(201, 162, 39, 0.5);
  --color-green-accent: rgba(61, 92, 58, 0.42);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.25rem;
  --header-height: 76px;

  /* Radii / borders */
  --radius-sm: 4px;
  --radius-md: 10px;
  --border-gold: 1px solid var(--color-border-gold);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-med: 300ms ease;
}

/* ============================================
   Reset / Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, p, figure {
  margin: 0;
}

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

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

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

address {
  font-style: normal;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  background: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-gold-light);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

section {
  padding: var(--space-2xl) 0;
  scroll-margin-top: var(--header-height);
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   Utilities
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  z-index: 1000;
  background: var(--color-gold);
  color: #0a0a0a;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.eyebrow {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.section-intro {
  max-width: 60ch;
  margin: 0 auto var(--space-lg);
  text-align: center;
  color: var(--color-cream);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: var(--color-gold);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: var(--color-gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid var(--color-border-gold-strong);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.08);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--color-border-gold-strong);
  border-radius: 999px;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   Logo lockup (placeholder — see index.html TODOs)
   ============================================ */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold-strong);
  object-fit: cover;
  flex-shrink: 0;
}

.logo-lockup-sm .logo-mark {
  width: 34px;
  height: 34px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text-small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.logo-text-large {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
}

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold-light);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-links a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-cream);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: var(--color-bg);
  padding: var(--space-lg) var(--container-pad);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.nav-panel.is-open {
  display: flex;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  min-height: 80svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(201, 162, 39, 0.14), transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 75%, var(--color-green-accent), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 1.7rem + 2.5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}

.hero-subhead {
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
  font-size: 1.1rem;
  color: var(--color-cream);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.hero-mark {
  display: none;
  width: min(340px, 70%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold-strong);
  box-shadow: 0 0 60px rgba(201, 162, 39, 0.15);
}

/* ============================================
   Ziele
   ============================================ */
.ziele-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.ziel-card {
  padding: var(--space-lg);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  text-align: center;
}

.ziel-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  margin-bottom: var(--space-sm);
}

.ziel-card h3 {
  margin-bottom: var(--space-xs);
}

.ziel-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ============================================
   Warum Frauen
   ============================================ */
.warum-frauen {
  background: var(--color-bg-alt);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.warum-frauen-inner {
  max-width: 700px;
  text-align: center;
}

.warum-frauen-inner p {
  color: var(--color-cream);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.warum-frauen-inner p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Vorteile
   ============================================ */
.vorteile {
  background:
    radial-gradient(ellipse 45% 55% at 92% 10%, var(--color-green-accent), transparent 65%),
    var(--color-bg-alt);
}

.vorteile-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.vorteil-card {
  padding: var(--space-lg) var(--space-md);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
  .vorteil-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-gold-strong);
  }
}

.vorteil-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  margin-bottom: var(--space-sm);
}

.vorteil-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vorteil-card p {
  color: var(--color-cream);
  font-size: 0.95rem;
}

/* ============================================
   Team
   ============================================ */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
}

.team-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 706 / 841;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.15);
}

.team-role {
  margin-top: var(--space-md);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ============================================
   Angebote (pricing)
   ============================================ */
.angebote-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.angebot-card {
  padding: var(--space-lg);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  text-align: center;
}

.angebot-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.angebot-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold-light);
  margin-bottom: var(--space-xs);
}

.angebot-price s {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-muted);
  margin-right: 0.4rem;
}

.angebot-price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.angebot-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.angebot-card-featured {
  border: 1px solid var(--color-gold);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.15);
  position: relative;
}

/* ============================================
   Studio
   ============================================ */
.studio {
  background:
    radial-gradient(ellipse 40% 45% at 6% 90%, var(--color-green-accent), transparent 65%),
    var(--color-bg);
}

.studio-inner {
  display: grid;
  gap: var(--space-xl);
}

.studio-content,
.studio-address {
  /* Grid items default to min-width: auto, which factors in a descendant's
     intrinsic size (the video's real file dimensions, not its CSS width) and
     can stretch the column past the viewport on narrow screens. */
  min-width: 0;
}

.studio-content h2,
.studio-address h3 {
  text-align: left;
}

.studio-content p {
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.map-placeholder {
  border: 2px dashed var(--color-border-gold-strong);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-muted);
  gap: 0.4rem;
  height: 160px;
  margin-top: var(--space-md);
}

.studio-video-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 360px;
}

.studio-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--color-border-gold-strong);
  border-radius: var(--radius-md);
}

.studio-video-fullscreen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-gold-strong);
  background: transparent;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.studio-video-fullscreen:hover,
.studio-video-fullscreen:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Fullscreening the wrapper (not the <video> itself) sidesteps browsers'
   special native video-fullscreen rendering, which often ignores object-fit
   and crops a portrait video hard when the screen is landscape. */
.studio-video-wrap:fullscreen {
  max-width: none;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.studio-video-wrap:-webkit-full-screen {
  max-width: none;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.studio-video-wrap:fullscreen .studio-video,
.studio-video-wrap:-webkit-full-screen .studio-video {
  width: auto;
  height: 100%;
  max-height: 100vh;
  aspect-ratio: auto;
  object-fit: contain;
  border: none;
  border-radius: 0;
}

.studio-address address {
  margin-bottom: var(--space-md);
}

.address-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  color: var(--color-cream);
}

.address-row .icon {
  color: var(--color-gold);
  margin-top: 2px;
}

.address-row a:hover {
  color: var(--color-gold-light);
}

.gallery-heading {
  text-align: center;
  margin: var(--space-xl) 0 var(--space-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-border-gold-strong);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-fast);
}

@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.06);
  }
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--color-gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.94);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.lightbox[hidden] {
  display: none;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gold-strong);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold-strong);
  background: rgba(19, 18, 17, 0.8);
  color: var(--color-gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lightbox-close {
  top: var(--space-md);
  right: var(--space-md);
}

.lightbox-prev {
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   Kontakt
   ============================================ */
.kontakt-inner {
  display: grid;
  gap: var(--space-xl);
}

.kontakt-form-wrap h2,
.kontakt-details h3 {
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.form-field input,
.form-field textarea {
  background: var(--color-bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
}

.form-field textarea {
  resize: vertical;
}

.kontakt-details {
  padding: var(--space-lg);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  height: fit-content;
}

.oeffnungszeiten {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: var(--border-gold);
}

.oeffnungszeiten h4 {
  text-align: left;
  margin-bottom: var(--space-sm);
}

.oeffnungszeiten .address-row {
  align-items: flex-start;
}

.oeffnungszeiten-label {
  color: var(--color-gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: var(--border-gold);
  border-radius: 50%;
  color: var(--color-gold-light);
  transition: border-color var(--transition-fast);
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background:
    radial-gradient(ellipse 50% 60% at 85% 100%, var(--color-green-accent), transparent 65%),
    #050505;
  border-top: var(--border-gold);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-xl);
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.footer-col p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

.footer-col address a:hover {
  color: var(--color-gold-light);
}

.footer-col .logo-lockup {
  margin-bottom: var(--space-sm);
}

.legal-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-muted);
}

.legal-link:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  border-top: var(--border-gold);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-muted);
  font-size: 0.8rem;
}

/* ============================================
   Legal pages (Impressum & Datenschutz)
   ============================================ */
.legal-hero {
  padding-bottom: var(--space-lg);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: var(--space-xs);
}

.legal-hero .section-intro {
  margin-bottom: 0;
}

.legal-page {
  padding-top: var(--space-lg);
}

.legal-page:first-of-type {
  padding-top: 0;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-cream);
  line-height: 1.7;
}

.legal-content h2 {
  text-align: left;
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--color-gold-light);
  margin: var(--space-lg) 0 var(--space-xs);
}

.legal-content p {
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content address {
  font-style: normal;
  margin-bottom: var(--space-sm);
}

.legal-divider {
  border: none;
  border-top: var(--border-gold);
  max-width: 760px;
  margin: var(--space-xl) auto;
}

/* ============================================
   Breakpoints
   ============================================ */

/* Small tablet / large phone landscape */
@media (min-width: 600px) {
  .ziele-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-ctas {
    flex-direction: row;
  }
}

/* Nav breakpoint: hamburger -> horizontal nav */
@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: none;
    overflow: visible;
    gap: var(--space-lg);
  }

  .nav-links ul {
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
  }

  .header-actions {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subhead {
    margin-left: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-mark {
    display: block;
  }

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

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

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

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

/* Desktop container width + 4-across vorteile grid */
@media (min-width: 1200px) {
  .vorteile-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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