/* Google Fonts Request */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --color-bg: #f9f9f7;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-accent: #c6a87c;
  /* Muted Gold */
  --color-accent-dark: #a68960;
  --color-black: #0b0b0b;
  --color-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 6rem;
  --gutter: 2rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.serif {
  font-family: var(--font-serif);
}

.sans {
  font-family: var(--font-sans);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: padding var(--transition-smooth), background-color var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(249, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 var(--gutter);
}

.hero-eyebrow {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1rem;
  color: var(--color-white);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Services / Menu */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-section {
  padding: var(--section-padding) 0;
}

.menu-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-black);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.category-note {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-light);
  text-transform: none;
  font-weight: 400;
}

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

.menu-item {
  margin-bottom: 1.5rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.item-price {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-black);
  text-align: right;
  margin-left: 1rem;
  flex-shrink: 0;
}

.item-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.price-sizes {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  margin-left: 0.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-info h3 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list a {
  color: inherit;
}

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

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  font-size: 1.2rem;
  color: var(--color-white);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.social-link:hover {
  opacity: 1;
}

#map-embed {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(1);
  transition: filter 0.3s;
}

#map-embed:hover {
  filter: grayscale(0);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 6rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-smooth);
    z-index: 99;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 100;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Single (Static) */
.hero-bg-single {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: var(--section-padding) 0;
  background-color: var(--color-white);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-carousel {
  position: relative;
  height: 0;
  padding-bottom: 60%;
  /* Aspect Ratio */
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-black);
  cursor: pointer;
  transition: all var(--transition-fast);
  opacity: 0;
  z-index: 10;
}

.about-carousel-wrapper:hover .about-nav {
  opacity: 1;
}

.about-nav:hover {
  background: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-nav.prev {
  left: 20px;
}

.about-nav.next {
  right: 20px;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
}

.menu-tab-btn {
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text-light);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-black);
  transition: width var(--transition-smooth);
}

.menu-tab-btn:hover {
  color: var(--color-black);
}

.menu-tab-btn.active {
  color: var(--color-black);
  font-weight: 600;
}

.menu-tab-btn.active::after {
  width: 100%;
}

.menu-tab-content {
  display: none;
  animation: fadeUp 0.6s ease-out;
  padding: 2rem;
  border-radius: 8px;
}

#cut {
  background-color: #f2f0e9;
}

#perm {
  background-color: #eaf2e9;
}

#dye {
  background-color: #f2e9e9;
}

#recovery {
  background-color: #e9f0f2;
}

.menu-tab-content.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .menu-tabs {
    gap: 1rem;
  }

  .menu-tab-btn {
    font-size: 0.9rem;
    padding: 0.8rem 0;
    flex: 1 1 auto;
    text-align: center;
  }

  .about-carousel {
    padding-bottom: 75%;
  }
}

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: transparent;
}

.price-table th,
.price-table td {
  padding: 0.75rem;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  font-family: var(--font-sans);
}

.price-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-black);
}

.price-table td {
  font-size: 1rem;
  color: var(--color-text);
}

.price-table th:first-child,
.price-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-black);
  padding-left: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}