:root {
  --ink: #2d1e18;
  --muted: #7f665b;
  --cream: #fffaf3;
  --ivory: #f8efe4;
  --peach: #efc7b3;
  --blush: #d99090;
  --rose: #9d5160;
  --gold: #b98b43;
  --gold-light: #f0d89a;
  --shadow: 0 28px 80px rgba(73, 45, 31, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 216, 154, 0.36), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(217, 144, 144, 0.26), transparent 24rem),
    linear-gradient(135deg, #fffaf3 0%, #f9eadc 46%, #f6dfcf 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -8rem;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  border: 1px solid rgba(185, 139, 67, 0.28);
  border-radius: 50%;
  z-index: -1;
}

body::after {
  inset: 12% -7rem auto auto;
  width: 18rem;
  height: 34rem;
  border-radius: 999px;
  transform: rotate(24deg);
}

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

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

.site-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 16px 0 48px;
  padding: 14px 16px;
  background: rgba(255, 250, 243, 0.74);
  border: 1px solid rgba(185, 139, 67, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(78, 47, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark,
.site-nav,
.hero-actions,
.booking-actions,
.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cream);
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #7d4635, #c99a55);
  border-radius: 50%;
}

.site-nav {
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(185, 139, 67, 0.12);
}

.header-actions {
  gap: 10px;
  justify-content: end;
}

.language-switcher {
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(185, 139, 67, 0.18);
  border-radius: 999px;
}

.language-option {
  min-width: 38px;
  height: 36px;
  padding: 0 10px;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--ink);
  background: rgba(185, 139, 67, 0.12);
}

.language-option.is-active {
  color: #fff9ef;
  background: linear-gradient(135deg, #7c3d31, #b98b43);
  box-shadow: 0 10px 24px rgba(125, 70, 53, 0.16);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 800;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff9ef;
  background: linear-gradient(135deg, #7c3d31, #ba795b 52%, #b98b43);
  box-shadow: 0 14px 30px rgba(125, 70, 53, 0.24);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(185, 139, 67, 0.26);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(125, 70, 53, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(185, 139, 67, 0.12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.hero {
  min-height: calc(100vh - 140px);
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions,
.booking-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 250, 243, 0.62);
  border: 1px solid rgba(185, 139, 67, 0.2);
  border-radius: 22px;
}

.hero-stats dt {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -9% auto auto;
  width: 76%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(240, 216, 154, 0.7), rgba(217, 144, 144, 0.28));
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(145deg, rgba(185, 139, 67, 0.95), rgba(255, 255, 255, 0.2), rgba(125, 70, 53, 0.4)) border-box;
  border: 1px solid transparent;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  border-radius: 28px;
}

.shine-line {
  position: absolute;
  inset: -35% auto auto -20%;
  width: 38%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(17deg);
  animation: glimmer 6s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 12%;
  width: min(220px, 56%);
  padding: 18px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(185, 139, 67, 0.28);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(73, 45, 31, 0.16);
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 6px;
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.intro-band,
.booking {
  position: relative;
  margin: 0 0 96px;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45, 30, 24, 0.94), rgba(108, 64, 51, 0.92));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-band::before,
.booking::before {
  content: "";
  position: absolute;
  inset: -42% -12% auto auto;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(240, 216, 154, 0.32);
  border-radius: 50%;
}

.intro-band p {
  position: relative;
  max-width: 910px;
  margin: 0;
  color: #fff4e8;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.services,
.gallery {
  margin-bottom: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  grid-column: 1;
  margin-bottom: 0;
}

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

.price-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(185, 139, 67, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 46px rgba(73, 45, 31, 0.08);
}

.price-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -56px;
  width: 130px;
  height: 130px;
  background: rgba(240, 216, 154, 0.34);
  border-radius: 50%;
}

.price-card.featured {
  color: #fff8ec;
  background: linear-gradient(155deg, #7f3d34, #ba7b60);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--rose);
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(185, 139, 67, 0.2);
  border-radius: 18px;
}

.featured .service-icon {
  color: var(--ink);
}

.price-card p {
  color: var(--muted);
  line-height: 1.65;
}

.price-card.featured p {
  color: rgba(255, 248, 236, 0.76);
}

.price-row {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.old-price {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.featured .old-price {
  color: rgba(255, 248, 236, 0.58);
}

.price-row strong {
  font-family: "DM Serif Display", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.benefits {
  align-items: stretch;
  margin-bottom: 112px;
}

.benefits-panel,
.texture-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.benefits-panel {
  background: rgba(255, 250, 243, 0.76);
  border: 1px solid rgba(185, 139, 67, 0.2);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 54px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(185, 139, 67, 0.16);
  border-radius: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff9ef;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 7px;
  height: 12px;
  border: solid #fff9ef;
  border-width: 0 2px 2px 0;
  transform: translateY(-62%) rotate(45deg);
}

.texture-panel {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 540px;
  color: #fff8ef;
  background:
    linear-gradient(180deg, rgba(45, 30, 24, 0.08), rgba(45, 30, 24, 0.75)),
    url("assets/dikta-mua-opening-poster.png") center / cover;
}

.texture-panel span {
  width: fit-content;
  margin-bottom: auto;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 250, 243, 0.76);
  border-radius: 999px;
}

.texture-panel h3 {
  max-width: 420px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.texture-panel p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.8);
  line-height: 1.8;
}

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

.gallery-grid figure {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:nth-child(1) img {
  object-position: 21% 27%;
}

.gallery-grid figure:nth-child(2) img {
  object-position: 50% 27%;
}

.gallery-grid figure:nth-child(3) img {
  object-position: 78% 27%;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gallery-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: #fff8ef;
  font-weight: 800;
  background: rgba(45, 30, 24, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  color: #fff8ef;
}

.booking .eyebrow {
  color: var(--gold-light);
}

.booking h2,
.booking p,
.booking-actions {
  position: relative;
}

.booking p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.78);
  line-height: 1.8;
}

.booking .button-ghost {
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 46px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes glimmer {
  0%,
  34% {
    transform: translateX(0) rotate(17deg);
  }

  58%,
  100% {
    transform: translateX(420%) rotate(17deg);
  }
}

@media (max-width: 1020px) {
  .section-grid,
  .booking,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

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

  .gallery-grid figure {
    min-height: 420px;
  }

  .booking-actions {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 22px, 1160px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    border-radius: 28px;
  }

  .brand-mark strong,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: rgba(255, 255, 255, 0.42);
    border-radius: 20px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.6rem);
  }

  .hero-stats,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }

  .floating-note {
    right: 10px;
  }

  .intro-band,
  .services,
  .benefits,
  .gallery,
  .booking {
    margin-bottom: 72px;
  }

  .texture-panel {
    min-height: 440px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
