/* Bowridge Bottle Depot — BottleDrop truck palette: bright cyan “Drop” blue + deep blue shell */
:root {
  --blue-rich: #0eb4d4;
  --blue-deep: #0891b2;
  --blue-bright: #06b6d4;
  --blue-electric: #67e8f9;
  --navy: #052a38;
  --navy-soft: #0a3d52;
  --accent-orange: #f97316;
  --white: #ffffff;
  --gray-50: #f0f9fc;
  --gray-100: #e2f2f8;
  --gray-200: #c9dde8;
  --gray-500: #64748b;
  --gray-700: #3d4f63;
  --text: #2c3e50;
  --text-muted: #5a6b7d;
  --shadow-sm: 0 1px 2px rgba(5, 42, 56, 0.07);
  --shadow-md: 0 8px 24px rgba(5, 42, 56, 0.09);
  --shadow-lg: 0 16px 48px rgba(5, 42, 56, 0.11);
  --radius: 10px;
  --radius-lg: 14px;
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --header-height: 80px;
  --topbar-height: 50px; /* min bar row; scales with padding + font (~25% up from 40px) */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

/* Vertical DEPOT strip — fixed to viewport, rotates horizontal art to read top-to-bottom */
.side-depot {
  position: fixed;
  right: max(2rem, calc(env(safe-area-inset-right, 0px) + 12px));
  /* Flush under navy top bar + sticky white header */
  top: calc(var(--topbar-height) + var(--header-height) - 1rem);
  z-index: 1001;
  pointer-events: none;
  line-height: 0;
}

.side-depot img {
  display: block;
  width: 398px;
  max-width: none;
  height: auto;
  transform: rotate(-90deg);
  transform-origin: right center;
  opacity: 0.92;
  filter: drop-shadow(-2px 0 10px rgba(0, 31, 92, 0.14));
}

@media (max-width: 1024px) {
  .side-depot {
    display: none;
  }
}

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

a {
  color: var(--blue-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-deep);
}

:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: var(--gray-100);
  font-size: calc(0.8125rem * 1.25);
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(0.5rem * 1.25) calc(1.25rem * 1.25);
  display: flex;
  flex-wrap: wrap;
  gap: calc(0.75rem * 1.25) 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .top-bar {
    font-size: calc(0.75rem * 1.25);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .top-bar__inner {
    flex-wrap: nowrap;
    gap: 0.5rem 0.65rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: min(1280px, calc(100vw - 1.5rem));
  }

  .top-bar__item {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: calc(0.35rem * 1.25);
}

.top-bar__item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

.top-bar__label {
  color: var(--gray-200);
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo:hover .logo__img {
  opacity: 0.92;
}

.logo__img {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(300px, 72.5vw);
  object-fit: contain;
}

@media (max-width: 480px) {
  .logo__img {
    height: 50px;
    max-width: min(250px, 65vw);
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-desktop a:hover {
  background: var(--gray-50);
  color: var(--blue-rich);
  text-decoration: none;
}

.nav-desktop a[aria-current="page"] {
  color: var(--blue-rich);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease,
    transform 0.12s ease, box-shadow 0.18s ease;
}

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

.btn--primary {
  background: var(--blue-rich);
  color: var(--white);
  border-color: var(--blue-rich);
  box-shadow: 0 2px 8px rgba(14, 180, 212, 0.35);
}

.btn--primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(14, 180, 212, 0.4);
}

.btn--primary:disabled,
.btn--primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--gray-500);
  border-color: var(--gray-500);
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.btn--primary:disabled:hover,
.btn--primary[disabled]:hover {
  background: var(--gray-500);
  border-color: var(--gray-500);
  color: var(--white);
  box-shadow: none;
}

.btn--secondary {
  background: var(--white);
  color: var(--blue-rich);
  border-color: var(--gray-200);
}

.btn--secondary:hover {
  border-color: var(--blue-bright);
  color: var(--blue-deep);
  background: var(--gray-50);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--gray-50);
  text-decoration: none;
}

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  color: var(--navy);
}

.nav-toggle:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="false"] .icon-close {
  display: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--topbar-height) + var(--header-height));
  background: var(--white);
  z-index: 999;
  padding: 1rem 1.25rem 2rem;
  overflow-y: auto;
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover {
  color: var(--blue-rich);
}

.mobile-nav .btn {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 960px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero__tile,
.hero__panel,
.hero__trust-item {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.hero__tile {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.hero__tile .hero__lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero__tile .hero__ctas {
  margin-top: 1.25rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Bowridge7.jpeg");
  background-image: image-set(
    url("../images/optimized/bowridge-7.avif") type("image/avif") 1x,
    url("../images/optimized/bowridge-7.webp") type("image/webp") 1x,
    url("../images/optimized/bowridge-7-1600.avif") type("image/avif") 2x,
    url("../images/optimized/bowridge-7-1600.webp") type("image/webp") 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 20%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 4.5rem 1.25rem 3rem;
  }
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__ctas .btn--primary {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.hero__ctas .btn--primary:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--navy);
}

.hero__ctas .btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__ctas .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.hero__panel {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.hero__panel-title {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-electric);
}

.hero__panel-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero__panel p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.hero__panel .hero__ctas {
  margin-top: auto;
  width: 100%;
}

.hero__trust {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}

@media (min-width: 640px) {
  .hero__trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
}

.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--blue-electric);
  margin-top: 2px;
}

/* Sections */
.section {
  padding: 4rem 1.25rem;
}

.section--alt {
  background: var(--gray-50);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section--bg-rotator {
  position: relative;
  overflow: hidden;
}

.section__bg-rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section__bg-rotator-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1400ms ease;
  transform: scale(1.02);
}

.section__bg-rotator-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.section__bg-rotator-layer.is-active {
  opacity: 1;
}

.section__inner--on-bg {
  position: relative;
  z-index: 1;
}

.glass-panel {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.glass-panel--story {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.glass-panel h2 {
  color: var(--white);
}

/* Force "Who we are" heading to white (override any later rules). */
#story-heading {
  color: var(--white) !important;
}

.section--bg-rotator .section__intro {
  color: rgba(255, 255, 255, 0.88);
}

.section--bg-rotator h2 {
  color: var(--white);
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue-rich);
}

.section--navy .section__eyebrow {
  color: var(--blue-electric);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
}

.section--navy h2 {
  color: var(--white);
}

.section__intro {
  margin: 0 0 2.25rem;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section--navy .section__intro {
  color: rgba(255, 255, 255, 0.82);
}

/* Cards grid */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gray-50);
  color: var(--blue-rich);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.card p {
  margin: 0 0 1.25rem;
  flex-grow: 1;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.card .btn {
  align-self: flex-start;
}

/* About section: full-bleed video, clear on the left; solid panel + copy on the right */
.section--about-video {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 0;
}

.about-video-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, min(48%, 580px));
  /* Stable row height on desktop — avoids video growing with viewport height */
  min-height: 560px;
  align-items: stretch;
}

