:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --bg-card: #101010;
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.64);
  --muted-2: rgba(245, 241, 232, 0.42);
  --line: rgba(245, 241, 232, 0.13);
  --gold: #c9a765;
  --gold-soft: rgba(201, 167, 101, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --font-serif: "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,0.12), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(201,167,101,0.12), transparent 25%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

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

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: #000;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 6px 6px;
}

.cursor-glow {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,167,101,.12), transparent 62%);
  mix-blend-mode: screen;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 130px 0;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(46px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 400;
  margin-top: 18px;
}

.section-lead {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: .35s ease;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(3,3,3,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: -.04em;
}

.brand span {
  color: var(--gold);
}

.menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(245,241,232,.72);
}

.menu a,
.footer-links a,
.footer-social a {
  transition: .3s ease;
}

.menu a:hover,
.footer-links a:hover,
.footer-social a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  align-items: center;
}

.btn,
.cart-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: .35s ease;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
    max-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.btn:hover,
.cart-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(201,167,101,.55);
}

.btn.gold {
  background: var(--text);
  color: #000;
  border-color: var(--text);
    margin: 20px 0;
}

.article.price-card.reveal.visible {
    gap: 20px;
}

.cart-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.mobile-menu-btn {
  display: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 70px;
  overflow: hidden;
}

.hero-bg,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
  background-size: cover;
  background-position: center;
  filter: saturate(.75) contrast(1.1) brightness(.72);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-1 { background-image: url('../img/hero-1.jpg'); }
.hero-slide-2 { background-image: url('../img/hero-2.jpg'); }
.hero-slide-3 { background-image: url('../img/hero-3.jpg'); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.2) 100%),
    linear-gradient(0deg, rgba(3,3,3,1) 0%, transparent 36%, rgba(3,3,3,.45) 100%);
}

.hero-content,
.hero-controls {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) .94fr;
  gap: 60px;
  align-items: end;
}

.hero h1,
.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.075em;
}

.hero h1 {
  font-size: clamp(58px, 9vw, 154px);
  line-height: .82;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 34px;
  color: rgba(245,241,232,.72);
  line-height: 1.8;
  font-size: 18px;
}

.hero-buttons,
.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
    align-items: center;
    margin: 20px;
}

.hero-meta {
  max-width: 380px;
  justify-self: end;
  padding-left: 28px;
  border-left: 1px solid rgba(201,167,101,.38);
  color: rgba(245,241,232,.58);
  line-height: 1.8;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-controls {
  position: absolute;
  right: 40px;
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 42px;
  height: 2px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.28);
}

.dot.active {
  width: 70px;
  background: var(--gold);
}

.marquee,
.brands {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.marquee-track,
.brand-row {
  width: max-content;
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee span,
.brand-row span {
  white-space: nowrap;
  font-family: var(--font-serif);
  letter-spacing: -.04em;
}

.marquee span {
  padding: 22px 32px;
  color: rgba(245,241,232,.42);
  font-size: 32px;
}

.brand-row span {
  padding: 56px 34px;
  color: rgba(245,241,232,.32);
  font-size: clamp(34px, 5vw, 76px);
}

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

.categories-grid,
.pricing-grid,
.shop-grid {
  display: grid;
  gap: 18px;
  margin-top: 64px;
}

.categories-grid {
  grid-template-columns: repeat(5, 1fr);
}

.category-card,
.price-card,
.shop-card,
.video-panel,
.booking-card,
.work-card,
.video-visual {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.category-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .45s ease;
}

.category-card:hover,
.price-card:hover,
.shop-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,167,101,.42);
}

.num {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
}

.category-card h3,
.work-info h3,
.video-panel h2,
.feature h3,
.price-card h3,
.shop-content h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.05em;
}

.category-card h3 { font-size: 34px; line-height: .95; }

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

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--text);
  color: #000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.work-card {
  position: relative;
  grid-column: span 4;
  min-height: 560px;
  overflow: hidden;
  cursor: pointer;
}

.work-card.large { grid-column: span 8; }

.work-card img,
.video-visual img,
.shop-image img {
  height: 100%;
  object-fit: cover;
}

.work-card img {
  transition: 1s ease;
  filter: saturate(.75) contrast(1.08) brightness(.78);
}

.work-card:hover img {
  transform: scale(1.08);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.84), transparent 58%);
}

.work-info {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}

.tag {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.work-info h3 { font-size: clamp(36px, 4vw, 64px); line-height: .94; margin-top: 10px; }
.work-info p,
.price-card p,
.shop-content p,
.feature p { color: var(--muted); line-height: 1.7; }

.video-block,
.why-grid,
.booking {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
}

.video-panel,
.booking-card {
  padding: 38px;
}

.video-panel,
.video-visual {
  min-height: 620px;
}

.video-panel h2 { font-size: clamp(48px, 6vw, 98px); line-height: .9; }
.video-panel p { margin-top: 24px; }

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play span {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid rgba(245,241,232,.38);
  display: grid;
  place-items: center;
  backdrop-filter: blur(18px);
}

.features { display: grid; gap: 16px; }

.feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.feature span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
}

.feature h3 { font-size: 30px; margin-bottom: 8px; }

.pricing-grid,
.shop-grid { grid-template-columns: repeat(3, 1fr); }

.price-card {
  min-height: 520px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  transform: translateY(-18px);
  border-color: rgba(201,167,101,.42);
}

.price-card h3 { font-size: 42px; }

.price {
  font-family: var(--font-serif);
  font-size: 82px;
  letter-spacing: -.07em;
  margin: 30px 0 18px;
}

.price small {
  font-size: 14px;
  font-family: var(--font-sans);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.price-card li::before {
  content: "— ";
  color: var(--gold);
}

.shop-image { height: 360px; overflow: hidden; }
.shop-content { padding: 26px; }
.shop-content h3 { font-size: 34px; margin-bottom: 10px; }
.shop-content p { margin-bottom: 20px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  margin-bottom: 10px;
  color: rgba(245,241,232,.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201,167,101,.58);
}

.final-cta {
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.78)),
    url('../img/final-cta.jpg') center/cover;
}

.final-cta h2 {
  font-size: clamp(58px, 9vw, 142px);
  line-height: .84;
  margin: 20px auto 34px;
  max-width: 980px;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 24px;
}

.footer-links { justify-content: center; }
.footer-social { justify-content: flex-end; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s ease, transform .9s ease;
}

.hero-buttons {
    display: flex;
    align-items: center;
}

.reveal.visible {
  opacity: 1;
    margin-bottom: 20px;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu,
  .nav-actions .btn { display: none; }

  .mobile-menu-btn { display: grid; }

  .nav-inner { grid-template-columns: 1fr auto; }

  .hero-content,
  .video-block,
  .why-grid,
  .booking,
  .pricing-grid,
  .shop-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-meta { justify-self: start; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-head { display: block; }
  .filter-row { margin-top: 28px; }
  .work-card,
  .work-card.large { grid-column: span 12; }
  .footer-links,
  .footer-social { justify-content: center; }
}

@media (max-width: 640px) {
  .container,
  .nav-inner,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .section { padding: 92px 0; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 62px;
  line-height: 1.1;}
  .section-title { font-size: 52px; line-height: 1.2; }
  .categories-grid,
  .form-grid { grid-template-columns: 1fr; }
  .video-panel,
  .booking-card { padding: 26px; }
  .video-panel,
  .video-visual { min-height: 500px; }
  .price { font-size: 68px; }
}