/* ═══════════════════════════════════════════════════════════
   POMADE & TONIC — Main Site Styles
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink:#0a0806; --dark:#141108; --paper:#f5ecd7; --paper-dim:#d9cfb8;
  --gold:#c49a3a; --gold-lt:#e0b852; --gold-dk:#7a5f20; --red:#9c2222;
  --oswald:'Oswald',sans-serif; --display:'Abril Fatface',Georgia,serif;
  --body:'Cormorant Garamond',Georgia,serif;
}

body {
  background: var(--ink); color: var(--paper);
  font-family: var(--body); font-size: 19px; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body::before {
  content:''; position: fixed; inset: 0;
  pointer-events: none; z-index: 1; opacity: 0.3;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.6 0 0 0 0 0.2 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.label {
  font-family: var(--oswald); font-weight: 400;
  letter-spacing: 0.4em; font-size: 0.7rem;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1rem; display: inline-block;
}

/* Photo placeholders */
.photo {
  background:
    linear-gradient(135deg, rgba(196,154,58,0.08), rgba(156,34,34,0.08)),
    var(--dark);
  position: relative;
  overflow: hidden;
}
.photo::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--oswald); font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold-dk); text-transform: uppercase;
  text-align: center; padding: 1rem;
  pointer-events: none;
}
.photo img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.photo img[src=""], .photo img:not([src]) { opacity: 0; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 154, 58, 0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name {
  font-family: var(--display); font-size: 1.35rem;
  color: var(--gold); line-height: 1;
}
.brand-sub {
  font-family: var(--oswald); font-weight: 300; font-size: 0.6rem;
  letter-spacing: 0.3em; color: var(--paper-dim);
  text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: var(--oswald); font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.25em; color: var(--paper-dim);
  text-transform: uppercase; transition: color 0.2s;
  padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--ink) !important;
  padding: 0.55rem 1.3rem !important; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.hamburger {
  display: none; width: 38px; height: 38px;
  position: relative; z-index: 60;
}
.hamburger span {
  position: absolute; left: 8px; right: 8px;
  height: 2px; background: var(--gold);
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo::before {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--oswald); font-weight: 300;
  font-size: 0.8rem; letter-spacing: 0.35em;
  color: var(--gold-dk); text-transform: uppercase;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(196,154,58,0.15), transparent 60%),
    linear-gradient(135deg, var(--dark), var(--ink));
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  position: relative; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(100deg, rgba(10,8,6,0.95) 0%, rgba(10,8,6,0.85) 40%, rgba(10,8,6,0.55) 70%, rgba(10,8,6,0.35) 100%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(156,34,34,0.1), transparent 60%);
}
.hero-inner {
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--oswald); font-weight: 300; font-size: 0.75rem;
  letter-spacing: 0.5em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.95; color: var(--paper);
  letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
h1 .amp { font-style: italic; color: var(--gold); padding: 0 0.1em; }
h1 .script {
  display: block; font-family: var(--body); font-style: italic;
  font-weight: 400; font-size: 0.55em; color: var(--paper-dim);
  letter-spacing: 0.02em; margin-top: 0.5rem;
}
.hero-sub {
  font-family: var(--body); font-size: 1.2rem; color: var(--paper-dim);
  max-width: 480px; margin-bottom: 2.5rem; font-style: italic;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; font-family: var(--oswald); font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.25em; padding: 1rem 2.2rem;
  text-transform: uppercase; transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

.hero-emblem {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-emblem svg {
  width: 100%; max-width: 380px; height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.7));
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(196,154,58,0.2);
  border-top: 1px solid rgba(196,154,58,0.2);
  border-bottom: 1px solid rgba(196,154,58,0.2);
  position: relative; z-index: 2;
}
.stat { background: var(--dark); padding: 1.5rem 1rem; text-align: center; }
.stat-num {
  font-family: var(--display); font-size: 1.75rem;
  color: var(--gold); line-height: 1; margin-bottom: 0.35rem;
}
.stat-lbl {
  font-family: var(--oswald); font-weight: 300; font-size: 0.65rem;
  letter-spacing: 0.3em; color: var(--paper-dim); text-transform: uppercase;
}

