/* =========================================================
   DISCOVER.CSS
   A Mi Talla - Discover Page
========================================================= */


/* =========================================================
   DISCOVER HERO
========================================================= */

.discover-hero-section {
  position: relative;
   min-height: 400px;
  height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #080808;
}


/* =========================================================
   HERO BACKGROUND IMAGE
========================================================= */
.discover-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/grupp.jpg");
  background-size: cover;
  background-position: center 42%;
  z-index: 1;
  filter: blur(2px);
  transform: scale(1.03);
}

/* =========================================================
   HERO DARK OVERLAY
========================================================= */
.discover-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.60) 40%,
      rgba(0, 0, 0, 0.48) 68%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.12) 50%,
      rgba(0, 0, 0, 0.92) 100%
    );
}


/* =========================================================
   LANGUAGE SWITCHER
   Samma utseende som på Home
========================================================= */
.discover-hero-section .language-switcher {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discover-hero-section .language-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.discover-hero-section .language-btn:hover {
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
  transform: scale(1.08);
}

.discover-hero-section .language-btn.active {
  background: rgba(0, 0, 0, 0.55);
  border-color: #d6aa18;
  opacity: 1;
  box-shadow:
    0 0 0 2px rgba(214, 170, 24, 0.25);
}

.discover-hero-section .language-btn img {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.discover-hero-inner {
  position: relative;
  z-index: 4;
  width: min(
    calc(100% - 100px),
    1500px
  );
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 60px;
}


/* =========================================================
   HERO LEFT TEXT
========================================================= */
.discover-hero-copy {
  align-self: end;
  max-width: 800px;
  padding-bottom: 30px;
}

.discover-eyebrow {
  margin: 0 0 25px;
  font-family: "Inter", sans-serif;
  font-size: clamp(
    0.82rem,
    1.2vw,
    1.05rem
  );
  font-weight: 400;
  letter-spacing: 7px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.discover-hero-copy h1 {
  margin: 0;
  font-family: "Broadway", serif;;
  font-size: clamp(
    4rem,
    7vw,
    7.6rem
  );
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 6px;
  color: #d6aa18;
  text-shadow:
    0 6px 25px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   GOLD DECORATIVE LINE
========================================================= */
.discover-gold-line {
  width: min(
    440px,
    70%
  );
  margin: 38px 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discover-star {
  color: #d6aa18;
  font-size: 1.1rem;
}


.discover-line {
  display: block;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      #d6aa18,
      rgba(214, 170, 24, 0)
    );
}

/* =========================================================
   HERO LEAD TEXT
========================================================= */
.discover-lead {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(
    1.15rem,
    2vw,
    1.75rem
  );
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   VIDEO AREA
========================================================= */
.discover-video-area {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* =========================================================
   PLAY BUTTON
========================================================= */
.discover-play-button {
  position: relative;
  width: 150px;
  height: 150px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.discover-play-circle {
  position: relative;
  z-index: 3;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border: 2px solid #d6aa18;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  box-shadow:
    0 0 25px rgba(214, 170, 24, 0.22);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.discover-play-circle i {
  margin-left: 6px;
  font-size: 2rem;
  color: #fff;
}

.discover-play-button:hover .discover-play-circle {
  transform: scale(1.08);
  background: rgba(214, 170, 24, 0.15);
  box-shadow:
    0 0 42px rgba(214, 170, 24, 0.38);
}

/* =========================================================
   PULSING PLAY EFFECT
========================================================= */
.discover-pulse {
  position: absolute;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(214, 170, 24, 0.7);
  border-radius: 50%;
  animation: discoverPulse 2.2s  ease-out infinite;
}

.discover-pulse::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(214, 170, 24, 0.35);
  border-radius: inherit;
  animation:
    discoverPulse
    2.2s
    ease-out
    0.8s
    infinite;
}

/* =========================================
   STORY OF A MI TALLA
========================================= */
.story-section {
  position: relative;
  padding: 12px 0 20px;
  background: radial-gradient( circle at 30% 50%,
 rgba(214, 170, 24, 0.045),
      transparent 38%
    ), #0b0b0b;
  overflow: hidden;
}

/* =========================================
   CONTAINER
========================================= */
.story-container {
  width: min(calc(100% - 80px), 1450px);
  margin-inline: auto;
  display: grid;
  grid-template-columns:
    0.9fr 1.25fr;
  align-items: center;
  gap: 80px;
}

/* =========================================
   IMAGES
========================================= */
.story-images {
  position: relative;
  width: 100%;
  height: 590px;
}

/* båda bilderna */
.story-img {
  position: absolute;
  width: 350px;
  height: 480px;
  object-fit: cover;
  background: #eee;
  border: 8px solid #eee;
  box-shadow:
    0 20px 45px
    rgba(0, 0, 0, 0.55);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

/* bilden bakom */
.story-img-back {
  top: 25px;
  left: 20px;
  transform: rotate(-5deg);
  z-index: 1;
}

/* bilden framför */
.story-img-front {
  top: 95px;
  left: 180px;
  transform: rotate(6deg);
  z-index: 2;
}


/* subtil hover */
.story-images:hover .story-img-back {
  transform:
    rotate(-7deg)
    translateX(-5px);
}


.story-images:hover .story-img-front {
  transform:
    rotate(8deg)
    translateX(5px);

  box-shadow:
    0 25px 55px
    rgba(0, 0, 0, 0.65);
}


/* =========================================
   STORY BOX
========================================= */

.story-box {
  position: relative;
  min-height: 570px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid
    rgba(214, 170, 24, 0.75);

  background:
    rgba(12, 12, 12, 0.72);

  box-shadow:
    0 25px 70px
    rgba(0, 0, 0, 0.35);
}


/* den extra tunna ramen innanför */

.story-box::before {
  content: "";
position: absolute;
inset: 7px;
border: 1px solid rgba(214, 170, 24, 0.32);
pointer-events: none;
}

.story-box-inner {
position: relative;
z-index: 2;
width: min(85%, 700px);
padding: 32px 16px;
text-align: center;
}


/* OUR STORY */

.story-kicker {
  margin: 0 0 1px;
font-family:"Inter",sans-serif;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 6px;
text-transform: uppercase;
color: #d6aa18;
}


/* =========================================
   DECORATION
========================================= */

.story-decoration {
width: 300px;
max-width: 75%;
margin: 0 auto 3px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}


.story-decoration span {
flex: 1;
height: 1px;
background:linear-gradient(90deg, transparent,#d6aa18);
}


.story-decoration span:last-child {
  background:linear-gradient(90deg, #d6aa18, transparent);
}

.story-decoration i {
  font-style: normal;
  font-size: 1.25rem;
  color: #d6aa18;
}


/* =========================================
   TITLE
========================================= */

.story-title {
  margin: 0;
  font-family: "Cinzel",serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 3px;
  color: #f5f1e8;
}


.story-title span {
  display: block;
  margin-top: 5x;
  color: #d6aa18;
}


/* =========================================
   SMALL GOLD LINE
========================================= */

.story-small-line {
  width: 90px;
  height: 1px;
  margin:35px auto 30px;
  background: #d6aa18;
}


/* =========================================
   STORY TEXT
========================================= */

.story-text {
  max-width: 580px;
  margin: 0 auto;
  font-family:
    "Inter",
    sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.76);
    align-content: left;
}


@keyframes discoverPulse {

  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.65);
    opacity: 0;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }

}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.discover-scroll {
  position: absolute;

  z-index: 5;

  left: 50%;
  bottom: 30px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;

  align-items: center;

  color: #d6aa18;
}


.discover-scroll span {
  display: block;

  width: 1px;
  height: 45px;

  margin-bottom: 6px;

  background:
    linear-gradient(
      to bottom,
      rgba(214, 170, 24, 0),
      #d6aa18
    );
}


.discover-scroll i {
  font-size: 0.85rem;

  animation:
    discoverScrollMove
    1.8s
    ease-in-out
    infinite;
}


@keyframes discoverScrollMove {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }

}


/* =========================================================
   DISCOVER PAGE GENERAL
========================================================= */

.discover-page {
  background: #101010;

  color: #fff;
}


.discover-section {
  padding: 120px 30px;

  position: relative;
}



/* =========================================================
   GENERIC DISCOVER GRID
========================================================= */

.discover-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 80px;
}


.discover-grid.reverse .discover-copy {
  order: 1;
}


.discover-grid.reverse .discover-image {
  order: 2;
}


/* =========================================================
   DISCOVER IMAGES
========================================================= */

.discover-image {
  overflow: hidden;
}


.discover-image img {
  display: block;

  width: 100%;
  height: 600px;

  object-fit: cover;

  transition: transform 0.7s ease;
}


.discover-image:hover img {
  transform: scale(1.03);
}


/* =========================================================
   SECTION KICKER
========================================================= */

.section-kicker {
  margin: 0 0 14px;

  font-family: "Inter", sans-serif;

  font-size: 0.78rem;

  font-weight: 500;

  letter-spacing: 4px;

  text-transform: uppercase;

  color: #d6aa18;
}


/* =========================================================
   DISCOVER HEADINGS
========================================================= */

.discover-copy h2,
.discover-section-heading h2,
.vision-content h2 {

  margin: 0 0 28px;

  font-family: "Cinzel", serif;

  font-size: clamp(
    2.4rem,
    5vw,
    4.5rem
  );

  font-weight: 400;

  line-height: 1.1;

  letter-spacing: 1px;

  color: #fff;
}


/* =========================================================
   DISCOVER TEXT
========================================================= */

.discover-copy p,
.discover-section-heading p,
.vision-content p {

  margin: 0 0 20px;

  max-width: 650px;

  font-family: "Inter", sans-serif;

  font-size: 1rem;

  font-weight: 300;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   FOUNDER SECTION
========================================================= */
  .founder-section {
  background: #111;
  padding: 70px 50px 40px;
  overflow: hidden;
}

.founder-header {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.founder-layout {
  position: relative;
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-inline: 0;
}

.founder-center {
  text-align: center;
  min-width: 0;

}

.founder-kicker {
  margin: 0 0 18px;

  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;

  letter-spacing: 6px;
  text-transform: uppercase;

  color: #d6aa18;
}

.founder-name {
  margin: 0;

  font-family: "Cinzel", serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);

  font-weight: 400;
  line-height: 1.05;

  color: #f5f1e8;
}

.founder-role {
  margin: 18px 0 45px;

  font-family: "Inter", sans-serif;
  font-size: 0.78rem;

  letter-spacing: 3px;
  text-transform: uppercase;

  color: #d6aa18;
}

.founder-text-columns {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 35px;
  width: 100%;
  text-align: left;
}


.founder-text-column p {
  margin: 0 0 20px;

  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.75);

  text-align: left;
}

.founder-flow-image {
  width: 135px;
  height: auto;

  object-fit: contain;
}

.founder-flow-image-left {
  float: left;
  width: 190px;
  height: auto;
  margin:
    6px
    1px
    10px
    0;
}

.founder-flow-image-right {
  float: right;
 width: 200px;
  height: auto;
  margin:
    6px
    0
    1px
    1px;
}

/* =========================================
   ELEGGUÁ QUOTE — FOUNDER SECTION
========================================= */

.founder-orisha-quote {
  max-width: 1250px;
  min-height: 280px;

  margin: 90px auto 0;
  padding: 5px 5px;

  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 70px;

  position: relative;

  border: 1px solid rgba(214, 170, 24, 0.75);
  background: #0d0d0d;
}


/* IMAGE */

.orisha-quote-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orisha-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* QUOTE AREA */

.orisha-quote-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}


/* LARGE QUOTATION MARK */

.orisha-quote-mark {
  margin-bottom: -10px;

  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  line-height: 1;

  color: #d6aa18;
}


/* QUOTE */

.orisha-quote-content blockquote {
  margin: 0;

  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;

  color: #f5f1e8;
}


/* DECORATIVE LINE */

.orisha-quote-decoration {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 14px;
  margin: 28px auto 18px;
}

.orisha-quote-decoration span {
  width: 90px;
  height: 1px;

  background: rgba(214, 170, 24, 0.55);
}

.orisha-quote-decoration i {
  font-style: normal;
  font-size: 0.7rem;

  color: #d6aa18;
}


/* SMALL TEXT */

.orisha-quote-credit {
  margin: 0;

  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;

  letter-spacing: 4px;
  text-transform: uppercase;

  color: #d6aa18;
}

=======================================
   PHILOSOPHY SECTION
========================================================= */
.philosophy-section {
  background: #0d0d0d;
  padding: 10px 30px 30px;
}


/* intro */

.philosophy-heading {
  max-width: 820px;

  margin:
    0 auto
    80px;

  text-align: center;
}


.philosophy-kicker {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 0.78rem;
  font-weight: 500;

  letter-spacing: 6px;

  text-transform: uppercase;

  color: #d6aa18;
}


.philosophy-star {
  margin: 15px 0 12px;

  font-size: 1rem;

  color: #f5f1e8;
}


.philosophy-heading h2 {
  margin: 0;

  font-family: "Cinzel", serif;

  font-size:
    clamp(2.8rem, 5vw, 5rem);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: 2px;

  color: #f5f1e8;
}


.philosophy-small-line {
  width: 55px;
  height: 1px;

  margin:
    28px auto
    26px;

  background: #d6aa18;
}


.philosophy-intro {
  max-width: 650px;

  margin: 0 auto;

  font-family: "Inter", sans-serif;

  font-size: 1rem;
  font-weight: 300;

  line-height: 1.8;

  color:
    rgba(255, 255, 255, 0.72);
}


/* fyra kolumner */

.philosophy-pillars {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  max-width: 1400px;

  margin-inline: auto;
}


.philosophy-item {
  position: relative;

  padding:
    10px 35px
    0;

  text-align: center;
}


/* vertikala linjer mellan */

.philosophy-item:not(:last-child) {
  border-right:
    1px solid
    rgba(214, 170, 24, 0.30);
}


.philosophy-item h3 {
  margin: 0;

  font-family: "Cinzel", serif;

  font-size:
    clamp(1.3rem, 2vw, 1.8rem);

  font-weight: 400;

  letter-spacing: 1px;

  color: #f5f1e8;
}


/* liten gulddekoration */

.philosophy-item-line {
  width: 85px;

  margin:
    18px auto
    18px;

  display: flex;

  align-items: center;

  gap: 6px;
}


.philosophy-item-line span {
  flex: 1;

  height: 1px;

  background:
    rgba(214, 170, 24, 0.65);
}


.philosophy-item-line i {
  font-style: normal;

  font-size: 0.55rem;

  color: #d6aa18;
}


.philosophy-item p {
  max-width: 260px;

  margin: 0 auto;

  font-family: "Inter", sans-serif;

  font-size: 0.92rem;
  font-weight: 300;

  line-height: 1.8;

  color:
    rgba(255, 255, 255, 0.68);
}







.philosophy-card span {
  display: block;

  margin-bottom: 30px;

  font-family: "Inter", sans-serif;

  font-size: 0.8rem;

  letter-spacing: 2px;

  color: #d6aa18;
}


.philosophy-card h3 {
  margin: 0 0 15px;

  font-family: "Cinzel", serif;

  font-size: 1.35rem;

  font-weight: 400;

  color: #fff;
}


.philosophy-card p {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 0.92rem;

  line-height: 1.75;

  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   OUR CLASSES
========================================================= */

.classes-discover-section {
  position: relative;

  padding: 80px 30px 40px;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(214, 170, 24, 0.035),
      transparent 40%
    ),
    #090909;

  color: #fff;
}


.classes-discover-container {
  width: min(100%, 1400px);

  margin-inline: auto;
}


/* =========================================================
   HEADING
========================================================= */

.classes-discover-heading {
  max-width: 850px;

  margin:
    0 auto
    80px;

  text-align: center;
}


.classes-kicker {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 0.78rem;
  font-weight: 500;

  letter-spacing: 7px;

  color: #d6aa18;

  text-transform: uppercase;
}


.classes-star {
  margin: 15px 0 12px;

  font-size: 1rem;

  color: #f5f1e8;
}


.classes-discover-heading h2 {
  margin: 0;

  font-family: "Cinzel", serif;

  font-size:
    clamp(2.8rem, 5vw, 5rem);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: 2px;

  color: #f5f1e8;
}


.classes-heading-line {
  width: 65px;
  height: 1px;

  margin:
    28px auto
    25px;

  background: #d6aa18;
}


.classes-intro {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 1rem;
  font-weight: 300;

  line-height: 1.8;

  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================================================
   TWO COLUMN GRID
========================================================= */

.classes-discover-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  column-gap: 90px;

  max-width: 1300px;

  margin-inline: auto;
}


/* GOLD VERTICAL CENTER LINE */

.classes-discover-grid::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 1px;

  transform: translateX(-50%);

  background:
    rgba(214, 170, 24, 0.55);
}


/* =========================================================
   INDIVIDUAL CLASS
========================================================= */

.class-discover-item {
  position: relative;

  min-height: 235px;

  padding:
    38px 25px
    38px 90px;
  border-top:
    1px solid
    rgba(214, 170, 24, 0.65);
}

.class-content {
  text-align: center;
}

.class-content h3 {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #f5f1e8;
}


/* =========================================================
   KEYWORDS
========================================================= */
.class-keywords {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 3px;
  color: #d6aa18;
  text-transform: uppercase;
}


/* =========================================================
   DESCRIPTION
========================================================= */
.class-description {
  max-width: 470px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.75;
  color:
    rgba(255, 255, 255, 0.72);
}

/* =========================================================
   CUBAN CULTURE CAROUSEL
========================================================= */
.culture-carousel-section {
  position: relative;
  padding: 90px 0 80px;
  background: #090909;
  overflow: hidden;
}

.culture-carousel-container {
  width: min(100%, 1600px);
  margin-inline: auto;
}

.culture-heading {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.culture-kicker {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #d6aa18;
}

.culture-star {
  margin: 14px 0 10px;
  color: #f5f1e8;
}

.culture-heading h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  color: #f5f1e8;
}

.culture-intro {
  margin: 18px auto 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   CULTURE CAROUSEL
========================================================= */
.culture-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}


/* =========================================================
   MAIN IMAGE
========================================================= */
.culture-main {
  position: relative;
  width: min(70vw, 1050px);
  height: 600px;
  overflow: hidden;
}

.culture-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.culture-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.35s ease,
    transform 0.7s ease;
}

.culture-main:hover
.culture-main-image {
  transform: scale(1.025);
}


/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */
.culture-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.05) 75%
    );
  pointer-events: none;
}

