/* ==========================================================================
   fineSEIN – Hairstyle by Sarah W.
   Stylesheet
   ========================================================================== */

@font-face {
  font-family: "Bitter";
  src: url("../assets/fonts/Bitter-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter";
  src: url("../assets/fonts/Bitter-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-VariableFont_wdthwght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Italic-VariableFont_wdthwght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --teal: #004e49;
  --teal-deep: #003733;
  --teal-soft: #0a5f59;
  --gold: #d6c79a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --ink: #333333;
  --ink-muted: #6b6b6b;
  --font-head: "Bitter", Georgia, serif;
  --font-body: "Open Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1440px;
  --gap: 1px;
  --edge: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
p, li { font-weight: 400; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(34px, 4.2vw, 45px); }
h2 { font-size: clamp(26px, 3vw, 32px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge);
}

.gold-rule {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 0 0 28px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  padding-top: 26px;
  position: relative;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.book-now {
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 16px 26px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.book-now:hover { background: var(--gold); color: var(--teal-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 1px; background: var(--white); }

/* ---------- Hero grid (3 columns, hairline dividers) ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr 1fr;
  gap: 46px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px var(--edge) 70px;
  align-items: start;
}
.home-hero {
  display: grid;
  grid-template-columns: 355px 730px;
  grid-template-rows: 355px 355px;
  grid-template-areas: "text logo" "photo logo";
  gap: 20px;
  max-width: calc(1105px + 2 * var(--edge));
  margin: 0 auto;
  padding: 34px var(--edge) 70px;
}
body.home .nav-row { max-width: calc(1105px + 2 * var(--edge)); }
.hh-cell { border-top: 1px solid var(--gold); padding-top: 26px; }
.hh-text {
  grid-area: text;
  width: 355px;
  height: 355px;
  box-sizing: border-box;
  border-top: none;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 30px 30px 30px 20px;
  display: flex;
  flex-direction: column;
}
.hh-text h1 { font-size: 40px; letter-spacing: 1px; line-height: 1.25; }
.hh-text .hero-address { margin-top: auto; margin-bottom: 0; }
.hh-photo {
  grid-area: photo;
  width: 355px;
  height: 355px;
  padding-top: 0;
  border-top: none;
  -webkit-perspective: 1500px;
  perspective: 1500px;
  position: relative;
  z-index: 1;
}
.flip-inner-x {
  position: relative;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.8s cubic-bezier(.4,.2,.2,1), transform 0.8s cubic-bezier(.4,.2,.2,1);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
}
.hh-photo:hover .flip-inner-x { -webkit-transform: rotateX(180deg); transform: rotateX(180deg); }
.flip-front-x, .flip-back-x {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.flip-front-x img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flip-back-x {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  background: var(--teal);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flip-back-x h2, .hours-detail h2 { font-size: 26px; margin-bottom: 4px; }
.flip-back-x h2 + h2, .hours-detail h2 + h2 { margin-top: 8px; }
.flip-back-x .hours-stack, .hours-detail .hours-stack { font-size: 15px; color: var(--white); line-height: 1.5; margin-bottom: 4px; }
.flip-back-x .hours-stack-last, .hours-detail .hours-stack-last { margin-bottom: 30px; }
.flip-back-x .hours-heading-tight, .hours-detail .hours-heading-tight { margin-bottom: 4px; }
.flip-back-x .hours-phone, .hours-detail .hours-phone { font-size: 15px; color: var(--white); margin-top: 0; }

/* ---------- fineSCHNITT: 3x3 square grid ---------- */
body.schnitt .nav-row { max-width: calc(1105px + 2 * var(--edge)); }
body.schnitt .site-footer .footer-inner { max-width: calc(1105px + 2 * var(--edge)); }

.fs-grid {
  display: grid;
  grid-template-columns: repeat(3, 355px);
  grid-template-rows: repeat(3, 355px);
  gap: 20px;
  max-width: calc(1105px + 2 * var(--edge));
  margin: 0 auto;
  padding: 34px var(--edge) 90px;
}
.fs-grid.fs-grid-4 { grid-template-rows: repeat(4, 355px); }
.fs-grid.fs-grid-2 { grid-template-rows: repeat(2, 355px); }
body.macher .nav-row { max-width: calc(1105px + 2 * var(--edge)); }
body.kunden .nav-row { max-width: calc(1105px + 2 * var(--edge)); }

.fs-playlink {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  border: none;
  color: var(--white);
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
}
.fs-playlink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 0;
}
.fs-playlink:hover::before { background: rgba(0, 0, 0, 0.4); }
.fs-playlink .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.fs-playlink:hover .play-icon { opacity: 0; }
.fs-playlink h2 { margin: 0 0 10px; font-size: 34px; position: relative; z-index: 2; }
.fs-playlink p { color: var(--white); font-size: 18px; margin: 0; position: relative; z-index: 2; }
.fs-cell {
  width: 355px;
  height: 355px;
  box-sizing: border-box;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  overflow: hidden;
}
.fs-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.fs-logo img { width: 100%; }
.fs-logo .tagline { color: var(--white); font-size: 14px; margin-top: 10px; }

.fs-photo { position: relative; border: none; }
.fs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-text.copy-only { justify-content: flex-start; border: none; }
.fs-text.copy-only.bordered { border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.fs-text.rule-br { border-top: none; border-left: none; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.fs-text.copy-only p { color: var(--white); font-size: 16px; line-height: 1.6; margin: 0; }

.fs-cell.flip-up { width: 355px; height: 355px; -webkit-perspective: 1500px; perspective: 1500px; border: none; }
.fs-cell.flip-up:hover .flip-inner-x { -webkit-transform: rotateX(180deg); transform: rotateX(180deg); }
.flip-front-x .fs-flip-label p { color: var(--white); font-size: 16px; margin-top: 8px; }
.team-back h2 { font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
.team-back p { font-size: 16px; }
.team-back .apply-line { margin-top: 22px; }

.fs-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  overflow: hidden;
}
.fs-text h2 { margin: 0; font-size: 46px; letter-spacing: 1px; line-height: 1.2; }
.fs-text p { color: var(--white); font-size: 16px; line-height: 1.6; margin-top: 14px; }
.fs-text.has-copy h2 { font-size: 30px; }
body.kunden .fs-text h2 { font-size: 44px; }
.fs-cell.fs-playlink { border: none; }

.fs-ocean {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: var(--white);
}
.fs-ocean img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fs-ocean h2 { position: relative; z-index: 1; margin: 0; }

.fs-grid .hours-box {
  padding: 30px;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fs-address {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.fs-address h2 { font-size: 30px; margin-bottom: 14px; }
.fs-address p { color: var(--white); font-size: 16px; line-height: 1.7; }
.flip-back-x p { font-size: 16px; }
.fs-address a { color: var(--white); }
.fs-address a:hover { color: var(--gold); }
body.kunden .fs-address { border-top: none; border-left: none; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }

/* flipboxes */
.fs-flip { -webkit-perspective: 1800px; perspective: 1800px; border: none; }
.fs-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.8s cubic-bezier(.4,.2,.2,1), transform 0.8s cubic-bezier(.4,.2,.2,1);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
}
.fs-flip:hover .fs-flip-inner { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); }
.fs-flip-front, .fs-flip-back {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.fs-flip-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-flip-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 18, 0.3);
}
.fs-flip-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
}
.fs-flip-label h2 { margin: 0; font-size: 30px; }
.fs-flip-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: var(--teal);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fs-flip-back h2 { font-size: 24px; margin-bottom: 10px; }
.fs-flip-back .eyebrow { color: var(--gold); font-family: var(--font-head); font-size: 14px; margin-bottom: 8px; }
.fs-flip-back p { color: var(--white); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.fs-flip-back p:last-child { margin-bottom: 0; }
.fs-flip-back strong { color: var(--white); font-weight: 700; }
.fs-flip-back p a { color: var(--gold); }
.fs-flip-back p a strong { color: var(--gold); }
.fs-flip-back .price-list { list-style: none; margin: 12px 0; padding: 0; font-size: 14px; color: var(--white); }
.fs-flip-back .price-list li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(214,199,154,0.25); }
.fs-flip-back .link-more { color: var(--gold); border-bottom: 1px solid var(--gold); display: inline-block; margin-top: 10px; font-size: 14px; }
.fs-flip-back .brand-links a { color: var(--gold); }

@media (max-width: 1180px) {
  .fs-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; }
  .fs-cell, .fs-flip { width: 100%; height: 100%; }
}
@media (max-width: 760px) {
  .fs-grid { grid-template-columns: 1fr; }
}
.hh-logo {
  grid-area: logo;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  width: 730px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-top: none;
  padding-top: 0;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  position: relative;
  z-index: 2;
}
.hero-cell { padding-top: 26px; border-top: 1px solid var(--gold); }
.hero-cell.no-rule { border-top: none; padding-top: 0; }

.hero-address { color: var(--white); margin-top: 22px; }

.hero-logo-block { display: flex; flex-direction: column; align-items: flex-start; }
.hero-logo-block img { width: min(320px, 90%); }
.hh-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-logo-block .tagline {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 15px;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

.video-section {
  max-width: var(--max);
  margin: 10px auto 0;
  padding: 0 var(--edge) 90px;
}
body.home .video-section, body.kunden .video-section { max-width: calc(1105px + 2 * var(--edge)); }
.video-section .video-name { font-family: var(--font-head); font-size: 20px; margin: 0 0 14px; }
.video-frame { position: relative; }
.video-frame .video-click-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.video-frame.is-playing .video-click-layer { pointer-events: none; }
.video-section video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #000;
  cursor: pointer;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.video-section video::-webkit-media-controls,
.video-section video::-webkit-media-controls-enclosure,
.video-section video::-webkit-media-controls-panel,
.video-section video::-webkit-media-controls-play-button,
.video-section video::-webkit-media-controls-timeline,
.video-section video::-webkit-media-controls-current-time-display,
.video-section video::-webkit-media-controls-time-remaining-display,
.video-section video::-webkit-media-controls-mute-button,
.video-section video::-webkit-media-controls-volume-slider,
.video-section video::-webkit-media-controls-fullscreen-button {
  cursor: pointer;
}
body.kunden .video-section { padding-bottom: 80px; }

.video-feedback-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: var(--max);
  margin: 60px auto;
  padding: 0 var(--edge) 90px;
  flex-wrap: wrap;
}
.video-feedback-card {
  position: relative;
  width: 355px;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  overflow: hidden;
}
.video-feedback-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  cursor: pointer;
}
.video-feedback-card video::-webkit-media-controls,
.video-feedback-card video::-webkit-media-controls-enclosure,
.video-feedback-card video::-webkit-media-controls-panel,
.video-feedback-card video::-webkit-media-controls-play-button,
.video-feedback-card video::-webkit-media-controls-timeline,
.video-feedback-card video::-webkit-media-controls-current-time-display,
.video-feedback-card video::-webkit-media-controls-time-remaining-display,
.video-feedback-card video::-webkit-media-controls-mute-button,
.video-feedback-card video::-webkit-media-controls-volume-slider,
.video-feedback-card video::-webkit-media-controls-fullscreen-button {
  cursor: pointer;
}
.video-feedback-card .video-click-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.video-feedback-card.is-playing .video-click-layer { pointer-events: none; }
.video-feedback-card .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-feedback-card .play-icon::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}
.video-feedback-card.is-playing .play-icon { opacity: 0; }

.reviews-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) 90px;
}
body.kunden .reviews-section { max-width: calc(1105px + 2 * var(--edge)); }

