:root {
  --bg: #0d0e0d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f1e4;
  --muted: #bdb4a2;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #d6b46a;
  --accent-two: #67d0c3;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(214, 180, 106, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(103, 208, 195, 0.13), transparent 24rem),
    linear-gradient(135deg, #090a09 0%, #141512 48%, #0b0d0d 100%);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.55;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(18px, 4vw, 58px);
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(9, 10, 9, 0.82), rgba(9, 10, 9, 0.34));
}

.brand,
.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 241, 228, 0.42);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 0 22px rgba(214, 180, 106, 0.25);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand-mark::before {
  inset: 8px;
  border: 2px solid var(--accent);
}

.brand-mark::after {
  width: 5px;
  height: 5px;
  right: 7px;
  top: 8px;
  background: var(--accent-two);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.6vw, 24px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(247, 241, 228, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  padding: 126px clamp(18px, 5vw, 76px) 62px;
  position: relative;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(74px, 11vw, 168px);
  line-height: 0.84;
  font-weight: 700;
}

.hero p {
  margin: 28px 0 0;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #17120b;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.social-strip a,
#contactSocials a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 241, 228, 0.82);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  min-height: 620px;
  position: relative;
  perspective: 1300px;
}

.slider-shell {
  position: absolute;
  inset: 50px 4% 52px 10%;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a17;
  box-shadow: var(--shadow);
  transform: rotateY(-9deg) rotateX(3deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.slider-track,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 900ms ease;
}

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

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent 48%);
  pointer-events: none;
}

.slider-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  z-index: 2;
}

.slider-copy strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.slider-copy span {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  color: rgba(247, 241, 228, 0.78);
  line-height: 1.6;
}

.slider-dots {
  position: absolute;
  right: 28px;
  bottom: 34px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dots button {
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.slider-dots button.active {
  background: var(--accent);
}

.orbit-card {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-one {
  width: 34%;
  height: 34%;
  left: 0;
  bottom: 12px;
  transform: rotateY(18deg) rotateZ(-4deg) translateZ(80px);
}

.orbit-two {
  width: 28%;
  height: 30%;
  right: 0;
  top: 12px;
  transform: rotateY(-18deg) rotateZ(5deg) translateZ(120px);
}

.section {
  padding: 86px clamp(18px, 5vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.intro-band h2,
.section-head h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
}

.intro-band p,
.section-head p,
.contact p,
.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.about-media {
  height: clamp(380px, 48vw, 620px);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.92;
}

.service-cards,
.package-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.package-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.service-card {
  min-height: 360px;
  position: relative;
}

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

.service-card .gallery-meta {
  padding-top: 110px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 36px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filters button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.filters button.active {
  background: var(--text);
  color: #10100f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.gallery-card {
  min-height: 430px;
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.gallery-card:nth-child(5n + 1) {
  grid-column: span 5;
}

.gallery-card:nth-child(5n + 2) {
  grid-column: span 7;
}

.gallery-card:hover {
  border-color: rgba(214, 180, 106, 0.52);
}

.gallery-card img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 72px 22px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.gallery-meta span {
  color: var(--accent-two);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-meta h3 {
  margin: 6px 0 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.gallery-meta p {
  margin: 0;
  color: rgba(247, 241, 228, 0.76);
  line-height: 1.55;
}

.stories {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
}

.story-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-card .gallery-meta h3 {
  font-size: 42px;
}

.packages {
  background: rgba(255, 255, 255, 0.035);
}

.package-card,
.testimonial-card,
.faq-item {
  padding: 24px;
}

.package-card h3,
.testimonial-card h3,
.faq-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.package-price {
  display: block;
  margin: 16px 0 18px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.package-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.testimonial-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.service-link {
  min-height: 220px;
  display: flex;
  align-items: end;
  padding: 24px;
  background: rgba(12, 13, 12, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.service-link:hover {
  background: var(--accent);
  color: #17120b;
}

.custom-section {
  color: var(--text);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.contact-panel > a,
.contact-panel > span {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 241, 228, 0.84);
  font-weight: 700;
}

#contactSocials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 241, 228, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form small {
  color: var(--accent-two);
  min-height: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: rgba(247, 241, 228, 0.62);
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(12, 13, 12, 0.96);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .gallery-card,
  .gallery-card:nth-child(5n + 1),
  .gallery-card:nth-child(5n + 2) {
    grid-column: span 6;
  }

  .service-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-cards,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .hero {
    padding-bottom: 30px;
  }

  .hero-stage {
    min-height: 440px;
  }

  .slider-shell {
    inset: 16px 0 58px 0;
    transform: none;
  }

  .orbit-card {
    display: none;
  }

  .intro-band,
  .about-section,
  .section-head,
  .story-rail,
  .contact,
  .faq-list {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gallery-card,
  .gallery-card:nth-child(5n + 1),
  .gallery-card:nth-child(5n + 2) {
    grid-column: span 12;
    min-height: 390px;
  }

  .service-map {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