/* Section Base */
section { padding: 7rem 0; position: relative; z-index: 2; }
h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05; color: var(--paper); margin-bottom: 1.25rem;
}
h2 .ital { font-style: italic; color: var(--gold); }
h3 {
  font-family: var(--display); font-size: 1.7rem;
  color: var(--paper); margin-bottom: 1.25rem;
}
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin: 1.5rem auto 0; color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ''; width: 70px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ornament svg { width: 18px; height: 18px; }

/* ABOUT */
.about { background: var(--dark); border-top: 1px solid rgba(196,154,58,0.1); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/5; }
.about-visual::before {
  content: ''; position: absolute; inset: -12px;
  border: 1px solid var(--gold-dk); z-index: 0;
}
.about-visual .photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border: 1px solid var(--gold-dk);
}
.about-year {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--ink);
  padding: 1.25rem 1.5rem;
  font-family: var(--display); z-index: 2;
  text-align: center;
}
.about-year-num { font-size: 2.2rem; line-height: 1; display: block; }
.about-year-lbl {
  font-family: var(--oswald); font-weight: 500;
  font-size: 0.6rem; letter-spacing: 0.3em;
}
.about-text p { color: var(--paper-dim); font-size: 1.1rem; margin-bottom: 1.2rem; }
.about-text strong { color: var(--gold); font-weight: 600; }
.pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(196,154,58,0.15);
}
.pillar-title {
  font-family: var(--oswald); font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.pillar-desc { font-size: 0.98rem; color: var(--paper-dim); line-height: 1.5; }

/* SERVICES */
.services { background: var(--ink); }
.services-head { text-align: center; margin-bottom: 4rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(196,154,58,0.25);
  border: 1px solid rgba(196,154,58,0.25);
}
.svc { background: var(--dark); padding: 2.5rem 2rem; transition: background 0.3s; position: relative; }
.svc:hover { background: #1c180f; }
.svc::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.svc:hover::after { transform: scaleX(1); }
.svc-icon { width: 42px; height: 42px; margin-bottom: 1.25rem; color: var(--gold); }
.svc-name { font-family: var(--display); font-size: 1.35rem; color: var(--paper); margin-bottom: 0.5rem; }
.svc-desc { font-size: 1rem; color: var(--paper-dim); line-height: 1.55; }
.services-foot { text-align: center; margin-top: 3rem; }
.services-foot .note { font-style: italic; color: var(--paper-dim); margin-top: 1rem; font-size: 1rem; }

/* GALLERY */
.gallery { background: var(--dark); border-top: 1px solid rgba(196,154,58,0.1); }
.gallery-head { text-align: center; margin-bottom: 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item {
  aspect-ratio: 1 / 1;
  position: relative;
  border: 1px solid rgba(196,154,58,0.2);
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.gallery-item .photo { width: 100%; height: 100%; }
.gallery-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.6), transparent 50%);
  z-index: 2; opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::before { opacity: 1; }

/* BOOKING */
.booking {
  background: var(--ink);
  border-top: 1px solid rgba(196,154,58,0.1);
  border-bottom: 1px solid rgba(196,154,58,0.1);
  position: relative;
}
.booking::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 100px,
    rgba(196,154,58,0.025) 100px, rgba(196,154,58,0.025) 101px);
  pointer-events: none;
}
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.booking-text p { color: var(--paper-dim); font-size: 1.1rem; margin-bottom: 1.5rem; }
.features { list-style: none; margin-bottom: 2rem; }
.features li {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 1rem; color: var(--paper-dim);
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(196,154,58,0.12);
}
.features li::before {
  content: ''; display: block; width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg); flex-shrink: 0;
}
.vagaro-box {
  background: var(--dark); border: 1px solid rgba(196,154,58,0.3);
  padding: 2rem; position: relative;
}
.vagaro-box::before, .vagaro-box::after {
  content: ''; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.vagaro-box::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.vagaro-box::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.vagaro-box iframe { width: 100%; min-height: 460px; border: none; background: var(--paper); }
.vagaro-tag {
  font-family: var(--oswald); font-weight: 300; font-size: 0.7rem;
  letter-spacing: 0.3em; color: var(--paper-dim);
  text-transform: uppercase; margin-top: 1rem; text-align: center;
}
.vagaro-tag a { color: var(--gold); }

/* REVIEWS */
.reviews { background: var(--dark); }
.reviews-head { text-align: center; margin-bottom: 4rem; }
.rating-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 0.15em; }
.rating-text { font-family: var(--body); font-size: 1.1rem; color: var(--paper-dim); font-style: italic; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--ink); border-top: 2px solid var(--gold);
  padding: 2.25rem 1.75rem; position: relative;
}
.review-quote-mark {
  position: absolute; top: 0.5rem; right: 1.25rem;
  font-family: var(--display); font-size: 4rem;
  color: var(--gold); opacity: 0.2; line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text {
  font-family: var(--body); font-style: italic; font-size: 1.05rem;
  color: var(--paper); line-height: 1.55; margin-bottom: 1.5rem;
}
.review-author {
  font-family: var(--oswald); font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase;
}
.review-source { font-size: 0.85rem; color: var(--paper-dim); margin-top: 0.2rem; font-style: italic; }
.review-big {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ink), #1c180f);
  padding: 3rem 2.5rem; text-align: center;
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.review-big .review-text { font-size: 1.4rem; max-width: 700px; margin: 0 auto 1.5rem; font-style: italic; }

/* LOCATION */
.location { background: var(--ink); border-top: 1px solid rgba(196,154,58,0.1); }
.loc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.hours tr { border-bottom: 1px solid rgba(196,154,58,0.12); }
.hours tr:last-child { border-bottom: none; }
.hours td { padding: 0.85rem 0; font-size: 1.02rem; color: var(--paper-dim); }
.hours td:first-child {
  font-family: var(--oswald); font-weight: 400; font-size: 0.85rem;
  letter-spacing: 0.2em; color: var(--paper);
  text-transform: uppercase; width: 45%;
}
.hours td:last-child { text-align: right; }
.hours .closed { color: var(--gold-dk); font-style: italic; }
.hours tr.today { background: rgba(196,154,58,0.08); }
.hours tr.today td:first-child { color: var(--gold); }
.contact { display: flex; flex-direction: column; gap: 0.75rem; font-style: normal; }
.contact-row {
  display: flex; align-items: flex-start; gap: 0.85rem;
  color: var(--paper-dim); font-size: 1rem;
}
.contact-row svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.contact-row a { color: var(--gold); }
.contact-row a:hover { color: var(--gold-lt); }
.walkin {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(196,154,58,0.1);
  border: 1px solid var(--gold-dk);
  color: var(--gold); font-family: var(--oswald); font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; margin-top: 1.5rem;
}
.map-wrap { border: 1px solid rgba(196,154,58,0.3); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 340px; border: none; display: block; filter: grayscale(0.3) contrast(1.1); }

/* FOOTER */
footer {
  background: #060404; border-top: 2px solid var(--gold);
  padding: 3.5rem 0 1.5rem; position: relative; z-index: 2;
}
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.foot-brand-name { font-family: var(--display); font-size: 1.6rem; color: var(--gold); }
.foot-brand-tag {
  font-family: var(--oswald); font-weight: 300; font-size: 0.65rem;
  letter-spacing: 0.35em; color: var(--paper-dim);
  text-transform: uppercase; margin: 0.25rem 0 1rem;
}
.foot-desc { font-size: 0.98rem; color: var(--paper-dim); max-width: 320px; font-style: italic; }
.foot-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px; border: 1px solid var(--gold-dk);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; }
.foot-head {
  font-family: var(--oswald); font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-list a { font-size: 0.98rem; color: var(--paper-dim); transition: color 0.2s; }
.foot-list a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(196,154,58,0.15);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.foot-copy { font-size: 0.85rem; color: var(--paper-dim); }
.foot-vagaro {
  font-family: var(--oswald); font-size: 0.72rem; letter-spacing: 0.25em;
  color: var(--paper-dim); text-transform: uppercase;
}
.foot-vagaro a { color: var(--gold); }

.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.fade.show { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-emblem { order: -1; max-width: 240px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .booking-grid, .loc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-big { grid-column: 1 / -1; }
  .foot { grid-template-columns: 1fr; gap: 2.5rem; }
  .hamburger { display: block; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    background: rgba(10, 8, 6, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s; z-index: 45;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { padding: 0.8rem 2rem !important; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  section { padding: 5rem 0; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .foot-bottom { justify-content: center; text-align: center; }
}