/* =========================================================
   TEXT
========================================================= */
.culture-slide-content {
  position: absolute;
  left: 65px;
  bottom: 55px;
  z-index: 3;
  max-width: 620px;
}

.culture-count {
  display: block;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #d6aa18;
}

.culture-slide-content h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 3px;
  color: #f5f1e8;
}

.culture-slide-line {
  width: 70px;
  height: 1px;
  margin: 22px 0;
  background: #d6aa18;
}

.culture-slide-content p {
  max-width: 560px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}


/* =========================================================
   SIDE PREVIEWS
========================================================= */
.culture-preview {
  width: 220px;
  height: 430px;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0.38;
}


.culture-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

/* move previews partly outside viewport */
.culture-preview-left {
  margin-left: -120px;
}


.culture-preview-right {
  margin-right: -120px;
}


/* =========================================================
   ARROWS
========================================================= */
.culture-arrow {
  position: relative;
  z-index: 10;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border:1px solid rgba(214,170,24,0.65);
  border-radius: 50%;
  background: #090909;
  color: #d6aa18;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.culture-arrow:hover {
  background: #d6aa18;
  color: #090909;
  transform: scale(1.08);
}

/* =========================================================
   PAGINATION
========================================================= */
.culture-pagination {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.culture-dot {
  position: relative;
  padding: 10px 2px;
  border: 0;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
 transition:    color 0.3s ease;
}

.culture-dot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: #d6aa18;
  transform: scaleX(0);
  transition:
    transform 0.3s ease;
}

