/* Breadcrumb navigation */
.breadcrumb {
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb li::after {
  content: '›';
  margin-left: 8px;
  color: var(--cyan);
}

.breadcrumb li:last-child::after { content: ''; }

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--cyan); }

.breadcrumb [aria-current="page"] {
  color: var(--cyan);
}

/* Page hero (subpages) */
.page-hero {
  position: relative;
  min-height: clamp(320px, 36vw, 420px);
  padding: 0;
  text-align: center;
  overflow: hidden;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.2) saturate(1.08);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,23,0.28) 0%, rgba(10,14,23,0.5) 100%);
}

.page-hero .container {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
}

.page-hero p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(10, 14, 23, 0.95);
}

/* Internal links cards */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.link-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  color: inherit;
}

.link-card-img {
  height: 200px;
  overflow: hidden;
}

.link-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.link-card:hover .link-card-img img { transform: scale(1.06); }

.link-card-body {
  padding: 24px;
}

.link-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.link-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.link-card-arrow {
  color: var(--cyan);
  font-size: 0.85rem;
  margin-top: 12px;
  display: inline-block;
}

/* YouTube embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: 340px; }
}

@media (max-width: 768px) {
  .links-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: calc(var(--header-h) + var(--safe-top) + 16px) 0 0; }
  .page-hero { min-height: 300px; padding: 0; }
  .page-hero .container { padding-top: 20px; padding-bottom: 20px; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .page-hero p { font-size: 1rem; padding: 0 8px; }
  .legal-content { padding: 24px 16px; margin: 0 16px; }
}

@media (max-width: 480px) {
  .link-card-img { height: 160px; }
}

/* Privacy checkbox */
.form-privacy { margin-top: 8px; }

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.privacy-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  accent-color: var(--cyan);
  -webkit-appearance: checkbox;
  appearance: auto;
  cursor: pointer;
}

.privacy-check input[type="checkbox"]:checked {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.15);
}

.privacy-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.privacy-check a {
  color: var(--cyan);
  text-decoration: underline;
}

.privacy-check a:hover { color: var(--teal); }

.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-feedback--success {
  background: rgba(0, 255, 200, 0.1);
  border: 1px solid rgba(0, 255, 200, 0.3);
  color: var(--teal);
}

.form-feedback--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Contact map */
.contact-map {
  padding-top: 0;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.map-address {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border-glass);
}

.map-address h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.map-address p {
  color: var(--text-secondary);
  margin: 0;
}

.map-address a {
  color: var(--cyan);
  font-weight: 500;
}

.map-address a:hover {
  color: var(--teal);
}

.map-address-note {
  margin-top: 8px !important;
  font-size: 0.9rem;
  color: var(--text-muted) !important;
}

.map-address .map-directions-btn {
  margin-top: 16px;
  width: fit-content;
  color: #0a0e17;
  font-weight: 600;
}

.map-address .map-directions-btn:hover {
  color: #0a0e17;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.03);
  touch-action: pan-x pan-y;
}

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

@media (max-width: 1024px) {
  .contact-map {
    padding-top: 8px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-info {
    order: -1;
  }

  .contact-form {
    order: 1;
  }

  .contact-map .section-header {
    margin-bottom: 28px;
  }

  .map-card {
    border-radius: var(--radius-sm);
  }

  .map-address {
    padding: 20px 16px 16px;
  }

  .map-address h3 {
    font-size: 1rem;
  }

  .map-address a {
    word-break: break-word;
  }

  .map-directions-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .map-embed {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .section .container > p .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .breadcrumb ol {
    font-size: 0.8rem;
    gap: 6px;
  }

  .breadcrumb li::after {
    margin-left: 6px;
  }
}

@media (max-width: 480px) {
  .contact-map {
    padding-bottom: 48px;
  }

  .map-address {
    padding: 18px 14px 14px;
  }

  .map-address-note {
    font-size: 0.85rem !important;
  }

  .map-embed {
    min-height: 220px;
    aspect-ratio: 1 / 1;
  }

  .link-card-body h3 {
    font-size: 1rem;
  }

  .legal-content {
    padding: 20px 14px;
    margin: 0 8px;
  }
}

/* Legal / Privacy page */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cyan);
  margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a { color: var(--cyan); }

.legal-content a.btn-primary,
.legal-content a.btn-primary:hover,
.legal-content a.btn-primary:focus,
.legal-content a.btn-primary:active {
  color: #000;
  -webkit-text-fill-color: #000;
}

.legal-content.glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 768px) {
  .legal-content { padding: 28px 20px; }
}
