/* Allway Car Care Ltd design system */

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Barlow:wght@400;500;600;700&display=swap");

:root {
  --primary: #1a3c6e;
  --secondary: #f5c400;
  --accent: #0f2548;
  --white: #ffffff;
  --site-bg: #ffffff;
  --light-bg: #f4f5f7;
  --header-bg: #1a3c6e;
  --footer-bg: #0f2548;
  --nav-default: #ffffff;
  --nav-hover: #f5c400;
  --nav-active: #f5c400;
  --hero-title: #ffffff;
  --hero-tagline: #f5c400;
  --cta-primary-bg: #f5c400;
  --cta-primary-text: #0f2548;
  --cta-secondary-bg: #1a3c6e;
  --cta-secondary-text: #ffffff;
  --body-text: #1a1a1a;
  --muted-text: #5a6070;
  --border: #e8eaee;

  --secondary-hover: #e1b400;
  --primary-hover: #15325a;
  --secondary-rgb: 245, 196, 0;
  --primary-rgb: 26, 60, 110;
  --footer-muted: #8a9ab5;
  --footer-bottom-text: #5a6070;
  --border-input: #dde1e8;
  --hero-overlay: rgba(10, 18, 36, 0.68);

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-height: 100px;
  --section-pad: clamp(72px, 9vw, 120px);
  --container-max: 1160px;
  --container-pad: 24px;
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.25s ease;
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-text);
  background: var(--site-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--accent);
}

h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--body-text);
  text-transform: none;
  letter-spacing: 0;
}

p + p {
  margin-top: 0.85rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}

.section--light {
  background: var(--light-bg);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--accent);
  color: var(--white);
}

.section--primary {
  background: var(--primary);
  color: var(--white);
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-header p,
.section-header .lead {
  color: var(--muted-text);
  margin-top: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}

.section-header .lead--narrow {
  max-width: 580px;
  margin-inline: auto;
}

.section--dark .section-header h2,
.section--primary .section-header h2 {
  color: var(--white);
}

.section--dark .section-header p,
.section--primary .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.prose {
  max-width: 680px;
  color: var(--muted-text);
  line-height: 1.8;
}

.prose--center {
  margin-inline: auto;
  text-align: center;
}

.prose strong {
  color: var(--body-text);
  font-weight: 600;
}

/* Grid utilities */
.card-grid-2,
.card-grid-3,
.card-grid-4,
.card-grid-5 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.card__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--body-text);
  margin-bottom: 0.5rem;
}

.card__body {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.feature-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border-top: 3px solid var(--secondary);
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-block:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.feature-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.icon-badge--lg {
  width: 52px;
  height: 52px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-card {
  text-align: center;
  padding: 32px 24px;
}

.icon-card .icon-badge {
  margin-inline: auto;
}

.icon-card h3 {
  font-size: 1.05rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--accent);
}

.icon-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.service-card {
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-bottom-color: var(--secondary);
}

.service-card .icon-badge {
  background: rgba(var(--secondary-rgb), 0.2);
  color: var(--secondary);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card .link-arrow {
  color: var(--secondary);
}

.tier-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tier-card h3 {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.tier-card p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tier-card--accent {
  border-left: 3px solid var(--secondary);
}

.tier-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--cta-primary-text);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
}

.section--compact {
  padding-block: 48px;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.info-box li:last-child {
  border-bottom: none;
}

.check-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.badge-popular {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta-primary-text);
  background: var(--secondary);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.framed-photo {
  position: relative;
}

.framed-photo::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  z-index: -1;
}

.framed-photo img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--card-shadow);
}

.footer-logo-img {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  max-height: 120px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin: 2rem 0;
  list-style: none;
}

.booking-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.booking-steps__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: var(--white);
}

.booking-steps__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body-text);
  line-height: 1.35;
}