.instagram-section {
  max-width: calc(1105px + 2 * var(--edge));
  margin: 0 auto;
  padding: 0 var(--edge) 90px;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
.anim-up { animation: slideUp 0.9s cubic-bezier(.22,.61,.36,1) both; }
.anim-down { animation: slideDown 1.6s cubic-bezier(.22,.61,.36,1) both; animation-delay: 0.15s; }

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.media-card img:not(.play-badge), .media-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card .card-label {
  position: relative;
  z-index: 1;
  padding: 30px 34px;
  font-size: clamp(24px, 2.6vw, 30px);
}
.media-card .card-label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 25, 23, 0.55), rgba(0, 25, 23, 0));
  z-index: -1;
}

.hours-box h2 { margin-bottom: 22px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; color: var(--white); font-size: 16px; margin-bottom: 6px; }
.hours-row span:last-child { color: var(--white); }
.hours-note { margin-top: 26px; }
.hours-note h3 { margin-bottom: 8px; }
.hours-phone { margin-top: 10px; color: var(--white); }

/* ---------- Editorial content rows ---------- */
.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) 90px;
  align-items: start;
}
.row.two-col { grid-template-columns: 1fr 1fr; }
.row.reverse .col-text { order: 2; }
.row.reverse .col-media { order: 1; }

