/* ═══════════════════════════════════════════════════════════
   GÜVEN SENTÜRK FRISEURSALON
   Design System — Dark Luxury
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --black:        #111111;
  --surface:      #1a1a1a;
  --surface-2:    #222222;
  --border:       #2e2e2e;
  --white:        #F5F0E8;
  --white-dim:    rgba(245, 240, 232, 0.6);
  --gold:         #C9A96E;
  --gold-dim:     rgba(201, 169, 110, 0.15);
  --gold-dark:    #8B6340;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:        72px;
  --section-gap:  120px;
  --container:    1200px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease-out),
              color      0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              transform  0.2s var(--ease-out);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: #b8924d;
  border-color: #b8924d;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(245, 240, 232, 0.5);
}

.btn--outline-light:hover {
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 13px;
}

/* ── Section Shared ──────────────────────────────────────── */
.section {
  padding-block: var(--section-gap);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__label--light {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.section__title--light {
  color: var(--white);
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-inline: auto;
}

.divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
}

/* ── Scroll Animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #111111;
  box-shadow: 0 1px 0 var(--border);
}

/* .scrolled retained for JS compat — no visual change since nav is always dark */
.nav.scrolled {
  background: #111111;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: var(--nav-h);
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: var(--container);
  margin-inline: auto;
}

.nav__logo-link {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform 0.25s var(--ease-out);
  transform-origin: center;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__cta {
  margin-left: 8px;
  flex-shrink: 0;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  margin-left: auto;
  padding: 2px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu — positioned absolute so it never adds to nav height */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 24px 32px;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__mobile-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__mobile-link:hover { color: var(--white); }

.nav__mobile-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  padding-bottom: clamp(40px, 6vw, 80px);
  background: var(--black);
  overflow-y: auto;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  margin-top: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 100px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Hero bio accordion */
.hero__bio-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  outline: none;
  transition: border-color 0.2s;
}

.hero__bio-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero__bio-trigger:hover .hero__bio-label { color: var(--white); }

.hero__bio-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
  flex: 1;
}

.hero__bio-arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.hero__bio-trigger[aria-expanded="true"] .hero__bio-arrow {
  transform: rotate(180deg);
}

.hero__bio-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-in-out);
}

.hero__bio-body.open {
  max-height: 1000px;
}

.hero__bio-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0 4px;
}

.hero__bio-text p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
}

.hero__bio-text em {
  color: var(--white);
}

.hero__bio-closing {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 15px !important;
}

.hero__cta {
  margin-top: 28px;
  align-self: flex-start;
}

/* ════════════════════════════════════════════════════════════
   GÜVEN PROFILE SECTION
   ════════════════════════════════════════════════════════════ */
.gueven-profile {
  background: var(--surface);
}

.gueven-card {
  border: 1px solid var(--border);
  overflow: hidden;
}

.gueven-card__trigger {
  display: grid;
  grid-template-columns: 340px 1fr;
  cursor: pointer;
  outline: none;
}

.gueven-card__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.gueven-card__portrait {
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 420px;
}

.gueven-card__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
}

.gueven-card__trigger:hover .gueven-card__portrait-img {
  transform: scale(1.03);
}

.gueven-card__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 48px clamp(28px, 4vw, 64px);
  background: var(--black);
}

.gueven-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}

.gueven-card__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.gueven-card__teaser {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 8px;
}

.gueven-card__expand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.gueven-card__expand-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.gueven-card__trigger:hover .gueven-card__expand-label {
  color: var(--white);
}

.gueven-card__arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.gueven-card__trigger[aria-expanded="true"] .gueven-card__arrow {
  transform: rotate(180deg);
}

/* Bio body */
.gueven-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s var(--ease-in-out);
  border-top: 0 solid var(--border);
}

.gueven-card__body.open {
  max-height: 1400px;
  border-top-width: 1px;
}

.gueven-card__body-inner {
  padding: clamp(32px, 4vw, 64px);
  background: var(--surface);
}

.gueven-card__bio-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.gueven-card__bio-img-wrap {
  overflow: hidden;
}

.gueven-card__bio-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gueven-card__bio-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gueven-card__bio-intro {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--white);
}

.gueven-card__bio-text p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.85;
}

.gueven-card__bio-closing {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 17px !important;
}