@media (min-width: 900px) {
  .booking-steps {
    flex-wrap: nowrap;
    position: relative;
  }

  .booking-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(var(--secondary-rgb), 0.35);
    z-index: 0;
  }

  .booking-steps li {
    position: relative;
    z-index: 1;
  }
}

.testimonial-card {
  position: relative;
  background: var(--light-bg);
  border: none;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  text-align: left;
  overflow: hidden;
}

.testimonial-card__quote {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card__stars {
  color: var(--secondary);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-card blockquote {
  position: relative;
  font-style: italic;
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  display: block;
}

.testimonial-card cite strong {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--body-text);
}

.testimonial-card cite span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted-text);
  margin-top: 0.15rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--cta-primary-bg);
  border-color: var(--cta-primary-bg);
  color: var(--cta-primary-text);
}

.btn--primary:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  color: var(--cta-primary-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--secondary-rgb), 0.35);
}

.btn--secondary {
  background: var(--cta-secondary-bg);
  border-color: var(--cta-secondary-bg);
  color: var(--cta-secondary-text);
}

.btn--secondary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--cta-secondary-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.btn--outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-2px);
}

.cta-band .btn--outline-light:hover {
  color: var(--accent);
}

.link-arrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
  margin-top: auto;
  display: inline-block;
}

.link-arrow:hover {
  color: var(--secondary-hover);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.nav-logo:hover {
  color: inherit;
}

.nav-logo img {
  display: block;
  height: 88px;
  width: auto;
  max-width: min(480px, 72vw);
  object-fit: contain;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-wordmark__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-wordmark__tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 2px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.nav-menu a {
  color: var(--nav-default);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.55rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-short { display: inline; }
.nav-full { display: none; }

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--nav-active);
}

.nav-menu a.is-active {
  border-bottom: 2px solid var(--nav-active);
  padding-bottom: calc(0.5rem - 2px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--nav-default);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.55rem;
  cursor: pointer;
  transition: color var(--transition);
}

.nav-dropdown__toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.85;
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-active .nav-dropdown__toggle {
  color: var(--nav-active);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 11rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  padding: 0.35rem 0;
  margin-top: 0.25rem;
  z-index: 200;
}

/* Invisible bridge so the pointer can reach the menu without the gap closing it */
.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-dropdown__menu a {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-bottom: none;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-active {
  color: var(--primary);
  background: var(--light-bg);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: block;
}

@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }
}

