/* ============================================
   NOIR STUDIO BARBER — Premium Dark Theme v2
   ============================================ */

/* --- Variables --- */
:root {
  --black: #0a0a0a;
  --black-soft: #0e0e0e;
  --black-card: #121212;
  --black-hover: #181818;
  --gold: #c9a45c;
  --gold-light: #d4b070;
  --gold-dim: rgba(201, 164, 92, 0.15);
  --gold-border: rgba(201, 164, 92, 0.1);
  --text-primary: #f0ece4;
  --text-secondary: #a09888;
  --text-muted: #6b6358;
  --text-dim: #4a4540;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 6px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(201, 164, 92, 0.15);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background-color: var(--gold);
  transform: translateY(-50%);
}

.section-title {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }

.section-header .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(201, 164, 92, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  background-color: rgba(201, 164, 92, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(201, 164, 92, 0.08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  color: #fff;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.7rem;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  padding: 14px 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-border);
}

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

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  line-height: 1;
}

.navbar-logo span { color: var(--gold); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b0a898;
  position: relative;
  transition: color var(--transition);
}

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

.navbar-links a:hover { color: var(--text-primary); }
.navbar-links a:hover::after { width: 100%; }

.navbar .btn {
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #000;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: all 0.35s ease;
  border-radius: 1px;
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; padding-top: 100px; }

.hero-content { max-width: 700px; }

.hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 28px;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: heroScroll 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes heroScroll {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(8px); }
}

/* --- Benefits --- */
.benefits {
  padding: 100px 0;
  background-color: var(--black-soft);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

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

.benefit-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.benefit-item:hover {
  border-color: var(--gold-border);
  background-color: var(--black-card);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 92, 0.15);
  border-radius: 50%;
  transition: all var(--transition);
}

.benefit-item:hover .benefit-icon {
  background-color: rgba(201, 164, 92, 0.06);
  border-color: rgba(201, 164, 92, 0.3);
}

.benefit-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.benefit-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* --- About --- */
.about { padding: 140px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-image-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 164, 92, 0.1);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-text .section-title { font-size: 3rem; }

.about-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gold-border);
}

.about-signature span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
}

/* --- Services --- */
.services {
  padding: 140px 0;
  background-color: var(--black-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(201, 164, 92, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  flex-shrink: 0;
}

.service-card:hover .service-card-image { transform: scale(1.05); }

.service-card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-card-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .btn { margin-top: auto; align-self: flex-start; }

/* --- Gallery --- */
.gallery { padding: 140px 0; }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* --- Experience --- */
.experience {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 48px auto 0;
}

.step-item {
  text-align: center;
  padding: 48px 32px;
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.step-item:hover {
  border-color: var(--gold-border);
  background-color: var(--black-card);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 164, 92, 0.1);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.step-item:hover .step-number { color: rgba(201, 164, 92, 0.2); }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Team --- */
.team { padding: 140px 0; }

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

.team-card {
  background-color: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  border-color: rgba(201, 164, 92, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.team-card-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-image { transform: scale(1.04); }

.team-card-body {
  padding: 28px 28px 32px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Testimonials --- */
.testimonials {
  padding: 140px 0;
  background-color: var(--black-soft);
}

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

.testimonial-card {
  background-color: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(201, 164, 92, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #1a1814;
  border: 1px solid rgba(201, 164, 92, 0.1);
  flex-shrink: 0;
}

.testimonial-avatar.initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background-color: rgba(201, 164, 92, 0.08);
  border-color: rgba(201, 164, 92, 0.15);
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* --- Booking --- */
.booking {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--black) 0%, #0e0d0b 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-info .section-title { font-size: 3rem; }

.booking-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.booking-form {
  background-color: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 44px;
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 16px 18px;
  background-color: #1a1a1a;
  border: 1px solid rgba(201, 164, 92, 0.08);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 164, 92, 0.15);
}

.form-input::placeholder { color: var(--text-dim); }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%238a7f6e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

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

.booking-form .btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 0.8rem;
  margin-top: 8px;
}

/* --- Contact --- */
.contact { padding: 140px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-map {
  background-color: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-placeholder {
  text-align: center;
  padding: 40px;
}

.contact-map-placeholder span {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.contact-map-placeholder p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-map-icon {
  margin-top: 20px;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.2;
}

/* --- Project Concept --- */
.project-concept {
  padding: 80px 0;
  background-color: var(--black-soft);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.project-concept-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.project-concept-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 2px;
  margin-bottom: 20px;
}

.project-concept-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  padding: 80px 0 48px;
  background-color: #060606;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

.footer-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
}

.footer-credit {
  font-size: 0.7rem;
  color: #3a3530;
}

.footer-credit a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-credit a:hover { color: var(--gold-light); }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 3.6rem; }
  .about-text .section-title { font-size: 2.4rem; }
  .about-grid { gap: 48px; }
  .booking-grid { gap: 48px; }
  .booking-info .section-title { font-size: 2.4rem; }
  .contact-grid { gap: 48px; }
  .team-grid { gap: 20px; }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 48px;
    transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--gold-border);
  }

  .navbar-links.active { right: 0; }

  .navbar-links a { font-size: 0.9rem; }

  .navbar .btn { margin-left: auto; }

  .navbar-toggle { display: flex; }

  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-scroll { bottom: 24px; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefit-item { padding: 28px 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 320px; }
  .about-text .section-title { font-size: 2rem; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; }

  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .team-card-image { height: 300px; }

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

  .booking-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 1.7rem; }

  .hero-title { font-size: 2.1rem; letter-spacing: -1px; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 32px; }
  .hero-tag { font-size: 0.55rem; padding: 6px 14px; }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }

  .booking-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 1600px) {
  .hero-title { font-size: 6rem; }
  .hero-content { max-width: 800px; }
}
