:root {
  --bg: #080808;
  --bg-soft: #111111;
  --panel: #161616;
  --panel-2: #1e1d1a;
  --text: #f3efe7;
  --muted: #b8afa1;
  --subtle: #7e776e;
  --line: rgba(255,255,255,0.12);
  --gold: #b78345;
  --wood: #c17a3f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(183,131,69,0.12), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #101010 42%, #070707 100%);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.08em;
}

.brand-mark {
  font-weight: 800;
  font-size: 1.02rem;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 28px;
}

.hero {
  min-height: 100vh;
  height: 100vh;
  max-width: none;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}


.hero-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  opacity: 1;
  overflow: hidden;
  background: #050505;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -24px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.40), rgba(0,0,0,0.05), rgba(0,0,0,0.22)),
    url("images/OSOLACopy 1-19.jpg") center center / cover no-repeat;
  filter: blur(54px) brightness(0.56) saturate(0.86);
  transform: scale(1.12);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  padding: 88px 24px 28px;
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.38), rgba(0,0,0,0.035), rgba(0,0,0,0.14)),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 48px));
  padding-top: 80px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.lead {
  max-width: 660px;
  color: #ddd2c2;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.button.primary {
  background: var(--text);
  color: #0b0b0b;
}

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.copy {
  max-width: 560px;
}

.feature-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-row div {
  padding: 22px 18px 22px 0;
}

.feature-row strong {
  display: block;
  font-size: 1.1rem;
}

.feature-row span {
  color: var(--subtle);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.architecture {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.card {
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: 22px;
}

.listening {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.listening .section-heading {
  max-width: var(--max);
  margin: 54px auto 0;
  padding: 0 28px;
}

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

.spec-grid div {
  min-height: 118px;
  padding: 22px;
  background: #0f0f0f;
}

.spec-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--subtle);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.spec-grid strong {
  font-size: 1rem;
}

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

.contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: 32px;
  display: grid;
  gap: 12px;
  background: linear-gradient(145deg, rgba(183,131,69,0.16), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  border-radius: 22px;
}

.contact-card a {
  color: var(--gold);
}

.contact-card span {
  color: var(--muted);
}

.site-footer {
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  color: var(--subtle);
  border-top: 1px solid var(--line);
  background: #050505;
}

.image-placeholder {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(183,131,69,0.20), transparent 34%),
    linear-gradient(145deg, #25231f, #0c0c0c 58%, #1b1a18);
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.image-placeholder span {
  position: relative;
  z-index: 2;
  max-width: 320px;
  padding: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.6;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

.image-placeholder.portrait {
  min-height: 680px;
}

.image-placeholder.wide {
  width: 100%;
  min-height: 620px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

@media (min-aspect-ratio: 16/9) {
  .hero-media img {
    object-position: center 45%;
  }
}

@media (max-aspect-ratio: 4/5) {
  .hero-media img {
    object-position: center 40%;
  }
}

@media (max-width: 940px) {
  .site-header {
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 82px 22px;
  }

  .split,
  .split.reverse,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards,
  .spec-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .image-placeholder.portrait {
    min-height: 520px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.5rem);
  }
}



/* SAFE VERSION — return no crop soft blend
   Baza: wersja contain-no-crop, którą potwierdzono jako nieucinającą.
   Tu nie ma maskowania zdjęcia ani gradientu czerni na samym JPG.
*/
.hero-media img {
  object-fit: contain !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
  padding: 88px 24px 28px !important;
  box-sizing: border-box !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
}

.hero-media::before {
  filter: blur(54px) brightness(0.56) saturate(0.86) !important;
  transform: scale(1.12) !important;
  opacity: 1 !important;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.38), rgba(0,0,0,0.035), rgba(0,0,0,0.14)),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)) !important;
}

@media (max-width: 760px) {
  .hero-media img {
    padding: 86px 10px 22px !important;
  }
}



/* Osola hero — no crop + background fade to black
   Nie ruszamy głównego zdjęcia. Czerń dodana tylko na warstwie tła.
*/
.hero {
  background: #020202 !important;
}

/* Rozmyte tło zostaje, ale jest spokojniejsze */
.hero-media::before {
  filter: blur(58px) brightness(0.52) saturate(0.82) !important;
  transform: scale(1.14) !important;
  opacity: 0.92 !important;
}

/* Tło płynnie przechodzi do czerni na krawędziach.
   Środek pozostaje jaśniejszy, żeby nie ściemnić kolumny. */
.hero-media::after {
  background:
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.03) 42%,
      rgba(0,0,0,0.20) 68%,
      rgba(0,0,0,0.48) 86%,
      rgba(0,0,0,0.78) 100%),
    linear-gradient(to right,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.52) 8%,
      rgba(0,0,0,0.10) 24%,
      rgba(0,0,0,0.00) 42%,
      rgba(0,0,0,0.00) 58%,
      rgba(0,0,0,0.10) 76%,
      rgba(0,0,0,0.52) 92%,
      rgba(0,0,0,0.88) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.86) 0%,
      rgba(0,0,0,0.42) 10%,
      rgba(0,0,0,0.06) 24%,
      rgba(0,0,0,0.00) 44%,
      rgba(0,0,0,0.00) 62%,
      rgba(0,0,0,0.12) 78%,
      rgba(0,0,0,0.54) 92%,
      rgba(0,0,0,0.88) 100%) !important;
}

/* Główne zdjęcie — pełne, bez maski i bez cropu */
.hero-media img {
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
  filter: none !important;
}



/* Variant 1 — minimal hero text
   Hero ma być prawie czysty. Zostaje tylko mały, dyskretny napis "osola".
*/
.hero-content,
.hero-copy,
.hero-text {
  position: absolute !important;
  z-index: 5 !important;
  left: clamp(18px, 4vw, 56px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  pointer-events: none !important;
}

.hero-content > *:not(.hero-brand-minimal),
.hero-copy > *:not(.hero-brand-minimal),
.hero-text > *:not(.hero-brand-minimal) {
  display: none !important;
}

.hero-brand-minimal {
  display: block !important;
  font-family: inherit;
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 10px 34px rgba(0,0,0,0.72);
}

/* Główne zdjęcie dalej bez cropu */
.hero-media img {
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
}

/* Na telefonie napis mniejszy i nisko, żeby nie przesłaniał kolumn */
@media (max-width: 760px) {
  .hero-content,
  .hero-copy,
  .hero-text {
    left: 18px !important;
    bottom: 24px !important;
  }

  .hero-brand-minimal {
    font-size: 22px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.68);
  }
}