.culture-dot:hover,
.culture-dot.active {
  color: #d6aa18;
}

.culture-dot.active::after {
  transform: scaleX(1);
}

/* =========================================================
   COLLABORATIONS / EVENTS JOURNAL
========================================================= */

.collaborations-section {
  position: relative;

  padding: 70px 30px 130px;

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(214, 170, 24, 0.045),
      transparent 34%
    ),
    #090909;

  color: #fff;

  overflow: hidden;
}


.collaborations-container {
  width: min(100%, 1450px);

  margin-inline: auto;
}


/* =========================================================
   HEADING
========================================================= */

.collaborations-heading {
  max-width: 850px;

  margin:
    0 auto
    60px;

  text-align: center;
}


.collaborations-kicker {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 0.78rem;
  font-weight: 500;

  letter-spacing: 7px;

  text-transform: uppercase;

  color: #d6aa18;
}


.collaborations-decoration {
  width: 170px;

  margin:
    15px auto
    16px;

  display: flex;

  align-items: center;

  gap: 12px;
}


.collaborations-decoration span {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #d6aa18
    );
}


.collaborations-decoration span:last-child {
  background:
    linear-gradient(
      90deg,
      #d6aa18,
      transparent
    );
}


.collaborations-decoration i {
  font-style: normal;

  color: #d6aa18;
}