.about-split__media {
  position: relative;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--navy);
}

.about-split__media .about-video-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Fixed display size: does not grow when the browser window gets wider (960 × 1.24) */
.about-split__media .about-video-bg__stage {
  position: relative;
  width: 1190px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-split__media .about-video-bg__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center center;
}

@media (max-width: 767px) {
  .about-split__media .about-video-bg__stage {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: unset;
    position: absolute;
    inset: 0;
  }

  .about-split__media .about-video-bg {
    display: block;
  }

  .about-split__media .about-video-bg__media {
    position: absolute;
    inset: auto;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.3392);
    object-fit: cover;
  }
}

.about-intro-panel {
  background: var(--navy);
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.18);
}

.about-intro-panel__inner {
  max-width: 36rem;
  text-align: left;
}

.section--about-video .about-intro-panel .section__eyebrow {
  color: var(--blue-electric);
}

.section--about-video .about-intro-panel h2 {
  color: var(--white);
  text-wrap: balance;
}

.section--about-video .about-intro-panel .section__intro {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: none;
}

.section--about-video .about-intro-panel .btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.section--about-video .about-intro-panel .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  text-decoration: none;
}

.about-intro-panel__cta {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .about-split {
    grid-template-columns: 1fr;
    grid-template-rows: min(38vh, 340px) auto;
    min-height: 0;
  }

  .about-split__media {
    min-height: min(38vh, 340px);
  }

  .about-intro-panel {
    box-shadow: none;
    padding: clamp(2rem, 6vw, 2.75rem) clamp(1.25rem, 5vw, 1.5rem) clamp(2.5rem, 8vw, 3.5rem);
  }

  .about-intro-panel__inner {
    max-width: 40rem;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--about-video .about-video-bg__media {
    display: none;
  }
}

/* Split CTA sections */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .split--commercial {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .split--trailers {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

.split__visual {
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1.5rem;
  text-align: center;
}

.split__visual--rotator {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: block;
  min-height: 280px;
  background: var(--navy);
  color: transparent;
}

.split__visual--rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.split__visual--rotator img.is-active {
  opacity: 1;
}

.split__visual--trailers {
  min-height: 420px;
}

@media (max-width: 899px) {
  .split__visual--trailers {
    min-height: 340px;
  }
}

/* Show a bit more of the top of Trailer 1. */
.split__visual--trailers img:first-child {
  object-position: center 30%;
}

.split__visual--photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: block;
  min-height: 0;
  background: transparent;
  border: 0;
  color: transparent;
}

.split__visual--photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.quote__stars {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  font-style: normal;
  line-height: 1;
}

.quote p:not(.quote__stars) {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
}

.quote footer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-rich);
}

.quote footer cite {
  font-style: normal;
  display: block;
}

.quote__meta {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.28);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group--turnstile {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.turnstile-container {
  min-height: 65px;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Contact form — success confirmation */
.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
}

.contact-success-modal[hidden] {
  display: none !important;
}

.contact-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 42, 56, 0.5);
  backdrop-filter: blur(3px);
}

.contact-success-modal__panel {
  position: relative;
  width: 100%;
  max-width: 26rem;
  margin: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
}

@media (prefers-reduced-motion: no-preference) {
  .contact-success-modal__panel {
    animation: contact-success-pop 0.28s ease-out;
  }
}

@keyframes contact-success-pop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.contact-success-modal__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-rich), var(--blue-deep));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35);
}

.contact-success-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.contact-success-modal__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-success-modal__actions {
  display: flex;
  justify-content: center;
}

.contact-success-modal__actions .btn {
  min-width: 10rem;
}

.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.info-card h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.info-card dl {
  margin: 0;
}

.info-card dt {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-electric);
  margin-top: 1rem;
}

.info-card dt:first-of-type {
  margin-top: 0;
}

.info-card dd {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
}

.info-card a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-card a:hover {
  color: var(--blue-electric);
}

/* Google Maps embed on business info card */
.info-card .map-embed {
  margin-top: 1.5rem;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.info-card .map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.25rem 1.5rem;
  font-size: 0.9375rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--blue-electric);
  text-decoration: underline;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer__brand .logo {
  margin-bottom: 0.75rem;
}

.footer__brand .logo:hover .logo__img {
  opacity: 0.95;
}

.footer__brand .logo__img {
  height: 65px;
  max-width: 325px;
}

.footer__brand p {
  margin: 0;
  max-width: 280px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue-electric);
}

.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  line-height: 1.5;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 2.5rem 1.25rem;
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.hidden {
  display: none !important;
}