/* Menu typography matched to the "osola" hero mark */
.site-header,
.header,
nav,
.nav,
.navbar,
.menu {
  font-family: inherit !important;
}

.site-header a,
.header a,
nav a,
.nav a,
.navbar a,
.menu a {
  font-family: inherit !important;
  font-weight: 400 !important;
  letter-spacing: 0.24em !important;
  text-transform: lowercase !important;
  color: rgba(255,255,255,0.72) !important;
  text-decoration: none !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.72) !important;
}

.site-header a:hover,
.header a:hover,
nav a:hover,
.nav a:hover,
.navbar a:hover,
.menu a:hover {
  color: rgba(255,255,255,0.92) !important;
}

/* Jeśli w menu jest osobny znak/logo, zachowaj podobny charakter jak hero "osola" */
.site-logo,
.logo,
.brand,
.brand-logo {
  font-family: inherit !important;
  font-weight: 400 !important;
  letter-spacing: 0.24em !important;
  text-transform: lowercase !important;
  color: rgba(255,255,255,0.76) !important;
}

/* Mobile: trochę mniejszy tracking, żeby menu nie rozjeżdżało się na telefonie */
@media (max-width: 760px) {
  .site-header a,
  .header a,
  nav a,
  .nav a,
  .navbar a,
  .menu a {
    letter-spacing: 0.16em !important;
    font-size: 12px !important;
  }

  .site-logo,
  .logo,
  .brand,
  .brand-logo {
    letter-spacing: 0.18em !important;
  }
}



/* SECOND HERO — exact copy of first hero presentation
   Rozmiary plików:
   - first hero: 2048 x 1638 px
   - second photo: 2048 x 1638 px

   Druga sekcja używa tej samej klasy .hero i .hero-media,
   więc ma identyczną prezentację jak pierwsze zdjęcie.
*/

/* Tło drugiego hero z właściwego zdjęcia */
.hero-secondary .hero-media::before {
  background-image: url("images/OSOLACopy-1-second-same-hero.jpg") !important;
}

/* Jeżeli motyw używa pseudo-tła na .hero zamiast .hero-media */
.hero-secondary::before {
  background-image: url("images/OSOLACopy-1-second-same-hero.jpg") !important;
}

/* Drugi napis w tej samej stylistyce co osola, tylko mniejszy tracking na dłuższym tekście */
.hero-brand-secondary {
  font-size: clamp(18px, 1.65vw, 30px) !important;
  letter-spacing: 0.20em !important;
  color: rgba(255,255,255,0.66) !important;
}

/* Upewniamy się, że drugie zdjęcie ma dokładnie tę samą logikę co pierwsze */
.hero-secondary .hero-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
}

/* Mobile — identyczna rama, tylko tekst trochę mniejszy */
@media (max-width: 760px) {
  .hero-brand-secondary {
    font-size: 18px !important;
    letter-spacing: 0.16em !important;
  }
}



/* Restore previous caption for lower hero section */
.hero-caption-secondary {
  position: absolute !important;
  z-index: 6 !important;
  left: clamp(18px, 4vw, 56px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 460px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  pointer-events: none !important;
  font-family: inherit !important;
}

.hero-caption-secondary > * {
  display: block !important;
}

.hero-caption-secondary__kicker,
.hero-caption-secondary h2,
.hero-caption-secondary__subtitle {
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.72) !important;
}

.hero-caption-secondary__kicker {
  margin: 0 0 12px !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.50) !important;
}

.hero-caption-secondary h2 {
  margin: 0 0 10px !important;
  font-size: clamp(22px, 2.2vw, 38px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.72) !important;
}

.hero-caption-secondary__subtitle {
  margin: 0 !important;
  font-size: clamp(12px, 1vw, 16px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.50) !important;
}

@media (max-width: 760px) {
  .hero-caption-secondary {
    left: 18px !important;
    bottom: 24px !important;
    max-width: calc(100vw - 36px) !important;
  }

  .hero-caption-secondary__kicker {
    font-size: 10px !important;
    letter-spacing: 0.20em !important;
  }

  .hero-caption-secondary h2 {
    font-size: 22px !important;
    letter-spacing: 0.20em !important;
  }

  .hero-caption-secondary__subtitle {
    font-size: 12px !important;
    letter-spacing: 0.13em !important;
  }
}



/* FIX: visible lower-section caption
   This caption uses independent classes, not .hero-content,
   so earlier rules hiding hero-content children cannot affect it.
*/
.secondary-caption-visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  z-index: 50 !important;
  left: clamp(18px, 4vw, 56px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 460px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  pointer-events: none !important;
  font-family: inherit !important;
}

.secondary-caption-visible * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.secondary-caption-visible__kicker,
.secondary-caption-visible h2,
.secondary-caption-visible__subtitle {
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

.secondary-caption-visible__kicker {
  margin: 0 0 12px !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.56) !important;
}

.secondary-caption-visible h2 {
  margin: 0 0 10px !important;
  font-size: clamp(22px, 2.2vw, 38px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.78) !important;
}

.secondary-caption-visible__subtitle {
  margin: 0 !important;
  font-size: clamp(12px, 1vw, 16px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.56) !important;
}

@media (max-width: 760px) {
  .secondary-caption-visible {
    left: 18px !important;
    bottom: 24px !important;
    max-width: calc(100vw - 36px) !important;
  }

  .secondary-caption-visible__kicker {
    font-size: 10px !important;
    letter-spacing: 0.20em !important;
  }

  .secondary-caption-visible h2 {
    font-size: 22px !important;
    letter-spacing: 0.20em !important;
  }

  .secondary-caption-visible__subtitle {
    font-size: 12px !important;
    letter-spacing: 0.13em !important;
  }
}



