body.video-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 97px);
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  width: 100%;
  min-height: calc(100vh - 97px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 18px;
  max-width: 620px;
}

.hero-content h1 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 6vw, 5.9rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero-description {
  max-width: 450px;
  margin: 0;
  color: rgba(44, 36, 32, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}

.reaction-section {
  padding: 110px 0;
  background: #fffdfc;
}

.reaction-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.reaction-copy h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.96;
}

.reaction-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(44, 36, 32, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.video-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.video-card-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 34px;
  background: #e7dfdb;
  box-shadow: 0 28px 54px rgba(44, 36, 32, 0.12);
  aspect-ratio: 16 / 10;
}

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

.video-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 32, 0.02) 0%, rgba(44, 36, 32, 0.32) 100%);
}

.video-play-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(44, 36, 32, 0.12);
}

.video-play-badge::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #ffa9a1 0%, #ffa9a1 56%, transparent 58%),
    linear-gradient(135deg, #ffc6c0 0%, #ffa9a1 100%);
  clip-path: polygon(34% 25%, 34% 75%, 78% 50%);
}

.video-card-copy {
  display: grid;
  gap: 8px;
  padding: 18px 8px 0;
}

.video-card-title {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}

.video-card-caption {
  color: rgba(44, 36, 32, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(24, 18, 16, 0.78);
  cursor: pointer;
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: min(4vh, 28px) auto;
  padding: 24px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.video-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.video-modal-kicker {
  margin: 0 0 6px;
  color: #9a6d68;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-modal-top h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
}

.video-modal-close {
  min-width: 96px;
  min-height: 44px;
  border: 1px solid rgba(44, 36, 32, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.video-modal-player {
  display: block;
  width: 100%;
  max-height: 72vh;
  border-radius: 22px;
  background: #110d0b;
}

.brands-section {
  padding: 50px 0 118px;
  background: #fff;
}

.brands-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brands-copy {
  margin-bottom: 34px;
}

.brands-copy h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  font-weight: 600;
  line-height: 0.96;
}

.brands-lead {
  margin: 0;
  color: rgba(44, 36, 32, 0.8);
  font-size: 1.2rem;
  line-height: 1.85;
}

.brands-marquee {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands-rail {
  display: flex;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
  will-change: transform;
}

.brands-marquee:hover .brands-rail {
  animation-play-state: paused;
}

.brands-track {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  padding-right: 18px;
}

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 110px;
  padding: 24px 28px;
}

.brand-chip img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.choose-section {
  padding: 112px 0 124px;
  background: #fff;
}

.choose-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.choose-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.choose-copy {
  max-width: 820px;
}

.choose-copy h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.96;
}

.choose-lead {
  margin: 0;
  color: rgba(44, 36, 32, 0.8);
  font-size: 1.2rem;
  line-height: 1.85;
}

.choose-media {
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.choose-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(44, 36, 32, 0.1);
}

.booking-section {
  background: #fff;
  scroll-margin-top: 118px;
}

#contact {
  scroll-margin-top: 118px;
}

.booking-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.booking-surface {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  padding: 52px clamp(28px, 4vw, 56px);
  overflow: hidden;
}

.booking-surface::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 35px;
  pointer-events: none;
}

.booking-copy,
.booking-panel {
  position: relative;
  z-index: 1;
}

.booking-copy {
  max-width: 640px;
}

.booking-intro {
  margin: 0 0 10px;
  color: #664a45;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 0.98;
}

.booking-copy h2 {
  max-width: 13ch;
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
}

.booking-lead {
  max-width: 520px;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.booking-panel {
  padding: 30px 28px;
  border: 1px solid rgba(132, 88, 101, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 40px rgba(44, 36, 32, 0.1);
}

.booking-panel-label {
  margin: 0 0 18px;
  color: #9a6d68;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-links {
  display: grid;
  gap: 14px;
}

.booking-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid rgba(132, 88, 101, 0.14);
  border-radius: 22px;
  background: #ffffff;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(44, 36, 32, 0.08);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.booking-link::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.booking-link-message::before {
  -webkit-mask-image: url("../images/icons/message.svg");
  mask-image: url("../images/icons/message.svg");
}

.booking-link-instagram::before {
  -webkit-mask-image: url("../images/icons/instagram.svg");
  mask-image: url("../images/icons/instagram.svg");
}

.booking-link-phone::before {
  -webkit-mask-image: url("../images/icons/phone.svg");
  mask-image: url("../images/icons/phone.svg");
}

.booking-link:hover,
.booking-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(210, 111, 138, 0.24);
  box-shadow: 0 20px 38px rgba(44, 36, 32, 0.12);
}

