:root {
  --bg: #11100e;
  --text: #f7f3eb;
  --muted: rgba(247, 243, 235, 0.7);
  --line: rgba(247, 243, 235, 0.16);
  --gold: #d8b976;
  --gold2: #f0dca5;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter Tight", "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 70% 18%, rgba(107, 101, 88, 0.16), transparent 38%),
    radial-gradient(circle at 18% 86%, rgba(82, 76, 66, 0.1), transparent 34%),
    linear-gradient(180deg, #151412 0%, #0f0f0d 48%, #11100e 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.film-grain {
  position: fixed;
  inset: -6vh -6vw;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainPulse 2.8s ease-in-out infinite alternate;
}

@keyframes grainPulse {
  from { opacity: 0.1; }
  to { opacity: 0.16; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #fff2c9);
  box-shadow: 0 0 18px rgba(216, 185, 118, 0.65);
}

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 42px;
  transition: 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
  padding: 14px 42px;
}

.brand {
  font-family: "Dancing Script", "Great Vibes", cursive;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold2);
  line-height: 1;
  text-shadow: 0 0 22px rgba(240, 220, 165, 0.35);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.28s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: min(88svh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(120px, 13vh, 148px) 42px clamp(40px, 6vh, 52px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
  transform: scale(1.03);
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
  transform: scale(1.03);
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-video.is-loaded {
  opacity: 1;
}

.hero-fallback {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 65% 35%, rgba(216, 185, 118, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.62)),
    linear-gradient(0deg, #11100e 0%, transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: min(760px, calc(100vw - 48px));
}

.eyebrow,
.section-label {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 18px;
}

.hero h1,
.intro h2,
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.15vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 650;
  text-wrap: balance;
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.032em;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 11.5em;
  margin-bottom: 4px;
}

.contact-title-main {
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.06;
  color: var(--text);
}

.contact-title-sub {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.14;
  font-weight: 560;
  color: rgba(247, 243, 235, 0.82);
}

.hero-text {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.62;
  margin: 26px 0 36px;
}

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

.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #fff2c9);
  color: #15100a;
  box-shadow: 0 18px 44px rgba(216, 185, 118, 0.18);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 42px;
  right: 42px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro,
.services,
.showcase,
.process,
.packages {
  padding: 120px 42px;
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.intro p,
.contact-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.62;
  margin-bottom: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 58px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-card {
  display: grid;
  grid-template-columns: 70px minmax(220px, 360px) minmax(260px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-card:last-child {
  border-bottom: 1px solid var(--line);
}

.service-card span {
  color: var(--gold);
  font-size: 14px;
}

.service-card h3,
.steps h3,
.package-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.018em;
  font-weight: 650;
}

.service-card p,
.steps p,
.package-grid p {
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.62;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.steps div,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  padding: 34px;
  min-height: 200px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 80px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.steps span {
  color: var(--gold);
  font-size: 18px;
}

.steps h3 {
  margin: 20px 0 12px;
}

.packages .section-heading {
  margin-bottom: 48px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
  gap: 16px;
}

.package-grid article {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(36px, 4.5vw, 48px) clamp(32px, 4vw, 44px);
}

.package-grid h3 {
  margin: 0 0 20px;
}

.package-grid p {
  margin: 0 0 8px;
  max-width: 52ch;
}

.package-grid .featured {
  background: linear-gradient(160deg, rgba(216, 185, 118, 0.26), rgba(255, 255, 255, 0.05));
  border-color: rgba(216, 185, 118, 0.5);
}

.package-grid .featured h3 {
  margin-bottom: 24px;
}

.package-grid strong {
  color: var(--gold2);
}

.package-grid a {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--gold2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

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

.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  min-height: 460px;
}

.photo-card.large {
  min-height: 520px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s var(--ease), opacity 1s var(--ease);
  opacity: 0.92;
}

.photo-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 58%);
  pointer-events: none;
}

.photo-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.photo-card span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.25vw, 30px);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.photo-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.contact {
  margin: 42px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(216, 185, 118, 0.12), rgba(255, 255, 255, 0.04));
  overflow: hidden;
  padding: 0;
}

.contact--photo {
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.55) 100%),
    url("./img/showcase-resort.png") center 35% / cover no-repeat;
}

.contact-inner {
  padding: clamp(48px, 6vw, 72px) clamp(28px, 4vw, 56px);
}

.contact--photo .contact-form {
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
  grid-template-areas:
    "copy form"
    "actions form";
  gap: clamp(24px, 4vw, 40px) clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 24px);
  max-width: 520px;
  align-self: center;
}

.contact-copy .eyebrow {
  margin-bottom: 0;
}