/* THIRD HERO — same rules as first and second visual sections
   First hero size: 2048 x 1638 px
   Third photo size: 2048 x 1638 px

   The third section uses .hero and .hero-media, so the visual presentation
   follows the same hero logic.
*/

.hero-third .hero-media::before {
  background-image: url("images/OSOLACopy-1-3-third.jpg") !important;
}

.hero-third::before {
  background-image: url("images/OSOLACopy-1-3-third.jpg") !important;
}

.hero-third .hero-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
}

/* Independent caption so earlier .hero-content hiding rules cannot affect it */
.third-caption-visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  z-index: 50 !important;
  left: clamp(18px, 4vw, 56px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 520px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  pointer-events: none !important;
  font-family: inherit !important;
}

.third-caption-visible * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.third-caption-visible__kicker,
.third-caption-visible h2,
.third-caption-visible__subtitle {
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

.third-caption-visible__kicker {
  margin: 0 0 12px !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.56) !important;
}

.third-caption-visible h2 {
  margin: 0 0 10px !important;
  font-size: clamp(22px, 2.2vw, 38px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.78) !important;
}

.third-caption-visible__subtitle {
  margin: 0 !important;
  font-size: clamp(12px, 1vw, 16px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.56) !important;
}

@media (max-width: 760px) {
  .third-caption-visible {
    left: 18px !important;
    bottom: 24px !important;
    max-width: calc(100vw - 36px) !important;
  }

  .third-caption-visible__kicker {
    font-size: 10px !important;
    letter-spacing: 0.20em !important;
  }

  .third-caption-visible h2 {
    font-size: 22px !important;
    letter-spacing: 0.20em !important;
  }

  .third-caption-visible__subtitle {
    font-size: 12px !important;
    letter-spacing: 0.13em !important;
  }
}



/* Third section caption refinement
   Dzielimy "material presence" na dwie linie i zawężamy blok,
   żeby napis nie wchodził na kolumny.
*/
.third-caption-visible {
  max-width: 340px !important;
}

.third-caption-visible h2 {
  max-width: 330px !important;
  line-height: 1.12 !important;
  letter-spacing: 0.22em !important;
}

.third-caption-visible h2 br {
  display: block !important;
}

.third-caption-visible__subtitle {
  max-width: 360px !important;
}

@media (max-width: 760px) {
  .third-caption-visible {
    max-width: 280px !important;
  }

  .third-caption-visible h2 {
    max-width: 260px !important;
    letter-spacing: 0.16em !important;
  }

  .third-caption-visible__subtitle {
    max-width: 280px !important;
  }
}



/* Legacy cleanup before Acoustic Architecture
   Old material/specification/model-image blocks are no longer used.
   The page now keeps the three visual hero sections only before the next new section.
*/
.legacy-material-block,
.legacy-model-image,
.old-feature-grid,
.old-material-specs {
  display: none !important;
}



/* ACOUSTIC ARCHITECTURE SECTION
   New section uses the same hero logic as previous visual sections,
   but the close-up image is portrait, so it is contained inside the same visual frame.
   Hero reference size: 2048 x 1638 px
   Acoustic photo size: 1638 x 2048 px
*/

.hero-acoustic .hero-media::before {
  background-image: url("images/OSOLA-2-acoustic-architecture.jpg") !important;
  filter: blur(64px) brightness(0.38) saturate(0.78) !important;
  opacity: 0.72 !important;
}

.hero-acoustic::before {
  background-image: url("images/OSOLA-2-acoustic-architecture.jpg") !important;
}

.hero-acoustic .hero-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
  filter: brightness(0.96) saturate(0.96) contrast(0.98) !important;
}

/* Slightly stronger left-side gradient for readable caption */
.hero-acoustic::after,
.hero-acoustic .hero-media::after {
  background:
    linear-gradient(to right,
      rgba(2,2,2,0.84) 0%,
      rgba(2,2,2,0.60) 15%,
      rgba(2,2,2,0.22) 36%,
      rgba(2,2,2,0.04) 58%,
      rgba(2,2,2,0.24) 82%,
      rgba(2,2,2,0.82) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.05) 44%,
      rgba(0,0,0,0.24) 72%,
      rgba(0,0,0,0.82) 100%) !important;
}

/* Independent caption so earlier .hero-content hiding rules cannot affect it */
.acoustic-caption-visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  z-index: 50 !important;
  left: clamp(18px, 4vw, 56px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 520px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  pointer-events: none !important;
  font-family: inherit !important;
}

.acoustic-caption-visible * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.acoustic-caption-visible__kicker,
.acoustic-caption-visible h2,
.acoustic-caption-visible__subtitle {
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

.acoustic-caption-visible__kicker {
  margin: 0 0 12px !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.56) !important;
}

.acoustic-caption-visible h2 {
  margin: 0 0 10px !important;
  font-size: clamp(22px, 2.2vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0.22em !important;
  color: rgba(255,255,255,0.78) !important;
}

.acoustic-caption-visible__subtitle {
  margin: 0 !important;
  max-width: 460px !important;
  font-size: clamp(12px, 1vw, 16px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.56) !important;
}

@media (max-width: 760px) {
  .acoustic-caption-visible {
    left: 18px !important;
    bottom: 24px !important;
    max-width: calc(100vw - 36px) !important;
  }

  .acoustic-caption-visible__kicker {
    font-size: 10px !important;
    letter-spacing: 0.20em !important;
  }

  .acoustic-caption-visible h2 {
    font-size: 22px !important;
    letter-spacing: 0.18em !important;
  }

  .acoustic-caption-visible__subtitle {
    font-size: 12px !important;
    letter-spacing: 0.13em !important;
  }
}



/* Acoustic Architecture — landscape frame correction
   The original acoustic photo was portrait: 1638 x 2048 px.
   It has been technically cropped to the same hero frame: 2048 x 1638 px.
   No image generation. Only crop + resize from the supplied photo.
*/

.hero-acoustic .hero-media::before {
  background-image: url("images/OSOLA-2-acoustic-landscape-hero-frame.jpg") !important;
  filter: blur(62px) brightness(0.36) saturate(0.74) !important;
  opacity: 0.70 !important;
}

.hero-acoustic::before {
  background-image: url("images/OSOLA-2-acoustic-landscape-hero-frame.jpg") !important;
}

.hero-acoustic .hero-media img {
  content: url("images/OSOLA-2-acoustic-landscape-hero-frame.jpg") !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
  filter: brightness(0.98) saturate(0.96) contrast(0.99) !important;
}

/* Side gradient for readable acoustic description */
.hero-acoustic .hero-media::after,
.hero-acoustic::after {
  background:
    linear-gradient(to right,
      rgba(2,2,2,0.86) 0%,
      rgba(2,2,2,0.64) 15%,
      rgba(2,2,2,0.30) 34%,
      rgba(2,2,2,0.08) 56%,
      rgba(2,2,2,0.20) 80%,
      rgba(2,2,2,0.78) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.05) 44%,
      rgba(0,0,0,0.24) 72%,
      rgba(0,0,0,0.82) 100%) !important;
}

