:root {
  --bg-dark: #111111;
  --bg-darker: #070707;
  --bg-light: #f7f7f7;
  --accent: #D08E1C;
  --accent-soft: rgba(208, 142, 28, 0.15);
  --text-light: #f5f5f5;
  --text-muted: #b3b3b3;
  --text-dark: #222222;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --max-width: 1200px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.2s ease-in-out;
}

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

body {
  font-family: "Seriff Bold", Georgia, serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Layout helpers */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, #222 0, #000 55%);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 5rem 0;
  }
}

/* LOCATION PICKER PAGE */
.location-picker-page {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 500px) {
  .location-picker-page {
    padding: 2rem;
  }
}

/* Hide any old modal overlays */
.modal {
  display: none !important;
}

.location-picker-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  box-shadow: 0 25px 60px rgba(208, 142, 28, 0.4);
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  margin: auto;
}

@media (min-width: 500px) {
  .location-picker-content {
    padding: 3rem 2rem;
    width: 90%;
  }
}

.location-picker-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

@media (min-width: 500px) {
  .location-picker-logo {
    max-width: 280px;
    margin: 0 auto 2rem;
  }
}

.location-picker-content h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent), #E8B44C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 500px) {
  .location-picker-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }
}

.location-picker-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 500px) {
  .location-picker-content p {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 1.35rem;
  text-align: left;
  width: 100%;
  font-size: 0.95rem;
  min-height: 70px;
  cursor: pointer;
}

.location-btn .location-icon {
  width: 1.75rem;
  flex-shrink: 0;
  text-align: center;
}

.location-btn .location-details {
  flex: 1;
}

@media (min-width: 500px) {
  .location-btn {
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
}

.location-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.location-details strong {
  font-size: 0.95rem;
}

@media (min-width: 500px) {
  .location-details strong {
    font-size: 1.1rem;
  }
}

.location-details small {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: normal;
}

@media (min-width: 500px) {
  .location-details small {
    font-size: 0.85rem;
  }
}

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

@media (max-width: 899px) {
  .nav {
    flex-direction: row-reverse;
  }
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-banner {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-banner:hover {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  margin-left: 0.5rem;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .logo-text {
    display: none;
  }
  
  .logo-banner {
    height: 38px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 899px) {
  .nav-actions .btn-outline {
    display: none;
  }
  
  .nav-actions .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #E8B44C);
  color: #0a0a0a;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  filter: brightness(1.03);
}

.btn-outline {
  border-color: var(--border-subtle);
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.5);
}

.btn-outline:hover {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
  color: var(--text-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  padding: 8px;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.2s ease;
}

.nav-toggle:active {
  background: rgba(0, 0, 0, 0.8);
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #f5f5f5;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--accent);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle,
  .mobile-menu {
    display: none;
  }
}

/* HERO */
.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 900px) {
  .hero {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 3fr 2.5fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.hero-pre {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, var(--accent), #E8B44C);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-item span:first-child {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
}

.hero-meta-item span:last-child {
  color: var(--text-light);
  font-weight: 500;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), #050505 55%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
}

.hero-card-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)),
    url("photos/fade.JPEG");
  background-size: cover;
  background-position: center;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  margin-bottom: 1.25rem;
}

.hero-card-main h2 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.hero-card-main p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-pill-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.hero-pill-value {
  font-weight: 600;
}

/* SECTION HEADERS */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.section-pre {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--accent);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.section-header--split {
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .section-header--split {
    flex-direction: row;
    align-items: center;
  }
}

/* SERVICES */
#services,
#services-preview {
  background: radial-gradient(circle at top center, #1b1b1b 0, #050505 60%);
}

.service-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  border-color: var(--accent-soft);
  background: rgba(0, 0, 0, 0.9);
}

.service-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.service-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  align-items: center;
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
}

