/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover { opacity: 0.7; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #888;
  display: block;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.text-large {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300;
  color: #e8e4de;
}
.section-header { margin-bottom: 60px; }
.section-cta { text-align: center; margin-top: 60px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 18px 45px;
  border: 1px solid #f0f0f0;
  background: transparent;
  color: #f0f0f0;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}
.btn:hover {
  background: #f0f0f0;
  color: #0a0a0a;
  opacity: 1;
}
.btn--outline {
  border-color: #444;
  color: #aaa;
}
.btn--outline:hover {
  border-color: #f0f0f0;
  color: #0a0a0a;
  background: #f0f0f0;
}
.btn--full { width: 100%; text-align: center; }

/* ===== IMAGE WRAPPERS ===== */
.img-wrapper {
  overflow: hidden;
  position: relative;
}
.img-wrapper:hover .img-placeholder img {
  transform: scale(1.05);
}
.img-placeholder {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  width: 100%;
}
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.img-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.img-placeholder--tall  { min-height: 450px; }
.img-placeholder--wide  { min-height: 500px; }
.img-placeholder--map   {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
}
.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header__logo:hover { opacity: 1; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header__link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #ccc;
  transition: color 0.3s;
}
.header__link:hover { color: #fff; opacity: 1; }
.header__link--cta {
  padding: 10px 25px;
  border: 1px solid #555;
  color: #f0f0f0;
}
.header__link--cta:hover {
  border-color: #f0f0f0;
  background: #f0f0f0;
  color: #0a0a0a;
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header__burger span:first-child { top: 4px; }
.header__burger span:last-child  { bottom: 4px; }
.header__burger.active span:first-child {
  top: 50%;
  transform: rotate(45deg);
}
.header__burger.active span:last-child {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: #0a0a0a;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.mobile-menu__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.mobile-menu__footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
  color: #666;
  font-size: 13px;
}
.mobile-menu__footer p { margin-bottom: 5px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__bg iframe,
.hero__bg video,
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  border: none;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.6);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}
.hero__subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 30px;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(50px, 10vw, 120px);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.hero__title span { display: block; }
.hero__title-studio {
  font-size: clamp(20px, 3.5vw, 48px);
  letter-spacing: 0.4em;
  color: #aaa;
  font-weight: 200;
  margin-top: 10px;
}
.hero__desc {
  font-size: 14px;
  color: #999;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 50px;
  margin-top: 30px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #666;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #666, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50%      { opacity: 1;   transform: scaleY(1);   }
}

/* ===== LEVITATION SECTION ===== */
.levitation {
  padding: 140px 0 0;
  background: #0a0a0a;
}
.levitation__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}
.levitation__heading {
  max-width: 760px;
}
.levitation__intro {
  max-width: 540px;
  margin-left: auto;
}
.levitation__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.35;
  color: #e8e4de;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.levitation__text {
  font-size: 15px;
  line-height: 1.9;
  color: #8b8b8b;
  max-width: 500px;
}
.levitation__gallery {
  position: relative;
}
.levitation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 20px;
  align-items: start;
}
.levitation__item {
  position: relative;
}
.levitation__item--wide {
  padding-top: 0;
}
.levitation__item--narrow {
  padding-top: 90px;
}
.levitation__frame {
  position: relative;
  background: #111;
  border: 1px solid #1f1f1f;
  padding: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 18px 60px rgba(0,0,0,0.28);
}
.levitation__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent 26%);
  z-index: 1;
}
.levitation__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 0;
  transition: transform 0.8s ease, filter 0.4s ease;
  filter: brightness(0.97);
}
.levitation__frame:hover img {
  transform: scale(1.015);
  filter: brightness(1);
}
.levitation__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 56px 0 120px;
  border-top: 1px solid #1e1e1e;
  margin-top: 24px;
}
.levitation__bottom-text {
  max-width: 560px;
}
.levitation__bottom-text p {
  font-size: 16px;
  color: #888;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.levitation__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.lev-doc-btn {
  background: transparent;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== LEVITATION MODAL ===== */
.lev-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}
.lev-modal.is-open {
  visibility: visible;
  pointer-events: all;
}
.lev-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(6px);
}
.lev-modal.is-open .lev-modal__backdrop {
  opacity: 1;
}
.lev-modal__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(700px, 100%);
  background: #0d0d0d;
  border-left: 1px solid #2a2a2a;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a transparent;
}
.lev-modal.is-open .lev-modal__panel {
  transform: translateX(0);
}
.lev-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 50px 40px;
  border-bottom: 1px solid #1e1e1e;
  position: sticky;
  top: 0;
  background: #0d0d0d;
  z-index: 1;
}
.lev-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  color: #f0f0f0;
}
.lev-modal__close {
  background: none;
  border: 1px solid #2a2a2a;
  width: 46px;
  height: 46px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 4px;
}
.lev-modal__close:hover {
  border-color: #f0f0f0;
  background: #f0f0f0;
}
.lev-modal__close:hover span {
  background: #0a0a0a;
}
.lev-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #f0f0f0;
  transition: background 0.3s;
}
.lev-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.lev-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lev-modal__body {
  padding: 0 50px 60px;
}
.lev-modal__hero-text {
  padding: 40px 0;
  border-bottom: 1px solid #1e1e1e;
}
.lev-modal__hero-text p {
  font-size: 18px;
  color: #b0a898;
  font-weight: 300;
  line-height: 1.8;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.03em;
}
.lev-modal__sections {
  padding: 40px 0;
}
.lev-modal__section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 36px 0;
}
.lev-modal__section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.2em;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 26px;
}
.lev-modal__section-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #e8e4de;
  margin-bottom: 16px;
}
.lev-modal__section-content p {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 16px;
}
.lev-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lev-modal__list li {
  font-size: 13px;
  color: #777;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.lev-modal__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #444;
}
.lev-modal__divider {
  height: 1px;
  background: #1e1e1e;
}
.lev-modal__price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.lev-modal__price-item {
  border: 1px solid #2a2a2a;
  padding: 20px;
}
.lev-modal__price-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #555;
  margin-bottom: 10px;
}
.lev-modal__price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #e8e4de;
}
.lev-modal__cta {
  border-top: 1px solid #1e1e1e;
  padding-top: 40px;
  text-align: center;
}
.lev-modal__cta .btn {
  margin-bottom: 16px;
}
.lev-modal__cta p {
  font-size: 12px;
  color: #444;
  letter-spacing: 0.05em;
}
body.modal-open {
  overflow: hidden;
}