.acoustic-caption-side {
  max-width: 520px !important;
}

.acoustic-caption-visible__note {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 22px 0 0 !important;
  max-width: 500px !important;
  font-family: inherit !important;
  font-weight: 300 !important;
  text-transform: none !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.55 !important;
  letter-spacing: 0.045em !important;
  color: rgba(255,255,255,0.48) !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

/* Keep desktop layout coherent with previous hero sections */
.acoustic-caption-visible h2 {
  line-height: 1.12 !important;
  letter-spacing: 0.22em !important;
}

@media (max-width: 760px) {
  .acoustic-caption-visible__note {
    display: none !important;
  }
}



/* Acoustic Architecture — replaced with OSOLA-4
   No image generation. Supplied image was cropped to the same hero frame.
   Source: 2048 x 2048px
   Final: 2048 x 1638px
*/

.hero-acoustic .hero-media::before {
  background-image: url("images/OSOLA-4-acoustic-architecture-hero-frame.jpg") !important;
  filter: blur(62px) brightness(0.36) saturate(0.74) !important;
  opacity: 0.70 !important;
}

.hero-acoustic::before {
  background-image: url("images/OSOLA-4-acoustic-architecture-hero-frame.jpg") !important;
}

.hero-acoustic .hero-media img {
  content: url("images/OSOLA-4-acoustic-architecture-hero-frame.jpg") !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
  filter: brightness(0.98) saturate(0.96) contrast(0.99) !important;
}



/* Acoustic Architecture — shortened technical copy */
.acoustic-caption-technical {
  max-width: 610px !important;
}

.acoustic-caption-technical h2 {
  max-width: 520px !important;
  line-height: 1.12 !important;
  letter-spacing: 0.20em !important;
}

.acoustic-caption-technical .acoustic-caption-visible__subtitle {
  max-width: 560px !important;
  margin-top: 14px !important;
  line-height: 1.55 !important;
  letter-spacing: 0.045em !important;
  text-transform: none !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.56) !important;
}

.acoustic-points {
  display: grid !important;
  gap: 12px !important;
  margin-top: 24px !important;
  max-width: 560px !important;
}

.acoustic-points p {
  display: grid !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 0 0 14px !important;
  border-left: 1px solid rgba(255,255,255,0.18) !important;
  font-family: inherit !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

.acoustic-points strong {
  display: block !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  letter-spacing: 0.18em !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  color: rgba(255,255,255,0.68) !important;
}

.acoustic-points span {
  display: block !important;
  font-family: inherit !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: 0.035em !important;
  font-size: clamp(12px, 0.95vw, 15px) !important;
  line-height: 1.45 !important;
  color: rgba(255,255,255,0.46) !important;
}

@media (max-width: 760px) {
  .acoustic-caption-technical {
    max-width: calc(100vw - 36px) !important;
  }

  .acoustic-caption-technical h2 {
    max-width: 330px !important;
    font-size: 21px !important;
    letter-spacing: 0.16em !important;
  }

  .acoustic-caption-technical .acoustic-caption-visible__subtitle {
    max-width: 330px !important;
    font-size: 12px !important;
    line-height: 1.42 !important;
    letter-spacing: 0.025em !important;
  }

  .acoustic-points {
    display: none !important;
  }
}



/* Acoustic Architecture — OSOLA-5 photo + vertical caption.
   No image generation. Supplied image cropped to hero frame.
   Source: 1365 x 2048px
   Final: 2048 x 1638px
*/

.hero-acoustic .hero-media::before {
  background-image: url("images/OSOLA-5-acoustic-architecture-hero-frame.jpg") !important;
  filter: blur(62px) brightness(0.34) saturate(0.74) !important;
  opacity: 0.70 !important;
}

.hero-acoustic::before {
  background-image: url("images/OSOLA-5-acoustic-architecture-hero-frame.jpg") !important;
}

.hero-acoustic .hero-media img {
  content: url("images/OSOLA-5-acoustic-architecture-hero-frame.jpg") !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
  filter: brightness(0.98) saturate(0.96) contrast(0.99) !important;
}

/* Stronger left dark field so vertical caption stays off the photo visually */
.hero-acoustic .hero-media::after,
.hero-acoustic::after {
  background:
    linear-gradient(to right,
      rgba(2,2,2,0.92) 0%,
      rgba(2,2,2,0.82) 16%,
      rgba(2,2,2,0.58) 30%,
      rgba(2,2,2,0.22) 46%,
      rgba(2,2,2,0.06) 62%,
      rgba(2,2,2,0.22) 84%,
      rgba(2,2,2,0.82) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.05) 44%,
      rgba(0,0,0,0.24) 72%,
      rgba(0,0,0,0.82) 100%) !important;
}

