:root {
  --bg: #1a0a0a;
  --bg-2: #2d0d0d;
  --deep-red: #6b0f0f;
  --gold: #f5c518;
  --gold-soft: #ffe38a;
  --magenta: #cc00cc;
  --cyan: #00ccff;
  --cream: #fff8f0;
  --muted: #d7c7ba;
  --card: #1c1010;
  --card-2: #241111;
  --line: rgba(245, 197, 24, 0.26);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --lang-h: 42px;
  --nav-h: 82px;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

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

.lang-loading body {
  opacity: 0;
}

.lang-ready body {
  opacity: 1;
  transition: opacity 180ms ease;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 15%, rgba(204, 0, 204, 0.13), transparent 28rem),
    linear-gradient(140deg, var(--bg), #120606 52%, var(--bg-2));
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(rgba(245, 197, 24, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 0, 204, 0.05), rgba(0, 204, 255, 0.05));
  background-size: 22px 22px, 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  transform: translateZ(0);
  will-change: auto;
}

.gallery,
[class*="gallery"] {
  contain: layout style;
}

/* Gold Flame Loading Skeleton */
@keyframes goldShimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

@keyframes flamePulse {
  0%, 100% {
    box-shadow:
      0 0 8px 2px rgba(212, 175, 55, 0.3),
      0 0 20px 4px rgba(255, 100, 0, 0.1);
  }
  50% {
    box-shadow:
      0 0 18px 5px rgba(212, 175, 55, 0.55),
      0 0 35px 8px rgba(255, 100, 0, 0.25);
  }
}

.img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  background: #1a1200;
}

.img-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(212, 175, 55, 0.12) 45%,
    rgba(255, 140, 0, 0.22) 50%,
    rgba(212, 175, 55, 0.12) 55%,
    transparent 70%
  );
  background-size: 1200px 100%;
  animation:
    goldShimmer 1.8s linear infinite,
    flamePulse 2.5s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.img-wrap::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  content: "🔥";
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  opacity: 0.35;
  animation: flamePulse 1.8s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.img-wrap img {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.img-wrap.img-loaded::before,
.img-wrap.img-loaded::after {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.img-wrap.img-loaded img {
  opacity: 1;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--gold);
  color: #1b0909;
  padding: 0.65rem 0.9rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.language-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--lang-h);
  border-bottom: 1px solid rgba(245, 197, 24, 0.18);
  background: rgba(15, 5, 5, 0.92);
  backdrop-filter: blur(16px);
}

.language-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  gap: 1rem;
}

.language-note {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lang-button {
  min-width: 48px;
  border: 0;
  background: transparent;
  color: var(--cream);
  padding: 0.32rem 0.72rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--gold), #ffeeb0);
  color: #1b0909;
}

.site-header {
  position: fixed;
  top: var(--lang-h);
  right: 0;
  left: 0;
  z-index: 1100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.body-page .site-header {
  border-color: rgba(245, 197, 24, 0.18);
  background: rgba(18, 6, 6, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--nav-h);
  margin: 0 auto;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(245, 197, 24, 0.45);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: clamp(1rem, 1.9vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.nav-link {
  position: relative;
  border-radius: 999px;
  color: rgba(255, 248, 240, 0.88);
  padding: 0.56rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 18%;
  bottom: 0.28rem;
  left: 18%;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.nav-link:hover::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.06);
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  opacity: 0;
}

.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.08rem;
  cursor: pointer;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffe27a);
  color: #1b0909;
  box-shadow: 0 16px 36px rgba(245, 197, 24, 0.2);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 204, 255, 0.2);
}

.btn-ghost {
  border: 1px solid rgba(245, 197, 24, 0.32);
  background: rgba(255, 248, 240, 0.06);
  color: var(--cream);
}

.btn-whatsapp {
  background: #25d366;
  color: #06190d;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.22);
}

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 4, 4, 0.9), rgba(26, 10, 10, 0.58) 48%, rgba(26, 10, 10, 0.18)),
    linear-gradient(0deg, rgba(26, 10, 10, 0.96), transparent 34%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: calc(var(--lang-h) + var(--nav-h)) auto 0;
  padding: 5rem 0 4rem;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 6.2vw, 5.1rem);
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.lead {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: rgba(255, 248, 240, 0.88);
  font-size: clamp(1.08rem, 2.2vw, 1.38rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 999px;
  background: rgba(28, 16, 16, 0.68);
  color: var(--gold-soft);
  padding: 0.5rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-scroll {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.4rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 68px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  color: var(--gold);
}

.hero-scroll::after {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(-12px); opacity: 0.45; }
  50% { transform: translateY(12px); opacity: 1; }
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--lang-h) + var(--nav-h) + 5.5rem) 0 4.5rem;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 6, 6, 0.95), rgba(18, 6, 6, 0.62)),
    linear-gradient(0deg, var(--bg), transparent 58%);
}

