
:root {
  --deep-blue: #214a72;
  --teal: #00a8aa;
  --accent: #2ab9a5;
  --text-dark: #333333;
  --text-muted: #555555;
  --hero-panel: #c7dadd;
  --bg-light: #f5f7fa;
  --border-soft: #e1e5ec;
  --max-width: 1120px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Global layout */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-gradient-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
}

/* Header */

.site-header {
  background-color: #ffffff;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 12px;
  display: flex;
  justify-content: center;
}

.header-logo img {
  max-height: 140px;
  width: auto;
}

/* Full-width banner bar (nav or page title) */

.main-nav {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
}

.main-nav-inner {
  max-width: var(--max-width);
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  padding: 0 12px;
}

.main-nav a + a {
  border-left: 1px solid rgba(255,255,255,0.55);
}

.main-nav-title {
  color: #ffffff;
  text-align: center;
  width: 100%;
}

/* Hero */

.hero {
  border-top: 4px solid var(--teal);
  background-color: #ffffff;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.hero-text-box {
  background-color: var(--hero-panel);
  padding: 40px 46px;
  display: flex;
  align-items: center;
}

.hero-text-box p {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #253640;
}

.hero-slider-box {
  overflow: hidden;
  height: 100%;
}


.hero-slider-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Content layout below hero */

.main-wrapper {
  max-width: var(--max-width);
  margin: 0 auto 16px;
  padding: 24px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(230px, 1fr);
  gap: 40px;
}

.main-column {
  min-width: 0;
}

.right-rail {
  padding-left: 28px;
  padding-top: 40px;
}

.right-rail h3 {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-top: 0;
  margin-bottom: 10px;
}

.rail-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rail-links a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--deep-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 0;
}

.rail-links a:hover {
  color: var(--teal);
}

/* Top-level section headings */

.section-top-heading {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin: 0 0 18px;
}

/* Subsection headings */

.content-block h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 24px 0 8px;
}

/* Text */

.section-lede {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.content-block {
  margin-bottom: 26px;
}

.content-block p {
  margin: 0 0 8px;
}

/* Bullets */

.bullet-list {
  margin: 6px 0 8px 0;
  padding-left: 18px;
  list-style: disc;
  color: var(--text-dark);
}

.bullet-list li {
  margin-bottom: 4px;
}

.bullet-list li::marker {
  color: var(--deep-blue);
}

/* Sections for jump links */

.section-anchor {
  scroll-margin-top: 180px;
}

/* Callouts & buttons */

.callout {
  background-color: var(--bg-light);
  border-radius: 0;
  padding: 18px 18px 16px;
  border-left: 4px solid var(--deep-blue);
  margin-top: 10px;
}

.callout-title {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin: 0 0 6px;
}

.callout p {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.button-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  color: #ffffff;
}

.btn-outline {
  border: 1px solid var(--deep-blue);
  color: var(--deep-blue);
  background-color: #ffffff;
}

.btn-outline:hover {
  background-color: var(--deep-blue);
  color: #ffffff;
}

/* Supplements store */

.store-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 2.2fr);
  gap: 32px;
}

.store-sidebar {
  padding-right: 24px;
}

.store-sidebar h2 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-top: 0;
  margin-bottom: 12px;
}

.category-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.category-list li {
  margin-bottom: 6px;
}

.category-list button {
  width: 100%;
  padding: 6px 10px;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text-dark);
}

.category-list button:hover {
  background-color: var(--bg-light);
}

.category-list button.active {
  border-color: var(--teal);
  color: var(--teal);
}

.store-search {
  position: relative;
  margin-top: 10px;
}