.acoustic-caption-vertical {
  left: clamp(18px, 3.5vw, 52px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 370px !important;
}

.acoustic-caption-vertical h2 {
  max-width: 300px !important;
  font-size: clamp(21px, 1.95vw, 34px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.20em !important;
  margin-bottom: 14px !important;
}

.acoustic-caption-vertical .acoustic-caption-visible__subtitle {
  max-width: 340px !important;
  font-size: clamp(12px, 0.92vw, 15px) !important;
  line-height: 1.55 !important;
  letter-spacing: 0.04em !important;
  color: rgba(255,255,255,0.52) !important;
}

.acoustic-caption-vertical .acoustic-points {
  max-width: 330px !important;
  gap: 9px !important;
  margin-top: 18px !important;
}

.acoustic-caption-vertical .acoustic-points p {
  padding-left: 12px !important;
}

.acoustic-caption-vertical .acoustic-points strong {
  font-size: clamp(9px, 0.72vw, 11px) !important;
  letter-spacing: 0.16em !important;
}

.acoustic-caption-vertical .acoustic-points span {
  font-size: clamp(11px, 0.82vw, 13px) !important;
  line-height: 1.38 !important;
}

@media (max-width: 760px) {
  .acoustic-caption-vertical {
    max-width: calc(100vw - 36px) !important;
  }

  .acoustic-caption-vertical h2 {
    max-width: 260px !important;
    font-size: 20px !important;
    letter-spacing: 0.15em !important;
  }

  .acoustic-caption-vertical .acoustic-caption-visible__subtitle {
    max-width: 300px !important;
    font-size: 12px !important;
  }

  .acoustic-caption-vertical .acoustic-points {
    display: none !important;
  }
}



/* Cleanup after Acoustic Architecture
   Old blocks under/after the acoustic section are no longer used.
*/
.acoustic-legacy,
.acoustic-extra,
.acoustic-details,
.specs,
.spec-grid,
.features,
.feature-grid,
.materials,
.materials-grid,
.model-card,
.image-frame,
.placeholder,
[class*="old-"],
[class*="legacy"] {
  display: none !important;
}



/* CROSSOVER ARCHITECTURE SECTION
   Added after Acoustic Architecture.
   Source photo: 1080 x 1080 px
   Framed photo: 2048 x 1638 px
*/

.hero-crossover .hero-media::before {
  background-image: url("images/OSOLA-crossover-architecture-hero-frame.jpg") !important;
  filter: blur(62px) brightness(0.34) saturate(0.72) !important;
  opacity: 0.72 !important;
}

.hero-crossover::before {
  background-image: url("images/OSOLA-crossover-architecture-hero-frame.jpg") !important;
}

.hero-crossover .hero-media img {
  content: url("images/OSOLA-crossover-architecture-hero-frame.jpg") !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
  filter: brightness(0.97) saturate(0.95) contrast(0.99) !important;
}

/* darker left field for technical copy */
.hero-crossover .hero-media::after,
.hero-crossover::after {
  background:
    linear-gradient(to right,
      rgba(2,2,2,0.92) 0%,
      rgba(2,2,2,0.82) 16%,
      rgba(2,2,2,0.56) 32%,
      rgba(2,2,2,0.20) 50%,
      rgba(2,2,2,0.06) 66%,
      rgba(2,2,2,0.26) 84%,
      rgba(2,2,2,0.84) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.05) 44%,
      rgba(0,0,0,0.24) 72%,
      rgba(0,0,0,0.84) 100%) !important;
}

.crossover-caption-visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  z-index: 50 !important;
  left: clamp(18px, 3.5vw, 52px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 610px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  pointer-events: none !important;
  font-family: inherit !important;
}

.crossover-caption-visible * {
  display: block !important;
  visibility: visible !important;
}

.crossover-caption-visible__kicker,
.crossover-caption-visible h2,
.crossover-caption-visible__subtitle {
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

.crossover-caption-visible__kicker {
  margin: 0 0 12px !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.56) !important;
}

.crossover-caption-visible h2 {
  margin: 0 0 14px !important;
  max-width: 380px !important;
  font-size: clamp(21px, 1.95vw, 34px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.20em !important;
  color: rgba(255,255,255,0.78) !important;
}

.crossover-caption-visible__subtitle {
  margin: 0 !important;
  max-width: 500px !important;
  font-weight: 300 !important;
  text-transform: none !important;
  font-size: clamp(12px, 0.95vw, 15px) !important;
  line-height: 1.55 !important;
  letter-spacing: 0.04em !important;
  color: rgba(255,255,255,0.52) !important;
}

.crossover-points {
  display: grid !important;
  gap: 9px !important;
  margin-top: 18px !important;
  max-width: 520px !important;
}

.crossover-points p {
  display: grid !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 0 0 12px !important;
  border-left: 1px solid rgba(255,255,255,0.18) !important;
  font-family: inherit !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.82) !important;
}

.crossover-points strong {
  display: block !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  letter-spacing: 0.16em !important;
  font-size: clamp(9px, 0.72vw, 11px) !important;
  color: rgba(255,255,255,0.68) !important;
}

.crossover-points span {
  display: block !important;
  font-family: inherit !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: 0.035em !important;
  font-size: clamp(11px, 0.82vw, 13px) !important;
  line-height: 1.38 !important;
  color: rgba(255,255,255,0.46) !important;
}

@media (max-width: 760px) {
  .crossover-caption-visible {
    left: 18px !important;
    bottom: 24px !important;
    max-width: calc(100vw - 36px) !important;
  }

  .crossover-caption-visible h2 {
    max-width: 260px !important;
    font-size: 20px !important;
    letter-spacing: 0.15em !important;
  }

  .crossover-caption-visible__subtitle {
    max-width: 300px !important;
    font-size: 12px !important;
  }

  .crossover-points {
    display: none !important;
  }
}



/* Crossover section — more vertical caption layout
   Zdjęcie bez zmian. Zwężamy opis i układamy go bardziej pionowo,
   żeby nie nachodził na fotografię.
*/
.crossover-caption-visible {
  left: clamp(18px, 3vw, 46px) !important;
  bottom: clamp(22px, 6vh, 72px) !important;
  max-width: 360px !important;
}

.crossover-caption-visible h2 {
  max-width: 270px !important;
  font-size: clamp(20px, 1.8vw, 32px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.19em !important;
  margin-bottom: 14px !important;
}

.crossover-caption-visible__subtitle {
  max-width: 320px !important;
  font-size: clamp(11px, 0.86vw, 14px) !important;
  line-height: 1.48 !important;
  letter-spacing: 0.035em !important;
}

.crossover-points {
  max-width: 310px !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

.crossover-points p {
  padding-left: 10px !important;
}

.crossover-points strong {
  font-size: clamp(9px, 0.68vw, 10px) !important;
  letter-spacing: 0.145em !important;
}

.crossover-points span {
  font-size: clamp(10px, 0.78vw, 12px) !important;
  line-height: 1.34 !important;
  letter-spacing: 0.025em !important;
}

/* Mocniejsze pole po lewej, żeby tekst był czytelny i optycznie oddzielony od zdjęcia */
.hero-crossover .hero-media::after,
.hero-crossover::after {
  background:
    linear-gradient(to right,
      rgba(2,2,2,0.96) 0%,
      rgba(2,2,2,0.88) 15%,
      rgba(2,2,2,0.66) 28%,
      rgba(2,2,2,0.34) 42%,
      rgba(2,2,2,0.08) 58%,
      rgba(2,2,2,0.22) 82%,
      rgba(2,2,2,0.84) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.05) 44%,
      rgba(0,0,0,0.24) 72%,
      rgba(0,0,0,0.84) 100%) !important;
}

@media (max-width: 760px) {
  .crossover-caption-visible {
    max-width: calc(100vw - 36px) !important;
  }

  .crossover-caption-visible h2 {
    max-width: 260px !important;
    font-size: 20px !important;
    letter-spacing: 0.15em !important;
  }

  .crossover-caption-visible__subtitle {
    max-width: 300px !important;
    font-size: 12px !important;
  }

  .crossover-points {
    display: none !important;
  }
}



/* CONTACT SECTION */
.contact-section {
  position: relative;
  min-height: 72vh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.055), rgba(255,255,255,0.00) 42%),
    linear-gradient(to bottom, #020202 0%, #050505 100%);
  color: rgba(255,255,255,0.82);
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 96px);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(2,2,2,0.78) 0%,
      rgba(2,2,2,0.12) 38%,
      rgba(2,2,2,0.12) 62%,
      rgba(2,2,2,0.78) 100%),
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.22) 76%,
      rgba(0,0,0,0.72) 100%);
  z-index: 0;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.contact-section__kicker {
  margin: 0 0 18px;
  font-family: inherit;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.24em;
  font-size: clamp(10px, 0.8vw, 12px);
  color: rgba(255,255,255,0.50);
  text-shadow: 0 10px 34px rgba(0,0,0,0.82);
}