.collaborations-heading h2 {
  margin: 0;

  font-family: "Cinzel", serif;

  font-size:
    clamp(2.8rem, 5vw, 5rem);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: 2px;

  color: #f5f1e8;
}


.collaborations-small-line {
  width: 60px;
  height: 1px;

  margin:
    28px auto
    24px;

  background: #d6aa18;
}


.collaborations-intro {
  max-width: 680px;

  margin: 0 auto;

  font-family: "Inter", sans-serif;

  font-size: 1rem;
  font-weight: 300;

  line-height: 1.8;

  color:
    rgba(255, 255, 255, 0.7);
}


/* =========================================================
   FILTERS
========================================================= */

.collaborations-toolbar {
  margin-bottom: 40px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}


.collaborations-filters {
  display: flex;

  align-items: center;

  gap: 38px;
}


.collab-filter {
  position: relative;

  padding:
    0 0
    14px;

  border: 0;

  background: transparent;

  font-family: "Inter", sans-serif;

  font-size: 0.7rem;
  font-weight: 500;

  letter-spacing: 3px;

  color:
    rgba(255, 255, 255, 0.5);

  cursor: pointer;
}


.collab-filter::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 0;
  height: 1px;

  background: #d6aa18;

  transition:
    width 0.3s ease;
}


