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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* === Variables === */
:root {
  --clr-bg: #0a0a0a;
  --clr-surface: #141414;
  --clr-text: #ffffff;
  --clr-text-muted: #b8b8b8;
  --clr-gold: #c9a961;
  --clr-gold-bright: #e6c98a;
  --clr-border: rgba(201, 169, 97, 0.2);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.2rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);

  --container-max: 1200px;
  --nav-height: 72px;
  --radius: 12px;
}

/* === Base === */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

::selection {
  background-color: var(--clr-gold);
  color: var(--clr-bg);
}

/* === Layout === */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text);
}

.section-divider {
  width: 80px;
  height: 1px;
  background-color: var(--clr-gold);
  margin: 1.25rem auto 0;
}

/* === Navigation === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: var(--clr-bg);
  border-bottom-color: var(--clr-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  transition: color 0.25s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-gold);
  transition: width 0.25s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--clr-gold);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

.btn--call .btn__icon {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1010;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 990;
}

.nav__backdrop.active {
  display: block;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--clr-gold-bright);
  box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

.btn--outline {
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: rgba(201, 169, 97, 0.1);
  border-color: var(--clr-gold-bright);
  color: var(--clr-gold-bright);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg1.webp') center/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}

.hero__logo {
  width: 192px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__tagline {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--clr-gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero__subtext {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--clr-gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* === Services === */
.services {
  padding: 6rem 0;
}

.services__grid {
  display: grid;
  gap: 3rem;
}

.services__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.services__img {
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}

.price-list {
  max-width: 650px;
  margin-inline: auto;
  width: 100%;
}

.price-list__item {
  display: flex;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease;
}

.price-list__item:hover {
  background-color: rgba(201, 169, 97, 0.04);
}

.price-list__service {
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-list__service small {
  display: block;
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  white-space: normal;
}

.price-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0 0.75rem;
  min-width: 20px;
  align-self: center;
  transform: translateY(-4px);
}

.price-list__price {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-gold);
  font-size: 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-list__vip {
  background-color: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 0.75rem;
}

.price-list__vip-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-list__vip-title {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--clr-gold-bright);
}

.price-list__vip-price {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--clr-gold-bright);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-list__vip-desc {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.services__note {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  margin-top: 2rem;
}

/* === About === */
.about {
  padding: 6rem 0;
  background-color: var(--clr-surface);
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__content .section-label,
.about__content .section-title,
.about__content .section-divider {
  text-align: left;
  margin-left: 0;
}

.about__content .section-divider {
  margin-inline: 0;
}

.about__content p {
  color: var(--clr-text-muted);
  margin-top: 1.25rem;
}

.about__features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  color: var(--clr-gold);
}

.about__feature-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about__feature-text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

/* === Hours === */
.hours {
  padding: 6rem 0;
}

.hours__card {
  max-width: 500px;
  margin-inline: auto;
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201, 169, 97, 0.06);
}

.hours__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
  font-size: var(--fs-small);
  font-weight: 500;
}

.hours__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-text-muted);
}

.hours__status.open .hours__status-dot {
  background-color: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

.hours__status.closed .hours__status-dot {
  background-color: #ef4444;
}

.hours__list {
  margin-bottom: 1.5rem;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__day {
  color: var(--clr-text-muted);
}

.hours__time {
  font-weight: 500;
  color: var(--clr-text);
}

.hours__note {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

/* === Review === */
.review {
  padding: 6rem 0;
}

.review__card {
  max-width: 650px;
  margin-inline: auto;
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201, 169, 97, 0.06);
}

.review__card .section-title {
  margin-top: 0.5rem;
}

.review__text {
  color: var(--clr-text-muted);
  margin-top: 1.5rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

.review__stars {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  color: var(--clr-gold);
}

.review__cta {
  margin-top: 1.5rem;
}

.review__cta svg {
  color: var(--clr-bg);
}

/* === Contact === */
.contact {
  padding: 6rem 0;
  background-color: var(--clr-surface);
}

.contact__grid {
  display: grid;
  gap: 3rem;
}

.contact__map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.contact__map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
  filter: grayscale(0.4) contrast(1.1) brightness(0.9);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  color: var(--clr-gold);
}

.contact__label {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact__text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact__link {
  color: var(--clr-gold);
  transition: color 0.2s ease;
}

.contact__link:hover,
.contact__link:focus-visible {
  color: var(--clr-gold-bright);
}

.btn--directions {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* === Footer === */
.footer {
  padding: 3rem 0;
  background-color: #080808;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.footer__logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0.7;
}

.footer__name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer__address,
.footer__phone {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: 0.25rem;
}

.footer__link {
  color: var(--clr-gold);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--clr-gold-bright);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.5rem;
}

/* === Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .hero__bg {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* === Media Queries === */

/* Mobile — small screens */
@media (max-width: 767px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background-color: var(--clr-surface);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    border-left: 1px solid var(--clr-border);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__hamburger {
    display: flex;
  }

  .btn--call .btn__text {
    display: none;
  }

  .btn--call .btn__icon {
    display: block;
  }

  .btn--call {
    padding: 0.6rem;
    border-radius: 50%;
    width: 42px;
    height: 42px;
  }

  .services__images {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .services__images .services__img:nth-child(2),
  .services__images .services__img:nth-child(3) {
    display: none;
  }

  .price-list__service {
    white-space: normal;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact__map-wrap iframe {
    height: 100%;
    min-height: 400px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .services__images {
    grid-template-columns: 1fr;
    gap: 1rem;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }

  .services__images .services__img:nth-child(2),
  .services__images .services__img:nth-child(3) {
    display: block;
  }
}
