/* ============================================================
   BRADFORD PIERCING ATELIER — STYLESHEET
   Brand: Black, Antique Gold, Cream | Gothic-Luxury Aesthetic
   ============================================================ */

:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark: #1a1a1a;
  --gold: #C9A84C;
  --gold-light: #e0c068;
  --gold-dark: #9a7a2e;
  --cream: #F5F0E8;
  --cream-muted: #c8c0b0;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* CONTAINER */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* BUTTONS */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background-position var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover {
  background-position: right center;
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* GOLD DIVIDER */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}
.gold-divider-vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* SECTION LABELS */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

/* SECTION */
.section {
  padding: 6rem 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(45, 35, 12, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(45, 35, 12, 0.99);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.5);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.7rem !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }

/* ── NAV DROPDOWN ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  user-select: none;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 14, 4, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  padding: 0.6rem 0;
  min-width: 180px;
  z-index: 2000;
  list-style: none;
  margin: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(201, 168, 76, 0.35);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}

.nav-dropdown-menu a::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 40%, #0a0a0a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-logo-wrap {
  margin-bottom: 2.5rem;
}

.hero-logo {
  width: 280px;
  height: auto;
  margin: 0 auto;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--charcoal); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text p {
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.9;
}

.about-ornament {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  min-width: 180px;
}

.ornament-text {
  text-align: center;
}
.ornament-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.ornament-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--black);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.8;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--charcoal);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.8;
}

/* ============================================================
   DISCOUNT BANNER
   ============================================================ */
.discount-banner {
  background: linear-gradient(135deg, #1a1208, #0f0c04, #1a1208);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 4rem 0;
}

.discount-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.discount-item {
  text-align: center;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
}

.discount-item h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.discount-item p {
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

.discount-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview-section {
  background: var(--black);
  position: relative;
}
.gallery-preview-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-preview-item {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(201,168,76,0.1);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-preview-item:hover img {
  transform: scale(1.05);
}

.gallery-preview-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   LOCATION & HOURS
   ============================================================ */
.location-section {
  background: var(--charcoal);
  position: relative;
}
.location-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hours-table {
  margin: 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  font-size: 0.85rem;
  color: var(--cream-muted);
}
.hours-row span:last-child { color: var(--gold); }
.hours-row.closed span:last-child { color: rgba(201,168,76,0.4); }

.location-note {
  font-size: 0.78rem;
  color: var(--cream-muted);
  font-style: italic;
  margin-top: 1rem;
}

.location-contact {
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-detail a, .contact-detail span {
  font-size: 0.88rem;
  color: var(--cream-muted);
}
.contact-detail a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
  font-size: 0.82rem;
  color: var(--cream-muted);
}
.footer-links ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin-bottom: 0.6rem;
}
.footer-contact a { color: var(--cream-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(200,192,176,0.4);
  letter-spacing: 0.05em;
}

.footer-bottom a {
  font-size: 0.72rem;
  color: rgba(201,168,76,0.5);
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-hero p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  aspect-ratio: 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-cta-section {
  text-align: center;
  padding: 4rem 0 6rem;
  background: var(--black);
}
.gallery-cta-section p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

/* ============================================================
   AFTERCARE PAGE
   ============================================================ */
.aftercare-section { background: var(--black); }

.aftercare-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.aftercare-intro p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-muted);
}

.aftercare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.aftercare-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
}

.aftercare-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.aftercare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aftercare-card ul li {
  font-size: 0.85rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.aftercare-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.3rem;
}

.healing-table-wrap {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.healing-table-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.healing-table {
  width: 100%;
  border-collapse: collapse;
}

.healing-table th {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.healing-table td {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--cream-muted);
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.aftercare-warning {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.aftercare-warning h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.aftercare-warning ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aftercare-warning ul li {
  font-size: 0.85rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
}
.aftercare-warning ul li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-section { background: var(--black); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-source {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

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

.contact-info-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-item .contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-info-item a, .contact-info-item span, .contact-info-item p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-booking {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
}

.contact-booking h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-booking p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.booking-hours {
  margin-bottom: 2rem;
}
.booking-hours h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ============================================================
   TERMS PAGE
   ============================================================ */
.terms-section { background: var(--black); }

.terms-content {
  max-width: 800px;
  margin: 3rem auto 0;
}

.terms-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.terms-item:last-child { border-bottom: none; }

.terms-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.terms-item p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-ornament { flex-direction: row; justify-content: space-around; }
  .gold-divider-vertical { display: none; }
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-contact { padding-top: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .aftercare-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    background: rgba(201, 168, 76, 0.05);
    padding: 0;
    min-width: unset;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 0.5rem 1rem 0.5rem 2rem; font-size: 0.85rem; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .discount-grid { flex-direction: column; gap: 2rem; }
  .discount-divider { width: 60px; height: 1px; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 160px; }
}

/* ============================================================
   PRICE LIST PAGE
   ============================================================ */

.prices-section { background: var(--black); }

.price-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 1.25rem 1.75rem;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.price-notice-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.price-notice p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin: 0;
}

.price-notice strong {
  color: var(--cream);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.price-category {
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.3s ease;
}

.price-category:hover {
  border-color: rgba(201,168,76,0.35);
}

.price-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.price-list { display: flex; flex-direction: column; gap: 0; }

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-item:last-child { border-bottom: none; }

.price-name {
  font-size: 0.83rem;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.price-notes {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 2rem;
}

.price-notes p {
  font-size: 0.78rem;
  color: var(--cream-muted);
  margin-bottom: 0.75rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .prices-grid { grid-template-columns: 1fr; }
}
