
/* ============================================================
   CSS CUSTOM PROPERTIES
   Edit these variables to retheme the entire site
   ============================================================ */
   
@font-face {
  font-family: 'Sohne-Regular';
  src: url('/fonts/soehne-buch.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Sohne-Medium';
  src: url('/fonts/soehne-kraftig.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Sohne-Bold';
  src: url('/fonts/soehne-halbfett.woff2') format('woff2');
  font-display: swap;
}
:root {
  --font-display: 'Sohne-Bold', Helvetica, sans-serif;
  --font-body:    'Sohne-Regular', Helvetica, sans-serif;
  --font-ui:      'Sohne-Medium', Helvetica, sans-serif;
  --color-bg:             #0a0a0a;
  --color-text:           #ffffff;
  --color-muted:          rgba(255, 255, 255, 0.65);
  --color-divider:        rgba(255, 255, 255, 0.08);
  --color-btn-bg:         rgba(255, 255, 255, 0.12);
  --color-btn-border:     #ffffff;
  --color-btn-hover:      rgba(255, 255, 255, 0.25);
  --color-overlay-top:    rgba(0, 0, 0, 0.65);
  --color-overlay-bottom: rgba(0, 0, 0, 0.45);

  --nav-height: 80px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}



/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 4px;
  background: var(--color-bg);
}

/* Logo image */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* Nav links */
.nav__links {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  list-style: none;
}

.nav__links a {
  font-size: clamp(20px, 1.3vw, 25px);
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-text);
  transition: width 0.25s ease;
}

.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

/* Hamburger toggle — hidden on desktop */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav__toggle-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 98;
}

.nav__close-item {
  display: none;
}

@media (max-width: 680px) {
  .nav__overlay.is-open {
    display: block;
  }
  
 .nav__close-item {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 24px;
    right: 35px;
	
  }

  .nav__close-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 60px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    opacity: 0.8;
  }

}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
    top: var(--nav-height);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) brightness(0.82);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    var(--color-overlay-top)    0%,
    rgba(0, 0, 0, 0.10)         45%,
    var(--color-overlay-bottom) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 4vw, 60px);
  max-width: 1100px;
  width: 100%;
  animation: fadeUp 1s ease both;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  white-space: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__subline {
 font-family: var(--font-body);
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 36px;
}

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 1.2vw, 14px);
   font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-btn-bg);
  border: 1.5px solid var(--color-btn-border);
  border-radius: 40px;
  padding: 14px 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  animation: fadeUp 1.4s 0.6s ease both;
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@media (max-width: 680px) {
  .hero__bg img {
    object-position: 55% top;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.55; }
  50%       { transform: scaleY(1.3); opacity: 0.9;  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}



/* Tagline strip */
.footer__tagline-strip {
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 6vw, 80px);
  border-bottom: 1px solid var(--color-divider);
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.01em;
  text-align: center;
}

/* Link columns */
.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
  gap: 40px;
  border-bottom: 1px solid var(--color-divider);
}

