/* ============================================================
   SR BARBERS — Luxury Black & Gold Theme
   srbarbers.co.uk
   ============================================================ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #9A7835;
  --black:       #0A0A0A;
  --black-mid:   #111111;
  --black-soft:  #1A1A1A;
  --black-card:  #141414;
  --white:       #FFFFFF;
  --off-white:   #F5F0E8;
  --grey:        #888888;
  --grey-light:  #CCCCCC;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Barlow', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;

  --radius:      4px;
  --transition:  0.3s ease;
  --container:   1180px;
  --nav-h:       76px;
}

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

/* ── GOLD RULE ── */
.gold-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 560px;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(201,168,76,0.18);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-sr {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-barbers {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--grey-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.main-nav a {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.60) 55%,
    rgba(10,10,10,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
  width: 100%;
  max-width: 700px;
  padding-left: clamp(2rem, 8vw, 8rem);
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title-sr {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-title-barbers {
  font-family: var(--font-condensed);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--white);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 2.2rem;
  animation: fadeUp 0.8s 0.28s ease both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-address {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--font-condensed);
  color: rgba(255,255,255,0.68);
  animation: fadeUp 0.8s 0.52s ease both;
}
.hero-address-line,
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  letter-spacing: 0.08em;
}
.hero-address-line {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}
.hero-phone {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.hero-phone:hover {
  color: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-scroll-hint span {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 2.5rem;
}
.strip-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(0,0,0,0.35);
}
.strip-text {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}
.strip-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--black-mid);
}

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

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.88);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  filter: brightness(0.9);
}

.about-text p {
  font-size: 0.97rem;
  color: var(--grey-light);
  margin-bottom: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat {}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.3rem;
  display: block;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 0;
  background: var(--black);
}

.services .section-subtitle { margin-bottom: 3.5rem; }

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

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(135deg, #141414 0%, #1c1608 100%);
}

.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.service-price {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.services-note {
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
  text-align: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 7rem 0;
  background: var(--black-soft);
}

.gallery-section .container { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-card);
  border-radius: var(--radius);
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: auto; min-height: 380px; }

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(201,168,76,0.1);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
}

.placeholder .placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(201,168,76,0.3);
  border: 1px dashed rgba(201,168,76,0.15);
  border-radius: var(--radius);
}
.placeholder-icon {
  font-size: 2rem;
}
.placeholder .placeholder-inner span:last-child {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.lightbox-caption {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-top: 1rem;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.3);
}
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 100%);
}
.testimonials .container { position: relative; z-index: 1; }

.reviews-track-wrapper {
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.review-date {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 0.1rem;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.rev-btn {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.rev-btn:hover { background: var(--gold); color: var(--black); }
.rev-dots {
  display: flex;
  gap: 0.5rem;
}
.rev-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.rev-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--black-mid);
}

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

.info-block {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.info-label {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.info-value {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.7;
  font-weight: 300;
}
.info-value a { color: var(--grey-light); }
.info-value a:hover { color: var(--gold); }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.map-placeholder {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}

/* FORM */
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-note {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 2rem;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23C9A84C' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px;
  background-color: rgba(255,255,255,0.04);
  cursor: pointer;
}
.form-group select option { background: var(--black-card); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.22);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
  text-align: right;
}
.footer-contact p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.3rem;
  font-weight: 300;
}
.footer-contact a { color: var(--grey); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    z-index: 999;
    backdrop-filter: blur(12px);
  }
  .main-nav.mobile-open a {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .review-card { flex: 0 0 calc(100% - 1rem); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .strip-item { padding: 0.4rem 1rem; }
  .strip-divider { display: none; }
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
  .gallery-item:first-child { grid-column: 1 / -1; }
  .hero-scroll-hint { display: none; }
}
