/* ===================================================
   VETTA BEAUTY LOUNGE — Main Stylesheet
   =================================================== */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #000000;
  --bg-2: #060606;
  --bg-3: #0e0e0e;
  --accent: #7ab4d4;
  --accent-light: #a8d0e8;
  --accent-dark: #5294b8;
  --text: #f0ebe4;
  --text-muted: #9d9da3;
  --border: rgba(122, 180, 212, 0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', system-ui, sans-serif;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1200px;
  --nav-h: 76px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ----- Typography ----- */
.section__label {
  display: block;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.section__title em {
  font-style: normal;
  font-family: var(--serif);
  color: var(--accent);
}

.services__header .section__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-detail .section__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#solarium .section__title em,
#microneedling .section__title em {
  color: var(--text);
}

.before-after .section__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#kontakt-hero,
#termin-hero,
#preise-hero,
#impressum-hero,
#datenschutz-hero,
#leistungen-hero,
#agb-hero,
#galerie-hero {
  align-items: flex-start;
  min-height: 0;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 1.5rem;
}
#kontakt-hero .container,
#termin-hero .container,
#preise-hero .container,
#impressum-hero .container,
#datenschutz-hero .container,
#leistungen-hero .container,
#agb-hero .container,
#galerie-hero .container {
  text-align: center;
}
#kontakt-hero .page-hero__title,
#termin-hero .page-hero__title,
#preise-hero .page-hero__title,
#impressum-hero .page-hero__title,
#datenschutz-hero .page-hero__title,
#leistungen-hero .page-hero__title,
#agb-hero .page-hero__title,
#galerie-hero .page-hero__title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  text-align: center;
}
.btn--accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--accent:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240, 235, 228, 0.2);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.75rem 1.75rem;
}
.btn--ghost:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.services__grid.reveal {
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  font-family: var(--serif);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.nav.scrolled,
.nav--inner {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__container {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-text {
  display: none;
}

.nav__logo-img {
  height: 100px;
  width: auto;
}

.nav__logo-vetta {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__logo-sub {
  font-family: var(--serif);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav__links a:hover,
.nav__links a.active-page {
  color: var(--accent);
}
.nav__links a:hover::after,
.nav__links a.active-page::after {
  transform: scaleX(1);
}

.nav__cta {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap;
}
.nav__cta::after {
  display: none !important;
}
.nav__cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
  transform: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all var(--ease);
}
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
}
.hero__pre {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.4s;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.7s;
}
.hero__title em {
  display: block;
  font-style: normal;
  font-size: 1em;
  color: var(--text);
}
.hero__subtitle {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.3s;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2.2s;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: linePulse 2.5s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes linePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3.5rem;
  width: 100%;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  display: block;
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  color: var(--text);
}
.page-hero__title em {
  font-style: normal;
  color: inherit;
}

.page-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: 9rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about__image:hover img {
  transform: scale(1.04);
}
.about__img-placeholder {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about__badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  background: var(--accent);
  color: var(--bg);
  padding: 1.4rem 1.75rem;
  text-align: center;
  min-width: 140px;
}
.about__badge span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.about__badge strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  line-height: 1.85;
}
.about__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
}
.about__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===================================================
   SERVICES GRID
   =================================================== */
.services {
  position: relative;
  padding: 9rem 0;
  background: var(--bg-2);
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card {
  width: 33.333%;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-2);
  padding: 2.75rem 2.25rem;
  transition: background var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--bg-3);
}

.service-card__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(122, 180, 212, 0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--ease);
}
.service-card:hover .service-card__num {
  color: rgba(122, 180, 212, 0.28);
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.service-card__text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 1.75rem;
}
.service-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing var(--ease);
  margin-top: auto;
}
.service-card__link:hover {
  letter-spacing: 0.22em;
}