.collab-filter:hover,
.collab-filter.active {
  color: #d6aa18;
}


.collab-filter:hover::after,
.collab-filter.active::after {
  width: 100%;
}


/* =========================================================
   GRID
========================================================= */

.collaborations-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 26px;
}


/* =========================================================
   EVENT CARD
========================================================= */

.collaboration-card {
  min-width: 0;

  overflow: hidden;

  background:
    rgba(14, 14, 14, 0.92);

  border:
    1px solid
    rgba(214, 170, 24, 0.32);
}


/* =========================================================
   POSTER
========================================================= */

.collaboration-poster {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #111;
}


.collaboration-poster img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.collaboration-poster::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent 55%,
      rgba(0, 0, 0, 0.45)
    );

  pointer-events: none;
}


/* =========================================================
   STATUS
========================================================= */

.collaboration-status {
  position: absolute;

  z-index: 3;

  top: 18px;
  left: 0;

  padding:
    8px 16px;

  background: #d6aa18;

  font-family: "Inter", sans-serif;

  font-size: 0.62rem;
  font-weight: 600;

  letter-spacing: 2px;

  color: #090909;

  text-transform: uppercase;
}


/* =========================================================
   EVENT CONTENT
========================================================= */

.collaboration-content {
  padding:
    27px 25px
    30px;

  text-align: left;
}


.collaboration-type {
  margin:
    0 0
    11px;

  font-family: "Inter", sans-serif;

  font-size: 0.65rem;
  font-weight: 500;

  letter-spacing: 4px;

  color: #d6aa18;

  text-transform: uppercase;
}


.collaboration-content h3 {
  margin:
    0 0
    17px;

  font-family: "Cinzel", serif;

  font-size:
    clamp(1.3rem, 1.8vw, 1.8rem);

  font-weight: 400;

  line-height: 1.25;

  color: #f5f1e8;
}


/* =========================================================
   META
========================================================= */

.collaboration-meta {
  display: flex;

  flex-wrap: wrap;

  gap:
    8px
    18px;

  margin-bottom: 18px;
}