.store-search input {
  width: 100%;
  padding: 7px 26px 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.store-search-icon {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Products */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.product-card {
  border-radius: 0;
  border: 1px solid var(--border-soft);
  padding: 16px;
  display: flex;
  gap: 16px;
  background-color: #ffffff;
}

.product-media {
  flex: 0 0 120px;
  height: 170px;
  border-radius: 4px;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.product-info {
  flex: 1;
}

.product-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  margin: 0 0 4px;
}

.product-category {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Price-style pages */

.price-main {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 32px 20px 16px;
}


.price-inner {
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  text-align: center;
}

.price-heading {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.0rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 4px;

  color: var(--deep-blue);}

.price-subheading {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;

  color: var(--deep-blue);}

.price-intro {
  margin-bottom: 18px;
}


.price-services-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 10px 0 18px;
}

.price-section-title {
  font-size: 1.02rem;
  text-align: left;
  margin: 16px 0 6px;
  text-decoration: underline;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  text-align: left;
}

.price-list li {
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.price-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */

.site-footer {
  margin-top: auto;
  border-top: 4px solid var(--teal);
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  color: #ffffff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: center;
}

.footer-logo img {
  max-height: 110px;
  width: auto;
  display: block;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact strong {
  display: block;
  font-weight: 600;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-cta {
  font-style: italic;
  margin-top: 4px;
}

/* Utility */

.text-small {
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-text-box {
    padding: 28px 22px;
  }
  .main-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .right-rail {
    padding-left: 0;
    padding-top: 16px;
  }
  .footer-inner {
    grid-template-columns: minmax(0,1fr);
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-top: 20px;
  }
  .main-nav {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}

/* Booking modal */

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 24px 24px 20px;
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.booking-modal-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--deep-blue);
}

.booking-modal-intro {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.booking-modal-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.booking-modal-label select {
  margin-top: 4px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.booking-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}


.page-shell.tight-footer .main-wrapper {
  margin-bottom: 0;
  padding-bottom: 12px;
}


.om-brand-logo {
  margin-bottom: 16px;
}
.om-brand-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}


.product-brand-inline {
  margin: 4px 0 10px;
}

.product-brand-inline img {
  max-height: 20px;
  width: auto;
  display: block;
}

booking-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}


.booking-modal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.booking-modal-field {
  flex: 1 1 140px;
}

.booking-modal-label input {
  width: 100%;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #c4cdd5;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

/* Supplement order modal */

.supplement-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.supplement-modal.active {
  display: flex;
}

.supplement-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 52, 0.55);
}

.supplement-modal-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  max-width: 420px;
  width: 92%;
  padding: 20px 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  z-index: 1;
  font-family: inherit;
}





.supplement-modal-title {
  font-size: 1.3rem;
  margin: 4px 0 6px;
  text-align: center;
  color: #065f6b;
}

.supplement-modal-intro {
  font-size: 0.95rem;
  margin: 0 0 8px;
  text-align: center;
  color: #4a4f55;
}

.supplement-modal-product {
  font-weight: 600;
  margin: 4px 0 10px;
  text-align: center;
}

.supplement-modal-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.supplement-modal-label input {
  width: 100%;
  margin-top: 4px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #c4cdd5;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.supplement-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.booking-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}
.booking-modal-logo img {
  max-height: 52px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.supplement-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}
.supplement-modal-logo img {
  max-height: 46px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.booking-modal-label textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #c1d4d8;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
}


.hero-reasons {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.97rem;
}
.hero-reasons li {
  margin: 0.2rem 0;
}


.what-to-expect h2 {
  margin-top: 0.2rem;
}


.price-benefits {
  margin: 0.9rem auto 1.2rem;
  max-width: 36rem;
  padding-left: 1.25rem;
  list-style-position: outside;
  text-align: left;
}






.price-benefits li {
  margin: 0.15rem 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}





.product-tagline {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.97rem;
  font-weight: 500;
}


.error-page .content-block h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.error-page .content-block p {
  max-width: 40rem;
}
.error-page .bullet-list {
  margin-top: 0.75rem;
}


.price-benefits-primary {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}


/* Extra spacing before booking buttons in price lists */
.price-list .list-actions {
  margin-top: 0.75rem;
}