/* Service detail (leistungen.html) */
.service-detail {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child {
  border-bottom: none;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.service-detail__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-detail__image:hover img {
  transform: scale(1.04);
}
.service-detail__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail__img-placeholder span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-detail__benefits {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-detail__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.service-detail__benefit::before {
  content: '•';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing {
  padding: 9rem 0;
}
.pricing__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing__tabs {
  display: flex;
  justify-content: center;
  border: 1px solid var(--border);
  width: fit-content;
  margin: 0 auto 3rem;
}
.pricing__tab {
  padding: 0.85rem 2rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
.pricing__tab:last-child {
  border-right: none;
}
.pricing__tab:hover,
.pricing__tab.active {
  background: rgba(122, 180, 212, 0.1);
  color: var(--accent);
}

.pricing__content {
  display: none;
}
.pricing__content.active {
  display: block;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pricing__category {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
}
.pricing__cat-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.pricing__cat-title small {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
}
.pricing__items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pricing__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing__item span:last-child {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing__discount {
  margin-top: 2rem;
  padding: 1.25rem 2rem;
  border: 1px solid var(--border);
  background: rgba(122, 180, 212, 0.04);
  text-align: center;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.pricing__discount strong {
  color: var(--accent);
}

.pricing__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* Packages */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.package-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.package-card:hover {
  border-color: var(--accent-dark);
  background: var(--bg-3);
}
.package-card--featured {
  border-color: var(--accent);
  background: var(--bg-3);
}

.package-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
}
.package-card__size {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
}
.package-card__list {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.package-card__list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.package-card__list li:last-child {
  border-bottom: none;
}
.package-card__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
}
.package-card__btn {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  padding: 9rem 0;
  background: var(--bg-2);
}
.gallery__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.6rem;
}
.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item--large {
  grid-column: span 2;
}
.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: #000;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease);
}
.gallery__placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.gallery__item:hover .gallery__placeholder {
  border-color: rgba(122, 180, 212, 0.3);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.gallery__cta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ===================================================
   BOOKING FORM
   =================================================== */
.booking {
  padding: 9rem 0;
}
.booking--page {
  background: var(--bg);
}
.booking__header {
  text-align: center;
  margin-bottom: 1rem;
}
.booking__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.booking__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form__group label {
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--serif);
  font-size: 0.9rem;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--accent);
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #333840;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a8a90'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form__group select option {
  background: #1a1a1a;
}
.form__group select optgroup {
  color: var(--accent);
}
.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form__success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(74, 150, 100, 0.12);
  border: 1px solid rgba(74, 150, 100, 0.35);
  color: #7bc99a;
  font-size: 0.9rem;
}
.form__success.visible {
  display: block;
}

.form__error {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(180, 80, 80, 0.12);
  border: 1px solid rgba(180, 80, 80, 0.35);
  color: #e89090;
  font-size: 0.85rem;
}
.form__error.visible {
  display: block;
}

.booking__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.booking__info-item {
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.booking__info-title {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.booking__info-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.booking__info-text a {
  color: var(--accent);
}
.booking__info-text a:hover {
  color: var(--accent-light);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 3rem 0;
  background: var(--bg-2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.contact__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact__item a {
  color: var(--text-muted);
  transition: color var(--ease);
}
.contact__item a:hover {
  color: var(--accent);
}

.contact__map iframe {
  display: block;
  border: 1px solid var(--border);
  width: 100%;
  filter: grayscale(80%) invert(88%) hue-rotate(180deg) brightness(0.92);
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  padding: 6rem 0;
  background: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner h2 em {
  font-style: normal;
  color: inherit;
}
.cta-banner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn {
  position: relative;
}

/* Stats bar */
.stats-bar {
  padding: 3.5rem 0;
  background: var(--bg);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.stat__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===================================================
   LEGAL PAGES
   =================================================== */
.legal {
  padding: 6rem 0 9rem;
}
.legal__body {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.legal__section h2 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.legal__section h3 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 1.5rem 0 0.6rem;
}
.legal__section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.legal__section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}
.legal__section ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.legal__section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1rem;
}
.legal__section a {
  color: var(--accent);
}
.legal__section a:hover {
  color: var(--accent-light);
}
.legal__placeholder {
  display: inline-block;
  background: rgba(122, 180, 212, 0.1);
  border: 1px dashed rgba(122, 180, 212, 0.3);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  font-size: 0.82rem;
  border-radius: 2px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  font-family: var(--serif);
  background: #000;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.footer__logo em {
  font-style: normal;
}
.footer__brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer__insta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: color var(--ease);
}
.footer__insta:hover {
  color: var(--accent-light);
}

.footer__nav-title {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a {
  font-size: 0.82rem;
  color: #484850;
  transition: color var(--ease);
}
.footer__nav a:hover {
  color: var(--text-muted);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #32323a;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  color: #32323a;
  transition: color var(--ease);
}
.footer__legal a:hover {
  color: var(--text-muted);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .nav__links {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav__links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__links a {
    font-size: 1rem;
    color: var(--text);
  }
  .nav__cta {
    padding: 0.8rem 2rem !important;
  }
  .nav__container {
    justify-content: center;
    position: relative;
  }
  .nav__hamburger {
    display: flex;
    position: absolute;
    right: 2rem;
  }
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image {
    aspect-ratio: unset;
    height: auto;
    max-height: none;
    border: none;
    overflow: visible;
  }
  .about__image img {
    height: auto;
    object-fit: unset;
    width: 100%;
  }
  .about__badge {
    bottom: -1rem;
    right: -0.5rem;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .booking__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }
  .pricing__tabs {
    flex-direction: column;
    width: 100%;
  }
  .pricing__tab {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .pricing__tab:last-child {
    border-bottom: none;
  }
  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .page-hero__title {
    font-size: 2rem;
  }
}

@media (max-width: 540px) {
  .hero__scroll {
    bottom: 0.5rem;
  }
  .hero__title {
    font-size: 1.9rem;
    letter-spacing: 0.08em;
  }
  .packages__grid {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery__item--large {
    grid-column: span 1;
  }
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
}
