:root {
  --gold: #d8ab3d;
  --gold-dark: #a97816;
  --text: #2e2413;
  --muted: #7c6b4a;
  --line: rgba(216, 171, 61, 0.2);
  --bg: #fffdf8;
  --soft: rgba(255, 250, 241, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 253, 248, 0.84), rgba(255, 251, 244, 0.9)),
    url("assets/gold-glitter.jpg") center top / cover fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18));
  opacity: 1;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 14px max(20px, calc((100% - 1180px) / 2)) 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.logo-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 180px;
}

.logo-image {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(91, 64, 11, 0.28));
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 12px 18px;
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid rgba(216, 171, 61, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(46, 36, 19, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 8px;
}

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

.hero-banner {
  position: relative;
  min-height: 720px;
  padding-top: 132px;
  background:
    linear-gradient(rgba(46, 36, 19, 0.34), rgba(46, 36, 19, 0.12)),
    url("assets/banner-photo.jpeg") center center / cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-overlay {
  width: min(1180px, calc(100% - 40px));
  padding: 48px 0 54px;
  color: white;
}

.hero-small,
.section-label {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-overlay h1,
.welcome-section h2,
.section-title h2,
.booking-strip h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.hero-overlay h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
}

.hero-note {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.welcome-section,
.services-section,
.gallery-section,
.reviews-section,
.booking-strip,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.welcome-section {
  padding: 54px 0 24px;
  text-align: center;
}

.section-label {
  color: var(--gold-dark);
}

.welcome-section h2,
.section-title h2,
.booking-strip h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--gold);
}

.contact-card h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  color: var(--gold);
}

.welcome-copy,
.booking-copy,
.contact-text,
.open-status {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.welcome-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  font-weight: 700;
}

.gold-button-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-dark);
  border-color: rgba(216, 171, 61, 0.28);
}

.gold-button-disabled {
  background: rgba(239, 228, 200, 0.9);
  border-color: rgba(216, 171, 61, 0.18);
  color: #9d8755;
}

.section-title {
  padding-bottom: 24px;
  text-align: center;
}

.services-section {
  padding: 36px 0 30px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 12px 28px rgba(169, 120, 22, 0.1);
}

.service-photo,
.gallery-tile,
.gallery-page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-photo {
  min-height: 190px;
  background-color: #f7f2e8;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-photo-manicure {
  background-image: url("assets/service-manicure.jpg");
}

.service-photo-pedicure {
  background-image: url("assets/service-pedicure.jpeg");
}

.service-photo-waxing {
  background-image: url("assets/service-waxing.jpeg");
}

.service-photo-additional {
  background-image: url("assets/service-additional.jpeg");
}

.service-card h3 {
  margin: 0;
  padding: 18px 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--text);
}

.services-cta,
.services-page-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-section {
  padding: 40px 0 32px;
}

.services-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 70px;
  position: relative;
  z-index: 1;
}

.services-page-hero {
  padding: 24px 0 28px;
  text-align: center;
}

.services-page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  color: var(--gold);
}

.services-page-copy {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.service-menu-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(169, 120, 22, 0.1);
}

