@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-500.woff2") format("woff2"); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-600.woff2") format("woff2"); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-700.woff2") format("woff2"); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/barlow-800.woff2") format("woff2"); }
@font-face { font-family: 'Material Symbols Outlined'; font-style: normal; font-weight: 100 700; font-display: swap; src: url("../fonts/material-symbols-outlined.woff2") format("woff2"); }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid #2094d2;
  outline-offset: 3px;
  border-radius: 4px;
}

html { scroll-padding-top: 89px; }
@media (max-width: 1023px) { html { scroll-padding-top: 77px; } }
@media (min-width: 1536px) { html { scroll-padding-top: 97px; } }

.fp-anchor-alias {
  display: block;
  height: 1px;
  margin-top: -1px;
  overflow: hidden;
  visibility: hidden;
  scroll-margin-top: 89px;
}
@media (max-width: 1023px) { .fp-anchor-alias { scroll-margin-top: 77px; } }
@media (min-width: 1536px) { .fp-anchor-alias { scroll-margin-top: 97px; } }

section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 640px) { section { padding-top: 50px; padding-bottom: 50px; } }
@media (min-width: 1024px) { section { padding-top: 64px; padding-bottom: 64px; } }
@media (min-width: 1440px) { section { padding-top: 80px; padding-bottom: 80px; } }

section.fp-section-hero {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent !important;
}
section.fp-section-white { background-color: #ffffff !important; }
section.fp-section-blue { background-color: #f0f9fd !important; }
section.fp-section-red { background-color: #fee2e2 !important; }

.fp-page-offset {
  padding-top: 7rem;
}

.fp-team-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .fp-team-detail-grid {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

.nav-link {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #2094d2;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link-mobile {
  display: block;
  border-radius: 0.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 14px;
}
.nav-link-mobile.active {
  color: #00B5E2;
  background-color: rgba(0, 181, 226, 0.08);
}
#burger-btn.active {
  color: #00B5E2;
  background-color: rgba(0, 181, 226, 0.10);
}
.fp-header-cta.fp-header-cta {
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media (max-width: 389px) {
  .fp-header-cta.fp-header-cta {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-hero-intro {
  max-width: 52rem;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0,0,0,0.38);
}
@media (max-width: 639px) {
  .fp-hero-intro {
    max-width: 22rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.48;
  }
}

.rotating-word-container {
  display: inline-block;
  min-inline-size: var(--rotating-word-min-width, auto);
  line-height: inherit;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}
.rotating-word {
  display: inline-block;
  line-height: inherit;
}
.rotating-word.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
.rotating-word.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% { transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to { transform: perspective(400px); }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.lightbox-btn,
.lightbox-close {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
}
.lightbox-btn:hover,
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 40px;
  overflow-y: auto;
  backdrop-filter: blur(6px);
}
.fp-modal-overlay.open { display: flex; }
.fp-modal {
  background: white;
  border-radius: 24px;
  max-width: 768px;
  width: 100%;
  padding: 48px 32px 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: fpModalIn 0.25s ease-out;
}
@keyframes fpModalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}
.fp-modal-close:hover { background: #e2e8f0; color: #0f172a; }

.fp-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
}
.fp-prose h2 {
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.fp-prose h3 {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.fp-prose p,
.fp-prose ul,
.fp-prose ol { margin: 0.75rem 0; }
.fp-prose a { color: #00B5E2; font-weight: 700; text-decoration: underline; }

.fp-hours-special-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(0, 181, 226, 0.18);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(240, 249, 253, 0.9), rgba(255, 255, 255, 0.96));
  color: #334155;
  text-align: left;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.fp-hours-special-notice .material-symbols-outlined {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 181, 226, 0.09);
  color: #00B5E2;
  font-size: 20px;
}
.fp-hours-special-notice p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}
.fp-hours-special-notice strong {
  display: block;
  margin-bottom: 0.1rem;
  color: #0f172a;
  font-weight: 800;
}
.fp-hours-special-notice-news-link {
  display: block;
  width: fit-content;
  margin-top: 0.35rem;
  color: #008fbd;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}
.fp-hours-special-notice-news-link:hover {
  color: #006f94;
}

.fp-print-summary {
  display: none;
}

.fp-404-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.09), transparent 34rem),
    linear-gradient(180deg, rgba(240, 249, 253, 0.9), #ffffff 52%, #f8fafc);
}
.fp-404-shell.fp-page-offset {
  padding-top: 5.75rem;
}
.fp-404-hero {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4.5rem;
}
.fp-404-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}
.fp-404-copy {
  max-width: 39rem;
}
.fp-404-logo {
  width: min(16rem, 74vw);
  height: auto;
  margin-bottom: 1.9rem;
}
.fp-404-kicker {
  margin: 0 0 0.75rem;
  color: #008fbd;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0.86;
  text-transform: uppercase;
}
.fp-404-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 7.2vw, 3.85rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  max-width: 13ch;
}
.fp-404-text {
  margin: 1.25rem 0 0;
  color: #475569;
  font-size: 1.0625rem;
  line-height: 1.62;
  max-width: 34rem;
}
.fp-404-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
  min-height: 3.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: #00B5E2;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0, 181, 226, 0.22);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.fp-404-primary:hover {
  background: #0095be;
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(0, 181, 226, 0.28);
}
.fp-404-primary .material-symbols-outlined {
  font-size: 1.25rem;
}
.fp-404-illustration {
  max-width: 33rem;
  margin: 0 auto;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 181, 226, 0.12);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.fp-404-illustration svg {
  width: 100%;
  height: auto;
}
.fp-404-quick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}
.fp-404-quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.625rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.78);
  color: #0f172a;
  font-size: 0.96875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.fp-404-quick-link:hover {
  border-color: rgba(0, 181, 226, 0.34);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.fp-404-quick-link .material-symbols-outlined {
  width: 2.05rem;
  height: 2.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 0.7rem;
  background: rgba(0, 181, 226, 0.09);
  color: #00B5E2;
  font-size: 1.125rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .fp-modal,
  .fp-404-primary,
  .fp-404-quick-link,
  .rotating-word.animated { transition: none !important; animation: none !important; }
}

@media (min-width: 640px) {
  .fp-404-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .fp-404-hero {
    padding-top: 3.35rem;
    padding-bottom: 5.75rem;
  }
  .fp-404-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.88fr);
    gap: 4rem;
  }
  .fp-404-quick {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 3.6rem;
  }
}

