/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #f5f0eb;
  --cream: #e8e0d6;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --charcoal: #1a1a1a;
  --slate: #2a2a2a;
  --muted: #8a8178;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.nav__links {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav__cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s !important;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 110;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu__cta {
  color: var(--gold);
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  padding: 14px 36px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  min-height: 48px;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--muted);
}

.btn--outline:hover {
  border-color: var(--white);
}

.btn--full { width: 100%; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(201, 168, 76, 0.02) 2px,
      rgba(201, 168, 76, 0.02) 4px
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 340px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === SECTION HEADER === */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

.section-header__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  background: var(--black);
}

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

.service-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.service-card__time {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 12px;
}

/* === ABOUT === */
.about {
  padding: 100px 0;
  background: var(--charcoal);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about__image-block {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05)),
    var(--slate);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about__pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(var(--slate) 0% 25%, transparent 0% 50%) 0 0 / 30px 30px;
  opacity: 0.3;
}

.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about__text p {
  color: var(--cream);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about__hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--slate);
}

.about__hours h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row span:first-child { color: var(--muted); }

/* === GALLERY === */
.gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery__placeholder {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg,
      hsl(var(--hue), 20%, 18%) 0%,
      hsl(var(--hue), 15%, 12%) 100%
    );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover .gallery__placeholder {
  transform: scale(1.04);
}

.gallery__placeholder span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* === BOOKING === */
.booking {
  padding: 100px 0;
  background: var(--charcoal);
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.booking__info p {
  color: var(--cream);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.booking__location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.booking__location svg { color: var(--gold); flex-shrink: 0; }

.booking__form-wrapper {
  background: var(--slate);
  border-radius: var(--radius);
  padding: 32px 24px;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}

.form-step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.form-step__nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.form-step__nav .btn { flex: 1; }

/* Service Select */
.service-select {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.service-option input { display: none; }

.service-option__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  min-height: 48px;
}

.service-option__card:hover {
  border-color: var(--muted);
}

.service-option input:checked + .service-option__card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.service-option__name {
  font-weight: 600;
  font-size: 0.92rem;
}

.service-option__meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Calendar */
.calendar {
  margin-bottom: 20px;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar__month {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.calendar__nav {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px;
  border-radius: 50%;
  transition: color 0.3s, background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.calendar__nav:hover {
  color: var(--white);
  background: var(--charcoal);
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  margin-bottom: 8px;
}

.calendar__days span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--white);
  transition: all 0.2s;
  min-width: 40px;
  min-height: 40px;
}

.calendar__day:hover:not(.calendar__day--disabled):not(.calendar__day--empty) {
  background: var(--charcoal);
}

.calendar__day--selected {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700;
}

.calendar__day--today {
  border: 1.5px solid var(--gold);
}

.calendar__day--disabled {
  color: var(--slate);
  cursor: not-allowed;
}

.calendar__day--empty {
  cursor: default;
}

/* Time Slots */
.time-slots {
  display: none;
}

.time-slots.visible { display: block; }

.time-slots__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.time-slots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 12px 8px;
  background: var(--charcoal);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--white);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-slot:hover { border-color: var(--muted); }

.time-slot.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

/* Form Fields */
.form-fields {
  display: grid;
  gap: 16px;
  margin-bottom: 8px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1.5px solid var(--slate);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s;
  min-height: 48px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { resize: vertical; }

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 20px 0;
}

.confirmation__icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.confirmation__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.confirmation__details {
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  margin-bottom: 20px;
}

.confirmation__details p {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}

.confirmation__details p:last-child { border-bottom: none; }

.confirmation__details span:first-child { color: var(--muted); }

.confirmation__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* === FOOTER === */
.footer {
  padding: 64px 0 32px;
  background: var(--black);
  border-top: 1px solid var(--slate);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--white); }

.footer__col p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--muted);
  transition: color 0.3s;
  padding: 4px;
}

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

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--slate);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* === RESPONSIVE === */

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--tall .gallery__placeholder {
    aspect-ratio: auto;
    height: 100%;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--wide .gallery__placeholder {
    aspect-ratio: 2;
  }

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

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

@media (min-width: 900px) {
  .container { padding: 0 40px; }

  .nav { padding: 20px 40px; }
  .nav--scrolled { padding: 14px 40px; }

  .nav__links { display: flex; }
  .nav__toggle { display: none; }

  .hero { padding: 0 40px 80px; }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .booking__layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .booking__form-wrapper {
    padding: 40px 32px;
    position: sticky;
    top: 100px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .hero__title {
    font-size: 9rem;
  }

  .service-card {
    padding: 36px 32px;
  }
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