.service-menu-image {
  min-height: 280px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-menu-content h2 {
  margin: 6px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: #5b7d4a;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 171, 61, 0.18);
  color: var(--text);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: #1f1f1f;
}

.price-note {
  color: var(--text);
  line-height: 1.9;
}

.price-note p {
  margin: 0 0 14px;
}

.gallery-marquee-wrap {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.gallery-marquee {
  overflow: visible;
  mask-image: none;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  width: 100%;
  animation: none;
}

.gallery-marquee-reverse .gallery-track {
  animation-direction: normal;
}

.gallery-tile {
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(210, 168, 95, 0.18);
  box-shadow: 0 10px 26px rgba(169, 120, 22, 0.08);
}

.gallery-tile[aria-hidden="true"] {
  display: none;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cta,
.gallery-page-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.reviews-section {
  padding: 28px 0 18px;
}

.reviews-marquee {
  --reviews-loop-width: 0px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: reviews-scroll 30s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(calc(-1 * var(--reviews-loop-width)));
  }

  to {
    transform: translateX(0);
  }
}

.review-card {
  flex: 0 0 320px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(169, 120, 22, 0.08);
  text-align: center;
}

.review-stars {
  margin-bottom: 14px;
  color: #ffd84a;
  font-size: 1.18rem;
  letter-spacing: 0.24em;
  text-shadow: 0 2px 12px rgba(216, 171, 61, 0.2);
}

.review-quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.35;
  color: var(--text);
}

.review-source {
  margin: 16px 0 0;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(210, 168, 95, 0.32);
  background: rgba(255, 255, 255, 0.86);
  color: var(--gold-dark);
  font-weight: 700;
}

.pagination-link.is-current {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.booking-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(169, 120, 22, 0.1);
}

.booking-strip .booking-copy {
  margin: 12px 0 0;
  max-width: none;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 40px 0 70px;
}

.contact-card,
.hours-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(169, 120, 22, 0.1);
}

.contact-text {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  font-size: 1rem;
  border-radius: 999px;
  background: rgba(216, 171, 61, 0.14);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

.hours-row:last-of-type {
  border-bottom: 0;
}

.hours-row.is-today {
  color: var(--text);
  font-weight: 700;
}

.open-status {
  margin-top: 20px;
  max-width: none;
  color: var(--gold-dark);
  font-weight: 700;
}

.site-footer {
  padding: 24px 20px 34px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer p {
  margin: 0;
}

.gallery-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 70px;
  position: relative;
  z-index: 1;
}

.gallery-page-hero {
  padding: 24px 0 28px;
  text-align: center;
}

.gallery-page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  color: var(--gold);
}

.gallery-page-copy {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

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

.gallery-page-item {
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(210, 168, 95, 0.18);
  box-shadow: 0 10px 26px rgba(169, 120, 22, 0.08);
}

@media (max-width: 920px) {
  .site-header,
  .contact-section,
  .booking-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-menu-card {
    grid-template-columns: 1fr;
  }

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

  .booking-strip {
    justify-items: start;
  }

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

@media (max-width: 720px) {
  .welcome-section,
  .services-section,
  .services-page,
  .gallery-section,
  .reviews-section,
  .booking-strip,
  .contact-section,
  .hero-overlay {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 12px 12px;
    background: rgba(255, 252, 245, 0.94);
    border-bottom: 1px solid rgba(216, 171, 61, 0.14);
    box-shadow: 0 6px 16px rgba(169, 120, 22, 0.06);
  }

  .logo-block {
    min-width: 0;
    justify-content: center;
  }

  .logo-image {
    width: 168px;
  }

  .main-nav {
    width: min(100%, 360px);
    gap: 8px 10px;
    padding: 10px 12px;
    font-size: 0.78rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 24px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 0 4px;
    text-align: center;
  }

  .hero-banner {
    min-height: 440px;
    padding-top: 24px;
  }

  .services-page {
    padding-top: 28px;
  }

  .gallery-page {
    padding-top: 28px;
  }

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

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

  .reviews-marquee {
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }

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

  .gallery-tile,
  .gallery-page-item {
    min-height: 220px;
  }

  .contact-card,
  .hours-card,
  .booking-strip {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .contact-line {
    gap: 10px;
  }

  .contact-icon {
    width: 26px;
    height: 26px;
    font-size: 0.92rem;
  }

  .service-menu-card {
    gap: 18px;
    padding: 14px;
  }

  .service-menu-image {
    min-height: 220px;
  }

  .service-menu-content h2 {
    font-size: 2rem;
  }

  .price-row {
    gap: 14px;
    padding: 14px 0;
    font-size: 0.95rem;
  }
}
