/* Minimal, dependency-free styles to replace Squarespace CSS */

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: #111;
  background: #fafafa;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid #e6e6e6; margin: 2rem 0; }

/* Layout grid approximating Squarespace columns */
.sqs-row { display: flex; flex-wrap: wrap; margin-left: -17px; margin-right: -17px; }
[class*="sqs-col"] { padding-left: 17px; padding-right: 17px; }

/* 12-col widths on desktop */
.sqs-col-12 { width: 100%; }
.sqs-col-11 { width: 91.6667%; }
.sqs-col-10 { width: 83.3333%; }
.sqs-col-9  { width: 75%; }
.sqs-col-8  { width: 66.6667%; }
.sqs-col-7  { width: 58.3333%; }
.sqs-col-6  { width: 50%; }
.sqs-col-5  { width: 41.6667%; }
.sqs-col-4  { width: 33.3333%; }
.sqs-col-3  { width: 25%; }
.sqs-col-2  { width: 16.6667%; }
.sqs-col-1  { width: 8.3333%; }

/* Stack on small screens */
@media (max-width: 799px) {
  .sqs-row { margin-left: 0; margin-right: 0; }
  [class*="sqs-col"] { width: 100% !important; padding-left: 0; padding-right: 0; }

  /* Force single column layout for all content sections on mobile */
  .sqs-row .sqs-col-6 { width: 100% !important; margin-bottom: 24px; }
  .span-6 { width: 100% !important; display: block; margin-bottom: 24px; }
}

/* Spacer block sizes (common ones) */
.sqs-block.spacer-block.vsize-1 .sqs-block-content { height: 34px; }
.sqs-block.spacer-block.vsize-2 .sqs-block-content { height: 68px; }
.sqs-block.spacer-block.vsize-3 .sqs-block-content { height: 102px; }

/* Header */
.header-title-nav-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 10; margin: 0; }
.header-title-logo img { height: 36px; width: auto; }
.header-mobile-logo { display: none; }

.header-nav { flex: 1 1 auto; }
.header-nav-wrapper { display: flex; justify-content: flex-end; }
.header-nav-list { display: flex; gap: 20px; align-items: center; }
.header-nav-item a { padding: 8px 4px; border-bottom: 2px solid transparent; color: #111; }
.header-nav-item--active a { border-color: #111; }
/* Override aria-current selector to prevent double underline */
.header-nav-item a[aria-current="page"] { border-bottom-color: transparent !important; }

@media (max-width: 799px) {
  .header-title-nav-wrapper { flex-wrap: wrap; }
  .header-nav-wrapper { justify-content: flex-start; }
  .header-nav-list { flex-wrap: wrap; gap: 12px 18px; }
}

/* Sections */
.page-section, [data-type="page-section"] { padding: 24px; }

/* Content blocks */
.sqs-block { margin-bottom: 24px; }
.sqs-block-html p { margin: 0 0 1rem; }
.sqs-block-image img { width: 100%; height: auto; object-fit: cover; }

/* Video embed responsive wrapper */
.embed-responsive { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.embed-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Hamburger button */
.header-burger {
  display: none;
}

.header-burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  align-items: center;
  justify-content: center;
}

.burger-box {
  width: 20px;
  height: 15px;
  position: relative;
}

.burger-inner {
  position: relative;
}

.burger-inner div {
  background: #111;
  height: 2px;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Mobile menu overlay */
.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.header-menu-nav {
  position: relative;
  padding: 80px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  visibility: visible;
}

.header-menu-nav-list {
  flex: 1;
}

.header-menu-nav-item {
  border-bottom: 1px solid #eee;
}

.header-menu-nav-item a {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  color: #111;
  text-decoration: none;
}

.header-menu-nav-item a:hover {
  color: #666;
}

/* Mobile styles */
@media (max-width: 799px) {
  .header-nav {
    display: none;
  }

  .header-burger {
    display: block;
  }

  .header-burger-btn {
    display: flex;
  }

  body.menu-open .header-menu {
    display: block;
    opacity: 1;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Animate burger to X */
  body.menu-open .burger-inner .top-bun {
    transform: rotate(45deg) translate(5px, 5px);
  }

  body.menu-open .burger-inner .patty {
    opacity: 0;
  }

  body.menu-open .burger-inner .bottom-bun {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Footer (simple pass-through) */
footer, .footer { padding: 24px; color: #555; }