.nav-ctas {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn--nav-phone {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.btn--nav-phone:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn--nav-book {
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(15, 37, 72, 0.15);
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn--nav-book:hover {
  background: var(--secondary-hover);
  border-color: rgba(15, 37, 72, 0.2);
  color: var(--cta-primary-text);
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--nav-book:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }

  .nav-ctas {
    display: flex;
    align-items: center;
    align-self: stretch;
    overflow: visible;
  }

  .nav-cta-hang {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    margin-bottom: -28px;
    padding: 0 3px 28px;
    transition: transform var(--transition);
  }

  .nav-cta-hang::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
      180deg,
      #ffd633 0%,
      var(--secondary) 38%,
      #e5bc00 100%
    );
    border: 2px solid rgba(15, 37, 72, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 0 10px 10px;
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 0;
    transition: background var(--transition), box-shadow var(--transition);
  }

  .nav-cta-hang .btn--nav-book {
    position: relative;
    z-index: 1;
    top: 0;
    margin: 0;
    min-width: 168px;
    padding: 14px 32px 16px;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--accent);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .nav-cta-hang:hover {
    transform: translateY(-2px);
  }

  .nav-cta-hang:hover::after {
    background: linear-gradient(
      180deg,
      #ffe566 0%,
      var(--secondary-hover) 38%,
      #d9b600 100%
    );
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .nav-cta-hang .btn--nav-book:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
    color: var(--accent);
  }

  .nav-cta-hang:focus-within::after {
    outline: 2px solid var(--white);
    outline-offset: 2px;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + 2rem) var(--container-pad) 2rem;
    background: var(--accent);
    overflow-y: auto;
    gap: 0;
    z-index: 1100;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-short { display: none; }
  .nav-full { display: inline; }

  .nav-menu a {
    padding: 1.15rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
  }

  .nav-menu a:hover,
  .nav-menu a.is-active {
    color: var(--nav-hover);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .nav-menu a.is-active {
    padding-bottom: 1.15rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1.15rem 0;
    font-size: 1.15rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown__toggle:hover,
  .nav-dropdown.is-active .nav-dropdown__toggle {
    color: var(--nav-hover);
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0.5rem;
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }

  .nav-dropdown__menu a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    padding: 0.85rem 0 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a.is-active {
    color: var(--nav-hover);
    background: transparent;
  }

  .nav-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 1.5rem 0 0;
    gap: 0.75rem;
    margin-top: auto;
  }

  .nav-ctas .btn {
    width: 100%;
  }

  .nav-cta-hang {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
  }

  .nav-cta-hang::after {
    display: none;
  }

  .nav-cta-hang .btn--nav-book {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    border-radius: 8px;
    text-shadow: none;
    background: linear-gradient(
      180deg,
      #ffd633 0%,
      var(--secondary) 50%,
      #e5bc00 100%
    );
    border: 2px solid rgba(15, 37, 72, 0.12);
    box-shadow:
      0 6px 20px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  .nav-cta-hang .btn--nav-book:hover {
    transform: translateY(-2px);
    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .btn--nav-phone {
    width: 100%;
    text-align: center;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero {
  min-height: 92vh;
}

.page-hero {
  min-height: 85vh;
}

.page-hero--local {
  min-height: 70vh;
}

.hero__bg,
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero__inner,
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(4rem, 8vw, 5rem);
}

.hero__layout,
.page-hero__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 55fr 45fr;
    min-height: calc(92vh - 10rem);
  }

  .page-hero__layout {
    grid-template-columns: 55fr 45fr;
    min-height: calc(85vh - 8rem);
  }
}

.hero__copy,
.page-hero__copy {
  max-width: 560px;
}

.hero__copy h1,
.page-hero__copy h1 {
  color: var(--hero-title);
  margin-bottom: 1rem;
}

.hero__tagline,
.page-hero__tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-tagline);
  margin-bottom: 0.75rem;
}

.hero__copy p,
.page-hero__copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.15);
  border: 1px solid var(--secondary);
  padding: 5px 14px;
  border-radius: 100px;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .section-label,
.page-hero .section-label {
  color: var(--hero-tagline);
}

.hero__widget,
.page-hero__widget {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  width: 100%;
}

@media (min-width: 900px) {
  .hero__widget,
  .page-hero__widget {
    justify-self: end;
  }
}

@media (max-width: 899px) {
  .hero__widget,
  .page-hero__widget {
    margin-top: 2rem;
  }
}

.hero__widget-title,
.page-hero__widget-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Steps */
.steps-row {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.step-item {
  position: relative;
}

.step-item__num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.step-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.section--dark .step-item h3 {
  color: var(--white);
}

.section--dark .step-item p {
  color: rgba(255, 255, 255, 0.8);
}

.section--dark .step-item__num {
  color: var(--secondary);
}

/* Bullet features */
.bullet-features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bullet-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bullet-feature {
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
}

.bullet-feature h3 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.bullet-feature p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
}

/* About */
.about-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.mission-box {
  background: var(--light-bg);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px;
}

.mission-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.mission-box h3 {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-box--white {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

.mission-box--white p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.mission-box--white p strong {
  color: var(--accent);
  font-weight: 600;
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.split-section__media {
  position: relative;
}

.split-section__media::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  z-index: -1;
}

.split-section__media img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--card-shadow);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--body-text);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item.is-open .faq-question {
  color: var(--accent);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--secondary);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding: 0 0 16px;
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Photo gallery */
.photo-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-gallery img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Area pills */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.area-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.area-pill:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--cta-primary-text);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pill {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

/* Credentials */
.credential-item {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
}

.credential-item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.credential-item h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.credential-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.credential-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px;
}

