/* ==========================================================================
   Prestige Auto Detailing — base styles
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --black-elevated: #1a1a1a;
  --red: #e21f26;
  --red-dark: #b8161c;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #cfcfcf;
  --gray-500: #9a9a9a;
  --gray-700: #5c5c5c;
  --border: rgba(255, 255, 255, 0.1);

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --header-h: 88px;
  --container-w: 1440px;
}

@media (min-width: 1800px) {
  :root { --container-w: 1600px; }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}

.text-red { color: var(--red); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-book { padding: 12px 22px; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-300);
  padding: 6px 0;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--white); }

.main-nav a.active { color: var(--white); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.62) 20%, rgba(6,6,6,0.32) 42%, rgba(6,6,6,0.05) 60%, rgba(6,6,6,0.25) 100%),
    linear-gradient(0deg, rgba(6,6,6,0.75) 0%, rgba(6,6,6,0) 25%, rgba(6,6,6,0) 75%, rgba(6,6,6,0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content { max-width: 620px; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.75);
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-300);
  max-width: 460px;
  margin-bottom: 34px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-badge img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-features svg {
  flex-shrink: 0;
  color: var(--red);
}

.hero-features span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gray-100);
}

/* corner taglines */
.hero-tagline {
  position: absolute;
  z-index: 1;
  display: flex;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.hero-tagline-top {
  top: calc(var(--header-h) + 40px);
  right: 40px;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 15px;
}

.hero-tagline-bottom {
  bottom: 48px;
  right: 40px;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 20px;
}

/* ==========================================================================
   Accreditation strip
   ========================================================================== */

.accreditation {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 44px 0;
}

.accreditation-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(226,31,38,0.35) 44%, rgba(226,31,38,0.05) 47%, transparent 52%, transparent 100%),
    linear-gradient(115deg, transparent 0%, transparent 8%, rgba(226,31,38,0.18) 12%, transparent 16%, transparent 100%),
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(226,31,38,0.14), transparent 70%);
}

.accreditation-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.accred-brand { flex-shrink: 0; max-width: 220px; }

.accred-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.accred-brand h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.accred-brand p {
  font-size: 11px;
  letter-spacing: .5px;
  color: var(--gray-500);
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 2px solid var(--red);
  max-width: 150px;
}

.accred-list {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.accred-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accred-list img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.accred-list svg {
  width: 30px;
  height: 30px;
  color: var(--red);
  flex-shrink: 0;
}

.accred-list span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gray-100);
  white-space: nowrap;
}

.accred-tagline {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

.accred-tagline span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

.accred-tagline span:last-child {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 2px solid var(--red);
}

/* ==========================================================================
   About / Certification
   ========================================================================== */

.about {
  position: relative;
  background: #050505;
  overflow: hidden;
  padding: 70px 0 0;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.85) 40%, rgba(5,5,5,0.55) 65%, rgba(5,5,5,0.35) 100%);
}

.values-row {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  margin-bottom: 56px;
}

.values-row .about-label { display: block; margin-bottom: 26px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.values-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 20px;
  border-left: 1px solid var(--border);
}
.values-grid li:first-child { border-left: none; }

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(226, 31, 38, 0.45);
  background: radial-gradient(circle, rgba(226,31,38,0.16), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 4px;
}
.value-icon svg { width: 24px; height: 24px; }

.values-grid h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.values-grid p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 175px;
  text-wrap: balance;
}

.about-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
  padding-bottom: 56px;
}

.about-shield {
  flex-shrink: 0;
  width: 220px;
}

.about-shield img {
  width: 100%;
  height: auto;
}

.about-copy { max-width: 620px; }

.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.about-copy h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-copy p {
  font-size: 14.5px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 540px;
}

.about-stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 36px 0;
}

.about-stats .about-label { display: block; margin-bottom: 22px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stats-grid svg {
  width: 32px;
  height: 32px;
  color: var(--red);
  flex-shrink: 0;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.stats-grid span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ==========================================================================
   Services
   ========================================================================== */

.services { background: #030303; padding-bottom: 100px; }

.services-head {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  margin-bottom: 60px;
}

.services-head-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-head-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 30%;
  opacity: .5;
  filter: grayscale(.3);
}
.services-head-bg::after { content: ''; }

.services-head::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(3,3,3,0.97) 0%, rgba(3,3,3,0.85) 35%, rgba(3,3,3,0.55) 60%, rgba(3,3,3,0.85) 100%);
}

.services-head-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.services-head-copy { flex: 1 1 340px; min-width: 280px; }

.services-head-copy h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-head-copy p {
  font-size: 14.5px;
  color: var(--gray-300);
  max-width: 380px;
}

.services-head-features {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.services-head-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-head-features svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  border: 1px solid rgba(226, 31, 38, 0.45);
  color: var(--red);
  flex-shrink: 0;
}