.contact-section h2 {
  margin: 0 0 clamp(38px, 5vw, 68px);
  font-family: inherit;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.22em;
  line-height: 1.08;
  font-size: clamp(28px, 4.2vw, 68px);
  color: rgba(255,255,255,0.78);
  text-shadow: 0 10px 34px rgba(0,0,0,0.82);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 84px);
  width: min(820px, 100%);
}

.contact-card {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: clamp(16px, 2vw, 24px);
}

.contact-card__label {
  margin: 0 0 16px !important;
  font-family: inherit;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.22em;
  font-size: clamp(10px, 0.8vw, 12px);
  color: rgba(255,255,255,0.48) !important;
}

.contact-card p {
  margin: 0 0 9px;
  font-family: inherit;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.45;
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255,255,255,0.64);
  text-shadow: 0 10px 34px rgba(0,0,0,0.82);
}

.contact-card a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
}

.contact-card a:hover {
  color: rgba(255,255,255,0.92);
}

@media (max-width: 760px) {
  .contact-section {
    min-height: auto;
    padding: 72px 22px 86px;
  }

  .contact-section h2 {
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: 0.15em;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-card p {
    font-size: 15px;
  }
}



/* Menu links / smooth anchor navigation */
html {
  scroll-behavior: smooth;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 56px);
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  pointer-events: auto;
}

.site-nav a {
  font-family: inherit !important;
  font-weight: 400 !important;
  letter-spacing: 0.24em !important;
  text-transform: lowercase !important;
  color: rgba(255,255,255,0.72) !important;
  text-decoration: none !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.72) !important;
  font-size: clamp(10px, 0.8vw, 12px);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: rgba(255,255,255,0.96) !important;
}

section[id] {
  scroll-margin-top: 84px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 14px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-nav {
    gap: 18px;
    justify-content: flex-start;
    min-width: max-content;
  }

  .site-nav a {
    letter-spacing: 0.16em !important;
    font-size: 11px !important;
  }
}



/* Header layout refinement: brand left, section links right */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 32px !important;
  padding: 22px clamp(18px, 4vw, 56px) !important;
  pointer-events: none !important;
}

.site-brand,
.site-nav {
  pointer-events: auto !important;
}

.site-brand {
  font-family: inherit !important;
  font-weight: 400 !important;
  letter-spacing: 0.24em !important;
  text-transform: lowercase !important;
  color: rgba(255,255,255,0.74) !important;
  text-decoration: none !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.72) !important;
  font-size: clamp(11px, 0.9vw, 14px) !important;
  white-space: nowrap !important;
}

.site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(18px, 2.6vw, 38px) !important;
}

.site-nav a {
  font-family: inherit !important;
  font-weight: 400 !important;
  letter-spacing: 0.22em !important;
  text-transform: lowercase !important;
  color: rgba(255,255,255,0.68) !important;
  text-decoration: none !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.72) !important;
  font-size: clamp(10px, 0.78vw, 12px) !important;
  transition: color 180ms ease, opacity 180ms ease !important;
  white-space: nowrap !important;
}

.site-brand:hover,
.site-nav a:hover {
  color: rgba(255,255,255,0.96) !important;
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 14px !important;
    gap: 18px !important;
    overflow-x: auto !important;
  }

  .site-brand {
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
    flex: 0 0 auto !important;
  }

  .site-nav {
    gap: 16px !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }

  .site-nav a {
    font-size: 10px !important;
    letter-spacing: 0.13em !important;
  }
}



/* Header menu: add home + craft links */
.site-nav {
  gap: clamp(14px, 2.1vw, 32px) !important;
}