.col { border-top: 1px solid var(--gold); padding-top: 26px; }
.col-media { min-height: 380px; position: relative; overflow: hidden; }
.col-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.col-text { display: flex; flex-direction: column; justify-content: center; }
.col-text .eyebrow { color: var(--gold); font-family: var(--font-head); font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.col-text p { color: var(--white); }
.col-text .price-list { list-style: none; margin: 18px 0; padding: 0; color: var(--white); font-size: 16px; }
.col-text .price-list li { padding: 8px 0; border-bottom: 1px solid rgba(214, 199, 154, 0.25); display: flex; justify-content: space-between; gap: 12px; }
.col-text .price-list li span:first-child { color: var(--white); }
.col-text .link-more { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; display: inline-block; margin-top: 6px; }
.col-text a.link-more:hover { color: var(--white); border-color: var(--white); }
.brand-links a { color: var(--gold); }
.brand-links a:hover { color: var(--white); }

.banner-link {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  padding: 40px var(--edge);
}
.banner-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.banner-link h2 { position: relative; z-index: 1; margin: 0; max-width: 640px; }

/* ---------- Section title block (full width statement) ---------- */
.statement {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) 20px;
}
.statement h2 { max-width: 780px; }

/* ---------- Story / prose sections (fineMACHER) ---------- */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--edge);
  align-items: center;
}
.story-row.tight { padding-top: 0; }
.story-row .col-media { min-height: 460px; }
.story-row .col-media.portrait { min-height: 560px; }
.story-row .col-text p { color: var(--white); font-size: 18px; }
.story-row.reverse { direction: rtl; }
.story-row.reverse > * { direction: ltr; }