.services-head-features strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
}
.services-head-features span {
  font-size: 12.5px;
  color: var(--gray-500);
}

.services-head-quote {
  flex-shrink: 0;
  position: relative;
  font-size: 13px;
  font-style: italic;
  color: var(--gray-300);
  text-align: right;
  line-height: 1.6;
  padding: 14px 0;
  margin-left: auto;
}
.services-head-quote::before,
.services-head-quote::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  background: var(--red);
  margin: 0 0 10px auto;
}
.services-head-quote::after { margin: 10px 0 0 auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(226,31,38,0.4); }

.service-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.service-card-media img { width: 100%; height: 100%; object-fit: cover; }

.service-card-body {
  position: relative;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  margin-top: -26px;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--black-soft);
  flex-shrink: 0;
}
.service-card-icon img { width: 100%; height: 100%; object-fit: contain; }

.service-card-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  color: var(--red);
}
.service-card-icon-fallback svg { width: 24px; height: 24px; }

.service-card-body h3 {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.service-card-body > p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 14px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--gray-300);
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
}

.arrow-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.card-footer:hover .arrow-circle { background: var(--red); color: var(--white); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials { background: #050505; padding: 90px 0; }

.testimonials-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.testimonials-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  text-transform: uppercase;
}

.testimonials-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-300);
}

.testimonials-stars { color: var(--red); letter-spacing: 2px; font-size: 14px; }

.testimonials-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-pill {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray-300);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.filter-pill:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

.filter-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

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

.testimonial-card {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}

.testimonial-card.is-hidden { display: none; }

.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(226,31,38,0.4); }

.testimonial-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.testimonial-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.85) 100%);
}

.testimonial-reviewer {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}

.testimonial-reviewer-info { flex: 1; min-width: 0; }

.testimonial-reviewer-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-reviewer-info span {
  display: block;
  font-size: 11.5px;
  color: var(--gray-300);
}

.testimonial-reviewer .google-g { flex-shrink: 0; }

.testimonial-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-stars { color: var(--red); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }

.testimonial-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.testimonial-thumbs {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.testimonial-thumbs span {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background-size: 220% auto;
  border: 1px solid var(--border);
}

.testimonial-thumbs span:nth-child(1) { background-position: 20% 20%; }
.testimonial-thumbs span:nth-child(2) { background-position: 60% 50%; }
.testimonial-thumbs span:nth-child(3) { background-position: 80% 80%; }

.testimonial-media-split { display: flex; }

.split-half {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.split-half img { width: 100%; height: 100%; object-fit: cover; }

.split-before { border-right: 1px solid rgba(255,255,255,0.25); }

.split-before img { filter: grayscale(1) brightness(.55); }

.split-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.testimonials-footer { display: flex; justify-content: center; margin-top: 40px; }

/* ==========================================================================
   Locations
   ========================================================================== */

.loc-hero { background: var(--black); padding: calc(var(--header-h) + 50px) 0 80px; }

.loc-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.loc-info h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.loc-info > p {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 26px;
}

.loc-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.loc-hero-features li { display: flex; align-items: center; gap: 10px; }

.loc-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-feature-icon svg { width: 18px; height: 18px; }

.loc-hero-features strong { font-size: 13px; font-weight: 600; }

.loc-info-card {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.loc-info-row { display: flex; align-items: flex-start; gap: 14px; }

.loc-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-info-icon svg { width: 17px; height: 17px; }

.loc-info-row strong { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }

.loc-info-row p { font-size: 12.5px; color: var(--gray-300); line-height: 1.5; }

.loc-info-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.loc-gallery-main {
  aspect-ratio: 16 / 10.5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.loc-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }

.loc-gallery-row { display: flex; align-items: center; gap: 14px; }

.loc-gallery-thumbs { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.loc-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: .6;
  transition: border-color .2s ease, opacity .2s ease;
}

.loc-thumb img { width: 100%; height: 100%; object-fit: cover; }

.loc-thumb:hover { opacity: .85; }

.loc-thumb.active { border-color: var(--red); opacity: 1; }

.loc-gallery-nav { display: flex; gap: 8px; flex-shrink: 0; }

.loc-gallery-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-soft);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.loc-gallery-nav button:hover { background: var(--red); border-color: var(--red); }

.loc-gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }

.loc-gallery-dots span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  transition: background .2s ease, width .2s ease;
}

.loc-gallery-dots span.active { width: 22px; background: var(--red); }

/* ==========================================================================
   Video Modal
   ========================================================================== */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.video-modal.open { opacity: 1; visibility: visible; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
}

.video-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  border: 1px solid var(--red);
  border-radius: 12px;
  background: var(--black);
  box-shadow: 0 0 0 1px rgba(226, 31, 38, 0.25), 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(226, 31, 38, 0.25);
  transform: scale(.96);
  transition: transform .25s ease;
}

