@font-face {
  font-family: "ZT Editorial";
  src: url("../fonts/zt-editorial-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "ZT Editorial";
  src: url("../fonts/zt-editorial-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "ZT Sans";
  src: url("../fonts/zt-sans-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "ZT Sans";
  src: url("../fonts/zt-sans-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: dark;
  scroll-behavior: smooth;
  --zt-bg: #050507;
  --zt-bg-soft: #0a0a0d;
  --zt-bg-deep: #020203;
  --zt-surface: rgba(10, 10, 14, 0.62);
  --zt-surface-strong: rgba(15, 15, 20, 0.82);
  --zt-border: rgba(255, 255, 255, 0.05);
  --zt-border-strong: rgba(255, 255, 255, 0.1);
  --zt-text: #f9f6f2;
  --zt-text-soft: rgba(249, 246, 242, 0.82);
  --zt-text-muted: rgba(249, 246, 242, 0.72);
  --zt-accent: #c5a982;
  --zt-accent-strong: #f1e4d1;
  --zt-accent-soft: rgba(197, 169, 130, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "ZT Sans", "Manrope", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 18% 0%, rgba(191, 160, 122, 0.12), transparent 26%), radial-gradient(circle at 82% 12%, rgba(168, 124, 116, 0.08), transparent 26%), linear-gradient(180deg, #020203 0%, #050507 26%, #0a0a0d 100%);
  color: #f9f6f2;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

main {
  overflow: clip;
}

.container {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1100;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #c5a982;
  color: #111;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 2rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(5, 5, 7, 0.8);
  backdrop-filter: blur(20px);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.site-header.is-scrolled {
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand-logo {
  height: 3.5rem;
  width: auto;
  transition: height 0.4s ease;
}

.is-scrolled .brand-logo {
  height: 2.5rem;
}

.header-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1rem;
  padding-block: 0.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 44px;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: #f1e4d1;
  background: radial-gradient(circle at top, rgba(191, 160, 122, 0.3), transparent 62%), rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: rgba(249, 246, 242, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f9f6f2;
  box-shadow: none;
}

.nav-toggle-box {
  position: relative;
  display: inline-flex;
  width: 1.4rem;
  height: 1rem;
}

.nav-toggle-box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle-box span:nth-child(1) {
  top: 0.1rem;
}

.nav-toggle-box span:nth-child(2) {
  top: 0.5rem;
}

.nav-toggle-box span:nth-child(3) {
  top: 0.9rem;
}

.nav-toggle[aria-expanded=true] .nav-toggle-box span:nth-child(1) {
  top: 0.5rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle-box span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .nav-toggle-box span:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-45deg);
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1 1 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    justify-content: flex-start;
  }
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.15rem;
  color: rgba(249, 246, 242, 0.72);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 217, 191, 0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
@media (max-width: 991px) {
  .site-nav a::after {
    display: none;
  }
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #f9f6f2;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.brand-cta {
  flex-shrink: 0;
}

.hero-section {
  position: relative;
  isolation: isolate;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 100svh;
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050507 0%, rgba(5, 5, 7, 0.8) 40%, rgba(5, 5, 7, 0.2) 100%);
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-section::before {
    background: linear-gradient(180deg, #050507 0%, rgba(5, 5, 7, 0.7) 50%, #050507 100%);
    z-index: 0;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
}

.hero-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  z-index: 0;
}
@media (max-width: 991px) {
  .hero-visual {
    position: relative;
    width: 100%;
    height: 45vh;
    margin-top: 2rem;
    order: 2;
  }
}

.hero-cutout {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
}
@media (max-width: 991px) {
  .hero-cutout {
    opacity: 1;
    object-position: center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-content {
    order: 1;
  }
}

.hero-content h1 {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 300;
  line-height: 0.85;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: clamp(3.5rem, 18vw, 6rem);
    margin-bottom: 1.5rem;
  }
}

.hero-editorial-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 50rem;
}
@media (max-width: 991px) {
  .hero-editorial-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-inline: auto;
  }
}

.editorial-line {
  flex-shrink: 0;
  width: 1px;
  height: 6rem;
  background: #c5a982;
}
@media (max-width: 991px) {
  .editorial-line {
    height: 3rem;
  }
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(249, 246, 242, 0.82);
}
@media (max-width: 991px) {
  .hero-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

.hero-footer {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.scroll-cue {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(249, 246, 242, 0.72);
  position: relative;
  padding-bottom: 3rem;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, #c5a982, transparent);
}

/* Animations */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-title {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-line {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s ease 0.4s;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.5s ease 0.6s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0) scale(1);
}

.process-editorial-step.reveal-fade {
  transition-delay: 0s;
}

.process-editorial-step.reveal-fade:nth-child(2) {
  transition-delay: 0.1s;
}

.process-editorial-step.reveal-fade:nth-child(3) {
  transition-delay: 0.2s;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(9rem, 15vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.78), rgba(5, 5, 7, 0.92)), radial-gradient(circle at 18% 18%, rgba(197, 169, 130, 0.14), transparent 28%);
  z-index: -1;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.26) contrast(1.1);
}

.page-hero-title {
  margin: 0 0 1rem;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.page-hero-lead {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  color: #c5a982;
  margin-bottom: 2rem;
  max-width: 50rem;
}

.page-hero-copy {
  max-width: 44rem;
  margin: 0;
  color: rgba(249, 246, 242, 0.82);
}

.text-muted {
  color: rgba(249, 246, 242, 0.72) !important;
}

.section-space {
  padding-block: clamp(4.5rem, 7vw, 7.5rem);
}

.section-shell {
  position: relative;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-heading {
  margin-bottom: clamp(2.2rem, 4vw, 3.25rem);
}

.section-title {
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
  text-wrap: balance;
}

.section-copy {
  max-width: 42rem;
  margin: 0;
}

.section-copy--center,
.portfolio-copy {
  margin-inline: auto;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-section {
  position: relative;
}

.portrait-stack {
  position: relative;
  padding-bottom: 1.5rem;
}

.portrait-caption {
  max-width: 19rem;
  margin: -1.2rem 0 0 auto;
  padding-top: 1rem;
  color: rgba(249, 246, 242, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.about-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.metric {
  padding-top: 1.1rem;
}

.metric strong {
  display: block;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f9f6f2;
  margin-bottom: 0.2rem;
}

.metric span {
  color: rgba(249, 246, 242, 0.72);
  font-size: 0.96rem;
}

.meaning-section {
  position: relative;
}

.meaning-layout {
  display: grid;
  gap: 1.8rem;
}

.meaning-copy {
  position: relative;
}

.meaning-copy::before {
  content: "znaczenie";
  position: absolute;
  left: 0;
  top: -3rem;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.03em;
  pointer-events: none;
}

.site-footer {
  padding-block: 1.75rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(249, 246, 242, 0.72);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #f9f6f2;
}

@media (min-width: 768px) {
  .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .meaning-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    align-items: end;
  }
  .footer-shell {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .header-shell {
    flex-wrap: nowrap;
  }
  .header-menu.collapse {
    display: flex !important;
  }
  .site-nav {
    justify-content: center;
    flex: 1 1 auto;
  }
  .hero-content {
    padding-right: 2rem;
  }
  .hero-note {
    margin-inline: 0;
  }
  .trust-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
  }
  .trust-list li {
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  .header-shell {
    justify-content: space-between;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-menu {
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.86));
    backdrop-filter: blur(20px);
  }
  .header-menu.collapsing,
  .header-menu.collapse.show {
    display: block;
  }
  .site-nav a {
    padding: 0.8rem 0;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
  }
  .brand-copy small {
    letter-spacing: 0.14em;
  }
  .brand-cta {
    width: 100%;
    margin-top: 1rem;
  }
  .hero-visual {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(88vw, 470px);
    transform: translateX(-50%);
    opacity: 1;
  }
  .hero-visual-note {
    display: none;
  }
  .hero-content {
    padding-bottom: clamp(10rem, 26vw, 13rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid #f1e4d1;
  outline-offset: 3px;
}

.btn {
  --bs-btn-padding-y: 1.1rem;
  --bs-btn-padding-x: 2rem;
  --bs-btn-font-size: 0.8rem;
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 1.2;
  --bs-btn-border-radius: 0;
  --bs-btn-box-shadow: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-brand {
  --bs-btn-color: #050507;
  --bs-btn-bg: #c5a982;
  --bs-btn-border-color: #c5a982;
  --bs-btn-hover-color: #050507;
  --bs-btn-hover-bg: #f1e4d1;
  --bs-btn-hover-border-color: #f1e4d1;
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 169, 130, 0.3);
}

.btn-outline-light {
  --bs-btn-color: #f9f6f2;
  --bs-btn-border-color: rgba(255, 255, 255, 0.2);
  --bs-btn-hover-bg: white;
  --bs-btn-hover-color: black;
}

.font-heading {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
}

.letter-spacing-2 {
  letter-spacing: 0.18em;
}

.hover-accent {
  transition: color 0.3s ease;
}

.hover-accent:hover {
  color: #c5a982;
}

.media-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(10, 10, 14, 0.62);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-visual-glow {
  position: absolute;
  right: 8%;
  bottom: 15%;
  width: min(28rem, 40vw);
  height: min(28rem, 40vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 169, 130, 0.26), rgba(197, 169, 130, 0));
  filter: blur(28px);
  pointer-events: none;
}

.process-editorial-list {
  display: grid;
  gap: 0;
}

.process-editorial-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-editorial-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-num {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  color: #c5a982;
}

.process-body h3 {
  margin: 0 0 0.35rem;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.process-body p {
  margin: 0;
  color: rgba(249, 246, 242, 0.72);
}

.contact-editorial {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(10, 10, 14, 0.62);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-editorial--light {
  background: #f9f6f2;
  color: #050507;
  backdrop-filter: none;
  border: none;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}
.contact-editorial--light .section-title {
  color: #050507;
}
.contact-editorial--light .section-label {
  color: #8c6a4a;
}
.contact-editorial--light .section-label::before {
  background: #8c6a4a;
}
.contact-editorial--light .section-copy {
  color: rgba(5, 5, 7, 0.7);
}
.contact-editorial--light .border-end {
  border-color: rgba(5, 5, 7, 0.1) !important;
}
.contact-editorial--light .form-control {
  color: #050507;
  border-bottom-color: rgba(5, 5, 7, 0.15);
}
.contact-editorial--light .form-control:focus {
  border-bottom-color: #8c6a4a;
}
.contact-editorial--light .form-floating-group label {
  color: rgba(5, 5, 7, 0.45);
}
.contact-editorial--light .form-floating-group .form-control:focus + label,
.contact-editorial--light .form-floating-group .form-control:not(:placeholder-shown) + label {
  color: #8c6a4a;
}
.contact-editorial--light .custom-radio .radio-label {
  color: rgba(5, 5, 7, 0.6);
}
.contact-editorial--light .custom-radio input:checked + .radio-label {
  color: #8c6a4a;
  border-bottom-color: #8c6a4a;
}
.contact-editorial--light .contact-item span {
  color: rgba(5, 5, 7, 0.5);
}
.contact-editorial--light .contact-item p,
.contact-editorial--light .contact-item a {
  color: #050507;
}
.contact-editorial--light .contact-item p:hover,
.contact-editorial--light .contact-item a:hover {
  color: #8c6a4a;
}
.contact-editorial--light .small.text-muted {
  color: rgba(5, 5, 7, 0.5) !important;
}

.editorial-form {
  position: relative;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 3rem;
  margin-top: 4rem;
}

.portfolio-item {
  position: relative;
  width: calc(50% - 1.5rem);
}

.portfolio-item:nth-child(even) {
  margin-top: 12rem;
}

@media (max-width: 767.98px) {
  .portfolio-grid {
    gap: 4rem 0;
  }
  .portfolio-item {
    width: 100%;
  }
  .portfolio-item:nth-child(even) {
    margin-top: 0;
  }
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  background: #0a0a0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(197, 169, 130, 0.15);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.5s ease;
}

.portfolio-card:hover::after {
  border-color: rgba(197, 169, 130, 0.5);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: grayscale(0.3) contrast(1.1);
}

.portfolio-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1);
}

.portfolio-info {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.portfolio-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 1px;
  background: #c5a982;
}

.portfolio-num {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: #c5a982;
  line-height: 1;
  padding-top: 1.5rem;
}

.portfolio-info > div {
  padding-top: 1.5rem;
}

.portfolio-info h3 {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 0.3rem;
  color: #f9f6f2;
}

.portfolio-info span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(249, 246, 242, 0.72);
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: #c5a982;
  color: #050507;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 2;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .experience-badge {
    right: 0;
    bottom: 1rem;
    padding: 1rem;
  }
}

.experience-badge strong {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .experience-badge strong {
    font-size: 1.8rem;
  }
}

.experience-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 991px) {
  .experience-badge span {
    font-size: 0.6rem;
  }
}

.esoterics-section {
  background: radial-gradient(circle at center, #0a0a0d 0%, #050507 100%);
  position: relative;
  overflow: hidden;
}

#constellation-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.esoteric-box {
  padding: clamp(3rem, 8vw, 6rem);
  border: 1px solid rgba(197, 169, 130, 0.15);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .esoteric-box {
    padding: 2.5rem 1.5rem;
  }
}

.esoteric-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c5a982' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.esoteric-story .lead-text {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #f1e4d1;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .esoteric-story .lead-text {
    font-size: 1.35rem;
  }
}

.story-text {
  column-count: 1;
  gap: 3rem;
  text-align: left;
  color: rgba(249, 246, 242, 0.72);
}
@media (max-width: 991px) {
  .story-text {
    font-size: 0.95rem;
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .story-text {
    column-count: 2;
  }
}
.course-card {
  background: #0a0a0d;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .course-card {
    padding: 2rem;
  }
}

.course-card--gold {
  border-color: rgba(197, 169, 130, 0.2);
}

.course-card:hover {
  border-color: #c5a982;
  transform: translateY(-10px);
}

.course-level {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c5a982;
  display: block;
  margin-bottom: 1rem;
}

.course-header h3 {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.course-features li {
  margin-bottom: 2rem;
}

.course-features strong {
  display: block;
  font-size: 1.1rem;
  color: #f9f6f2;
  margin-bottom: 0.5rem;
}

.course-features .price {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: #f1e4d1;
}

.detail-grid {
  display: grid;
  gap: 1.5rem;
}

.detail-grid--split {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.detail-grid--triple {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.detail-card,
.page-highlight,
.academy-package,
.legal-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(10, 10, 14, 0.62);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-card,
.page-highlight {
  padding: 2rem;
}

.detail-card h2,
.detail-card h3,
.page-highlight strong,
.academy-package h3,
.legal-list h2 {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
}

.detail-card h2,
.detail-card h3 {
  font-size: 1.7rem;
  margin: 0 0 0.85rem;
}

.detail-card p,
.page-highlight p,
.package-intro,
.package-listing p,
.legal-list p {
  margin: 0;
  color: rgba(249, 246, 242, 0.72);
}

.page-highlight {
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
}

.page-highlight span {
  color: #c5a982;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-highlight strong {
  font-size: 1.9rem;
  line-height: 1.1;
}

.package-stack {
  display: grid;
  gap: 2rem;
}

.package-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.academy-package {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.academy-package--primary {
  border-color: rgba(197, 169, 130, 0.24);
}

.academy-package--accent {
  background: linear-gradient(180deg, rgba(197, 169, 130, 0.08), rgba(255, 255, 255, 0.015)), rgba(10, 10, 14, 0.78);
  border-color: rgba(197, 169, 130, 0.18);
}

.academy-package-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.academy-package-header h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 0 0 0.25rem;
}

.package-duration {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c5a982;
  opacity: 0.8;
  margin: 0;
}

.package-grid .academy-package-header {
  min-height: auto;
  margin-bottom: 2rem;
}

.package-listing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.package-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.package-price {
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: #f1e4d1;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.package-price span {
  font-family: "ZT Sans", "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.package-price del {
  font-size: 1rem;
  color: rgba(249, 246, 242, 0.72);
  text-decoration: line-through;
  opacity: 0.7;
}

.package-listing h4 {
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c5a982;
  opacity: 0.8;
}

.package-listing ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(249, 246, 242, 0.82);
  font-size: 0.9rem;
}

.package-listing li + li {
  margin-top: 0.55rem;
}

.page-cta-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(10, 10, 14, 0.62);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-cta-band--light {
  background: #f9f6f2;
  color: #050507;
  backdrop-filter: none;
  border: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}
.page-cta-band--light h2,
.page-cta-band--light h3 {
  color: #050507;
}
.page-cta-band--light .eyebrow {
  color: #8c6a4a;
}
.page-cta-band--light .eyebrow::before {
  background: #8c6a4a;
}
.page-cta-band--light p:last-child {
  color: rgba(5, 5, 7, 0.6);
}
.page-cta-band--light .btn-outline-light {
  --bs-btn-color: #050507;
  --bs-btn-border-color: rgba(5, 5, 7, 0.15);
  --bs-btn-hover-bg: #050507;
  --bs-btn-hover-color: white;
}

.page-cta-band h2,
.page-cta-band h3 {
  margin: 0 0 0.6rem;
  font-family: "ZT Editorial", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.page-cta-band p:last-child {
  color: rgba(249, 246, 242, 0.72);
}

.legal-shell {
  padding: clamp(2rem, 4vw, 3rem);
}

.legal-section + .legal-section {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-list {
  display: grid;
  gap: 1.25rem;
}

.legal-list article {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-list h2 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
}

.color-accent {
  color: #c5a982;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 991px) {
  .portfolio-item {
    width: 100%;
  }
  .portfolio-item:nth-child(even) {
    margin-top: 0;
  }
  .process-editorial-step {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .contact-editorial {
    padding-inline: 1.5rem;
  }
  .contact-editorial .border-end {
    border-end: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0 none !important;
  }
}
@media (min-width: 768px) {
  .detail-grid--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .academy-package-header {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
  .page-cta-band {
    flex-direction: row;
    align-items: center;
  }
}
.form-floating-group {
  position: relative;
  margin-top: 1rem;
}

.form-floating-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 1.5rem 0 0.5rem;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-floating-group label {
  position: absolute;
  top: 1.5rem;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-floating-group .form-control:focus,
.form-floating-group .form-control:not(:placeholder-shown) {
  border-bottom-color: #c5a982;
  outline: none;
  box-shadow: none;
}

.form-floating-group .form-control:focus + label,
.form-floating-group .form-control:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.65rem;
  color: #c5a982;
}

.custom-radio {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.custom-radio input {
  display: none;
}

.custom-radio .radio-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.custom-radio input:checked + .radio-label {
  color: #c5a982;
  border-bottom-color: #c5a982;
}

.contact-item p,
.contact-item a {
  font-size: 1.1rem;
  color: #f9f6f2;
}

.contact-item a:hover {
  color: #c5a982;
}

.form-status {
  padding: 0.95rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-status--success {
  background: rgba(92, 129, 100, 0.18);
  color: #d9eedb;
  box-shadow: inset 0 0 0 1px rgba(124, 181, 136, 0.2);
}

.form-status--error {
  background: rgba(146, 92, 92, 0.18);
  color: #f3d7d7;
  box-shadow: inset 0 0 0 1px rgba(190, 120, 120, 0.18);
}

.form-error {
  margin: 0.6rem 0 0;
  color: #e7b3b3;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-floating-group .form-control.is-invalid {
  border-bottom-color: rgba(231, 179, 179, 0.85);
}
