/* ═══════════════════════════════════════════════════════
   NAVE MAGNA — MOBILE STYLESHEET
   Update this file independently at /css/mobile.css
   ═══════════════════════════════════════════════════════ */

/* ── FOUNDATION: iOS & Touch Fix ── */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(201, 169, 110, 0.1);
  scroll-behavior: smooth;
}
body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* CRITICAL iOS FIX: touch-action on ALL tappable elements */
a, button, [onclick], [role="button"],
.listing-card, .fleet-card, .ycard, .service-card,
.nav-hamburger, .btn-primary, .btn-outline, .btn,
.admin-btn-add, .admin-btn-edit, .admin-btn-del,
.admin-featured-star, .fleet-filter, .auth-btn,
.form-btn-save, .form-btn-cancel, .admin-close {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 169, 110, 0.1);
  cursor: pointer;
}

/* Prevent iOS zoom on input focus */
input, select, textarea, button {
  font-size: 16px !important;
}
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── MOBILE HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 102;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile slide-out nav panel */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: var(--navy-mid);
  z-index: 101;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid rgba(201, 169, 110, 0.1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.mobile-nav-panel.open {
  right: 0;
}
.mobile-nav-overlay {
  display: none; /* Hidden by default — shown via JS */
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open {
  display: block; /* Only visible when open */
  opacity: 1;
}
.mobile-nav-panel a,
.mobile-nav-panel button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  background: none;
  border: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: color 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 169, 110, 0.1);
  min-height: 52px;
}
.mobile-nav-panel a:hover,
.mobile-nav-panel button:hover,
.mobile-nav-panel a:active,
.mobile-nav-panel button:active {
  color: var(--gold);
}
.mobile-nav-panel .mobile-nav-cta {
  margin-top: 24px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.mobile-nav-panel .mobile-nav-cta:active {
  background: var(--gold);
  color: var(--navy);
}
.mobile-nav-section {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 24px 0 8px;
  border-bottom: none !important;
  font-weight: 500;
  opacity: 0.7;
}


/* ═══════════════════════════════════════
   TABLET (max-width: 1024px)
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .listings-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yacht-detail-layout {
    grid-template-columns: 1fr;
  }
  .yacht-detail-image,
  .detail-img {
    height: 360px;
  }
}


/* ═══════════════════════════════════════
   MOBILE (max-width: 768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Layout ── */
  .container {
    padding: 0 20px;
  }

  /* ── Navigation — larger hamburger ── */
  .nav-links {
    display: none !important;
  }
  .nav-hamburger {
    display: flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-right: -12px;
  }
  .nav-hamburger span {
    width: 24px;
  }
  .mobile-nav-panel {
    display: block; /* Off-screen at right:-100%, safe */
  }
  /* Overlay stays display:none until .open is added via JS */
  .site-nav {
    padding: 12px 0;
  }
  .site-nav .container {
    padding: 0 20px;
  }
  .nav-logo {
    font-size: 22px;
  }

  /* ── Hero ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero .container {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: clamp(36px, 9vw, 52px);
    margin-bottom: 20px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions a {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    min-height: 56px;
    font-size: 13px;
    text-align: center;
  }

  /* ── Compass animation: fill viewport on mobile ── */
  .hero-canvas svg {
    width: 200vmin;
    height: 200vmin;
  }

  /* ── Stats ── */
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 28px 16px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* ── Section headers ── */
  .section-header {
    margin-bottom: 48px;
  }
  .section-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .section-desc {
    font-size: 15px;
  }
  .sec-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* ── Listings / Fleet — LARGE touch-friendly cards ── */
  .listings {
    padding: 64px 0;
  }
  .listings-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .listing-card,
  .ycard,
  .fleet-card {
    border-radius: 0;
    display: block;
    min-height: 0;
  }
  /* Larger images on mobile for visual impact */
  .listing-image,
  .ycard-img,
  .fleet-card-image {
    height: 260px;
  }
  .listing-body,
  .ycard-body,
  .fleet-card-body {
    padding: 24px 20px 28px;
  }
  .listing-name,
  .ycard-name,
  .fleet-card-name {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .listing-specs,
  .ycard-specs,
  .fleet-card-specs {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .listing-desc-text,
  .ycard-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .listing-price,
  .ycard-price,
  .fleet-card-price {
    font-size: 24px;
  }
  .listing-badge,
  .ycard-badge {
    font-size: 11px;
    padding: 7px 16px;
  }
  .listing-footer {
    padding-top: 18px;
  }
  .fleet-card-cta {
    font-size: 13px;
    margin-top: 14px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(201, 169, 110, 0.06);
  }
  /* Sold overlay larger text */
  .fleet-sold-overlay .fleet-sold-tag,
  .ycard-sold span {
    font-size: 24px;
    padding: 10px 24px;
  }

  /* ── Services grid — larger touch targets ── */
  .services {
    padding: 64px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .service-card {
    padding: 32px 24px;
    touch-action: manipulation;
    transition: background 0.2s;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .service-card:active {
    background: rgba(201, 169, 110, 0.08);
  }
  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }
  .service-name {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .service-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  /* ── About section ── */
  .about {
    padding: 80px 0;
  }
  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    height: 280px;
    order: -1;
  }
  .about-content .section-title {
    font-size: clamp(28px, 7vw, 36px);
  }
  .about-text {
    font-size: 15px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Testimonial ── */
  .testimonial {
    padding: 60px 0;
  }
  .testimonial-mark {
    font-size: 80px;
    margin-bottom: 12px;
  }
  .testimonial-text {
    font-size: 20px;
  }

  /* ── CTA ── */
  .cta {
    padding: 80px 0;
  }
  .cta .section-title,
  .subpage-cta h3 {
    font-size: clamp(28px, 7vw, 36px);
  }

  /* ── Footer ── */
  .site-footer {
    padding: 48px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* ── Buttons — generous touch targets ── */
  .btn-primary,
  .btn-outline,
  .btn,
  .btn-gold,
  .btn-sm {
    min-height: 52px;
    padding: 16px 28px;
    font-size: 13px;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Subpages — touch-friendly ── */
  .subpage-hero {
    padding: 120px 0 48px;
  }
  .subpage-hero h1 {
    font-size: clamp(32px, 8vw, 44px);
  }
  .subpage-hero-desc {
    font-size: 16px;
  }
  .subpage-body {
    padding: 60px 0;
  }
  .subpage-intro {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .subpage-section {
    margin-bottom: 48px;
  }
  .subpage-section-title {
    font-size: 26px;
  }
  .subpage-cta .btn-primary,
  .subpage-cta .btn-outline {
    min-height: 56px;
    padding: 18px 32px;
    font-size: 13px;
  }
  .subpage-back {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 12px 0;
  }
  .subpage-breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 4px;
  }

  /* ── Feature grid / Process steps ── */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .feature-box {
    padding: 32px 24px;
  }
  .process-step {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
  .process-step::before {
    font-size: 28px;
    min-width: auto;
  }

  /* ── Pricing / Highlight ── */
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .highlight-box {
    padding: 28px 20px;
    margin: 28px 0;
  }
  .subpage-quote-text {
    font-size: 18px;
  }

  /* ── Document list ── */
  .doc-item {
    gap: 14px;
    padding: 12px 0;
  }
  .doc-item::before {
    font-size: 18px;
    min-width: 28px;
  }

  /* ── Fleet page — larger filters ── */
  .fleet-hero {
    padding: 120px 0 48px;
  }
  .fleet-body {
    padding: 40px 0 80px;
  }
  .filters,
  .fleet-filters {
    gap: 10px;
    margin-bottom: 32px;
  }
  .fleet-filter,
  .fbtn {
    padding: 14px 20px;
    font-size: 12px;
    min-height: 48px;
    touch-action: manipulation;
  }

  /* ── Yacht detail ── */
  .yacht-detail-hero {
    padding: 120px 0 48px;
  }
  .yacht-detail-body {
    padding: 0 0 60px;
  }

  /* ── Auth screen — touch-friendly ── */
  .auth-screen {
    padding: 20px;
    align-items: flex-start;
    padding-top: 60px;
  }
  .auth-card {
    margin: 0;
    padding: 28px 20px;
    width: 100%;
    max-width: 100%;
  }
  .auth-logo {
    font-size: 24px;
  }
  .auth-back {
    top: 16px;
    left: 16px;
    font-size: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .auth-btn {
    min-height: 56px;
    font-size: 14px;
    touch-action: manipulation;
  }
  .auth-input {
    min-height: 52px;
    padding: 16px;
  }
  .auth-toggle button {
    min-height: 48px;
    padding: 12px;
  }

  /* ── Admin panel ── */
  .admin-overlay {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 20px;
  }
  .admin-title {
    font-size: 22px;
  }
  .admin-user-info {
    width: 100%;
    gap: 8px;
  }
  .admin-user-email,
  .admin-email {
    font-size: 10px;
    width: 100%;
  }
  .admin-close,
  .admin-hdr-btn {
    padding: 8px 14px;
    font-size: 10px;
    flex: 1;
    text-align: center;
  }
  .admin-body {
    padding: 16px;
  }
  .admin-toolbar {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .admin-btn-add,
  .admin-add {
    width: 100%;
    text-align: center;
    padding: 16px;
    min-height: 52px;
    font-size: 14px;
    touch-action: manipulation;
  }

  /* ── Admin table → card layout on mobile ── */
  .admin-table,
  .atable {
    display: block;
  }
  .admin-table thead,
  .atable thead {
    display: none;
  }
  .admin-table tbody,
  .atable tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .admin-table tr,
  .atable tr {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
    gap: 4px 14px;
    background: var(--navy-mid);
    border: 1px solid rgba(201, 169, 110, 0.08);
    padding: 16px;
    align-items: center;
  }
  .admin-table td,
  .atable td {
    display: contents;
    padding: 0;
    border: none;
  }
  /* Image: spans full left column */
  .admin-table td:nth-child(1),
  .atable td:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1;
  }
  .admin-thumb,
  .athumb {
    width: 72px;
    height: 72px;
    border-radius: 4px;
  }
  .admin-thumb-empty,
  .athumb-empty {
    width: 72px;
    height: 72px;
  }
  /* Name */
  .admin-table td:nth-child(2),
  .atable td:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
  }
  .admin-yacht-name,
  .aname {
    font-size: 17px;
  }
  /* Specs */
  .admin-table td:nth-child(3),
  .atable td:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
    font-size: 12px;
  }
  /* Price: hidden on mobile, shown in card */
  .admin-table td:nth-child(4),
  .atable td:nth-child(4) {
    display: block !important;
    grid-row: 3;
    grid-column: 1 / -1;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--gold);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 4px;
  }
  /* Badge */
  .admin-table td:nth-child(5),
  .atable td:nth-child(5) {
    grid-row: 3;
    grid-column: 1 / -1;
    display: none;
  }
  /* Featured star */
  .admin-table td:nth-child(6),
  .atable td:nth-child(6) {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  .admin-featured-star,
  .astar {
    font-size: 24px;
    padding: 10px;
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
  }
  /* Actions */
  .admin-table td:nth-child(7),
  .atable td:nth-child(7) {
    grid-row: 4;
    grid-column: 1 / -1;
    padding-top: 8px;
  }
  .admin-table td:nth-child(7) > div,
  .atable td:nth-child(7) > div {
    justify-content: stretch !important;
    width: 100%;
  }
  .admin-btn-edit,
  .admin-btn-del,
  .abtn {
    flex: 1;
    text-align: center;
    padding: 14px;
    min-height: 48px;
    font-size: 13px;
    touch-action: manipulation;
  }
  /* Make rows position:relative for the star */
  .admin-table tr,
  .atable tr {
    position: relative;
  }

  /* ── Form modal ── */
  .form-backdrop,
  .modal-bg {
    padding: 0;
    align-items: flex-end;
  }
  .form-modal,
  .modal {
    max-width: 100%;
    width: 100%;
    max-height: 95vh;
    max-height: 95dvh;
    border-radius: 16px 16px 0 0;
    padding: 28px 20px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .form-title,
  .modal-title {
    font-size: 24px;
  }
  .form-grid,
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .form-footer,
  .modal-footer {
    flex-direction: column-reverse;
  }
  .form-btn-save,
  .form-btn-cancel,
  .mbtn-save,
  .mbtn-cancel {
    width: 100%;
    text-align: center;
    min-height: 52px;
    font-size: 14px;
    touch-action: manipulation;
  }

  /* ── Toast: bottom-center on mobile ── */
  .app-toast,
  .toast {
    left: 20px;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }
}


  /* ── Gallery ── */
  .yd-cover { height: 260px; }
  .yd-thumb { width: 64px; height: 44px; }
  .yd-thumbstrip { gap: 2px; margin-top: 2px; }

  /* ── Price bar ── */
  .yd-pricebar { flex-direction: column; align-items: flex-start; padding: 24px 0; }
  .yd-pricebar-price { font-size: 32px; }
  .yd-pricebar-actions { width: 100%; }
  .yd-pricebar-actions .btn-primary,
  .yd-pricebar-actions .btn-outline { flex: 1; justify-content: center; text-align: center; }

  /* ── Info grid collapses ── */
  .yd-info-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
  .yd-pill { padding: 6px 12px; }
  .yd-pill-value { font-size: 13px; }

  /* ── Video ── */
  .yd-video-section { padding: 24px 0; }

  /* ── Broker footer ── */
  .yd-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .yd-footer-right { width: 100%; }
  .yd-footer-right .yd-broker-btn { flex: 1; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; }

  /* ── Fleet card enhanced ── */
  .fleet-card-desc { font-size: 14px; margin-bottom: 14px; }
  .fleet-card-details { font-size: 13px; margin-bottom: 10px; }
  .fleet-card-media span { font-size: 10px; padding: 5px 10px; }

  /* ── Yacht card (yc-) — mobile ── */
  .yc-image { height: 240px; }
  .yc-name { font-size: 22px; }
  .yc-desc { font-size: 14px; }
  .yc-price { font-size: 20px; }
  .yc-media span { font-size: 10px; padding: 5px 10px; }
  .yc-broker { flex-wrap: wrap; gap: 10px; }
  .yc-bactions { width: 100%; display: flex; }
  .yc-btn { flex: 1; text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 12px; }

  /* ── Lightbox — full mobile ── */
  .lightbox-content { max-width: 100vw; max-height: 100vh; }
  .lightbox-content img { max-width: 100vw; max-height: 90vh; }
  .lightbox-content iframe { width: 100vw; }
  .lightbox-close { top: 10px; right: 10px; font-size: 28px; }
  .lightbox-prev, .lightbox-next { font-size: 32px; padding: 16px; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }

  /* ── Broker card ── */
  .yd-broker-card { flex-direction: column; text-align: center; padding: 28px 20px; }
  .yd-broker-actions { justify-content: center; }
  .yd-broker-btn { min-height: 48px; display: flex; align-items: center; justify-content: center; flex: 1; }

  /* ── Spec table ── */
  .spec-label, .spec-value { padding: 8px 12px; font-size: 12px; }
  .spec-label { width: 42%; }
  .spec-value { width: 58%; }

  /* ── Form gallery ── */
  .form-gallery-item { width: 80px; height: 56px; }
  .form-gallery-add { width: 80px; height: 56px; font-size: 11px; }


/* ═══════════════════════════════════════
   SMALL PHONES (max-width: 380px)
   ═══════════════════════════════════════ */
@media (max-width: 380px) {
  .container {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .stat-number {
    font-size: 28px;
  }
  .stat-item {
    padding: 20px 10px;
  }
  .nav-logo {
    font-size: 19px;
    letter-spacing: 1px;
  }
}


/* ═══════════════════════════════════════
   SAFE AREAS (notch / home indicator)
   ═══════════════════════════════════════ */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer,
  .site-ft {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .admin-overlay {
    padding-bottom: env(safe-area-inset-bottom);
  }
}


/* ═══════════════════════════════════════
   LANDSCAPE MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero .container {
    padding-top: 80px;
  }
  .hero-canvas svg {
    width: 170vmin;
    height: 170vmin;
  }
  .stats .container {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 20px 12px;
  }
}


/* ═══════════════════════════════════════
   DARK MODE VIEWPORT META (PWA-ready)
   ═══════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  /* Already dark theme — this ensures consistency */
  :root {
    color-scheme: dark;
  }
}


/* ═══════════════════════════════════════
   REDUCED MOTION (accessibility)
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-canvas {
    display: none;
  }
}


/* ═══════════════════════════════════════
   PRINT (basic)
   ═══════════════════════════════════════ */
@media print {
  .hero-canvas,
  .site-nav,
  .topnav,
  .nav-hamburger,
  .mobile-nav-panel,
  .mobile-nav-overlay,
  .admin-overlay,
  .auth-screen,
  .form-backdrop {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