.page-hero-inner,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.section-header {
  display: grid;
  max-width: 780px;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

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

.section-kicker {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(100deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(28, 16, 16, 0.96), rgba(23, 9, 9, 0.98));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(204, 0, 204, 0.16), rgba(0, 204, 255, 0.13));
  transition: opacity 220ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.5);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

.service-card,
.highlight-card,
.testimonial-card,
.notice-card {
  padding: 1.3rem;
}

.how-grid {
  counter-reset: steps;
}

.step-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffec9c);
  color: #160707;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.step-card p {
  margin: 0;
  color: var(--cream);
  font-weight: 800;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #170707;
  background: linear-gradient(135deg, var(--gold), #fff1ab);
}

.service-card p,
.highlight-card p,
.testimonial-card p,
.notice-card p {
  position: relative;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.media-card .media-caption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  border: 1px solid rgba(245, 197, 24, 0.24);
  border-radius: 8px;
  background: rgba(18, 6, 6, 0.72);
  padding: 0.75rem;
  backdrop-filter: blur(12px);
}

.appointment-banner {
  border-top: 1px solid rgba(245, 197, 24, 0.35);
  border-bottom: 1px solid rgba(245, 197, 24, 0.35);
  background:
    linear-gradient(90deg, rgba(107, 15, 15, 0.95), rgba(28, 16, 16, 0.95)),
    radial-gradient(circle at 30% 50%, rgba(245, 197, 24, 0.16), transparent 34rem);
}

.appointment-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 1.1rem;
  padding: 1.1rem 0;
}

.notice-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.18);
}

.appointment-inner strong {
  display: block;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-inner p {
  margin: 0.15rem 0 0;
  color: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.image-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack .img-wrap {
  min-height: 260px;
  border-radius: 8px;
}

.image-stack .img-wrap:nth-child(2) {
  margin-top: 3rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  color: var(--muted);
}

.feature-list li::before {
  width: 9px;
  height: 9px;
  margin-top: 0.56rem;
  border-radius: 999px;
  flex: 0 0 auto;
  content: "";
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  box-shadow: 0 0 0 4px rgba(0, 204, 255, 0.08);
}

.gallery-preview,
.markdag-gallery,
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-preview a,
.markdag-gallery figure,
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 8px;
  background: #100505;
}

.gallery-preview img,
.markdag-gallery img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 220ms ease;
}

.gallery-preview .img-wrap,
.markdag-gallery .img-wrap,
.gallery-item .img-wrap {
  position: absolute;
  inset: 0;
}

.gallery-preview a:hover img,
.markdag-gallery figure:hover img,
.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.12);
}

.gallery-preview a:nth-child(1),
.gallery-preview a:nth-child(4),
.masonry-grid .tall {
  grid-row: span 2;
}

.gallery-preview a:nth-child(1) {
  min-height: 520px;
}

.stars {
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 197, 24, 0.28);
  border-bottom: 1px solid rgba(245, 197, 24, 0.28);
  background:
    linear-gradient(135deg, rgba(107, 15, 15, 0.95), rgba(28, 16, 16, 0.98)),
    linear-gradient(90deg, rgba(204, 0, 204, 0.12), rgba(0, 204, 255, 0.12));
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25d366;
  color: #06190d;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  animation: pulse-whatsapp 2.4s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42), 0 14px 34px rgba(37, 211, 102, 0.34); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 14px 34px rgba(37, 211, 102, 0.34); }
}

.site-footer {
  border-top: 1px solid rgba(245, 197, 24, 0.18);
  background: #0f0505;
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  width: 86px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 8px;
}

.footer-logo-wrapper {
  width: 86px;
  height: auto;
  border-radius: 8px;
}

.footer-logo-wrapper .footer-logo {
  width: 100%;
  height: auto;
}

.footer-title {
  margin: 1rem 0 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 900;
}