.footer__col-heading {
  font-size: clamp(13px, 1.2vw, 18px);
 font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  font-size: clamp(16px, 1.2vw, 24px);
  font-family: var(--font-body);
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer__col ul a:hover {
  color: var(--color-text);
}

.footer__col--right {
  grid-column: 2;
  grid-row: 1 / 3;
  text-align: right;
}

/* Copyright bar */
.footer__bottom {
  text-align: center;
  padding: 16px clamp(24px, 5vw, 64px) 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__bottom p {
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.footer__msme {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.50) !important;
  letter-spacing: 0.06em !important;
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 680px)
   ============================================================ */
@media (max-width: 680px) {

  /* Nav — hide links, show hamburger */
  .nav__links {
    display: none;
  }

.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  background: rgba(0, 0, 0, 0.96);
  align-items: flex-start;
  justify-content: flex-start;
  padding: calc(var(--nav-height) + 40px) 24px 40px;
  gap: 32px;
  z-index: 99;
}

  .nav__links.is-open a {
   font-size: 24px;
  letter-spacing: 0.12em;
  padding: 8px 0;
  }

  .nav__toggle {
    display: flex;
  }

  /* Logo */
  .logo img {
    height: 70px;
  }

  /* Hero */
 .hero__headline {
  font-size: clamp(24px, 5vw, 36px);
  white-space: normal;
}

  .method__inner {
    width: 100%;
  }

  .studio-video__wrap {
    width: 100%;
  }

  /* Footer */
  .footer__map {
    height: 260px;
  }

 .footer__columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--right {
    grid-column: 2;
    grid-row: 1 / 3;
    text-align: right;
  }

  .nav__toggle-icon {
  width: 64px;
  height: 64px;
  display: block;
}
.nav {
  padding: 0 0px;
}

.footer__col ul a {
  font-size: 13px;
}
.footer__col ul {
  gap: 20px;
}
.footer__bottom p:first-child {
  white-space: nowrap;
  font-size: clamp(11px, 1vw, 13px);
}
.footer__msme {
  font-size: 10px !important;
}
}


/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-heading {
  font-size: clamp(32px, 4vw, 52px);
   font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 16px;
}


/* ============================================================
   THE METHOD
   ============================================================ */
.method {
  border-top: 1px solid var(--color-divider);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.method__inner {
  width: 85%;
}

.method__intro {
  font-size: clamp(15px, 1.5vw, 18px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}

.method__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method__body p {
  font-size: clamp(20px, 1.4vw, 25px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 100%;
}

.method__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
  margin-left: 0;
}

.method__list li {
  font-size: clamp(22px, 1.4vw, 28px);
   font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
}

.method__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-text);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.method__link:hover {
  opacity: 0.7;
}

.method__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.method__link:hover svg {
  transform: translateX(4px);
}


/* ============================================================
   THE WORK
   ============================================================ */
.work {
  border-top: 1px solid var(--color-divider);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.work__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.work__pillars {
  list-style: none;
  border-left: 2px solid #2d5be3;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 10px 24px;
  margin-left: 4px;
}

.work__pillars li {
  font-size: clamp(17px, 1.6vw, 22px);
   font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
}

.work__subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-muted);
}

/* Desktop: 4-column grid */
.work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work__card {
 background: #111111;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.work__card-img {
  width: 100%;
 aspect-ratio: 1/1;
  overflow: hidden;
  padding: 12px 12px 0;
}

.work__card-img img {
 width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.work__card:hover .work__card-img img {
  transform: scale(1.04);
}

.work__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.work__card-body h3 {
  font-size:clamp(24px, 1.4vw, 28px);
   font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.work__card-body h3 span {
   font-family: var(--font-display);
}

.work__card-body p {
  font-size: clamp(20px, 1.4vw, 25px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.6;
}


/* ============================================================
   THE WORK — TABLET SLIDER (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .work__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    /* hide scrollbar visually */
    scrollbar-width: none;
  }

  .work__grid::-webkit-scrollbar {
    display: none;
  }

  .work__card {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
}


/* ============================================================
   THE WORK — MOBILE SLIDER (≤ 680px)
   ============================================================ */
@media (max-width: 680px) {
  .work__card {
    flex: 0 0 82%;
  }
}

/* ============================================================
   STUDIO INVESTMENT
   ============================================================ */
.investment {
  border-top: 1px solid var(--color-divider);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.investment__header {
  margin-bottom: 40px;
}

.investment__subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  font-family: var(--font-body);
  color: var(--color-muted);
  margin-top: 10px;
}

.investment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.investment__card {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.investment__card-label {
  font-size: 11px;
   font-family: var(--font-ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 48px;
}

.investment__card-title {
  font-size: clamp(22px, 2.5vw, 30px);
   font-family: var(--font-display);
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.investment__card-desc {
  font-size: clamp(13px, 1.2vw, 15px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 40px;
}

.investment__card-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}

.investment__card-currency {
  font-size: clamp(18px, 2vw, 24px);
   font-family: var(--font-body);
  color: var(--color-text);
  margin-top: 6px;
}

.investment__card-amount {
  font-size: clamp(40px, 5vw, 64px);
   font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.investment__card-per {
  font-size: 13px;
   font-family: var(--font-body);
  color: var(--color-muted);
  margin-bottom: 40px;
}

.investment__card-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #2d5be3;
  color: #ffffff;
  font-size: clamp(13px, 1.2vw, 15px);
   font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}

.investment__card-btn:hover {
  background: #1e44c8;
}

.investment__notes {
  border-left: 2px solid #2d5be3;
  padding-left: 20px;
  margin-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 85%;
}

.investment__notes-heading {
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-display);
  color: var(--color-text);
  margin-bottom: 4px;
}

.investment__notes p {
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.65;
}

.investment__notes a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  position: relative;
}

.investment__notes a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.25s ease;
}

@media (min-width: 681px) {
  .investment__notes a:hover::after {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .investment__grid {
    grid-template-columns: 1fr;
  }
  .investment__card-btn {
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
}


/* ============================================================
   VIDEO SECTION
   ============================================================ */
.studio-video {
  border-top: 1px solid var(--color-divider);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
  display: flex;
  justify-content: center;
}

.studio-video__wrap {
  width: 70%;
}

.studio-video__wrap video {
  width: 100%;
  display: block;
  outline: none;
  background: #000;
}
@media (max-width: 680px){
	.studio-video__wrap video {
  height: 30vh;
  object-fit: cover;
}
.studio-video__wrap {
	
  width: 99%;
}
}
/* ============================================================
   footer override for tablet
   ============================================================ */

@media (max-width: 1024px) {
  .footer__col ul {
    gap: 16px;
  }
}

/* ============================================================
   faq.css — FAQ accordion, shared between index and faq.html
   ============================================================ */

.faq {
  border-top: 1px solid var(--color-divider);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.faq__header {
  margin-bottom: 40px;
}

/* Accordion list */
.faq__list {
  border: 1px solid rgba(255, 255, 255, 0.20);
  list-style: none;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.faq__item:last-child {
  border-bottom: none;
}

/* Question row */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq__question-text {
  font-family: var(--font-body);
  font-size: clamp(22px, 1.4vw, 25px);
   font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.4;
}

/* +/- icon */
.faq__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;
  opacity: 0.7;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* horizontal bar */
.faq__icon::before {
  width: 18px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* vertical bar — hidden when open */
.faq__icon::after {
  width: 1.5px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Answer panel */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-content {
  padding: 0 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Image — 16:9 */
.faq__answer-img {
  width: min(100%, 640px);
  border-radius: 2px;
  margin: 0 auto;
}

.faq__answer-img img {
  width: 100%;
  height: auto;
  display: block;
}



/* Answer text */
.faq__answer-text {
  font-size: clamp(22px, 1.3vw, 25px);
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.75;
}

.faq__answer-text p + p {
  margin-top: 16px;
}

/* Read more link */
.faq__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(18px, 1.2vw, 22px);
   font-family: var(--font-body);
  color: var(--color-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 4px;
  width: fit-content;
}

.faq__read-more:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

/* Footer — journal link + view all button */
.faq__footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.faq__journal-note {
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-muted);
  text-align: center;
}

.faq__journal-note a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  position: relative;
}

.faq__journal-note a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.25s ease;
}

@media (min-width: 681px) {
  .faq__journal-note a:hover::after {
    width: 100%;
  }
}

.faq__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.40);
  transition: border-color 0.2s;
}

.faq__view-all:hover { border-color: var(--color-text); }

/* Mobile */
@media (max-width: 680px) {
  .faq__question {
    padding: 18px 20px;
  }

  .faq__answer-content {
    padding: 0 20px 28px;
  }
}

/* ============================================================
   process.css — The Process section + Session Details modal
   ============================================================ */


/* ============================================================
   THE PROCESS
   ============================================================ */
.process {
  border-top: 1px solid var(--color-divider);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px);
}

@media (min-width: 1200px) {
  .process {
    max-width: 85vw;
  }
}

.process__header {
  margin-bottom: 28px;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process__step {
  border: 1px solid rgba(255, 255, 255, 0.20);
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: stretch;
}

.process__step-left {
  padding: 28px 32px 32px 28px;
  display: flex;
  flex-direction: column;
  order: 1;
}

.process__step-tag {
  font-size: 11px;
   font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.process__step-num {
  font-size: clamp(24px, 2.5vw, 36px);
   font-family: var(--font-display);
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
}

.process__step-title {
  font-size: clamp(22px, 2vw, 25px);
   font-family: var(--font-display);
  color: var(--color-text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.process__step-desc {
  font-size: clamp(18px, 1.3vw, 22px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.process__step-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.process__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: #2d5be3;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.process__btn-primary:hover { background: #1e44c8; }

.process__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: clamp(12px, 1.1vw, 14px);
    letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.40);
  cursor: pointer;
  transition: border-color 0.2s;
  white-space: nowrap;
}

.process__btn-outline:hover { border-color: var(--color-text); }

.process__step-right {
  overflow: hidden;
  order: 2;
   padding: 12px 12px 12px 0;
}

.process__step-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Tablet stacked — wider ratio */

/* Mobile — text first, image below */
@media (max-width: 900px) {
  .process__step {
    grid-template-columns: 1fr;
  
  }

  .process__step-left {
    order: 1;
    padding: 28px 24px 32px;
  }

  .process__step-right {
    order: 2;
    aspect-ratio: 1 / 1;
     overflow: hidden;
     display: flex;
  justify-content: center;
  align-items: center;
    padding: 12px;
 
  }

  .process__step-actions {
    flex-direction: column;
  }

  .process__btn-primary,
  .process__btn-outline {
    text-align: center;
    width: 100%;
  }

}


/* ============================================================
   SESSION DETAILS MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 4px;
  font-family: var(--font-ui);
}

.modal__close:hover { opacity: 1; }

.modal__section {
  margin-bottom: 40px;
}

.modal__section:last-child { margin-bottom: 0; }

.modal__section-label {
  font-size: clamp(14px, 1.2vw, 16px);
   font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  border-left: 2px solid #2d5be3;
  padding-left: 14px;
  margin-bottom: 20px;
  display: block;
}

.modal__section p {
  font-size: clamp(18px, 1.5vw, 22px);
   font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.75;
}

.modal__section p em {
  font-style: italic;
  color: var(--color-muted);
}

