/* ============================================================
   PURE BLACK ART · Global Stylesheet
   Fineline Tattoo Studio Stuttgart
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ─── Variables ─── */
:root {
  --bg:          #f7f4f0;
  --bg-soft:     #eeeae4;
  --bg-card:     #e9e4dd;
  --ink:         #1a1714;
  --ink-soft:    #3a3430;
  --accent:      #6b4e2e;
  --accent-lt:   #8a6742;
  --muted:       #7a7068;
  --line:        rgba(90,65,35,0.15);
  --gold:        #7a5c38;
  --gold-lt:     #9a7248;
  --white:       #ffffff;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;
  --radius:      0px;
  --max:         1380px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(3.2rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
em { font-style: italic; color: var(--accent-lt); }

.label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.label--center { text-align: center; }

/* ─── Layout helpers ─── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 4rem; }
.section { padding: 7rem 0; }
.section--lg { padding: 9rem 0; }
.section--sm { padding: 4rem 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.btn--dark {
  background: var(--ink);
  color: var(--bg);
}
.btn--dark:hover { background: var(--ink-soft); transform: translateY(-1px); }

.btn--outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--bg); }

.btn--ghost {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.btn--ghost::after { content: '→'; transition: transform var(--transition); }
.btn--ghost:hover { color: var(--ink); }
.btn--ghost:hover::after { transform: translateX(4px); }

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 4rem;
}
.divider__line { flex: 1; height: 1px; background: var(--line); }
.divider__ornament { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); opacity: 0.5; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(247, 244, 240, 0.97);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(8px);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
  transition: opacity var(--transition), color var(--transition);
}
.nav__links a:hover { opacity: 1; }

.nav__cta {
  opacity: 1 !important;
  border: 1px solid var(--ink);
  padding: 0.55rem 1.4rem;
  transition: background var(--transition), color var(--transition) !important;
}
.nav__cta:hover { background: var(--ink) !important; color: var(--bg) !important; opacity: 1 !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5rem 6rem 6rem;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  margin-bottom: 1.8rem;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
}
.hero__sub {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 3rem;
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
}
.hero__image img {
  object-position: center top;
  filter: brightness(0.92);
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(247,244,240,0.35) 0%, transparent 40%);
}
.hero__badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid rgba(122,92,56,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.8;
  text-align: center;
  background: rgba(26,23,20,0.55);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.45;
  color: var(--ink);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 2.8rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ─── PRESS STRIP ─── */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  background: var(--bg-soft);
}
.press__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.press__label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.press__divider { width: 1px; height: 2rem; background: var(--line); flex-shrink: 0; }
.press__logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.press__logo {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}
.press__logo:hover { opacity: 1; color: var(--ink); }

/* ─── ABOUT / STORY ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.about__visual {
  position: relative;
  min-height: 680px;
  background: var(--bg-card);
}
.about__visual img {
  object-position: center top;
}
.about__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.2) 0%, transparent 40%);
}
.about__content {
  padding: 6rem 5rem 6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.about__content h2 { margin-bottom: 1.5rem; }
.about__quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
}
.about__body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.95;
  margin-bottom: 1.5rem;
  max-width: 44ch;
}
.about__journey {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.about__step { display: flex; flex-direction: column; gap: 0.4rem; }
.about__step-num {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.about__step-label {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink);
}

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--bg); }
.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 420px;
  gap: 4px;
}
.portfolio__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}
.portfolio__item--tall { grid-row: span 2; }
.portfolio__item img {
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.portfolio__item:hover img { transform: scale(1.05); }
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }
.portfolio__caption {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #f5f0eb;
  margin-bottom: 0.3rem;
}
.portfolio__tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,185,138,0.9);
}

/* ─── STYLE SECTION ─── */
.style-section {
  background: var(--bg-soft);
}
.style-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.style-section__text h2 { margin-bottom: 1.5rem; }
.style-section__body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.95;
  margin-bottom: 1.5rem;
  max-width: 46ch;
}
.style-section__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 500px;
}
.style-section__img { overflow: hidden; background: var(--bg-card); }
.style-section__img--full { grid-column: span 2; }
.style-section__img img { transition: transform 0.6s ease; }
.style-section__img:hover img { transform: scale(1.04); }