/* ===== STUDIO ===== */
.studio { padding: 140px 0; background: #0e0e0e; }
.studio__hero { margin-bottom: 80px; }
.studio__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.studio__intro-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 10px;
}
.studio__stat {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.studio__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #e8e4de;
}
.studio__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
}
.studio__objects-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #888;
  margin-bottom: 40px;
  font-weight: 400;
}
.studio__objects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.studio__object-name {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.05em;
}
.studio__atmosphere { margin-top: 100px; }
.studio__atm-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.studio__atm-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.studio__atm-text p { color: #aaa; margin-bottom: 15px; }
.studio__atm-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== SERVICES ===== */
.services { padding: 140px 0; }
.services__toggle-header {
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
.services__toggle-header:hover .section-title { opacity: 0.8; }
.services__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services__header-icon {
  font-size: 38px;
  font-weight: 200;
  color: #555;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  transition: transform 0.4s ease, color 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}
.services__toggle-header.open .services__header-icon {
  transform: rotate(45deg);
  color: #f0f0f0;
}
.services__list-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.services__list-wrap.open {
  max-height: 1200px;
}
.services__list {
  border-top: 1px solid #2a2a2a;
  margin-top: 40px;
}
.services__item {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #2a2a2a;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}
.services__item:hover {
  padding-left: 20px;
  opacity: 1;
  border-bottom-color: #555;
}
.services__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #555;
  width: 50px;
  flex-shrink: 0;
}
.services__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: 0.08em;
  flex-grow: 1;
}
.services__arrow {
  font-size: 20px;
  color: #555;
  transition: all 0.4s ease;
  margin-left: 20px;
}
.services__item:hover .services__arrow {
  color: #f0f0f0;
  transform: translateX(10px);
}
.services__item--expand { align-items: flex-start; }
.services__expand-wrap { flex: 1; }
.services__expand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services__toggle {
  font-size: 22px;
  color: #555;
  font-weight: 200;
  font-family: 'Inter', sans-serif;
  transition: transform 0.35s ease, color 0.3s;
  line-height: 1;
  margin-left: 16px;
  flex-shrink: 0;
}
.services__item--expand.open .services__toggle {
  transform: rotate(45deg);
  color: #f0f0f0;
}
.services__sub {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 4px;
}
.services__item--expand.open .services__sub { display: flex; }
.services__sub span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #888;
  font-weight: 300;
}

/* ===== PORTFOLIO / PROJECTS ===== */
.portfolio { padding: 140px 0; background: #0e0e0e; }
#portfolioToggle {
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
#portfolioToggle:hover .section-title { opacity: 0.8; }
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.portfolio__filter {
  background: none;
  border: 1px solid #2a2a2a;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s;
}
.portfolio__filter:hover,
.portfolio__filter.active {
  border-color: #f0f0f0;
  color: #f0f0f0;
}
.portfolio__grid--trio {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.portfolio__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.portfolio__item--main {
  display: flex;
  flex-direction: column;
}
.portfolio__item--main .portfolio__video-thumb {
  flex: 1;
  min-height: 500px;
}
.portfolio__item {
  break-inside: avoid;
  cursor: pointer;
}
.portfolio__item.hidden { display: none; }
.portfolio__item-info { padding: 16px 0 8px; }
.portfolio__item-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.portfolio__item-info span {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.portfolio__stack .img-placeholder {
  min-height: 0 !important;
  height: 100%;
}
.portfolio__stack .img-wrapper {
  flex: 1;
}
.portfolio__stack .portfolio__item {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.portfolio__video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}
.portfolio__video-thumb img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.portfolio__video-thumb:hover img {
  filter: brightness(0.85);
  transform: scale(1.03);
}
.portfolio__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, border-color 0.3s;
  pointer-events: none;
}
.portfolio__play svg { margin-left: 5px; }
.portfolio__video-thumb:hover .portfolio__play {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.portfolio__ext-link {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  transition: color 0.3s;
}
.portfolio__video-thumb:hover .portfolio__ext-link {
  color: rgba(255,255,255,0.8);
}
.portfolio__collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
}
.portfolio__collage img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.4s ease;
}
.portfolio__item:hover .portfolio__collage img {
  filter: brightness(0.9);
}

/* ===== BOOKING ===== */
.booking { padding: 140px 0; }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.booking__price-block {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #2a2a2a;
}
.booking__price-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 8px;
}
.booking__price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: #e8e4de;
}
.booking__details {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.booking__detail h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
  font-weight: 400;
  margin-bottom: 5px;
}
.booking__detail p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
}
.booking__extras-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 15px;
}
.booking__extras li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
}
.extra-name {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  flex: 1;
}
.extra-price {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== BOOKING FLOW ===== */
.booking__steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.booking__step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.booking__step.active { opacity: 1; }
.booking__step.done   { opacity: 0.6; }
.step-num {
  width: 30px;
  height: 30px;
  border: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  flex-shrink: 0;
}
.booking__step.active .step-num {
  border-color: #f0f0f0;
  background: #f0f0f0;
  color: #0a0a0a;
}
.booking__step.done .step-num {
  border-color: #444;
  background: #1a1a1a;
  color: #666;
}
.step-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.booking__step-line {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
  margin: 0 12px;
}
.booking__step-content--hidden { display: none; }
.booking__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.booking__back {
  display: inline-block;
  background: none;
  border: none;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
  transition: color 0.3s;
}
.booking__back:hover { color: #f0f0f0; }
.booking__selected-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: #e8e4de;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.booking__selected-info {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: #888;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}
.booking__note {
  margin-top: 14px;
  font-size: 12px;
  color: #555;
}
.booking__privacy {
  margin-top: 14px;
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}

/* ===== CALENDAR ===== */
.calendar {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 24px;
  margin-bottom: 16px;
}
.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.calendar__month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: capitalize;
}
.calendar__nav {
  background: none;
  border: 1px solid #2a2a2a;
  color: #aaa;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
.calendar__nav:hover { border-color: #f0f0f0; color: #f0f0f0; }
.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}
.calendar__weekdays span {
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #444;
  padding: 6px 0;
}
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  position: relative;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.cal-day--past { color: #2a2a2a; cursor: default; }
.cal-day--available { color: #e8e4de; cursor: pointer; }
.cal-day--available:hover { border-color: #555; background: #1a1a1a; }
.cal-day--today { border-color: #444 !important; }
.cal-day--partial {
  color: #f0f0f0 !important;
  border-color: #5a3a1a !important;
  background: rgba(200, 169, 110, 0.08);
}
.cal-day--partial::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a96e;
}
.cal-day--full {
  color: #ffb3b3 !important;
  background: rgba(139, 43, 43, 0.22) !important;
  border-color: #8b2b2b !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 179, 179, 0.5);
}
.cal-day--selected {
  background: #f0f0f0 !important;
  color: #0a0a0a !important;
  border-color: #f0f0f0 !important;
}
.calendar__legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.legend-dot--free    { background: #e8e4de; }
.legend-dot--partial { background: #c8a96e; }
.legend-dot--full    { background: #333; }

/* ===== TIME SLOTS ===== */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.time-slot {
  padding: 13px 6px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  border: 1px solid #2a2a2a;
  background: none;
  transition: all 0.2s;
  cursor: pointer;
}
.time-slot--free {
  color: #e8e4de;
  border-color: #2a2a2a;
  background: transparent;
}
.time-slot--free:hover {
  border-color: #f0f0f0;
  background: #f0f0f0;
  color: #0a0a0a;
}
.time-slot--booked {
  color: #ffb3b3 !important;
  background: rgba(139, 43, 43, 0.22) !important;
  border: 1px solid #8b2b2b !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 179, 179, 0.5);
}
.time-slot--booked:hover {
  color: #ffb3b3 !important;
  background: rgba(139, 43, 43, 0.22) !important;
  border: 1px solid #8b2b2b !important;
}
.time-slots__label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  line-height: 1.7;
  display: block;
}
.time-slot--range-start {
  background: rgba(200,169,110,0.15);
  border-color: #c8a96e;
  color: #c8a96e;
}
.time-slot--end-option {
  color: #e8e4de;
  border-color: #444;
  cursor: pointer;
}
.time-slot--end-option:hover {
  border-color: #c8a96e;
  background: rgba(200,169,110,0.1);
  color: #c8a96e;
}
.time-slot--past,
.time-slot--blocked {
  color: #222;
  border-color: #1a1a1a;
  cursor: not-allowed;
  background: none;
}
.time-range-summary {
  border: 1px solid #c8a96e;
  padding: 28px 24px;
  text-align: center;
}
.time-range-summary__time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #e8e4de;
  letter-spacing: 0.08em;
  line-height: 1;
}
.time-range-summary__hours {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c8a96e;
  margin-top: 12px;
}

/* ===== EXTRAS CHECKBOXES ===== */
.extras-check-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 12px;
  display: block;
}
.extra-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
  line-height: 1.5;
}
.extra-checkbox input[type="checkbox"] {
  width: auto !important;
  accent-color: #f0f0f0;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.extra-checkbox strong { color: #e8e4de; }

/* ===== BOOKING SUCCESS ===== */
.booking__success {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid #2a2a2a;
}
.booking__success--hidden { display: none; }
.success-icon {
  font-size: 48px;
  color: #f0f0f0;
  margin-bottom: 20px;
  display: block;
}
.booking__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.booking__success p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #141414;
  border: 1px solid #2a2a2a;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #555; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #141414; color: #f0f0f0; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== ABOUT ===== */
.about { padding: 140px 0; background: #0e0e0e; }
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about__content .section-title { margin-bottom: 30px; }
.about__content p { color: #aaa; margin-bottom: 20px; }
.about__content .text-large { margin-bottom: 30px; }
.about__signature {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
}
.about__signature span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555;
}

/* ===== CONTACTS ===== */
.contacts { padding: 140px 0; }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.contacts__block { margin-bottom: 30px; }
.contacts__block h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555;
  font-weight: 400;
  margin-bottom: 8px;
}
.contacts__block p,
.contacts__block a { font-size: 18px; color: #ccc; }
.contacts__form-wrapper h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.contacts__map { margin-top: 60px; }
.contacts__map iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0;
  border-top: 1px solid #1a1a1a;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer__links { display: flex; gap: 30px; }
.footer__links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666;
}
.footer__links a:hover { color: #f0f0f0; }
.footer__copy p { font-size: 12px; color: #444; }
.footer__founded {
  font-size: 11px;
  color: #2a2a2a;
  margin-top: 5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 30px; }
  .studio__intro,
  .studio__atm-grid,
  .booking__grid,
  .about__grid,
  .contacts__grid,
  .levitation__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .studio__objects-grid { grid-template-columns: repeat(2, 1fr); }
  .levitation__intro {
    margin-left: 0;
    max-width: 720px;
  }
}
@media (max-width: 900px) {
  .levitation__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .levitation__item--narrow {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header__nav { display: none; }
  .header__burger { display: block; }
  .portfolio__grid { columns: 1; }
  .services__name { font-size: 22px; }
  .hero__title { letter-spacing: 0.1em; }
  section { padding: 80px 0 !important; }
  .footer__grid { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .step-label { display: none; }
  .booking__success { padding: 40px 20px; }
  .lev-modal__panel { width: 100%; border-left: none; }
  .lev-modal__top { padding: 30px 24px 24px; }
  .lev-modal__body { padding: 0 24px 40px; }
  .lev-modal__price-row { grid-template-columns: 1fr; }

  .levitation {
    padding: 100px 0 0 !important;
  }
  .levitation__top {
    margin-bottom: 34px;
  }
  .levitation__lead {
    font-size: 24px;
    line-height: 1.4;
  }
  .levitation__text {
    font-size: 14px;
    line-height: 1.8;
  }
  .levitation__frame {
    padding: 10px;
  }
  .levitation__bottom {
    flex-direction: column;
    gap: 26px;
    padding: 40px 0 80px;
  }
  .levitation__actions {
    width: 100%;
  }
  .levitation__actions .btn,
  .levitation__actions .lev-doc-btn {
    width: 100%;
    text-align: center;
  }

  .portfolio__grid--trio {
    grid-template-columns: 1fr;
  }
  .portfolio__item--main .portfolio__video-thumb,
  .portfolio__video-thumb img {
    min-height: 320px;
  }
}