@media (max-width: 420px) {
  .fp-hours-special-notice {
    gap: 0.625rem;
    padding: 0.875rem 0.9375rem;
  }
  .fp-hours-special-notice p { font-size: 0.95rem; }
  .fp-404-hero {
    padding-inline: 1rem;
  }
  .fp-404-title {
    font-size: 1.98rem;
    max-width: 14ch;
  }
  .fp-404-text {
    font-size: 1rem;
  }
  .fp-404-primary,
  .fp-404-quick-link {
    width: 100%;
  }
  .fp-404-primary {
    padding-inline: 1.25rem;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  body.home {
    background: #ffffff !important;
    color: #0f172a !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 10.5pt !important;
    line-height: 1.35 !important;
    min-height: auto !important;
  }

  body.home {
    margin: 0 !important;
    padding: 0 !important;
  }

  body.home #navbar,
  body.home #wpadminbar,
  body.home > .sr-only,
  body.home > footer,
  body.home .floating-ribbon-badge,
  body.home .fp-anchor-alias,
  body.home .lightbox,
  body.home .fp-modal-overlay,
  body.home main > section {
    display: none !important;
  }

  body.home main {
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }

  body.home .fp-print-summary {
    display: block !important;
    max-width: 178mm;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #0f172a !important;
    background: #ffffff !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.home .fp-print-summary *,
  body.home .fp-print-summary *::before,
  body.home .fp-print-summary *::after {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body.home .fp-print-card {
    padding: 9mm;
    border: 1px solid #cbdde7;
    color: #0f172a;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.home .fp-print-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10mm;
    padding-bottom: 6mm;
    border-bottom: 1px solid #dbe8ef;
  }

  body.home .fp-print-logo {
    width: 54mm;
    max-width: 100%;
    height: auto;
    margin: 0 0 5mm;
  }

  body.home .fp-print-title {
    margin: 0;
    color: #0f172a;
    font-size: 18pt;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
  }

  body.home .fp-print-tagline {
    max-width: 58mm;
    margin: 0;
    color: #475569;
    font-size: 9.5pt;
    font-weight: 500;
    line-height: 1.45;
    text-align: right;
  }

  body.home .fp-print-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 10mm;
    padding: 7mm 0 6mm;
  }

  body.home .fp-print-section {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.home .fp-print-section-title {
    margin: 0 0 3mm;
    color: #008fbd;
    font-size: 9pt;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  body.home .fp-print-contact-list {
    display: grid;
    gap: 3mm;
    margin: 0;
  }

  body.home .fp-print-contact-list div {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.home .fp-print-contact-list dt,
  body.home .fp-print-footer-label {
    margin: 0 0 0.8mm;
    color: #64748b;
    font-size: 8pt;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body.home .fp-print-contact-list dd {
    margin: 0;
    color: #0f172a;
    font-size: 11pt;
    font-weight: 600;
    line-height: 1.35;
  }

  body.home .fp-print-hours {
    width: 100%;
    border-collapse: collapse;
    color: #0f172a;
    font-size: 10.5pt;
  }

  body.home .fp-print-hours th,
  body.home .fp-print-hours td {
    padding: 2mm 0;
    border-bottom: 1px solid #e2edf3;
    line-height: 1.25;
    vertical-align: baseline;
  }

  body.home .fp-print-hours th {
    width: 34%;
    padding-right: 4mm;
    color: #0f172a;
    font-weight: 700;
    text-align: left;
  }

  body.home .fp-print-hours td {
    color: #334155;
    font-weight: 600;
    text-align: right;
  }

  body.home .fp-print-hours-note {
    margin: 4mm 0 0;
    padding-top: 3mm;
    border-top: 1px solid #e2edf3;
    color: #475569;
    font-size: 9pt;
    font-weight: 500;
    line-height: 1.4;
  }

  body.home .fp-print-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8mm;
    padding-top: 5mm;
    border-top: 1px solid #dbe8ef;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.home .fp-print-website {
    margin: 0;
    color: #0f172a;
    font-size: 12pt;
    font-weight: 800;
    line-height: 1.2;
  }

  body.home .fp-print-qr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4mm;
    max-width: 62mm;
  }

  body.home .fp-print-qr img {
    width: 28mm;
    height: 28mm;
    max-width: 28mm;
    object-fit: contain;
  }

  body.home .fp-print-qr p {
    margin: 0;
    color: #64748b;
    font-size: 8.5pt;
    font-weight: 500;
    line-height: 1.35;
  }
}