.collaboration-meta span {
  display: flex;

  align-items: center;

  gap: 7px;

  font-family: "Inter", sans-serif;

  font-size: 0.72rem;

  letter-spacing: 1px;

  color:
    rgba(255, 255, 255, 0.72);
}


.collaboration-meta i {
  color: #d6aa18;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.collaboration-description {
  margin:
    0 0
    22px;

  font-family: "Inter", sans-serif;

  font-size: 0.88rem;
  font-weight: 300;

  line-height: 1.7;

  color:
    rgba(255, 255, 255, 0.65);
}


/* =========================================================
   LINK
========================================================= */

.collaboration-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-family: "Inter", sans-serif;

  font-size: 0.68rem;
  font-weight: 500;

  letter-spacing: 3px;

  color: #d6aa18;

  text-decoration: none;
}


.collaboration-link span {
  font-size: 1rem;
}


/* =========================================================
   CTA
========================================================= */

.collaborations-cta {
  margin-top: 65px;

  padding:
    34px 38px;

  display: grid;

  grid-template-columns:
    auto
    1.2fr
    1fr
    auto;

  align-items: center;

  gap: 30px;

  border:
    1px solid
    rgba(214, 170, 24, 0.48);

  background:
    rgba(255, 255, 255, 0.015);
}


.collaborations-cta-symbol {
  color: #d6aa18;

  font-size: 1.5rem;
}


.collaborations-cta-heading p {
  margin:
    0 0
    7px;

  font-family: "Inter", sans-serif;

  font-size: 0.65rem;

  letter-spacing: 4px;

  color: #d6aa18;
}


.collaborations-cta-heading h3 {
  margin: 0;

  font-family: "Cinzel", serif;

  font-size:
    clamp(1.4rem, 2vw, 2rem);

  font-weight: 400;

  color: #f5f1e8;
}


.collaborations-cta-copy {
  margin: 0;

  padding-left: 30px;

  border-left:
    1px solid
    rgba(214, 170, 24, 0.28);

  font-family: "Inter", sans-serif;

  font-size: 0.88rem;
  font-weight: 300;

  line-height: 1.7;

  color:
    rgba(255, 255, 255, 0.67);
}


.collaborations-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  padding:
    16px 22px;

  border:
    1px solid
    rgba(214, 170, 24, 0.7);

  font-family: "Inter", sans-serif;

  font-size: 0.68rem;
  font-weight: 500;

  letter-spacing: 3px;

  color: #d6aa18;

  text-decoration: none;

  white-space: nowrap;
}

/* =========================================================
   EVENTS SECTION
========================================================= */
.events-section {
  background: #0b0b0b;
}

.events-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 65px;
}

.events-header h2 {
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 5vw, 4rem
  );
  font-weight: 400;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 24, 0.25);
  background: #131313;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.event-card:hover {
  transform: translateY(-7px);
  border-color: rgba(214, 170, 24, 0.75);
}

.event-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.event-card-content {
  padding: 22px;
}

.event-card-content h3 {
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.event-card-content p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.event-date {
  display: block;
  margin-top: 15px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d6aa18;
}


/* =========================================================
   VISION SECTION
========================================================= */
.vision-section {
  padding: 150px 30px;
  text-align: center;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.88)
    ),
    url("../images/grupp.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vision-content {
  max-width: 850px;
  margin-inline: auto;
}

.vision-content p {
  margin-inline: auto;
  margin-bottom: 45px;
}


/* =========================================================
   DISCOVER VIDEO MODAL
========================================================= */
.discover-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.93);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.discover-video-modal.active {
  opacity: 1;
  visibility: visible;
}

.discover-video-modal-content {
  position: relative;
  width: min( 100%,  1100px);
  aspect-ratio: 16 / 9;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.discover-video-modal.active
.discover-video-modal-content {
  transform: scale(1);
}

.discover-video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.7);
}

/* =========================================================
   VIDEO CLOSE
========================================================= */
.discover-video-close {
  position: absolute;
  right: -10px;
  top: -55px;
  border: 0;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 200;
  color: #fff;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.discover-video-close:hover {
  color: #d6aa18;
  transform: rotate(90deg);
}

.story-images-mobile {
  display: none;
}