.story-lead {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--edge) 0;
}
.story-lead h1 { max-width: 760px; }

.popup-trigger { cursor: pointer; }
.popup-trigger .col-media { transition: filter 0.25s ease; }
.popup-trigger:hover .col-media { filter: brightness(1.08); }
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  z-index: 2;
}

/* ---------- Team / hiring callout ---------- */
.callout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px var(--edge) 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  border-top: 1px solid var(--gold);
}
.callout .col-text .eyebrow { margin-bottom: 4px; }
.callout h2 { margin-bottom: 18px; }
.callout p { color: var(--white); }
.callout .apply { margin-top: 20px; display: inline-block; color: var(--gold); }

/* ---------- Video gallery (fineKUNDEN) ---------- */
.video-gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}
.video-card {
  position: relative;
  border-top: 1px solid var(--gold);
  padding-top: 26px;
  cursor: pointer;
}
.video-card .thumb { position: relative; min-height: 420px; overflow: hidden; }
.video-card .thumb img:not(.play-badge) { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card .thumb .play-badge { width: 56px; height: 56px; }
.video-card .name { margin-top: 16px; font-family: var(--font-head); font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gold);
  margin-top: 20px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--edge) 40px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-brand h2 { margin-bottom: 6px; }
.footer-brand .sub { color: var(--gold); font-family: var(--font-head); margin-bottom: 18px; }
.footer-address { color: var(--white); line-height: 1.9; }
.footer-address a { color: var(--white); }
.footer-address a:hover { color: var(--gold); }
.footer-logo img { width: 120px; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; }
.footer-social img { width: 22px; height: 22px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 199, 154, 0.3);
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-meta { display: flex; align-items: center; gap: 22px; }
.footer-bottom.no-rule { border-top: none; padding-top: 0; align-items: center; }