/* ─── VALUES / USPs ─── */
.values { background: var(--bg); }
.values__header {
  text-align: center;
  margin-bottom: 5rem;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.values__card {
  padding: 3rem 2rem;
  border: 1px solid transparent;
  border-right: 1px solid var(--line);
  transition: border-color var(--transition), background var(--transition);
}
.values__card:last-child { border-right: none; }
.values__card:hover { background: var(--bg-soft); border-color: var(--line); }
.values__icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.values__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.values__desc {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ─── PRICING ─── */
.pricing { background: var(--bg-soft); }
.pricing__intro {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}
.pricing__intro p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-top: 1.2rem;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.pricing__card {
  background: var(--bg-soft);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}
.pricing__card:hover { background: var(--bg); }
.pricing__card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(90,65,35,0.07);
}
.pricing__row:last-child { border-bottom: none; }
.pricing__price { color: var(--ink); font-weight: 400; }
.pricing__note {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.85;
}
.pricing__note strong { color: var(--ink); }

/* ─── BOOKING CTA ─── */
.booking {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(122,92,56,0.12) 0%, transparent 65%);
}
.booking .container { position: relative; }
.booking .label { color: var(--gold-lt); }
.booking h2 { color: var(--bg); margin-bottom: 1.2rem; }
.booking em { color: var(--gold-lt); }
.booking__body {
  color: rgba(247,244,240,0.6);
  font-size: 0.9rem;
  line-height: 1.9;
  max-width: 50ch;
  margin: 0 auto 3.5rem;
}
.booking__steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.booking__steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(122,92,56,0.3);
}
.booking__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.booking__circle {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-lt);
  background: var(--ink);
  position: relative;
  z-index: 1;
}
.booking__step-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(247,244,240,0.5);
  line-height: 1.6;
}
.booking__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  margin-bottom: 4rem;
}
.booking__input {
  flex: 1;
  background: rgba(247,244,240,0.07);
  border: 1px solid rgba(247,244,240,0.15);
  border-right: none;
  color: var(--bg);
  padding: 0.95rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color var(--transition);
}
.booking__input::placeholder { color: rgba(247,244,240,0.35); }
.booking__input:focus { border-color: var(--gold); }
.booking__form .btn--dark {
  background: var(--gold);
  color: var(--ink);
  white-space: nowrap;
}
.booking__form .btn--dark:hover { background: var(--gold-lt); }
.booking__note {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(247,244,240,0.35);
  text-align: center;
}
.booking__note a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; }

