:root {
  --cream: #F5EFE0;
  --dark: #0F0D0A;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --rust: #8B3A2A;
  --charcoal: #1C1A16;
  --mid: #3A3530;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(15,13,10,0.95), transparent);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 8vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(139,58,42,0.12) 0%, transparent 60%),
    var(--dark);
}

/* Animated razor lines */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    rgba(201,168,76,0.025) 80px,
    rgba(201,168,76,0.025) 81px
  );
}

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(245,239,224,0.6);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-cta svg { width: 1rem; height: 1rem; }

.hero-badge {
  position: absolute;
  right: 8vw; bottom: 10vh;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 0.2rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards, rotate 20s 1.2s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.hero-badge-inner {
  position: absolute; inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: rotate 20s linear infinite reverse;
}

.hero-badge-inner .stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.hero-badge-inner .rating {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-badge-inner small {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(245,239,224,0.6);
  text-transform: uppercase;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.35;
}

/* ── SECTIONS ── */
section { padding: 7rem 8vw; }

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,239,224,0.75);
  margin-bottom: 1.5rem;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '"';
  position: absolute; top: -1rem; left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
}

.about-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,239,224,0.8);
  margin-bottom: 1.5rem;
}

.about-card cite {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.stats-row {
  display: flex; gap: 2rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.5);
}

/* ── SERVICES ── */
.services-section { background: var(--charcoal); }

.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.service-card:hover { background: #181510; }
.service-card:hover::after { width: 100%; }
.service-card:hover .service-icon { color: var(--gold); transform: scale(1.1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s, transform 0.3s;
  color: rgba(201,168,76,0.5);
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,239,224,0.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.service-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(245,239,224,0.4);
  margin-left: 0.4rem;
}

/* ── HOURS & CONTACT ── */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.hours-table td {
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,239,224,0.7);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--cream);
  font-weight: 400;
}

.hours-table .today td {
  color: var(--gold);
  font-weight: 500;
}

.hours-table .closed td:last-child {
  color: rgba(245,239,224,0.3);
  font-style: italic;
}

.contact-block {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: rgba(245,239,224,0.4);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
}

.contact-value a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover { color: var(--gold); }

/* ── MAP LINK ── */
.map-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-top: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 0.3rem;
  transition: color 0.2s, border-color 0.2s;
}
.map-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex; gap: 1.2rem;
  margin-top: 2rem;
}
.social-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.5rem 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(201,168,76,0.07);
}

/* ── FOOTER ── */
footer {
  background: #080705;
  padding: 3rem 8vw;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,239,224,0.3);
  letter-spacing: 0.1em;
}

/* ── ORNAMENT ── */
.ornament {
  text-align: center;
  padding: 3rem 0 0;
  color: rgba(201,168,76,0.25);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 0 6vw; }
  .hero-badge { display: none; }
  section { padding: 5rem 6vw; }
  .about, .info-section { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