.gueven-card__cta {
  margin-top: 16px;
  align-self: flex-start;
}

/* ════════════════════════════════════════════════════════════
   SERVICE
   ════════════════════════════════════════════════════════════ */
.service {
  background: var(--black);
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.service-card {
  background: var(--surface);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s var(--ease-out);
  cursor: default;
}

.service-card:hover {
  background: var(--surface-2);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.service-card__desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
  flex: 1;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  margin-top: auto;
}

/* Price Accordion */
.price-accordion {
  border: 1px solid var(--border);
}

.price-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--surface);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  gap: 16px;
}

.price-accordion__toggle:hover {
  background: var(--surface-2);
  color: var(--gold);
}

.price-accordion__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s var(--ease-out);
}

.price-accordion__toggle[aria-expanded="true"] .price-accordion__arrow {
  transform: rotate(180deg);
}

.price-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-in-out);
}

.price-accordion__body.open {
  max-height: 2000px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  padding: 40px 32px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.price-list__group {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.price-list__cat {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.price-list__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--white-dim);
  border-bottom: 1px solid rgba(46, 46, 46, 0.5);
}

.price-list__item:last-of-type {
  border-bottom: none;
}

.price-list__item span:last-child {
  color: var(--white);
  white-space: nowrap;
  font-weight: 500;
}

.price-list__note {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
  padding: 12px;
  background: var(--gold-dim);
  border-left: 2px solid var(--gold);
  margin-top: 12px;
}

.price-list__disclaimer {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--white-dim);
  text-align: center;
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Price Summary (static) */
.price-summary {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 40px 40px 32px;
  margin-top: 0;
}

.price-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 28px;
}

.price-summary__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-summary__item:nth-child(3n) {
  border-right: none;
}

.price-summary__item:nth-last-child(-n+3) {
  border-bottom: none;
}

.price-summary__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-summary__range {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.price-summary__note {
  font-size: 13px;
  color: var(--white-dim);
  font-style: italic;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════════
   GALLERY (Beispielfrisuren)
   ════════════════════════════════════════════════════════════ */
.gallery {
  background: var(--surface);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 40px;
}

.gallery__item {
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), opacity 0.3s;
  opacity: 0.92;
}

.gallery__item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery__footer {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 8px;
}

/* ════════════════════════════════════════════════════════════
   SALON SECTION
   ════════════════════════════════════════════════════════════ */
.salon {
  background: var(--black);
}

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

.salon__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.salon__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
  display: block;
}

.salon__item:hover img {
  transform: scale(1.04);
}

.salon__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox__img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90dvh;
  object-fit: contain;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  color: var(--white-dim);
  font-size: 28px;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s, transform 0.2s;
}

.lightbox__close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white-dim);
  font-size: 24px;
  padding: 16px 20px;
  transition: color 0.2s;
}

.lightbox__nav:hover { color: var(--white); }

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════ */
.reviews {
  background: var(--black);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.review-card {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.review-card:hover {
  background: var(--surface-2);
}

.review-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  flex: 1;
  quotes: none;
}

.review-card__author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews__meta {
  text-align: center;
  font-size: 13px;
  color: var(--white-dim);
}

.reviews__meta strong {
  color: var(--white);
}

.reviews__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.reviews__link:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════ */
.team {
  background: var(--surface);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Base team card */
.team-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.team-card__photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-card__photo {
  transform: scale(1.03);
}

.team-card__meta {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
}

.team-card__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card__desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-top: 8px;
}

/* Accordion Card — Güven */
.team-card--accordion {
  grid-column: 1;
}

.team-card__trigger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
}

.team-card__trigger:focus-visible .team-card__meta {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.team-card__expand-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.team-card__expand-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.team-card__trigger:hover .team-card__expand-label {
  color: var(--white);
}

.team-card__arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}

.team-card__trigger[aria-expanded="true"] .team-card__arrow {
  transform: rotate(180deg);
}

/* Bio body */
.team-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-in-out);
  border-top: 0 solid var(--border);
}

.team-card__body.open {
  max-height: 1200px;
  border-top-width: 1px;
}

.team-card__body-inner {
  padding: 40px 28px;
}

.team-card__bio-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.team-card__bio-img-wrap {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

.team-card__bio-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-card__bio-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-card__bio-intro {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
}

.team-card__bio-text p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
}