/* ─── CONTACT ─── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.contact__info {
  background: var(--bg-soft);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact__info h3 { margin-bottom: 0; }
.contact__details { display: flex; flex-direction: column; gap: 2rem; }
.contact__item { display: flex; flex-direction: column; gap: 0.4rem; }
.contact__item .label { margin-bottom: 0; }
.contact__value {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
}
.contact__value a { text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.contact__value a:hover { color: var(--gold); }
.contact__social { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.contact__social a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.contact__social a:hover { color: var(--ink); border-color: var(--ink); }

.contact__map {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(1.05);
  transition: filter var(--transition);
}
.contact__map:hover iframe { filter: grayscale(40%) contrast(1.05) brightness(1.02); }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 3.5rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer__links {
  display: flex;
  gap: 2.5rem;
}
.footer__links a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,244,240,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--bg); }
.footer__copy {
  font-size: 0.68rem;
  color: rgba(247,244,240,0.35);
}

/* ─── MOBILE NAV DRAWER ─── */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* ─── Animations ─── */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__left > * {
  animation: fadeUp 0.8s ease both;
}
.hero__left > *:nth-child(1) { animation-delay: 0.15s; }
.hero__left > *:nth-child(2) { animation-delay: 0.3s; }
.hero__left > *:nth-child(3) { animation-delay: 0.45s; }
.hero__left > *:nth-child(4) { animation-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .container { padding: 0 2.5rem; }
  .nav { padding: 1.2rem 2.5rem; }
  .hero__left { padding: 8rem 3rem 5rem 4rem; }
  .about__content { padding: 4rem 3rem 4rem 4rem; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 8rem 2.5rem 4rem; }
  .hero__right { min-height: 55vh; }
  .hero__scroll { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 420px; }
  .about__content { padding: 4rem 2.5rem; }
  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .portfolio__item--tall { grid-row: span 1; }
  .style-section .container { grid-template-columns: 1fr; gap: 3rem; }
  .style-section__images { height: 360px; }
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .booking__form { flex-direction: column; }
  .booking__input { border-right: 1px solid rgba(247,244,240,0.15); border-bottom: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 1.5rem; }
  .nav { padding: 1.2rem 1.5rem; }
  .hero__left { padding: 7rem 1.5rem 3rem; }
  .about__content { padding: 3rem 1.5rem; }
  .about__journey { gap: 1.5rem; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .values__card { border-right: none; border-bottom: 1px solid var(--line); }
  .values__card:last-child { border-bottom: none; }
  .press__logos { gap: 1.5rem; }
  .contact__info { padding: 3rem 1.5rem; }
  .divider { margin: 0 1.5rem; }
  .section { padding: 5rem 0; }
}

/* ─── EXTENDED: 11-item portfolio grid ─── */
.portfolio__grid {
  grid-template-rows: 420px 420px 420px 420px;
}

/* ─── Medien / Press section ─── */
.medien { background: var(--bg); }
.medien__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.medien__card { background: var(--bg-soft); overflow: hidden; transition: box-shadow 0.3s; }
.medien__card:hover { box-shadow: 0 4px 24px rgba(26,23,20,0.08); }
.medien__card-img { overflow: hidden; position: relative; }
.medien__card-img img { object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.medien__card:hover .medien__card-img img { transform: scale(1.04); }
.medien__card-body { padding: 1.5rem; }
.medien__source {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.medien__title {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink); margin-bottom: 0.6rem; line-height: 1.3;
}
.medien__text { font-size: 0.82rem; color: var(--muted); line-height: 1.8; }
.medien__card--tall .medien__card-img { height: 380px; }
.medien__card--mid .medien__card-img { height: 220px; }
.medien__placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.8rem; padding: 3rem 2rem;
  text-align: center; height: 220px;
}
.medien__placeholder-title {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.medien__placeholder-sub {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}

/* ─── Awards strip ─── */
.awards {
  background: var(--ink); color: var(--bg);
  padding: 0;
}
.awards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.awards__item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(247,244,240,0.08);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.awards__item:last-child { border-right: none; }
.awards__num {
  font-family: var(--serif); font-size: 2.8rem;
  font-weight: 300; color: var(--gold-lt); line-height: 1;
}
.awards__label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,244,240,0.45);
}
.awards__sub { font-size: 0.78rem; color: rgba(247,244,240,0.65); line-height: 1.5; }

@media (max-width: 860px) {
  .medien__grid { grid-template-columns: 1fr; }
  .awards__grid { grid-template-columns: 1fr 1fr; }
  .awards__item { border-right: none; border-bottom: 1px solid rgba(247,244,240,0.08); }
}
@media (max-width: 560px) {
  .awards__grid { grid-template-columns: 1fr; }
}

/* ─── Style section: 2 images side by side ─── */
.style-section__images.two-col {
  grid-template-columns: 1fr 1fr;
  height: 520px;
}
.style-section .style-section__images {
  grid-template-columns: 1fr 1fr;
  height: 520px;
}
.style-section .style-section__img {
  height: 100%;
}