.video-modal.open .video-modal-box { transform: scale(1); }

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-elevated);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.video-modal-close:hover { background: var(--red); border-color: var(--red); }

.video-modal-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black-soft);
}

.video-modal-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black-soft);
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 50px;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 75%);
  cursor: pointer;
  transition: opacity .2s ease;
}

.video-modal-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.video-modal-logo { height: 34px; width: auto; margin-bottom: auto; }

.video-modal-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.video-modal-copy p {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-300);
}

.video-modal-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: rgba(10, 10, 10, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.video-modal-play:hover { background: var(--red); border-color: var(--red); transform: translate(-50%, -50%) scale(1.06); }

.video-modal-media .hero-tagline-top { top: 32px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 45%;
  height: 3px;
  background: linear-gradient(90deg, rgba(226,31,38,0) 0%, var(--red) 60%, var(--red) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 0 14px 1px rgba(226,31,38,0.7);
}

.site-footer-bg { position: absolute; inset: 0; z-index: 0; }

.site-footer-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }

.site-footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.97) 0%, rgba(5,5,5,.9) 45%, rgba(5,5,5,.55) 75%, rgba(5,5,5,.25) 100%);
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding: 90px 0 60px;
}

.footer-logo { height: 42px; width: auto; margin-bottom: 16px; }

.footer-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gray-300);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-desc { font-size: 13px; color: var(--gray-300); line-height: 1.7; max-width: 340px; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-soft);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-social a:hover { background: var(--red); border-color: var(--red); }

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col ul a { font-size: 13.5px; color: var(--gray-300); transition: color .2s ease; }

.footer-col ul a:hover { color: var(--white); }

.footer-contact-list { gap: 18px; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }

.footer-contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon svg { width: 16px; height: 16px; }

.footer-contact-list strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 3px; }

.footer-contact-list p,
.footer-contact-list a { font-size: 12.5px; color: var(--gray-300); line-height: 1.5; }

.footer-contact-list a:hover { color: var(--white); }

.footer-newsletter-wrap { position: relative; z-index: 1; padding-bottom: 50px; }

.footer-script {
  margin-top: 24px;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--white);
  line-height: 1.2;
  text-align: right;
}

.footer-bottom { position: relative; z-index: 1; border-top: 1px solid var(--border); background: rgba(0,0,0,0.4); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--gray-500);
}

.footer-bottom-links { display: flex; align-items: center; gap: 10px; }

.footer-bottom-links a { color: var(--gray-500); transition: color .2s ease; }

.footer-bottom-links a:hover { color: var(--white); }

.footer-heart { color: var(--red); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .container { padding: 0 32px; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .main-nav.open { max-height: 480px; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .main-nav li { width: 100%; }

  .main-nav a { display: block; padding: 14px 0; width: 100%; }

  .main-nav a.active::after { display: none; }

  .btn-book { display: none; }

  .nav-toggle { display: flex; }

  .hero-tagline-top,
  .hero-tagline-bottom { display: none; }

  .video-modal { padding: 0; }
  .video-modal-box { max-width: 100%; border-radius: 0; }
  .video-modal-media { border-radius: 0; }
  .video-modal-overlay { padding: 24px; }
  .video-modal-play { width: 64px; height: 64px; }
  .video-modal-close { top: 12px; right: 12px; }

  .accreditation-inner { flex-direction: column; align-items: flex-start; gap: 28px; }

  .accred-tagline { align-items: flex-start; text-align: left; }

  .about-top { flex-direction: column; align-items: flex-start; }

  .about-shield { width: 160px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }

  .values-grid li { border-left: none; padding: 0 12px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

  .services-head-quote { text-align: left; margin-left: 0; }
  .services-head-quote::before,
  .services-head-quote::after { margin: 0 auto 10px 0; }
  .services-head-quote::after { margin: 10px auto 0 0; }

  .loc-hero-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 30px; }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }

  .container { padding: 0 20px; }

  .logo img { height: 30px; }

  .hero-actions { flex-direction: column; align-items: stretch; }

  .hero-features { gap: 20px 28px; }

  .hero-badge { max-width: 100%; }

  .accred-list { gap: 24px 32px; }

  .accred-list span { white-space: normal; }

  .service-grid { grid-template-columns: 1fr; }

  .services-head-features { gap: 18px; flex-wrap: wrap; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .testimonials-head { flex-direction: column; align-items: flex-start; }

  .testimonials-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }

  .loc-hero-features { gap: 18px; }

  .loc-info-actions { width: 100%; }
  .loc-info-actions .btn { flex: 1; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; padding: 60px 0 40px; }

  .footer-brand { grid-column: auto; }

  .footer-script { text-align: left; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}