.site-nav a {
  letter-spacing: 0.20em !important;
}

/* Make longer menu still fit on normal desktop widths */
@media (max-width: 980px) {
  .site-header {
    gap: 22px !important;
  }

  .site-brand {
    letter-spacing: 0.18em !important;
  }

  .site-nav {
    gap: 16px !important;
  }

  .site-nav a {
    letter-spacing: 0.14em !important;
  }
}

@media (max-width: 760px) {
  .site-nav {
    gap: 14px !important;
  }

  .site-nav a {
    font-size: 10px !important;
    letter-spacing: 0.11em !important;
  }
}



/* Home anchor fix */
#home {
  scroll-margin-top: 0 !important;
}

#top-home-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-brand[href="#home"],
.site-nav a[href="#home"] {
  cursor: pointer;
}



/* PHONE ONLY — clean fullscreen photo layout
   Base reverted to stable fix-home-anchor.
   Desktop unchanged.
   On phones: every photo section is 100svh, captions are below photos.
*/
.home-mobile-caption {
  display: none;
}

@media (max-width: 760px) {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #020202 !important;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 200 !important;
    padding: 12px 14px !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.00)) !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .site-brand {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
  }

  .site-nav {
    gap: 13px !important;
    min-width: max-content !important;
  }

  .site-nav a {
    font-size: 9.5px !important;
    letter-spacing: 0.09em !important;
    white-space: nowrap !important;
  }

  /* Every hero section becomes: fullscreen photo + caption below */
  #home,
  .hero-secondary,
  .hero-third,
  .hero-acoustic,
  .hero-crossover {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #020202 !important;
    transform: none !important;
  }

  #home::before,
  #home::after,
  .hero-secondary::before,
  .hero-secondary::after,
  .hero-third::before,
  .hero-third::after,
  .hero-acoustic::before,
  .hero-acoustic::after,
  .hero-crossover::before,
  .hero-crossover::after {
    display: none !important;
  }

  #home .hero-media,
  .hero-media-secondary,
  .hero-media-third,
  .hero-media-acoustic,
  .hero-media-crossover {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #020202 !important;
    transform: none !important;
  }

  @supports not (height: 100svh) {
    #home .hero-media,
    .hero-media-secondary,
    .hero-media-third,
    .hero-media-acoustic,
    .hero-media-crossover {
      height: 100vh !important;
      min-height: 100vh !important;
    }
  }

  #home .hero-media::before,
  #home .hero-media::after,
  .hero-media-secondary::before,
  .hero-media-secondary::after,
  .hero-media-third::before,
  .hero-media-third::after,
  .hero-media-acoustic::before,
  .hero-media-acoustic::after,
  .hero-media-crossover::before,
  .hero-media-crossover::after {
    display: none !important;
  }

  #home .hero-media img,
  .hero-media-secondary img,
  .hero-media-third img,
  .hero-media-acoustic img,
  .hero-media-crossover img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* Remove desktop overlay text on the first photo */
  #home .hero-content,
  #home .hero-brand-minimal,
  #home .hero-copy,
  #home .hero-brand {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* First mobile caption below the first fullscreen image */
  .home-mobile-caption {
    display: block !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px 22px 42px 0 !important;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.045), rgba(255,255,255,0.00) 48%),
      linear-gradient(to bottom, #020202 0%, #050505 100%) !important;
    text-align: left !important;
  }

  .home-mobile-caption__kicker,
  .home-mobile-caption h2 {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
    font-family: inherit !important;
    font-weight: 400 !important;
    text-transform: lowercase !important;
  }

  .home-mobile-caption__kicker {
    margin: 0 0 10px 0 !important;
    letter-spacing: 0.20em !important;
    font-size: 10px !important;
    line-height: 1 !important;
    color: rgba(255,255,255,0.50) !important;
  }

  .home-mobile-caption h2 {
    margin: 0 !important;
    letter-spacing: 0.18em !important;
    line-height: 1.08 !important;
    font-size: 28px !important;
    color: rgba(255,255,255,0.78) !important;
  }

  /* All other captions below photos, aligned left */
  .secondary-caption-visible,
  .third-caption-visible,
  .acoustic-caption-visible,
  .crossover-caption-visible {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px 22px 42px 0 !important;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.045), rgba(255,255,255,0.00) 48%),
      linear-gradient(to bottom, #020202 0%, #050505 100%) !important;
    pointer-events: auto !important;
    text-align: left !important;
  }

  .secondary-caption-visible *,
  .third-caption-visible *,
  .acoustic-caption-visible *,
  .crossover-caption-visible * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  .secondary-caption-visible__kicker,
  .third-caption-visible__kicker,
  .acoustic-caption-visible__kicker,
  .crossover-caption-visible__kicker {
    margin: 0 0 10px 0 !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.20em !important;
    color: rgba(255,255,255,0.50) !important;
  }

  .secondary-caption-visible h2,
  .third-caption-visible h2,
  .acoustic-caption-visible h2,
  .crossover-caption-visible h2 {
    max-width: 340px !important;
    margin: 0 0 12px 0 !important;
    font-size: 22px !important;
    line-height: 1.16 !important;
    letter-spacing: 0.15em !important;
    color: rgba(255,255,255,0.78) !important;
  }

  .secondary-caption-visible__note,
  .third-caption-visible__note,
  .acoustic-caption-visible__note,
  .secondary-caption-visible__subtitle,
  .third-caption-visible__subtitle,
  .acoustic-caption-visible__subtitle,
  .crossover-caption-visible__subtitle {
    max-width: 360px !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.52 !important;
    letter-spacing: 0.03em !important;
    color: rgba(255,255,255,0.54) !important;
  }

  .acoustic-points,
  .crossover-points {
    display: grid !important;
    gap: 10px !important;
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    max-width: 360px !important;
    justify-items: start !important;
  }

  .acoustic-points p,
  .crossover-points p {
    display: grid !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 0 0 12px !important;
    border-left: 1px solid rgba(255,255,255,0.16) !important;
    text-align: left !important;
  }

  .acoustic-points strong,
  .crossover-points strong {
    font-size: 10px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.14em !important;
    color: rgba(255,255,255,0.64) !important;
  }

  .acoustic-points span,
  .crossover-points span {
    font-size: 12px !important;
    line-height: 1.40 !important;
    letter-spacing: 0.025em !important;
    color: rgba(255,255,255,0.46) !important;
  }

  .contact-section {
    min-height: auto !important;
    padding: 72px 22px 86px 0 !important;
    text-align: left !important;
  }

  .contact-section__inner,
  .contact-section__grid,
  .contact-card,
  .contact-section__kicker,
  .contact-section h2,
  .contact-card__label,
  .contact-card p {
    margin-left: 0 !important;
    text-align: left !important;
  }

  .contact-card {
    padding-left: 12px !important;
  }

  section[id] {
    scroll-margin-top: 0 !important;
  }
}



