/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F2EE;
  --dark:  #0D0B09;
  --ink:   #1A1814;
  --mid:   #6B6560;
  --accent:#C8A97E;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-header {
  padding: 0 6vw;
  margin-bottom: 3rem;
}

/* ── ETHEREAL SHADOW ── */
.hero__ethereal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__ethereal-inner {
  position: absolute;
  inset: -100px;
  filter: url(#ethereal-filter) blur(4px);
}

.hero__ethereal-color {
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 1);
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
  background-size: 240px;
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 1;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5vw;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(13, 11, 9, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav__links a:hover { color: #fff; }

.nav__cta {
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 100px;
  color: #fff !important;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav__cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
}

.nav__insta {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8) !important;
  transition: color 0.2s !important;
}

.nav__insta:hover { color: #fff !important; }

/* ── FLOATING INSTAGRAM BUTTON ── */
.insta-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(131,58,180,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.insta-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(131,58,180,0.5);
}

@media (max-width: 600px) {
  .insta-float span { display: none; }
  .insta-float { padding: 0.75rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  background: #0D0B09;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Fallback gradient when no video is loaded */
.hero__video:not([src]),
.hero__video[src="assets/hero.mp4"] {
  background: linear-gradient(135deg, #0D0B09 0%, #2a1f14 50%, #0D0B09 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,0.55) 0%,
    rgba(13,11,9,0.35) 50%,
    rgba(13,11,9,0.75) 100%
  );
  z-index: 2;
}

.hero__content { z-index: 3; }
.hero__play-btn { z-index: 3; }

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.75rem;
}

.hero__sub {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}

.hero__sub--cursive {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero__play-btn {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.hero__play-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.05); }

.hero__play-btn .play-icon  { display: none; margin-left: 2px; }
.hero__play-btn .pause-icon { display: flex; gap: 3px; font-size: 0.7rem; letter-spacing: 2px; }

.hero__play-btn.paused .play-icon  { display: block; }
.hero__play-btn.paused .pause-icon { display: none; }

.hero__scroll {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── INTRO ── */
.intro {
  padding: 9rem 6vw;
  display: flex;
  justify-content: center;
}

.intro__inner {
  max-width: 900px;
}

.intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.intro__heading em {
  font-style: italic;
  color: var(--mid);
}

.intro__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 560px;
}

/* ── SERVICES ── */
.services {
  background: var(--ink);
  overflow: hidden;
}

.services__heading {
  padding: 6rem 6vw 2.5rem;
}

.services .section-label { color: var(--accent); }
.services .section-title { color: #fff; }

.services__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 0 6vw 6rem;
  gap: 4vw;
}

.services__content {
  display: flex;
  flex-direction: column;
}

.services__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services__photo {
  overflow: hidden;
  border-radius: 4px;
  /* height matches the cards column naturally via align-items: start + stretch */
  align-self: stretch;
}

.services__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}

.services__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              background 0.4s ease;
  cursor: default;
}

.services__card:hover {
  transform: scale(1.03) translateY(-4px);
  z-index: 10;
  background: rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.services__cards:has(.services__card:hover) .services__card:not(:hover) {
  filter: blur(2px) brightness(0.6);
  transform: scale(0.98);
}

.services__card--dark:hover {
  background: var(--accent) !important;
}

.services__card--dark {
  background: var(--accent);
  border-color: transparent;
}

.services__card-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services__number {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.services__name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.services__card--dark .services__name { color: var(--ink); }
.services__card--dark .services__number { color: var(--ink); }

.services__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.services__card--dark .services__desc { color: rgba(13,11,9,0.7); }

.services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.services__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.75);
  background: transparent;
}

.services__cta-link {
  display: inline-block;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(13,11,9,0.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s;
}

.services__cta-link:hover { border-color: var(--ink); }

@media (max-width: 650px) {
  .services__layout {
    grid-template-columns: 1fr;
    padding: 0 6vw 4rem;
  }
  .services__photo {
    height: 70vw;
    min-height: 280px;
  }
  .services__photo img {
    object-position: center 66%;
  }
}

/* ── CATALOGUE ── */
.catalogue {
  padding: 5rem 0 6rem;
  background: var(--cream);
}

.catalogue__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 6px;
  padding: 0 6vw;
}

.catalogue__item {
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              z-index 0s;
  position: relative;
  z-index: 1;
}

/* hovered item lifts forward */
.catalogue__item:hover {
  transform: scale(1.04);
  z-index: 10;
  filter: none;
}

/* all other items blur when any is hovered */
.catalogue__grid:has(.catalogue__item:hover) .catalogue__item:not(:hover) {
  filter: blur(3px) brightness(0.7);
  transform: scale(0.98);
}

/* hidden extra items */
.catalogue__item.catalogue__item--extra {
  display: none !important;
}

.catalogue__grid--expanded .catalogue__item--extra {
  display: block !important;
}

.catalogue__img-wrap {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}

.catalogue__img-wrap img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.catalogue__item:hover .catalogue__img-wrap img {
  transform: scale(1.06);
}

/* view all button as unstyled */
button.btn-outline {
  background: none;
  border: 1px solid currentColor;
  font-family: inherit;
  cursor: pointer;
}

.catalogue__cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── See-more gallery ── */
.catalogue__clip {
  position: relative;
  overflow: hidden;
  transition: height 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #F5F2EE 100%);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.catalogue__clip.is-expanded .catalogue__fade {
  opacity: 0;
}

.catalogue__see-more {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 2.8rem auto 0;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}

.catalogue__see-more:hover {
  background: var(--ink);
  color: var(--cream);
}

.catalogue__see-more:hover .smg-arrow path {
  stroke: var(--cream);
}

.smg-arrow {
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue__see-more.is-expanded .smg-arrow {
  transform: rotate(180deg);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 0.85rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ── ARTIST ── */
.artist {
  padding: 7rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.artist__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.artist__img-wrap img { filter: grayscale(20%); }

.artist__img-label {
  position: absolute;
  bottom: -0.05em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  letter-spacing: -0.04em;
}

.artist__text-col .section-label { color: var(--accent); }

.artist__name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.artist__name em {
  font-style: italic;
  font-size: 0.7em;
  color: rgba(255,255,255,0.5);
}

.artist__bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.artist__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.artist__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.artist__stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
}

.artist__stat span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── STUDIO ── */
.studio {
  padding: 6rem 0;
  background: #EDEAE5;
}

.studio__collage {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 6vw;
  align-items: flex-start;
}

.studio__collage-item {
  flex: 1 1 calc(33% - 12px);
  min-width: 260px;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.studio__collage-item:hover {
  transform: scale(1.01);
  z-index: 2;
}

.studio__collage-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  transition: transform 0.5s ease;
}

/* ── REVIEWS ── */
.reviews {
  padding: 7rem 0;
  background: #1a1714;
  overflow: hidden;
}

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6vw;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.reviews .section-label { color: var(--accent); }
.reviews .section-title { color: #fff; }

.reviews__rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  min-width: 160px;
  gap: 0.25rem;
  position: relative;
}

.reviews__rating-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 2px;
}

.reviews__rating-score {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.reviews__rating-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}

.reviews__rating-google {
  width: 20px; height: 20px;
  margin-top: 0.6rem;
}

.reviews__track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

/* Fade edges */
.reviews__track-wrap::before,
.reviews__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #1a1714, transparent);
}

.reviews__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #1a1714, transparent);
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewsScroll 35s linear infinite;
}

.reviews__track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #2a1f14;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.review-card__date {
  font-size: 0.7rem;
  color: #999;
  margin-top: 1px;
}