.footer-copy,
.footer-list,
.footer-bottom {
  color: var(--muted);
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-heading {
  margin: 0 0 0.8rem;
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 950;
}

.social-link svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.packages-image-section {
  scroll-margin-top: calc(var(--lang-h) + var(--nav-h) + 24px);
}

.packages-price-list-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
}

.packages-image-section .img-wrap {
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.img-wrap .packages-price-list-image {
  height: auto;
  object-fit: contain;
}

.owners-section {
  scroll-margin-top: calc(var(--lang-h) + var(--nav-h) + 24px);
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg, #1a1a1a);
}

.owners-section h2 {
  margin: 0 0 30px;
  color: var(--gold, #d4af37);
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  letter-spacing: 2px;
  line-height: 1.15;
  text-transform: uppercase;
}

.owners-image-wrapper {
  display: flex;
  justify-content: center;
}

.owners-photo {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 3px solid var(--gold, #d4af37);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.owners-image-wrapper .img-wrap {
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.img-wrap .owners-photo {
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
  padding-top: 1rem;
  font-size: 0.9rem;
}

[data-animate] {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 650ms ease, opacity 650ms ease;
}

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

.package-tabs-wrap {
  position: sticky;
  top: calc(var(--lang-h) + var(--nav-h));
  z-index: 800;
  border-top: 1px solid rgba(245, 197, 24, 0.16);
  border-bottom: 1px solid rgba(245, 197, 24, 0.16);
  background: rgba(15, 5, 5, 0.9);
  backdrop-filter: blur(16px);
}

.package-tabs {
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: thin;
}

.package-tabs a,
.filter-button {
  flex: 0 0 auto;
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.05);
  color: var(--cream);
  padding: 0.62rem 0.9rem;
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.package-tabs a.is-active,
.filter-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #ffea93);
  color: #1b0909;
}

.package-section {
  scroll-margin-top: calc(var(--lang-h) + var(--nav-h) + 86px);
  padding: 2.5rem 0 0;
}

.package-tabs-wrap + .section {
  padding-top: 2.6rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  display: grid;
  align-content: space-between;
  gap: 1.3rem;
  padding: 1.4rem;
}

.package-with-image {
  align-content: start;
  padding: 0;
}

.package-media {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  background: #100505;
}

.package-media img,
.notice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.package-card:hover .package-media img {
  transform: scale(1.045);
}

.package-content {
  display: grid;
  gap: 1.1rem;
  padding: 1.25rem;
}

.price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
}

.pricing-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(245, 197, 24, 0.14);
  padding: 0.9rem;
  text-align: left;
}

.pricing-table th {
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.masonry-grid {
  align-items: stretch;
  grid-auto-flow: dense;
}

.gallery-item {
  border: 0;
  cursor: zoom-in;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item figcaption,
.markdag-gallery figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  border-radius: 8px;
  background: rgba(16, 5, 5, 0.76);
  color: var(--cream);
  padding: 0.55rem 0.7rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: none;
  place-items: center;
  background: rgba(5, 1, 1, 0.92);
  padding: 1.2rem;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: min(78vh, 860px);
  width: min(100%, 1100px);
  border: 1px solid rgba(245, 197, 24, 0.24);
  border-radius: 8px;
  object-fit: contain;
  background: #090303;
}

.lightbox .lightbox-image-wrapper {
  width: min(100%, 1100px);
  height: auto;
  max-height: min(78vh, 860px);
  border: 1px solid rgba(245, 197, 24, 0.24);
  border-radius: 8px;
  background: #090303;
}

.lightbox .lightbox-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 860px);
  border: 0;
  background: transparent;
  object-fit: contain;
}

.lightbox-caption {
  width: min(100%, 1100px);
  margin-top: 0.75rem;
  color: var(--cream);
  text-align: center;
  font-weight: 800;
}

.lightbox-button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 197, 24, 0.38);
  border-radius: 999px;
  background: rgba(28, 16, 16, 0.88);
  color: var(--gold);
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

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

.field label,
.radio-label {
  color: var(--gold-soft);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 240, 0.06);
  color: var(--cream);
  padding: 0.86rem 0.9rem;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
}