.section--light .credential-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  text-align: center;
}

.credential-box__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section--dark .credential-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section--dark .credential-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.credential-box h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.credential-box p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.7;
}

/* Widget panel */
.widget-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  max-width: 760px;
  margin-inline: auto;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 45% 55%;
  }
}

.contact-detail-block {
  margin-bottom: 1.25rem;
}

.contact-detail-block .section-label {
  margin-bottom: 0.35rem;
}

.contact-map-sm {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: var(--card-shadow);
}

.contact-map-sm iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact-layout-single {
  max-width: 42rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-panel {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 40px;
  border: none;
}

.form-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--body-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-input);
  border-radius: 6px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.15);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.page-hero--booking {
  min-height: 70vh;
}

.page-hero--booking .page-hero__copy {
  max-width: 42rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-cards--2 {
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 600px) {
  .contact-cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  text-align: center;
}

.contact-card h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.contact-card .icon-badge {
  width: 52px;
  height: 52px;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  border-top: 3px solid var(--secondary);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}

.footer-col {
  min-width: 0;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.35fr 1fr 0.9fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.footer-wordmark:hover {
  color: var(--secondary);
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--secondary);
  margin: 0 0 0.5rem;
}

.footer-tagline-desc {
  font-size: 0.9rem;
  color: var(--footer-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 22rem;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-heading--spaced {
  margin-top: 1.25rem;
}

.footer-nav a,
.footer-hours-list li,
.footer-contact li {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--footer-muted);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact a {
  color: var(--white);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-dropdown {
  margin-top: 1.25rem;
}

.footer-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  padding: 0.65rem 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.footer-dropdown__toggle:hover {
  color: var(--white);
}

.footer-dropdown__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.footer-dropdown__icon::before,
.footer-dropdown__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.footer-dropdown__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.footer-dropdown.is-open .footer-dropdown__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.footer-dropdown__panel {
  margin: 0;
  padding: 0.25rem 0 0;
}

.footer-dropdown__panel[hidden] {
  display: none;
}

.footer-bottom,
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  background: #080d14;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p,
.footer-bar p {
  font-size: 0.8rem;
  color: var(--footer-bottom-text);
  margin: 0;
}

.footer-credit {
  margin: 0;
}

.footer-bottom .footer-credit a,
.footer-bar .footer-credit a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-bottom .footer-credit a:hover,
.footer-bar .footer-credit a:hover {
  text-decoration: underline;
}

/* Pull quote */
.pull-quote {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

.pull-quote::before,
.pull-quote::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
  margin: 0 auto 2rem;
  max-width: 120px;
}

.pull-quote::after {
  margin: 2rem auto 0;
}

.pull-quote__mark {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--secondary);
  display: block;
  margin-bottom: 1rem;
}

.pull-quote p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted-text);
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 380px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-wrap--visit {
  margin-top: 2rem;
}

/* Trust section: four equal cards, icon stacked above copy */
.trust-cards .feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.trust-cards .icon-badge {
  margin-bottom: 1rem;
}

.trust-cards .feature-block h3 {
  margin-bottom: 0.5rem;
}

.trust-cards .feature-block p {
  margin: 0;
  flex-grow: 1;
}

/* Utilities */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Mobile responsiveness
   ========================================================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--secondary);
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

.breadcrumb {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted-text);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--border);
  font-weight: 400;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--secondary-hover);
}