.story-images-desktop {
  display: block;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 950px) {

  .discover-hero-section {
    min-height: 700px;
  }

  .discover-hero-inner {
    width: calc(100% - 50px);
    grid-template-columns: 1fr auto;
    gap: 30px;
  }

  .discover-watermark {
    width: 48vw;
  }

  .discover-play-button {
    width: 125px;
    height: 125px;
  }

  .discover-play-circle,
  .discover-pulse {
    width: 90px;
    height: 90px;
  }

  .discover-grid { 
    grid-template-columns: 1fr; gap: 50px;
  }

  .discover-grid.reverse .discover-copy,
  .discover-grid.reverse .discover-image {
    order: initial;
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-image img {
    height: 500px;
  }

  .philosophy-pillars {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 55px;
}

.philosophy-item:nth-child(2) {
  border-right: 0;
}

.philosophy-item:nth-child(3),
.philosophy-item:nth-child(4) {
  padding-top: 20px;
}
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 700px) {

.founder-image-right {
  display: none;
}

.founder-layout {
  display: block;
}

.founder-image-left {
  float: left;
  width: 135px;
  height: 260px;
  margin:0 22px 15px -5px;
}

.founder-image-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-kicker,
.founder-name,
.founder-role {
  text-align: center;
}

.founder-decoration {
  margin-left: auto;
  margin-right: auto;
}

.founder-text-columns {
  display: block;
}

.founder-text-column:first-child {
  padding-right: 0;
  border-right: 0;
}

.founder-text-column:last-child {
  padding-left: 0;
}

.founder-text-column p {
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.8;
}

  .discover-hero-section {
    min-height: 760px;
    height: auto;
    padding:120px 0 100px;
  }

  .discover-hero-bg {
    background-position: 23% center;
  }

  .discover-hero-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .discover-hero-copy {
    padding-bottom: 0;
  }

  .discover-eyebrow {
    margin-bottom: 18px;
    letter-spacing: 4px;
  }

  .discover-hero-copy h1 {
    font-size: clamp(
      3.2rem,
      15vw,
      5rem
   );
    letter-spacing: 2px;
  }


  .discover-gold-line {
    width: 75%;
    margin: 28px 0 25px;
  }

  .discover-lead {
    font-size: 1.1rem;
  }

.discover-video-area {
  justify-self: end;
  align-items: center;
  margin-left: 0;
  margin-right: 10px;
}

.discover-play-button {
  margin-left: 0;
}

  .discover-scroll {
    bottom: 20px;
  }

  .discover-hero-section .language-switcher {
    top: 18px;
    right: 18px;
    gap: 7px;
  }

  .discover-section {
    padding: 80px 20px;
  }

  .discover-image img {
    height: 400px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .story-images-desktop {
    display: none;
  }

  .story-images-mobile {
    display: block;
    float: right;
    position: relative;
    width: 135px;
    height: 120px;
    margin:8px 0 1px 1px;
  }

  .story-img-mobile {
    position: absolute;
    width: 78px;
    height: 102px;
    object-fit: cover;
    border: 4px solid #f1eee7;
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.45);
  }

  .story-img-mobile-back {
    left: 0;
    bottom: 0;
    transform: rotate(-7deg);
  }

  .story-img-mobile-front {
    right: 0;
    bottom: 0;
    transform: rotate(7deg);
  }

  .story-text {
    text-align: left;
  }


  .story-section {
    padding: 60px 0 80px;
  }

  .story-container {
    width: calc(100% - 28px);
    margin-inline: auto;
    display: block;
  }

  .story-box {
    width: 100%;
    min-height: auto;
    padding: 0;
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(214, 170, 24, 0.65);
    box-shadow:0 20px 45px rgba(0, 0, 0, 0.35);
    overflow: hidden;
  }

  .story-box::before {
    inset: 6px;
    border: 1px solid rgba(214, 170, 24, 0.20);
  }

  .story-box-inner {
    width: 100%;
    padding: 24px 12px 16px;
    box-sizing: border-box;
    text-align: center;
  }

  .story-kicker {
    margin-bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 5px;
  }

  .story-decoration {
    width: 180px;
    margin: 0 auto 25px;
  }

  .story-title {
    font-size:
      clamp(2rem, 9vw, 3rem);
    line-height: 1.15;
    letter-spacing: 1.5px;
  }

  .story-title span {
    margin-top: 7px;
  }

  .story-small-line {
    width: 65px;
    margin:28px auto    25px;
  }

/* =========================================
   ELEGGUÁ QUOTE - MOBILE
========================================= */

.founder-orisha-quote {
  width: 100%;

  min-height: 0;

  margin:
    55px auto
    0;

  padding:
    22px
    18px;

  display: grid;

  grid-template-columns:
    105px
    minmax(0, 1fr);

  align-items: center;

  gap: 18px;

  box-sizing: border-box;

  border:
    1px solid rgba(214, 170, 24, 0.65);
}


/* BILD */

.orisha-quote-image {
  width: 105px;
  height: 145px;

  overflow: hidden;
}

.orisha-quote-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}


/* TEXTSIDAN */

.orisha-quote-content {
  min-width: 0;

  max-width: none;

  margin: 0;

  text-align: center;
}


.orisha-quote-mark {
  margin-bottom: -3px;

  font-size: 2.5rem;

  line-height: 0.8;
}


.orisha-quote-content blockquote {
  margin: 0;

  font-size:
    clamp(0.92rem, 3.8vw, 1.15rem);

  line-height: 1.45;

  letter-spacing: 0;

  overflow-wrap: normal;
  word-break: normal;
}


.orisha-quote-decoration {
  gap: 7px;

  margin:
    16px auto
    11px;
}


.orisha-quote-decoration span {
  width: 27px;
}


.orisha-quote-credit {
  font-size: 0.48rem;

  line-height: 1.6;

  letter-spacing: 1.7px;
}

  .philosophy-section {
  padding:    80px 20px 90px;
}

.philosophy-heading {
  margin-bottom: 55px;
}

.philosophy-heading h2 {
  font-size:
    clamp(2.4rem, 10vw, 3.5rem);
}

.philosophy-intro {
  font-size: 0.92rem;
}

.philosophy-pillars {
  grid-template-columns: 1fr;
  gap: 0;
}

.philosophy-item {
  padding:
    35px 15px;
  border-right: 0 !important;
  border-bottom:
    1px solid
    rgba(214, 170, 24, 0.22);
}

.philosophy-item:first-child {
  padding-top: 0;
}

.philosophy-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.philosophy-item p {
  max-width: 320px;
}

  /* =====================================
     TEXTEN FLYTER RUNT BILDERNA
  ===================================== */
  .story-text {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.8;
    color:
      rgba(255, 255, 255, 0.78);
    text-align: left;
  }

/* =========================================
   CULTURE - MOBILE
========================================= */
.culture-carousel-section {
  padding: 80px 0 90px;
}

.culture-carousel-container {
  width: 100%;
}

.culture-heading {
  width: calc(100% - 40px);
  margin:  0 auto 45px;
}

.culture-heading h2 {
  font-size:clamp(2.2rem, 9vw, 3.3rem);
  line-height: 1.1;
}

.culture-intro {
  font-size: 0.9rem;
}

/* dölj sidobilder */
.culture-preview {
  display: none;
}


/* huvudområdet */
.culture-carousel {
  position: relative;
  display: block;
  width: 100%;
  padding:
    0 55px;
}

/* stora bilden */
.culture-main {
  width: 100%;
  height: auto;
  margin: 0;
  overflow: visible;
}

.culture-slide {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border:1px solid
rgba(214, 170, 24, 0.55);
    border-radius: 6px;
}

.culture-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* mörkare gradient längst ner */
.culture-slide-overlay {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.72) 38%,
      rgba(0,0,0,0.12) 70%,
      rgba(0,0,0,0.02) 100%
    );
}