.booking-link-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #d26f8a 0%, #e68aa2 100%);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.booking-link-primary:hover,
.booking-link-primary:focus-visible {
  background: linear-gradient(135deg, #ffa9a1 0%, #f4b0ba 100%);
  color: var(--text);
}

.booking-link-phone {
  font-size: 1.05rem;
}

.portfolio-preview-section {
  padding: 0px 0 100px;
  background: #fffdfc;
}

.portfolio-preview-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.portfolio-preview-copy h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.96;
}

.portfolio-preview-lead {
  margin: 0;
  color: rgba(44, 36, 32, 0.8);
  font-size: 1rem;
  line-height: 1.85;
}

.portfolio-preview-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-preview-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 0.88 / 1;
  background: #f3e6eb;
  box-shadow: 0 22px 48px rgba(44, 36, 32, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 32, 0.02) 0%, rgba(44, 36, 32, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-preview-card:hover,
.portfolio-preview-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(44, 36, 32, 0.14);
}

.portfolio-preview-card:hover::after,
.portfolio-preview-card:focus-visible::after {
  opacity: 1;
}

.portfolio-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-preview-card:hover img,
.portfolio-preview-card:focus-visible img {
  transform: scale(1.04);
}

.portfolio-preview-actions {
  margin-top: 28px;
}

.mobile-only-flex {
  display: none;
}

@media (max-width: 1200px) {
  .hero-content {
      padding: 0 24px;
  }

  .hero-layout {
      grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.88fr);
      gap: 24px;
      min-height: calc(100svh - 90px);
  }

  .reaction-inner {
      gap: 32px;
      padding: 0 32px;
  }
}

