/* WBR Theme Entry
   Composes the global WBR contract and app modules.
   Theme-specific overrides live in _overrides.scss.
*/
/* static/wbr/scss/_tokens.scss */
/* Foundation defaults (SCSS variables) */
/* Sizing */
/* Readability */
/* Spacing scale (keep small + practical) */
/* Radii */
/* Semantic colors (defaulting to Bootstrap CSS vars where possible) */
/* Focus ring: keep it explicit */
/* Bootstrap-ish default */
/* Status */
/* Emit CSS variables */
:root {
  --wbr-font-sans: var(--bs-body-font-family);
  --wbr-font-mono: var(--bs-font-monospace);
  --wbr-size-base: 1rem;
  --wbr-size-sm: 0.9375rem;
  --wbr-size-xs: 0.875rem;
  --wbr-line-body: 1.5;
  --wbr-line-tight: 1.25;
  --wbr-space-1: 0.25rem;
  --wbr-space-2: 0.5rem;
  --wbr-space-3: 0.75rem;
  --wbr-space-4: 1rem;
  --wbr-space-5: 1.5rem;
  --wbr-radius-1: 0.25rem;
  --wbr-radius-2: 0.5rem;
  --wbr-radius-3: 0.75rem;
  --wbr-color-text: var(--bs-body-color);
  --wbr-color-text-muted: var(--bs-secondary-color);
  --wbr-color-surface: var(--bs-body-bg);
  --wbr-color-surface-muted: var(--bs-tertiary-bg);
  --wbr-color-border: var(--bs-border-color);
  --wbr-color-link: var(--bs-link-color);
  --wbr-color-link-hover: var(--bs-link-hover-color);
  --wbr-color-focus-ring: rgba(13, 110, 253, 0.35);
  --wbr-color-success: var(--bs-success);
  --wbr-color-warning: var(--bs-warning);
  --wbr-color-danger: var(--bs-danger);
  --wbr-color-info: var(--bs-info);
}

/* static/wbr/scss/_type.scss */
.wbr-type {
  font-family: var(--wbr-font-sans);
  color: var(--wbr-color-text);
}

.wbr-type-body {
  font-size: var(--wbr-size-base);
  line-height: var(--wbr-line-body);
}

.wbr-type-small {
  font-size: var(--wbr-size-sm);
  line-height: var(--wbr-line-body);
}

.wbr-type-xs {
  font-size: var(--wbr-size-xs);
  line-height: var(--wbr-line-body);
}

.wbr-type-muted {
  color: var(--wbr-color-text-muted);
}

.wbr-type-strong {
  font-weight: 600;
}

.wbr-type-numeric {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* static/wbr/scss/_rhythm.scss */
.wbr-rhythm-section {
  margin-bottom: var(--wbr-space-5);
}

.wbr-rhythm-block {
  margin-bottom: var(--wbr-space-4);
}

.wbr-rhythm-item {
  margin-bottom: var(--wbr-space-3);
}

.wbr-rhythm-tight {
  margin-bottom: var(--wbr-space-2);
}

/* static/wbr/scss/_primitives.scss */
.wbr-surface {
  background: var(--wbr-color-surface);
}

.wbr-surface-muted {
  background: var(--wbr-color-surface-muted);
}

.wbr-rule {
  border: 0;
  border-top: 1px solid var(--wbr-color-border);
  margin: var(--wbr-space-4) 0;
}

.wbr-focus-ring:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--wbr-color-focus-ring);
}

.wbr-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wbr-nav__item {
  margin: 0;
  padding: 0;
}

.wbr-nav__link {
  text-decoration: none;
}

.menu-item {
  display: block;
}

.menu-item__description {
  margin: 0;
}

.menu-category__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--wbr-line-tight);
}

.menu-category__note {
  font-size: var(--wbr-size-sm);
  color: var(--wbr-color-text-muted);
  line-height: var(--wbr-line-body);
}

.menu-rhythm-section {
  margin-bottom: var(--wbr-space-5);
}

/* ------------------------------------------------------------
   Centered menu presentation
------------------------------------------------------------ */
.menu-type__header--centered {
  text-align: center;
}

.menu-type-items--centered {
  justify-content: center;
}

