/* =====================================================
   YEA HAIR STUDIO — Shared Stylesheet
   Elegant black & gold luxury salon design
   ===================================================== */

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

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

:root {
  --black:      #080808;
  --dark:       #111111;
  --card:       #181818;
  --border:     #282828;
  --gold:       #C9A96E;
  --gold-light: #E2C99A;
  --gold-dark:  #8B7040;
  --cream:      #F5F0E8;
  --muted:      #888888;
  --white:      #FFFFFF;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Jost', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
  --glow:       0 0 30px rgba(201, 169, 110, 0.3);
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— Utility ——— */
.gold { color: var(--gold); }
.italic { font-style: italic; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ——— Navigation ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  text-decoration: none;
}
.nav-logo-main {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 20px;
  transition: all var(--transition) !important;
}
.nav-phone:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--cream);
  font-style: italic;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
}

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

/* Shimmer gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,169,110,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(201,169,110,0.04) 0%, transparent 50%);
  animation: shimmerPulse 8s ease-in-out infinite;
}

@keyframes shimmerPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Sparkle particles */
.sparkle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleFly var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes sparkleFly {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; transform: translateY(-40px) scale(1); }
  80% { opacity: 0.4; transform: translateY(-120px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-180px) scale(0); }
}

.sparkle::before {
  content: '✦';
  position: absolute;
  color: var(--gold-light);
  font-size: 8px;
  top: -4px;
  left: -4px;
}

/* Gold shimmer line */
.shimmer-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
  animation: shimmerLine 3s ease-in-out infinite;
}
@keyframes shimmerLine {
  0%, 100% { width: 80px; opacity: 0.5; }
  50% { width: 140px; opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.hero-trust-item {
  text-align: center;
}
.hero-trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
}
.hero-trust-item span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ——— Divider ——— */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ——— Services Section ——— */
.services-section {
  padding: 100px 0;
  background: var(--dark);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
}

.service-card {
  background: var(--card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #1e1e1e; transform: translateY(-4px); }

/* Sparkle hover effect on cards */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.service-price {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ——— About Teaser / Feature Block ——— */
.feature-block {
  padding: 100px 0;
  background: var(--black);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-visual {
  position: relative;
}
.feature-frame {
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-frame-inner {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,169,110,0.2);
}
.feature-monogram {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201,169,110,0.08);
  font-style: italic;
  user-select: none;
}
.feature-tag {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.feature-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.feature-content .section-sub {
  max-width: 100%;
  margin-bottom: 2rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.feature-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ——— Testimonials ——— */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}
.testimonials-header { margin-bottom: 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  padding: 40px;
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ——— CTA Banner ——— */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1600 50%, #0d0d0d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-title { margin-bottom: 0.75rem; }
.cta-banner .section-sub { margin: 0 auto 2.5rem; text-align: center; }
.cta-banner .section-sub { max-width: 500px; }

/* ——— Hours & Contact Strip ——— */
.info-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.info-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.info-item-value {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
}

/* ——— Footer ——— */
.footer {
  background: #050505;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo-main { font-size: 1.5rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 300px;
}
.footer-heading {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ——— Page Header (inner pages) ——— */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,110,0.07) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .section-title { margin-bottom: 0; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-breadcrumb a { color: var(--gold); }

/* ——— Services Page ——— */
.services-page { padding: 80px 0; }
.services-category { margin-bottom: 60px; }
.services-cat-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 24px 32px;
  background: var(--card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}
.service-row:hover::before { transform: scaleY(1); }
.service-row:hover { background: #1c1c1c; padding-left: 40px; }

.service-row-info { flex: 1; }
.service-row-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.service-row-desc {
  font-size: 0.8rem;
  color: var(--muted);
}
.service-row-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ——— About Page ——— */
.about-page { padding: 80px 0; }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.about-values {
  padding: 80px 0;
  background: var(--dark);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}
.about-products { padding: 80px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.product-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.product-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  padding: 4px 12px;
  display: inline-block;
}

/* ——— Contact Page ——— */
.contact-page { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item {}
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.7;
}
.contact-info-value a { color: var(--cream); }
.contact-info-value a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: #444; }
.form-textarea { min-height: 140px; }

.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: 0.85rem; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--cream); }
.hours-table .today td { color: var(--gold); font-weight: 500; }

/* ——— Password Gate ——— */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate-inner {
  text-align: center;
  max-width: 420px;
  padding: 48px;
  border: 1px solid var(--border);
  position: relative;
}
.gate-inner::before,
.gate-inner::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--gold);
  border-style: solid;
}
.gate-inner::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.gate-inner::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.gate-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.gate-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.gate-message {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.gate-input-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.gate-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.2em;
  outline: none;
  transition: border-color var(--transition);
}
.gate-input:focus { border-color: var(--gold); }
.gate-error {
  color: #e05;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: none;
}
.gate-badge {
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
}

/* ——— Scroll-triggered fade-in ——— */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .feature-grid,
  .about-intro,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-strip-grid { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