.field select option {
  background: #1a0a0a;
  color: var(--cream);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.radio-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 96px;
  justify-content: center;
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.radio-choice input {
  width: auto;
  padding: 0;
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.5rem;
  color: var(--muted);
  font-weight: 900;
}

.form-status.is-success {
  color: #5ff394;
}

.form-status.is-error {
  color: #ff968f;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-row {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
  padding-bottom: 0.9rem;
}

.info-row strong {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-embed {
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 12px;
  background: #100505;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
}

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

.faq-item {
  padding: 1.25rem;
}

.faq-item:last-child {
  grid-column: 1 / -1;
}

.notice-image {
  display: block;
  height: 220px;
  margin: -1.3rem -1.3rem 1rem;
  max-width: calc(100% + 2.6rem);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.values-list {
  counter-reset: values;
}

.value-card {
  padding: 1.3rem;
}

.value-card::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  counter-increment: values;
  content: "0" counter(values);
  color: rgba(245, 197, 24, 0.24);
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  :root {
    --nav-h: 76px;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--lang-h) + var(--nav-h));
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--lang-h) - var(--nav-h));
    transform: translateY(-110%);
    border-bottom: 1px solid rgba(245, 197, 24, 0.22);
    background: rgba(15, 5, 5, 0.98);
    padding: 1rem 16px 1.2rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link {
    border-radius: 8px;
    padding: 0.86rem 1rem;
  }

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

  .grid-3,
  .split,
  .contact-layout,
  .package-grid,
  .faq-list,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .faq-item:last-child {
    grid-column: auto;
  }

  .gallery-preview,
  .markdag-gallery,
  .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding: 0 12px;
    overflow: hidden;
    position: relative;
    z-index: 100;
  }

  .brand {
    flex: 1 1 auto;
    max-width: none;
    gap: 0.5rem;
    overflow: visible;
  }

  .brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex: 0 0 50px;
  }

  .brand-text {
    min-width: 0;
    overflow: visible;
  }

  .brand-name {
    max-width: none;
    overflow: visible;
    font-size: 1rem;
    text-overflow: unset;
    white-space: nowrap;
  }

  .header-actions {
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .nav-toggle {
    position: static;
    align-self: center;
    z-index: 101;
    flex-shrink: 0;
    place-items: center;
  }

  .nav-toggle span {
    position: relative;
    margin: 0;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    position: absolute;
    left: 0;
    margin: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --lang-h: 44px;
    --nav-h: 70px;
  }

  .language-note,
  .brand-tag {
    display: none;
  }

  .language-shell,
  .header-inner,
  .page-hero-inner,
  .section-inner,
  .footer-grid,
  .footer-bottom,
  .appointment-inner,
  .package-tabs {
    width: calc(100% - 24px);
    max-width: var(--max);
  }

  .brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .brand {
    max-width: none;
  }

  .brand-name {
    max-width: none;
    overflow: visible;
    font-size: clamp(0.75rem, 3.8vw, 1rem);
    text-overflow: unset;
    white-space: nowrap;
  }

  .hero-inner {
    width: calc(100% - 24px);
    max-width: var(--max);
    padding-top: 4rem;
  }

  h1 {
    width: auto;
    max-width: calc(100vw - 24px);
    font-size: clamp(1.55rem, 6.8vw, 1.92rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.52rem, 7.2vw, 1.95rem);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .packages-image-section .section-header h2 {
    font-size: clamp(1.32rem, 6vw, 1.62rem);
  }

  .section-header,
  .section-header.center,
  .appointment-inner > *,
  .split > *,
  .grid > *,
  .card,
  .image-stack {
    min-width: 0;
  }

  .appointment-inner p,
  .section-copy,
  .card p,
  .feature-list li {
    overflow-wrap: break-word;
  }

  .hero-content,
  .lead {
    width: min(100%, 360px);
    max-width: 100%;
  }

  .eyebrow {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    font-size: 0.76rem;
  }

  .eyebrow::before {
    width: 28px;
  }

  .hero-meta,
  .cta-row,
  .radio-group {
    align-items: stretch;
    flex-direction: column;
  }

  .radio-choice {
    width: 100%;
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .appointment-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .image-stack,
  .field-grid,
  .grid-2,
  .grid-4,
  .footer-grid,
  .gallery-preview,
  .markdag-gallery,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .image-stack .img-wrap:nth-child(2) {
    margin-top: 0;
  }

  .gallery-preview a:nth-child(1),
  .gallery-preview a:nth-child(4) {
    min-height: 260px;
    grid-row: auto;
  }

  .media-card img {
    min-height: 220px;
  }

  .package-media {
    min-height: 220px;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }

  .lightbox-button {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 1rem;
  }
}

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