.menu-type-items__item--centered {
  text-align: center;
}

.menu-type-items__item--centered .menu-type-item--centered {
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
}

.menu-type-item--centered .menu-type-item-name {
  margin: 0;
  text-align: center;
}

.menu-type-item--centered .menu-type-item-desc {
  margin-top: var(--wbr-space-1);
  margin-bottom: 0;
  text-align: center;
}

.menu-type-item--centered .menu-type-item-price-wrap {
  margin-top: var(--wbr-space-2);
  text-align: center;
}

/* ------------------------------------------------------------
   Centered multicolumn layouts
   - Uses flexbox so incomplete final rows center naturally
------------------------------------------------------------ */
.menu-type-items--centered {
  --menu-column-gap-x: 2rem;
  --menu-column-gap-y: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--menu-column-gap-y) var(--menu-column-gap-x);
}

.menu-type-items--centered > .menu-type-items__item {
  width: 100%;
}

/* Three-column centered */
.menu-type-items--three-column.menu-type-items--centered > .menu-type-items__item {
  flex: 0 1 calc((100% - 2 * var(--menu-column-gap-x)) / 3);
  max-width: calc((100% - 2 * var(--menu-column-gap-x)) / 3);
}

/* Four-column centered */
.menu-type-items--four-column.menu-type-items--centered > .menu-type-items__item {
  flex: 0 1 calc((100% - 3 * var(--menu-column-gap-x)) / 4);
  max-width: calc((100% - 3 * var(--menu-column-gap-x)) / 4);
}

/* Tablet */
@media (max-width: 991.98px) {
  .menu-type-items--three-column.menu-type-items--centered > .menu-type-items__item,
  .menu-type-items--four-column.menu-type-items--centered > .menu-type-items__item {
    flex: 0 1 calc((100% - var(--menu-column-gap-x)) / 2);
    max-width: calc((100% - var(--menu-column-gap-x)) / 2);
  }
}
/* Mobile */
@media (max-width: 767.98px) {
  .menu-type-items--three-column.menu-type-items--centered > .menu-type-items__item,
  .menu-type-items--four-column.menu-type-items--centered > .menu-type-items__item {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
/* ------------------------------------------------------------
   Menu category column layouts (shared geometry)
------------------------------------------------------------ */
.menu-category__items--two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.menu-category__items--three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.menu-category__items--four-column {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

@media (max-width: 1199.98px) {
  .menu-category__items--four-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .menu-category__items--three-column,
  .menu-category__items--four-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .menu-category__items--two-column,
  .menu-category__items--three-column,
  .menu-category__items--four-column {
    grid-template-columns: 1fr;
  }
}
/* Theme overrides last so they win */
/* Theme overrides
   - Global tokens
   - Bootstrap variable mappings
   - Light global styling (no markup changes)
*/
/* ------------------------------------------------------------
   Global theme tokens
------------------------------------------------------------ */
:root {
  /* Fonts */
  --wbr-font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wbr-font-display: ui-serif, Georgia, "Times New Roman", Times, serif;
  /* Core colors */
  --wbr-bg: #f7fbf8;
  --wbr-ink: rgba(10, 24, 28, 0.92);
  --wbr-muted: rgba(10, 24, 28, 0.66);
  /* Brand accents */
  --wbr-primary: #12677a; /* Holistic blue */
  --wbr-secondary: #4f8f3a; /* Holistic green */
  --wbr-link: var(--wbr-primary);
  /* Subtle surfaces */
  --wbr-surface: #ffffff;
  --wbr-panel: rgba(18, 103, 122, 0.06);
  --wbr-panel-alt: rgba(79, 143, 58, 0.08);
  --wbr-line: rgba(10, 24, 28, 0.12);
  /* Bootstrap mappings */
  --bs-body-font-family: var(--wbr-font-sans);
  --bs-body-color: var(--wbr-ink);
  --bs-body-bg: var(--wbr-bg);
  --bs-link-color: var(--wbr-link);
  --bs-link-hover-color: var(--wbr-secondary);
  --bs-primary: var(--wbr-primary);
  --bs-secondary: var(--wbr-secondary);
}

/* ------------------------------------------------------------
   Global typography + baseline polish
------------------------------------------------------------ */
body {
  font-family: var(--bs-body-font-family);
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--wbr-font-display);
}

a {
  color: var(--wbr-link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wbr-secondary);
}

.landing-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: linear-gradient(90deg, rgba(18, 103, 122, 0.08), transparent 42%), radial-gradient(circle at top left, rgba(18, 103, 122, 0.18), transparent 34rem), radial-gradient(circle at bottom right, rgba(79, 143, 58, 0.16), transparent 32rem);
  border-bottom: 1px solid var(--wbr-line);
}

.landing-hero__content {
  max-width: 58rem;
}

.landing-hero__kicker,
.section-header__kicker {
  color: var(--wbr-secondary);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.landing-hero__title {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--wbr-ink);
}

.landing-hero__subtitle {
  max-width: 62ch;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--wbr-muted);
}