.review-card__stars {
  font-size: 0.75rem;
  color: #fbbc04;
  letter-spacing: 1px;
  margin-top: 2px;
}

.review-card__google {
  width: 18px; height: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--mid);
}

.section-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 6vw;
}

/* ── PROCESS ── */
.process {
  background: var(--ink);
  padding: 7rem 0 7rem 6vw;
}

.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.process__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 1.2rem;
  margin-bottom: 3.5rem;
}

.process__heading em {
  font-style: italic;
  color: var(--accent);
}

.process__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s ease;
}

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

.process__step-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 0.25rem;
  min-width: 2rem;
  flex-shrink: 0;
}

.process__step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.process__step-body p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,242,238,0.55);
}

/* Right: sticky video */
.process__right {
  position: sticky;
  top: 6rem;
}

.process__video-wrap {
  position: relative;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
  height: 85vh;
  width: 100%;
  background: #111;
}

.process__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.5) 0%, transparent 40%);
  pointer-events: none;
}


@media (max-width: 768px) {
  .process__inner {
    grid-template-columns: 1fr;
  }
  .process__right {
    position: relative;
    top: 0;
  }
  .process__video-wrap {
    aspect-ratio: 4 / 5;
    max-height: 60vw;
  }
}

/* ── TIMINGS ── */
.timings {
  background: var(--ink);
  color: #fff;
  padding: 7rem 6vw;
}