/* PHONE ONLY — first hero full width, not full height
   Desktop unchanged.
   The first photo must not be forced to 100svh, because that crops the sides.
*/
@media (max-width: 760px) {
  #home {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #020202 !important;
  }

  #home .hero-media {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 2048 / 1638 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #020202 !important;
  }

  #home .hero-media img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* Keep the first mobile caption directly below the first photo */
  .home-mobile-caption {
    margin: 0 !important;
    padding: 24px 22px 42px 0 !important;
    text-align: left !important;
  }
}



/* PHONE ONLY — lower first hero crop slightly
   Desktop unchanged.
   First image remains full-width; only vertical image position changes.
*/
@media (max-width: 760px) {
  #home .hero-media img {
    object-position: center 62% !important;
  }
}



/* PHONE ONLY — lower the whole first image block
   Desktop unchanged.
   This moves the first photo frame down instead of only changing object-position.
*/
@media (max-width: 760px) {
  #home,
  #home.section,
  #home.hero {
    transform: none !important;
    translate: none !important;
    margin-top: 0 !important;
    padding-top: 46px !important;
    overflow: visible !important;
  }

  #home .hero-media {
    transform: none !important;
    translate: none !important;
    margin-top: 0 !important;
    top: auto !important;
  }

  #home .hero-media img {
    transform: none !important;
    translate: none !important;
    top: 0 !important;
    object-position: center center !important;
  }

  .home-mobile-caption {
    padding-top: 24px !important;
  }
}



/* PHONE ONLY — reduce vertical distance between photo sections
   First hero photo stays unchanged.
   Captions remain directly connected with their photos.
*/
@media (max-width: 760px) {
  /* Do not touch the first image position */
  #home {
    padding-top: 46px !important;
  }

  /* Reduce caption vertical space so next photos start higher */
  .home-mobile-caption,
  .secondary-caption-visible,
  .third-caption-visible,
  .acoustic-caption-visible,
  .crossover-caption-visible {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }

  /* Keep point lists compact on phone */
  .acoustic-points,
  .crossover-points {
    margin-top: 14px !important;
    gap: 8px !important;
  }

  .acoustic-points p,
  .crossover-points p {
    gap: 3px !important;
  }

  /* Remove any accidental extra gap between mobile sections */
  .hero-secondary,
  .hero-third,
  .hero-acoustic,
  .hero-crossover {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-media-secondary,
  .hero-media-third,
  .hero-media-acoustic,
  .hero-media-crossover {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Contact starts a little closer after the last photo/caption */
  .contact-section {
    padding-top: 52px !important;
  }
}



/* PHONE ONLY — all section photos like the first photo
   Desktop unchanged.
   All photos use full width + natural hero frame ratio, not 100svh.
   Captions are immediately below their photos.
*/
@media (max-width: 760px) {
  /* First photo stays as accepted */
  #home {
    padding-top: 46px !important;
  }

  /* All following photo sections: no full-height 100svh */
  .hero-secondary,
  .hero-third,
  .hero-acoustic,
  .hero-crossover {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #020202 !important;
    transform: none !important;
  }

  .hero-media-secondary,
  .hero-media-third,
  .hero-media-acoustic,
  .hero-media-crossover {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 2048 / 1638 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #020202 !important;
    transform: none !important;
  }

  .hero-media-secondary::before,
  .hero-media-secondary::after,
  .hero-media-third::before,
  .hero-media-third::after,
  .hero-media-acoustic::before,
  .hero-media-acoustic::after,
  .hero-media-crossover::before,
  .hero-media-crossover::after,
  .hero-secondary::before,
  .hero-secondary::after,
  .hero-third::before,
  .hero-third::after,
  .hero-acoustic::before,
  .hero-acoustic::after,
  .hero-crossover::before,
  .hero-crossover::after {
    display: none !important;
  }

  .hero-media-secondary img,
  .hero-media-third img,
  .hero-media-acoustic img,
  .hero-media-crossover img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* Captions immediately under each photo, same rhythm as first caption */
  .home-mobile-caption,
  .secondary-caption-visible,
  .third-caption-visible,
  .acoustic-caption-visible,
  .crossover-caption-visible {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px 22px 24px 0 !important;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.045), rgba(255,255,255,0.00) 48%),
      linear-gradient(to bottom, #020202 0%, #050505 100%) !important;
    text-align: left !important;
  }

  .home-mobile-caption *,
  .secondary-caption-visible *,
  .third-caption-visible *,
  .acoustic-caption-visible *,
  .crossover-caption-visible * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  .secondary-caption-visible__kicker,
  .third-caption-visible__kicker,
  .acoustic-caption-visible__kicker,
  .crossover-caption-visible__kicker,
  .home-mobile-caption__kicker {
    margin: 0 0 10px 0 !important;
  }

  .secondary-caption-visible h2,
  .third-caption-visible h2,
  .acoustic-caption-visible h2,
  .crossover-caption-visible h2,
  .home-mobile-caption h2 {
    margin: 0 0 12px 0 !important;
  }

  .home-mobile-caption h2 {
    margin-bottom: 0 !important;
  }

  .acoustic-points,
  .crossover-points {
    margin: 14px 0 0 0 !important;
    gap: 8px !important;
  }

  .contact-section {
    padding-top: 42px !important;
  }
}