.landing-hero__actions a,
.landing-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--wbr-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0.75rem 2rem rgba(18, 103, 122, 0.18);
}

.landing-hero__actions a:hover,
.landing-cta a:hover {
  background: var(--wbr-secondary);
  color: #fff;
}

.landing-proof {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-block: 1px solid var(--wbr-line);
  background: rgba(18, 103, 122, 0.045);
}

.landing-proof__text {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  color: var(--wbr-ink);
  font-family: var(--wbr-font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

.landing-proof__text strong {
  color: var(--wbr-primary);
}

.landing-services {
  background: rgba(79, 143, 58, 0.055);
}

.section-header__title {
  color: var(--wbr-primary);
}

.landing-services__grid,
.landing-testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

.landing-services__grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.landing-testimonials__grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.landing-service-card,
.landing-testimonial {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--wbr-surface, #fff);
  border: 1px solid var(--wbr-line);
  border-radius: 1.25rem;
}

.landing-service-card {
  border-top: 4px solid var(--wbr-primary);
}

.landing-service-card:nth-child(even) {
  border-top-color: var(--wbr-secondary);
}

.landing-service-card h3 {
  color: var(--wbr-primary);
}

.landing-philosophy {
  background: linear-gradient(90deg, rgba(18, 103, 122, 0.1), rgba(79, 143, 58, 0.08));
  border-block: 1px solid var(--wbr-line);
}

.landing-philosophy__quote {
  padding-left: 1rem;
  border-left: 5px solid var(--wbr-secondary);
  font-family: var(--wbr-font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--wbr-primary);
}

.landing-testimonial {
  border-left: 4px solid var(--wbr-secondary);
}

.landing-testimonial blockquote {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.landing-testimonial figcaption {
  margin-top: 1rem;
  color: var(--wbr-muted);
}

.landing-cta {
  text-align: center;
  background: radial-gradient(circle at center, rgba(18, 103, 122, 0.1), transparent 30rem);
}

.landing-services,
.landing-testimonials,
.landing-philosophy,
.landing-cta {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wbr-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.site-header__brand a {
  font-family: var(--wbr-font-display);
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--wbr-ink);
}

.site-header__brand span {
  color: var(--wbr-secondary);
}

.site-header__cta {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--wbr-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-header__cta:hover {
  background: #0f5566;
}

.site-footer {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--wbr-line);
  background: linear-gradient(90deg, rgba(18, 103, 122, 0.08), rgba(79, 143, 58, 0.07));
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.site-footer__kicker {
  margin: 0 0 0.75rem;
  color: var(--wbr-secondary);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer__statement {
  max-width: 11ch;
  margin: 0;
  font-family: var(--wbr-font-display);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 0.98;
  color: var(--wbr-primary);
}

.site-footer__contact {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--wbr-surface, #fff);
  border: 1px solid var(--wbr-line);
  border-radius: 1.25rem;
}

.site-footer__contact p {
  margin: 0 0 1rem;
  color: var(--wbr-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.site-footer__contact a {
  color: var(--wbr-primary);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-footer__contact a:hover {
  color: #0f5566;
}

.site-footer__meta {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--wbr-line);
  color: var(--wbr-muted);
  font-size: 0.9rem;
}

.site-footer__meta p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__statement {
    max-width: 12ch;
  }
}

/*# sourceMappingURL=theme.css.map */