.timings__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.timings__left .section-label { color: var(--accent); }

.timings__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.timings__heading em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.timings__sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.timings__right {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

/* ── BOOKING WIDGET ── */
.booking {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.booking__nav-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.booking__nav-btn:hover { background: rgba(255,255,255,0.18); }

.booking__month {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
}

.booking__days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}

.booking__days-header span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0.4rem 0;
}

.booking__calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
}

.booking__day:hover:not(.booking__day--empty):not(.booking__day--past) {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.booking__day--empty { pointer-events: none; }

.booking__day--past {
  color: rgba(255,255,255,0.2);
  pointer-events: none;
}

.booking__day--today {
  border-color: var(--accent);
  color: var(--accent);
}

.booking__day--selected {
  background: var(--accent) !important;
  color: var(--ink) !important;
  font-weight: 600;
}

.booking__slots {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
}

.booking__slots-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.booking__slots-date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.booking__slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking__slot {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  background: transparent;
}

.booking__slot:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.booking__slot--selected {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--ink) !important;
  font-weight: 600;
}

.booking__slot--booked {
  opacity: 0.3;
  pointer-events: none;
  text-decoration: line-through;
}

.booking__confirm {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking__confirm-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.booking__confirm-text strong {
  color: #fff;
  font-weight: 500;
}

.booking__confirm-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.booking__confirm-btn:hover { opacity: 0.85; }

@media (max-width: 700px) {
  .timings__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── LOCATION ── */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--ink);
  color: #fff;
}

.location__text {
  padding: 7rem 6vw 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__text .section-label { color: var(--accent); }

.location__text .section-title {
  color: #fff;
  margin-bottom: 3rem;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.location__detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.location__icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.6;
}

.location__detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.location__detail p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.btn-dark {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.85; }

.location__map {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  filter: grayscale(0.3) contrast(1.05);
}

/* ── CTA BAND ── */
.cta-band {
  padding: 9rem 6vw;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-band__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-band__heading em {
  font-style: italic;
  color: var(--mid);
}

.cta-band__btn {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.cta-band__btn:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 4rem 6vw;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer ul a:hover { color: #fff; }

.footer__top-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__top-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.footer__top-btn:hover { background: rgba(255,255,255,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .catalogue__grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalogue__item--wide {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }

  .artist {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .studio__grid {
    grid-template-columns: 1fr;
  }

  .studio__img--wide { grid-column: span 1; aspect-ratio: 4/3; }

  .location {
    grid-template-columns: 1fr;
  }

  .location__map { min-height: 350px; position: relative; }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__top-col { align-items: flex-start; }
}

@media (max-width: 600px) {
  .catalogue__grid {
    grid-template-columns: 1fr;
  }

  .catalogue__item--wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .hero__sub--cursive { font-size: 0.6rem; letter-spacing: 0.15em; }

  .artist__stats { gap: 1.5rem; flex-wrap: wrap; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .footer {
    grid-template-columns: 1fr 1fr;
  }
}