.team-card__bio-closing {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 16px !important;
}

/* ════════════════════════════════════════════════════════════
   TERMIN
   ════════════════════════════════════════════════════════════ */
.termin {
  position: relative;
  padding-block: var(--section-gap);
  text-align: center;
  overflow: hidden;
}

.termin__bg-wrap {
  position: absolute;
  inset: 0;
}

.termin__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.termin__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.82);
}

.termin__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.termin__sub {
  font-size: 16px;
  color: var(--white-dim);
  margin-top: 32px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.termin__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.termin__hint {
  margin-top: 24px;
  font-size: 13px;
  color: var(--white-dim);
}

.termin__fallback {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════
   ANFAHRT
   ════════════════════════════════════════════════════════════ */
.anfahrt {
  background: var(--black);
}

.anfahrt__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.anfahrt__subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--white-dim);
  vertical-align: top;
}

.hours-table td:first-child {
  width: 50%;
  color: var(--white);
  font-weight: 400;
}

.hours-table__closed {
  color: var(--white-dim) !important;
  font-style: italic;
}

.anfahrt__col--map iframe {
  display: block;
  filter: grayscale(60%) brightness(0.8);
  width: 100%;
}

.anfahrt__address p {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
}

.anfahrt__address p:last-child {
  margin-bottom: 0;
}

.anfahrt__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.anfahrt__address a {
  color: var(--white);
  transition: color 0.2s;
}

.anfahrt__address a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: 60px 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: screen;
  transition: opacity 0.2s;
}

.footer__logo-img:hover {
  opacity: 1;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__legal {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  color: var(--white-dim);
}

.footer__legal a {
  color: var(--white-dim);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--white); }

.footer__dot {
  color: var(--border);
}

.footer__copy {
  font-size: 12px;
  color: var(--border);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger             { display: flex; }
  .nav__mobile             { display: flex; }

  /* Hero — stack vertically */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image-wrap {
    height: 60dvh;
    min-height: 360px;
  }

  .hero__content {
    justify-content: flex-start;
    padding: 40px clamp(24px, 5vw, 60px) 56px;
    overflow: visible;
  }

  .hero__title {
    font-size: clamp(44px, 9vw, 76px);
  }

  .hero__eyebrow { margin-top: 0; }

  /* Service */
  .service__cards { grid-template-columns: repeat(2, 1fr); }

  /* Price summary */
  .price-summary__grid { grid-template-columns: repeat(2, 1fr); }
  .price-summary__item:nth-child(3n)    { border-right: 1px solid var(--border); }
  .price-summary__item:nth-child(2n)    { border-right: none; }
  .price-summary__item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .price-summary__item:nth-last-child(-n+2) { border-bottom: none; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }

  /* Salon grid */
  .salon__grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  /* Team — keep 3 columns on tablet (portrait cards look great) */
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .team-card { flex-direction: column; }
  .team-card__photo-wrap {
    aspect-ratio: 3/4;
    max-height: none;
    width: 100%;
  }

  /* Anfahrt */
  .anfahrt__grid { grid-template-columns: 1fr; gap: 40px; }
  .anfahrt__col--map { order: -1; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-gap: 60px; }

  /* Hero */
  .hero__image-wrap {
    height: 52dvh;
    min-height: 300px;
  }

  .hero__content {
    padding: 32px 20px 48px;
  }

  .hero__title {
    font-size: clamp(40px, 13vw, 64px);
  }

  /* Service */
  .service__cards { grid-template-columns: 1fr; gap: 0; }
  .service-card   { padding: 28px 20px; }

  /* Price summary */
  .price-summary { padding: 20px 16px; }
  .price-summary__grid { grid-template-columns: 1fr 1fr; }
  .price-summary__item { padding: 12px 10px; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  /* Salon */
  .salon__grid { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card   { padding: 24px 20px; }

  /* Team — single column on mobile */
  .team__grid { grid-template-columns: 1fr; gap: 1px; }
  .team-card  { flex-direction: column; }
  .team-card__photo-wrap {
    width: 100%;
    aspect-ratio: 3/4;
  }
  .team-card__meta { padding: 24px 20px 28px; }

  /* Termin */
  .termin__actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer__nav { gap: 16px; }
}