.contact-lead {
  max-width: 38ch;
}

.contact-actions {
  grid-area: actions;
  width: 100%;
  max-width: 320px;
  align-self: end;
  padding-bottom: 4px;
}

.btn-contact-light {
  width: 100%;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  background: #fff;
  color: #0b0b0b;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  line-height: 1.2;
}

.btn-contact-light:hover {
  background: #f7f3eb;
  transform: translateY(-2px);
}

.contact-tg-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
}

.contact-tg-hint {
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.02em;
  color: rgba(11, 11, 11, 0.62);
  text-transform: none;
}

.contact-form {
  grid-area: form;
  align-self: center;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.52);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.72);
}

.contact-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form input:focus {
  outline: 2px solid rgba(216, 185, 118, 0.45);
  outline-offset: 2px;
}

.contact-form input:invalid {
  border-color: rgba(216, 185, 118, 0.45);
}

.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-note {
  font-size: 14px;
  color: var(--gold2);
  min-height: 1.2em;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 42px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line);
}

.section-observe {
  opacity: 1;
  transform: none;
}

html.js .section-observe:not(.visible) {
  opacity: 0;
  transform: translateY(36px);
}

html.js .section-observe {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

html.js .section-observe.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header,
  .site-header.scrolled {
    padding: 14px 20px;
  }

  .hero {
    min-height: min(84svh, 680px);
    padding: 112px 20px 28px;
    align-items: flex-start;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    line-height: 1.1;
  }

  .hero-text {
    margin: 16px 0 26px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    margin-top: 4px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 20px 28px;
    font-size: 14px;
    letter-spacing: 0.1em;
    box-sizing: border-box;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
  }

  .intro,
  .services,
  .showcase,
  .process,
  .packages {
    padding: 86px 20px;
  }

  .contact {
    margin: 20px;
    padding: 0;
  }

  .contact-inner {
    padding: 40px 20px 44px;
  }

  .intro-grid,
  .steps,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "actions";
    gap: 28px;
  }

  .contact-copy {
    max-width: none;
    align-self: auto;
  }

  .contact-title {
    max-width: none;
  }

  .contact-title-main {
    font-size: clamp(28px, 8vw, 38px);
  }

  .contact-title-sub {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .contact-actions {
    max-width: none;
    align-self: stretch;
    padding-bottom: 0;
  }

  .btn-contact-light {
    width: 100%;
  }

  .contact-lead {
    max-width: none;
  }

  .photo-card,
  .photo-card.large {
    min-height: 380px;
  }

  .hero-photo,
  .hero-video {
    object-position: 62% 22%;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .footer {
    padding: 28px 20px;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-bottom {
    display: none;
  }
}

@media (min-width: 981px) {
  body {
    font-size: 18px;
  }

  .desktop-nav {
    font-size: 15px;
    gap: 32px;
  }

  .header-cta {
    font-size: 14px;
    padding: 13px 22px;
  }

  .brand {
    font-size: 40px;
  }

  .eyebrow,
  .section-label {
    font-size: 14px;
    letter-spacing: 0.28em;
  }

  .hero h1,
  .intro h2,
  .section-heading h2 {
    font-size: clamp(42px, 4.5vw, 72px);
  }

  .hero {
    min-height: 100svh;
    padding: 150px 42px 70px;
    align-items: center;
  }

  .hero-text {
    margin: 26px 0 36px;
  }

  .hero-actions {
    gap: 20px;
  }

  .hero-actions .btn {
    padding: 32px 48px;
    font-size: 15px;
    letter-spacing: 0.1em;
    min-height: 96px;
    min-width: 280px;
  }

  .hero-actions .btn-ghost {
    min-width: 320px;
  }

  .btn:not(.btn-contact-light) {
    padding: 18px 30px;
    font-size: 14px;
  }

  .intro p,
  .contact-lead,
  .service-card p,
  .steps p,
  .package-grid p {
    font-size: clamp(17px, 1.2vw, 21px);
  }

  .service-card p {
    margin-left: 30px;
  }

  .service-card h3,
  .steps h3,
  .package-grid h3 {
    font-size: clamp(26px, 2.4vw, 38px);
  }

  .service-card span {
    font-size: 16px;
  }

  .contact-form label span {
    font-size: 12px;
  }

  .contact-form input {
    padding: 16px 18px;
    font-size: 17px;
  }

  .contact-tg-label {
    font-size: 14px;
  }

  .contact-tg-hint {
    font-size: 13px;
  }

  .btn-contact-light {
    padding: 20px 26px;
  }

  .footer {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-grain,
  .section-observe {
    animation: none;
    transition: none;
  }

  .section-observe {
    opacity: 1;
    transform: none;
  }
}