/* CART / CHECKOUT MODAL */
html.cart-open {
  overflow: hidden;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.cart-modal.open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 92vw);
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.cart-header {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-title {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart-body {
  padding: 1rem 1.25rem;
  overflow: auto;
  flex: 1;
}

.cart-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.82rem;
}

.cart-remove:hover {
  color: var(--accent);
}

.cart-footer {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.cart-total-label {
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.cart-total-value {
  font-size: 1.15rem;
  font-weight: 800;
}

.pay-grid {
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 420px) {
  .pay-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pay-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.service-duration {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* CTA SECTION */
#cta-section {
  background: radial-gradient(circle at center, #1a1a1a 0, #050505 70%);
}

.cta-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(208, 142, 28, 0.1), rgba(0, 0, 0, 0.9));
  border: 2px solid var(--accent);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(208, 142, 28, 0.2);
}

.cta-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), #E8B44C);
  -webkit-background-clip: text;
  color: transparent;
}

.cta-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ABOUT / TEAM */
#about {
  background: radial-gradient(circle at top right, #1b1b1b 0, #050505 65%);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.about-highlights {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.about-highlights li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-dot {
  width: 6px;
  height: 6px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}

.team-card {
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* ABOUT - PROFILE CARD */
.profile-card {
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.profile-photo {
  aspect-ratio: 4 / 4;
  background: #111;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-body {
  padding: 1.25rem 1.25rem 1.4rem;
}

.profile-title {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.profile-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.team-header h3 {
  font-size: 1.1rem;
}

.team-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  color: var(--accent);
}

.team-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.barber {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.barber-avatar {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: linear-gradient(135deg, #444, #111);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.barber h4 {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.barber-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.barber-specialty {
  font-size: 0.8rem;
  color: var(--accent);
}

/* GALLERY */
#gallery {
  background: #050505;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
}

/* Fade slideshow (used by gallery-main) */
.slideshow {
  position: relative;
  overflow: hidden;
}

.slideshow-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.65rem;
  pointer-events: none;
  z-index: 3;
}

.slideshow-arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.slideshow-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slideshow-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.slideshow-arrow svg {
  width: 18px;
  height: 18px;
}

.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 204px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("https://images.pexels.com/photos/3998429/pexels-photo-3998429.jpeg?auto=compress&cs=tinysrgb&w=1200")
    center/cover no-repeat;
}

@media (min-width: 900px) {
  .gallery-main {
    min-height: 276px;
  }
}

.gallery-main.slideshow {
  background: none;
}

/* LIGHTBOX */
html.lightbox-open {
  overflow: hidden;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox-modal.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-column {
  display: grid;
  gap: 0.8rem;
}

/* Fixed cover image (right side) */
.gallery-cover-btn {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  display: block;
  border-radius: var(--radius-lg);
}

.gallery-cover-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  min-height: 204px;
  background: #050505;
  display: grid;
}

.gallery-cover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (min-width: 900px) {
  .gallery-cover {
    min-height: 276px;
  }
}

/* Legacy tile styles (used on other pages) */
.gallery-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 140px;
  background-size: cover;
  background-position: center;
}

.gallery-tile.slideshow {
  background: none;
}

@media (min-width: 900px) {
  .gallery-tile {
    min-height: 150px;
  }
}

.gallery-tile-btn {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  display: block;
  border-radius: var(--radius-md);
}

.gallery-tile-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-tile:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/3998421/pexels-photo-3998421.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.gallery-tile:nth-child(2) {
  background-image: url("https://images.pexels.com/photos/3998420/pexels-photo-3998420.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.gallery-tile:nth-child(3) {
  background-image: url("https://images.pexels.com/photos/3998433/pexels-photo-3998433.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* REVIEWS */
#reviews {
  background: radial-gradient(circle at bottom, #1b1b1b 0, #050505 65%);
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1.2fr 1.8fr;
  }
}

.rating-summary {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: var(--shadow-soft);
}

.rating-number {
  font-size: 2.4rem;
  font-weight: 700;
}

.rating-stars {
  display: flex;
  gap: 0.1rem;
  font-size: 1rem;
  margin: 0.25rem 0 0.5rem;
  color: var(--accent);
}

.rating-source {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-list {
  display: grid;
  gap: 0.85rem;
}

.review-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.review-stars-inline {
  display: inline-flex;
  gap: 0.08rem;
  font-size: 0.95rem;
  color: var(--accent);
  white-space: nowrap;
}

.review-name {
  font-weight: 600;
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CONTACT */
#contact {
  background: #050505;
}

.location-section {
  margin-bottom: 3rem;
}

.location-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1.8fr;
    align-items: start;
  }
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: var(--shadow-soft);
}

.contact-row {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.96rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  font-size: 0.86rem;
  gap: 0.35rem 1.4rem;
}

.hours-grid div:nth-child(odd) {
  color: var(--text-muted);
}

.hours-grid div:nth-child(even) {
  color: var(--text-light);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  font-size: 0.85rem;
}

.contact-social a {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.contact-social a:hover {
  border-color: var(--accent-soft);
  color: var(--accent);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0 1.8rem;
  background: var(--bg-darker);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--accent);
}

/* UTIL */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--text-muted);
}