/* text nere på bilden */
.culture-slide-content {
  left: 22px;
  right: 22px;
  bottom: 24px;
  width: auto;
  max-width: none;
  transform: none;
  top: auto;
}

.culture-count {
  margin-bottom: 10px;
  font-size: 0.68rem;
}

.culture-slide-content h3 {
  font-size:clamp(1.9rem, 8vw, 2.7rem);
  letter-spacing: 2px;
}

.culture-slide-line {
  width: 45px;
  margin:14px 0 14px;
}

.culture-slide-content p {
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 100%;
}

/* =========================================
   PILARNA PÅ SIDAN
========================================= */
.culture-arrow {
  position: absolute;
  top: 50%;
  transform:translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  background:rgba(9, 9, 9, 0.85);
    border:1px solid rgba(214, 170, 24, 0.75);
}

.culture-arrow:hover {
  transform:
    translateY(-50%);
}

/* vänster */
.culture-arrow-left {
  left: 5px;
}

/* höger */
.culture-arrow-right {
  right: 5px;
}

/* pagination */
.culture-pagination {
  margin-top: 26px;

  gap: 17px;
}

.culture-dot {
  font-size: 0.68rem;
}  

/* =========================================
   OUR CLASSES - MOBILE
========================================= */

.classes-discover-section {
  padding: 75px 18px 85px;
}

.classes-discover-heading {
  margin-bottom: 45px;
}

.classes-discover-heading h2 {
  font-size: clamp(2.2rem, 10vw, 3.2rem);
}

.classes-intro {
  font-size: 0.92rem;
  line-height: 1.7;
}


/* EN KLASS PER RAD */

.classes-discover-grid {
  display: grid;

  grid-template-columns: 1fr;

  column-gap: 0;
  row-gap: 0;

  width: 100%;
  max-width: 100%;

  margin-inline: auto;
}


/* TA BORT VERTIKALA MITTLINJEN */

.classes-discover-grid::before {
  display: none;
}


/* VARJE KLASS */

.class-discover-item {
  min-height: auto;

  padding:
    34px 12px
    36px;

  border-top:
    1px solid rgba(214, 170, 24, 0.55);
}


.class-content {
  width: 100%;

  text-align: center;
}


.class-content h3 {
  font-size: 1.65rem;

  line-height: 1.2;

  margin-bottom: 12px;
}


.class-keywords {
  font-size: 0.68rem;

  line-height: 1.7;

  letter-spacing: 2.5px;

  margin-bottom: 16px;
}


.class-description {
  max-width: 330px;

  margin-inline: auto;

  font-size: 0.91rem;

  line-height: 1.7;
}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

  .discover-hero-section .language-btn {
    width: 31px;
    height: 31px;
  }

  .discover-hero-section .language-btn img {
    width: 23px;
    height: 23px;
  }

  .discover-hero-copy h1 {
    font-size: 3rem;
  }

  .discover-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }

  .discover-watch-text {
    font-size: 0.72rem;

    letter-spacing: 3px;
  }

  .discover-section {
    padding: 65px 18px;
  }

}