.breadcrumb [aria-current="page"] {
  color: var(--body-text);
  font-weight: 600;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

.find-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

/* Tablet and below */
@media (max-width: 1023px) {
  :root {
    --nav-height: 76px;
    --section-pad: clamp(56px, 8vw, 96px);
  }

  .nav-logo img {
    height: 56px;
    max-width: min(280px, 62vw);
  }

  .nav {
    gap: 0.75rem;
  }

  .site-header {
    overflow: visible;
  }

  /* Booking also appears as Book Online in the mobile CTA strip */
  .nav-menu > a[href="booking.html"] {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero--booking {
    min-height: auto;
  }

  .hero__inner,
  .page-hero .container {
    padding-block: clamp(3rem, 8vw, 4.5rem);
  }

  .hero__copy h1,
  .page-hero__copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.75rem);
    overflow-wrap: break-word;
  }

  .hero__widget,
  .page-hero__widget {
    padding: 24px 20px;
  }

  .widget-panel,
  .form-panel {
    padding: 28px 20px;
  }

  .map-wrap,
  .map-wrap iframe,
  .contact-map-sm iframe {
    height: min(380px, 55vh);
    min-height: 260px;
  }

  .credential-box {
    padding: 28px 20px;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .card,
  .feature-block,
  .icon-card {
    padding: 24px 20px;
  }

  .framed-photo::after {
    inset: 8px -8px -8px 8px;
  }
}

/* Large phones */
@media (max-width: 767px) {
  :root {
    --container-pad: 20px;
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .section--compact {
    padding-block: 40px;
  }

  .booking-steps {
    gap: 1.25rem 1rem;
  }

  .booking-steps li {
    max-width: 100px;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 88px;
  }

  .booking-steps__label {
    font-size: 0.72rem;
  }

  .testimonial-card__quote {
    font-size: 3.5rem;
  }

  .cta-band__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__actions,
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .page-hero__actions .btn {
    width: 100%;
  }

  .footer-main {
    gap: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* Small phones */
@media (max-width: 479px) {
  :root {
    --container-pad: 16px;
    --section-pad: clamp(48px, 10vw, 72px);
  }

  .nav-logo img {
    height: 48px;
    max-width: min(240px, 72vw);
  }

  .footer-logo-img {
    max-height: 80px;
    max-width: 100%;
  }

  .hero__copy h1,
  .page-hero__copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .hero__copy p,
  .page-hero__copy p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 1rem 0;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .booking-steps li {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .card-grid-3,
  .card-grid-4,
  .card-grid-5 {
    gap: 1.25rem;
  }

  .mission-box,
  .info-box {
    padding: 24px 18px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Ensure grids are single column on the smallest screens */
@media (max-width: 639px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .card-grid-5 {
    grid-template-columns: 1fr;
  }
}
/* Vehicle brands marquee */
.brands-marquee {
  background: #ffffff;
  border-block: 1px solid rgba(15, 37, 72, 0.08);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  overflow: hidden;
}

.brands-marquee__intro {
  text-align: center;
  margin-bottom: 1.25rem;
}

.brands-marquee__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--accent, var(--navy, #1a3c6e));
}

.brands-marquee__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted, #5a6a7e);
  max-width: 40rem;
  margin-inline: auto;
}

.brands-marquee__viewport {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}

.brands-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  width: max-content;
  overflow: visible;
  background: #ffffff;
  animation: brands-marquee-scroll 55s linear infinite;
  will-change: transform;
}

.brands-marquee__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
  width: max-content;
  background: #ffffff;
  font-size: 0;
}

.brands-marquee__list li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #ffffff;
}

/* Same size for every logo; scaled down uniformly, flush edge-to-edge */
.brands-marquee__list img {
  display: block;
  width: 280px;
  height: 84px;
  min-width: 280px;
  min-height: 84px;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  flex-shrink: 0;
  vertical-align: top;
  object-fit: contain;
  object-position: center;
}

@keyframes brands-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0);
  }
}

@media (max-width: 900px) {
  .brands-marquee__list img {
    width: 220px;
    height: 66px;
    min-width: 220px;
    min-height: 66px;
  }
}

@media (max-width: 520px) {
  .brands-marquee__list img {
    width: 180px;
    height: 54px;
    min-width: 180px;
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .brands-marquee__track {
    animation-duration: 90s;
  }
}