@media (max-width: 991px) {
  .hero-section {
      min-height: calc(100svh - 78px);
  }

  .hero-content {
      padding: 0 20px;
  }

  .hero-layout {
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
      gap: 16px;
      min-height: calc(100svh - 78px);
  }

  .hero-content h1 {
      max-width: 560px;
      font-size: clamp(2.9rem, 8vw, 4.6rem);
  }

  .reaction-section {
      padding: 0;
  }

  .reaction-inner {
      grid-template-columns: 1fr;
      padding: 0 20px;
  }

  .reaction-copy h2,
  .reaction-lead {
      max-width: 100%;
  }

  .video-modal-panel {
      width: min(960px, calc(100% - 24px));
      padding: 20px;
  }

  .brands-section {
      padding: 88px 0 96px;
  }

  .brands-inner {
      padding: 0 20px;
  }

  .portfolio-preview-inner {
      padding: 0 20px;
  }

  .portfolio-preview-head {
      flex-direction: column;
      align-items: flex-start;
  }

  .portfolio-preview-slider {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-preview-slider .portfolio-preview-card:nth-child(n + 4) {
      display: none;
  }

  .choose-section {
      padding: 92px 0 104px;
  }

  .choose-inner {
      padding: 0 20px;
  }

  .choose-intro {
      grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
      gap: 22px;
  }

  .choose-media {
      max-width: 340px;
  }

  .booking-section {
      padding: 0 0 104px;
  }

  .booking-inner {
      padding: 0 20px;
  }

  .booking-surface {
      grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
      gap: 24px;
      padding: 42px 32px;
  }
}

@media (max-width: 900px) {
  .hero-section {
      min-height: auto;
  }

  .hero-content {
      padding: 20px 18px 56px;
  }

  .hero-layout {
      grid-template-columns: 1fr;
      gap: 28px;
      min-height: auto;
  }

  .hero-copy {
      order: 2;
      gap: 14px;
      max-width: 100%;
      text-align: center;
      justify-self: center;
  }

  .hero-content h1 {
      max-width: 100%;
      font-size: clamp(2.6rem, 8vw, 4rem);
      line-height: 0.98;
      text-align: center;
  }

  .hero-description {
      max-width: 100%;
      font-size: 0.98rem;
      line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .hero-content {
      padding: 16px 16px 52px;
  }

  .hero-layout {
      gap: 20px;
  }

  .hero-content h1 {
      font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-description {
      font-size: 0.96rem;
  }

  .reaction-section {
      padding: 0;
  }

  .portfolio-preview-section {
          padding: 50px 0 50px;
  }

  .reaction-inner {
      gap: 24px;
      padding: 0 16px;
  }

  .reaction-copy h2 {
      font-size: clamp(2.15rem, 10vw, 3rem);
      line-height: 1;
  }

  .reaction-lead {
      font-size: 0.94rem;
      line-height: 1.7;
  }

  .video-card-media {
      border-radius: 26px;
  }

  .video-play-badge {
      left: 16px;
      right: 16px;
      bottom: 16px;
      justify-content: center;
  }

  .video-modal-panel {
      width: calc(100% - 16px);
      margin: 8px auto;
      padding: 16px;
      border-radius: 22px;
  }

  .video-modal-top {
      flex-direction: column;
  }

  .video-modal-close {
      width: 100%;
  }

  .video-modal-player {
      max-height: 60vh;
      border-radius: 16px;
  }

  .brands-section {
      padding: 15px 0 0;
  }

  .brands-inner {
      padding: 0 16px;
  }

  .portfolio-preview-inner {
      padding: 0 16px;
  }

  .mobile-only-flex {
      display: flex;
  }

  .portfolio-preview-copy h2 {
      font-size: clamp(2.15rem, 10vw, 3rem);
      line-height: 1;
  }

  .portfolio-preview-lead {
      font-size: 0.95rem;
      line-height: 1.75;
  }

  .portfolio-preview-slider {
      display: flex;
      align-items: stretch;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 16px 10px;
      margin: 0 -16px;
      scroll-padding-left: 16px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
  }

  .portfolio-preview-slider::-webkit-scrollbar {
      display: none;
  }

  .portfolio-preview-slider .portfolio-preview-card {
      display: block !important;
      flex: 0 0 calc(100vw - 88px);
      min-width: 248px;
      max-width: 320px;
      border-radius: 24px;
      scroll-snap-align: start;
  }

  .brands-copy h2 {
      font-size: clamp(2.15rem, 10vw, 3rem);
      line-height: 1;
  }

  .brands-lead {
      font-size: 0.95rem;
      line-height: 1.75;
  }

  .brands-marquee {
      mask-image: none;
  }

  .brand-chip {
      min-width: 180px;
      height: 88px;
      padding: 18px 20px;
      border-radius: 20px;
  }

  .brand-chip img {
      max-height: 34px;
  }

  .choose-section {
      padding: 15px 0 84px;
  }

  .choose-inner {
      padding: 0 16px;
  }

  .choose-intro {
      grid-template-columns: 1fr;
      gap: 18px;
  }

  .choose-copy h2 {
      font-size: clamp(2.15rem, 10vw, 3rem);
      line-height: 1;
  }

  .choose-lead {
      font-size: 0.95rem;
      line-height: 1.75;
  }

  .choose-media {
      max-width: min(100%, 360px);
      justify-self: start;
  }

  .choose-media img {
      max-height: 420px;
      border-radius: 24px;
  }

  .booking-section {
      padding: 0 0 84px;
  }

  .booking-inner {
      padding: 0 16px;
  }

  .booking-surface {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 34px 22px;
      border-radius: 28px;
  }

  .booking-surface::after {
      border-radius: 27px;
  }

  .booking-intro {
      font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .booking-copy h2 {
      max-width: 12ch;
      font-size: clamp(2.4rem, 11vw, 3.7rem);
      line-height: 0.95;
  }

  .booking-lead {
      font-size: 0.95rem;
      line-height: 1.75;
  }

  .booking-panel {
      padding: 24px 20px;
      border-radius: 24px;
  }

  .booking-link {
      min-height: 58px;
      padding: 0 18px;
      border-radius: 18px;
      font-size: 0.96rem;
  }

  .booking-link-phone {
      font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .hero-section {
      min-height: auto;
  }

  .hero-content {
      padding: 14px 14px 48px;
  }

  .choose-media img {
      max-height: 360px;
  }

  .booking-surface {
      padding: 28px 18px;
  }

  .booking-panel {
      padding: 22px 16px;
  }

  .booking-link {
      gap: 12px;
      padding: 0 16px;
  }
}