.home-footer { border-top: none; margin-top: 0; }
.home-footer .footer-inner { padding-top: 0; max-width: calc(1105px + 2 * var(--edge)); }

/* ---------- Popups / Lightbox ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 18, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.popup-overlay.open { display: flex; }
.popup-card {
  background: var(--white);
  color: var(--ink);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.popup-card.single-col { grid-template-columns: 1fr; max-width: 530px; }
.popup-card .popup-media { position: relative; overflow: hidden; }
.popup-card .popup-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.popup-card .popup-body { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.popup-card h2 { color: var(--ink); font-size: 28px; }
.popup-card p { color: var(--ink-muted); }
.popup-card.single-col .popup-media { aspect-ratio: 1 / 1; }
.popup-card.single-col .popup-body { padding: 48px 26px; }
.popup-card.single-col .popup-body h2 { font-family: var(--font-head); font-size: 30px; font-weight: 400; line-height: 1; color: var(--ink); margin: 0 0 30px; }
.popup-card.single-col .popup-strong { font-family: var(--font-head); font-size: 25px; font-weight: 400; line-height: 0.9; color: var(--ink); margin: 0; }
.popup-card.single-col .popup-note { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.5; color: var(--ink); margin: 10px 0 25px; }
.popup-card.single-col .popup-hours { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.5; color: var(--ink); margin: 10px 0 0; }
.popup-apply {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  font-size: 15px;
}
.popup-apply:hover { background: var(--ink); color: var(--white); }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  line-height: 1;
}

.lightbox-media {
  padding: 0;
  grid-template-columns: 1fr;
  max-width: 960px;
  background: #000;
}
.lightbox-media img, .lightbox-media video { width: 100%; display: block; max-height: 85vh; object-fit: contain; }
.lightbox-media .popup-close { background: rgba(0,0,0,0.6); color: #fff; }

.price-popup .popup-body { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 46px; }
.price-popup { grid-template-columns: 1fr; max-width: 980px; }
.price-popup img { border: 1px solid #eee; }
.price-popup .pdf-link { grid-column: 1 / -1; display: inline-block; margin-top: 4px; color: var(--teal); text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--edge) 90px;
  color: var(--muted);
}
.legal-content h1 { color: var(--white); margin-bottom: 30px; }
.legal-content h2 { color: var(--white); font-size: 21px; margin-top: 40px; }
.legal-content h3 { color: var(--gold); font-size: 17px; margin-top: 26px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content ul { padding-left: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .row, .story-row, .callout, .video-gallery { grid-template-columns: 1fr !important; }
  .row.two-col { grid-template-columns: 1fr; }
  .hero-cell.no-rule { padding-top: 26px; border-top: 1px solid var(--gold); }
  .story-row.reverse { direction: ltr; }
}

@media (max-width: 760px) {
  .nav-row { position: relative; }
  .book-now { order: 3; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--teal-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 var(--edge);
    gap: 0;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 90;
  }
  .nav-links.open { max-height: 400px; padding: 10px var(--edge) 24px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(214, 199, 154, 0.2); }
  .nav-toggle {
    display: flex;
    order: 1;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    padding: 0;
  }
  .nav-toggle span { background: var(--gold); }
  .popup-card, .price-popup .popup-body { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 18px; }
  .footer-social { justify-content: center; }
  .footer-meta { flex-wrap: wrap; justify-content: center; }
  .footer-meta span { flex-basis: 100%; text-align: center; }

  .fs-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .fs-cell, .fs-flip, .flip-up { width: 100%; height: auto; aspect-ratio: 1 / 1; }

  .home-hero {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 20px var(--edge) 40px;
  }
  .home-hero .hh-logo { order: 1; width: 100%; height: auto; aspect-ratio: 1 / 1; animation: none !important; opacity: 1 !important; transform: none !important; }
  .home-hero .hh-text { order: 2; width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .home-hero .hh-photo { order: 3; width: 100%; height: auto; aspect-ratio: 1 / 1; }
}
