/* Loosh Culinaire – design from screenshot. Playfair Display + Inter, #1C3E94 primary. */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:root {
  --loosh-primary: #1C3E94;
  --loosh-dark: #141006;
  --loosh-text: #0f172a;
  --loosh-text-muted: #475569;
  --loosh-font-display: "Playfair Display", Georgia, serif;
  --loosh-font-body: "Inter", system-ui, sans-serif;
  --loosh-max: 1200px;
  --loosh-gap: 2rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: 4rem; /* space for fixed bottom nav before it sticks to top */
  font-family: var(--loosh-font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--loosh-text);
  line-height: 1.6;
}

h2 {
  font-family: var(--loosh-font-display);
  font-size: 30px;
  font-weight: 700;
}

.loosh-skip {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--loosh-primary);
}
.loosh-skip:focus {
  left: 0.5rem;
}

/* Global nav bar: at bottom, moves up with scroll until it touches top, then sticks */
.loosh-nav-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  will-change: transform;
}

.loosh-nav-bar--sticky {
  bottom: auto;
  top: 0;
  will-change: auto;
}

/* On mobile: hide nav until it reaches the top (sticky) */
@media (max-width: 900px) {
  .loosh-nav-bar {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.2s ease, opacity 0.2s ease;
  }
  .loosh-nav-bar.loosh-nav-bar--sticky {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.loosh-nav-bar__logo {
  display: flex;
  align-items: center;
}

.loosh-nav-bar__logo img {
  width: 44px;
  height: auto;
  display: block;
}

.loosh-nav-bar__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: auto;
}

.loosh-nav-bar__links a {
  color: #fff;
  text-decoration: none;
  font-family: var(--loosh-font-display);
  font-size: 16px;
  font-weight: 400;
}

.loosh-nav-bar__links a:hover {
  text-decoration: underline;
}

/* Newsletter signup: field left, button right */
.loosh-nav-bar__newsletter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.loosh-nav-bar__newsletter-input {
  width: 12rem;
  max-width: 100%;
  padding: 0.4rem 0.6rem;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  background: #fff;
  color: var(--loosh-text);
}

.loosh-nav-bar__newsletter-input::placeholder {
  color: var(--loosh-text-muted);
}

.loosh-nav-bar__newsletter-input:focus {
  outline: 2px solid var(--loosh-primary);
  outline-offset: 2px;
  border-color: transparent;
}

.loosh-nav-bar__newsletter-btn {
  padding: 0.4rem 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--loosh-primary);
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.loosh-nav-bar__newsletter-btn:hover {
  opacity: 0.9;
}

/* AWeber form (AW-Form-269081938) – match previous newsletter look */
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-header,
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-header {
  display: none;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-form,
.loosh-nav-bar__newsletter.AW-Form-269081938 #af-form-269081938 {
  max-width: none;
  width: auto;
  overflow: visible;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-element {
  padding: 0;
  margin: 0;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-element label.previewLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-textWrap {
  width: 12rem !important;
  max-width: 100%;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-body input.text {
  width: 100% !important;
  padding: 0.4rem 0.6rem !important;
  font-size: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: var(--loosh-text) !important;
  margin: 0 !important;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-body input.text::placeholder {
  color: var(--loosh-text-muted);
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .af-body input.text:focus {
  outline: 2px solid var(--loosh-primary);
  outline-offset: 2px;
  border-color: transparent !important;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 .buttonContainer {
  padding: 0;
  margin: 0;
  text-align: left;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 input.submit {
  padding: 0.4rem 0.75rem !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--loosh-primary) !important;
  border: none !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  margin: 0 !important;
}
.loosh-nav-bar__newsletter.AW-Form-269081938 input.submit:hover {
  opacity: 0.9;
}

/* Flyout: stacked layout, full-width input */
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-form,
.loosh-nav-flyout__newsletter.AW-Form-269081938 #af-form-269081938 {
  max-width: none;
  width: 100%;
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-textWrap {
  width: 100% !important;
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-body input.text {
  width: 100% !important;
  padding: 0.4rem 0.6rem !important;
  font-size: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: var(--loosh-text) !important;
  margin: 0 !important;
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-body input.text::placeholder {
  color: var(--loosh-text-muted);
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 .af-body input.text:focus {
  outline: 2px solid var(--loosh-primary);
  outline-offset: 2px;
  border-color: transparent !important;
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 input.submit {
  padding: 0.4rem 0.75rem !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--loosh-primary) !important;
  border: none !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  margin: 0 !important;
}
.loosh-nav-flyout__newsletter.AW-Form-269081938 input.submit:hover {
  opacity: 0.9;
}

.loosh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hamburger: hidden by default, shown on mobile */
.loosh-nav-bar__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}
.loosh-nav-bar__hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}
.loosh-nav-bar__hamburger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.loosh-nav-bar__hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}
.loosh-nav-bar__hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 200ms ease, opacity 200ms ease;
}
.loosh-nav-bar__hamburger[aria-expanded="true"] .loosh-nav-bar__hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.loosh-nav-bar__hamburger[aria-expanded="true"] .loosh-nav-bar__hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.loosh-nav-bar__hamburger[aria-expanded="true"] .loosh-nav-bar__hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Full-screen flyout: above nav bar so it’s visible from initial position */
.loosh-nav-flyout-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}
.loosh-nav-flyout-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.loosh-nav-flyout-panel {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  color: #fff;
  z-index: 201;
  padding: 1.5rem;
  padding-top: 5rem;
  overflow-y: auto;
  transform: scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: transform 250ms ease, opacity 200ms ease, visibility 200ms ease;
}
.loosh-nav-flyout-panel.is-open {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.loosh-nav-flyout__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.loosh-nav-flyout__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.loosh-nav-flyout__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.loosh-nav-flyout__links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.loosh-nav-flyout__links a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  font-family: var(--loosh-font-display);
  font-size: 1.1rem;
}
.loosh-nav-flyout__links a:hover {
  text-decoration: underline;
}
.loosh-nav-flyout__newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.loosh-nav-flyout__newsletter .loosh-nav-bar__newsletter-input {
  width: 100%;
}

@media (max-width: 900px) {
  .loosh-nav-bar__links,
  .loosh-nav-bar__newsletter {
    display: none;
  }
  .loosh-nav-bar__hamburger {
    display: flex;
  }
  .loosh-nav-flyout-backdrop,
  .loosh-nav-flyout-panel {
    display: block;
  }
}

@media (max-width: 640px) {
  .loosh-nav-bar {
    flex-direction: row;
    gap: 0.5rem;
  }
  .loosh-nav-bar__links {
    margin-right: 0;
    justify-content: center;
  }
}

/* Hero */
.loosh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loosh-hero__slides {
  position: absolute;
  inset: 0;
}

.loosh-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 920ms ease;
}

.loosh-hero__slide--active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .loosh-hero__slide,
  .loosh-menus__slide,
  .loosh-planner__slide {
    transition: none;
  }
}

.loosh-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.loosh-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.loosh-hero__logo {
  max-width: min(195px, 50vw);
  height: auto;
  filter: brightness(1.05);
}

.loosh-hero__explore {
  margin-top: 2.5rem;
  font-family: var(--loosh-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #fff;
  cursor: pointer;
}

.loosh-hero__arrow {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* Sections */
.loosh-section {
  padding: 4rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loosh-form-section__inner {
  max-width: var(--loosh-max);
  margin: 0 auto;
}

.loosh-heading {
  font-family: var(--loosh-font-display);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--loosh-text);
}

.loosh-heading--light {
  color: #fff;
}

/* In The Beginning / Catering – two columns, full width */
.loosh-two-col .loosh-two-col__inner {
  display: grid;
  gap: var(--loosh-gap);
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* In The Beginning: bg image + overlay on left, solid white on right */
#about {
  padding: 0;
}

#about .loosh-two-col__inner {
  min-height: 100vh;
  align-items: stretch;
  gap: 0;
}

#about .loosh-two-col__left,
#about .loosh-two-col__right {
  align-items: center;
  justify-content: center;
}

#about .loosh-two-col__content {
  max-width: 500px;
  text-align: left;
}

#about .loosh-two-col__left {
  position: relative;
  padding: 2rem 1.5rem;
  background-image: url("/images/bud-johnson-565-scaled.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#about .loosh-two-col__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

#about .loosh-two-col__left .loosh-two-col__content {
  position: relative;
  z-index: 1;
}

#about .loosh-two-col__right {
  background: #fff;
  padding: 2rem 1.5rem;
}

@media (max-width: 768px) {
  .loosh-two-col .loosh-two-col__inner {
    grid-template-columns: 1fr;
  }
  #about .loosh-two-col__inner {
    min-height: auto;
  }
}

.loosh-two-col__left,
.loosh-two-col__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loosh-two-col__left p,
.loosh-two-col__right p {
  margin: 0 0 1rem;
  color: var(--loosh-text-muted);
}

/* Crafted Flavors – left has blue vertical accent */
.loosh-crafted {
  border-left: 4px solid var(--loosh-primary);
  padding-left: 1.25rem;
}

.loosh-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.loosh-tabs__item {
  font-size: 0.9rem;
  color: var(--loosh-text);
  text-decoration: none;
}

.loosh-tabs__item--active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Menus section: tabs match team nav style (horizontal, small text, blue active underline) */
.loosh-menus .loosh-tabs {
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.loosh-menus .loosh-tabs__item {
  font-family: var(--loosh-font-heading);
  font-size: 0.85rem;
  color: var(--loosh-text);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  text-decoration: none;
}

.loosh-menus .loosh-tabs__item:hover {
  color: var(--loosh-primary);
}

.loosh-menus .loosh-tabs__item--active {
  font-weight: 600;
  color: var(--loosh-primary);
  text-decoration: none;
  border-bottom-color: var(--loosh-primary);
}

.loosh-crafted__body p {
  margin: 0;
  color: var(--loosh-text-muted);
}

.loosh-chef-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.loosh-chef-caption {
  font-size: 0.9rem;
  color: var(--loosh-text-muted);
  margin: 0;
}

/* Team – two columns: nav + bio (left), full-bleed photo (right) */
#team.loosh-team,
.loosh-team {
  padding: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.loosh-team .loosh-two-col__inner {
  min-height: 100vh;
  align-items: stretch;
  gap: 0;
}

.loosh-team .loosh-two-col__left {
  background: #fff;
  padding: 2rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.loosh-team .loosh-two-col__content {
  max-width: 500px;
  text-align: left;
  width: 100%;
}

.loosh-team-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.loosh-team-nav__btn {
  font-family: var(--loosh-font-heading);
  font-size: 0.85rem;
  color: var(--loosh-text);
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.loosh-team-nav__btn:hover {
  color: var(--loosh-primary);
}

.loosh-team-nav__btn--active {
  font-weight: 600;
  color: var(--loosh-primary);
  border-bottom: 2px solid var(--loosh-primary);
}

.loosh-team-bio {
  display: none;
}

.loosh-team-bio[hidden] {
  display: none;
}

.loosh-team-bio:not([hidden]) {
  display: block;
}

.loosh-team-bio__name {
  color: var(--loosh-primary);
}

.loosh-team-bio__position {
  font-size: 0.9rem;
  color: var(--loosh-text-muted);
  margin: 0 0 1rem;
}

.loosh-team-bio__desc {
  font-size: 0.95rem;
  color: var(--loosh-text-muted);
  line-height: 1.6;
  margin: 0;
}

.loosh-team-bio__desc p {
  margin: 0 0 0.75rem;
}

.loosh-team__photo-col {
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.loosh-team__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 768px) {
  .loosh-team .loosh-two-col__inner {
    min-height: auto;
    grid-template-rows: 300px 1fr;
  }
  .loosh-team .loosh-two-col__left {
    order: 2;
  }
  .loosh-team .loosh-two-col__right.loosh-team__photo-col {
    order: 1;
    min-height: 300px;
    height: 300px;
  }
}

/* Menus – dark left column, light right */
.loosh-menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 100vh;
  align-items: stretch;
}

@media (max-width: 768px) {
  .loosh-menus {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 1fr;
  }
  .loosh-menus__left {
    order: 1;
    min-height: 300px;
    height: 300px;
  }
  .loosh-menus__right {
    order: 2;
  }
}

.loosh-menus__left {
  position: relative;
  background: var(--loosh-dark);
  min-height: 100%;
  overflow: hidden;
}

.loosh-menus__slides {
  position: absolute;
  inset: 0;
}

.loosh-menus__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 920ms ease;
}

.loosh-menus__slide--active {
  opacity: 1;
  z-index: 1;
}

.loosh-menus__right {
  padding: 3rem 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loosh-menu-tabs {
  margin-top: 1.5rem;
}

.loosh-menu-tab {
  display: none;
}

.loosh-menu-tab--active {
  display: block;
}

.loosh-menu-tab__pdf {
  width: 100%;
  height: 480px;
  border: none;
  margin: 0 0 1rem;
}

.loosh-menu-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--loosh-text-muted);
}

.loosh-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-family: var(--loosh-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.loosh-btn:hover {
  opacity: 0.9;
}

.loosh-btn--primary {
  background: var(--loosh-primary);
  color: #fff;
}

.loosh-btn--view {
  background: var(--loosh-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.05em;
}

/* Planner – dark left, image right */
.loosh-planner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 100vh;
  align-items: stretch;
}

@media (max-width: 768px) {
  .loosh-planner {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 1fr;
  }
  .loosh-planner__left {
    order: 2;
  }
  .loosh-planner__right {
    order: 1;
    min-height: 300px;
    height: 300px;
  }
}

.loosh-planner__left {
  background: var(--loosh-dark);
  color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loosh-planner__content {
  max-width: 500px;
  margin: 0 auto;
}

.loosh-planner__content .loosh-btn {
  width: auto;
}

.loosh-planner__text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

.loosh-planner__right {
  position: relative;
  overflow: hidden;
}

.loosh-planner__slides {
  position: absolute;
  inset: 0;
}

.loosh-planner__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 920ms ease;
}

.loosh-planner__slide--active {
  opacity: 1;
  z-index: 1;
}

/* Gallery */
.loosh-gallery {
  padding: 4rem 1.5rem;
}

.loosh-gallery__title {
  text-align: center;
  margin-bottom: 0.25rem;
}

.loosh-gallery__sub {
  text-align: center;
  font-size: 1rem;
  color: var(--loosh-text-muted);
  margin: 0 0 2rem;
}

.loosh-gallery__embed-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.loosh-gallery__embed {
  height: 750px;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .loosh-gallery__embed-wrap {
    max-height: 85vh;
  }
  .loosh-gallery__embed {
    max-height: min(750px, 85vh);
    width: 100%;
    min-width: 0;
  }
}

.loosh-gallery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .loosh-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.loosh-gallery__grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Form section */
.loosh-form-section {
  background: #f8fafc;
}

.loosh-form-section__inner {
  max-width: 560px;
}

.loosh-form-section .loosh-heading {
  margin-bottom: 0.5rem;
}

.loosh-form-section p {
  color: var(--loosh-text-muted);
  margin: 0 0 1.5rem;
}

.hidden {
  display: none !important;
}

/* Event request form (modal + inline) */
.loosh-event-request-form__intro {
  color: var(--loosh-text-muted);
  margin: 0 0 1.25rem;
}

.loosh-event-request-form__success {
  padding: 1rem;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
}

.loosh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .loosh-form-row {
    grid-template-columns: 1fr;
  }
}

.loosh-form-group {
  margin-bottom: 1rem;
}

.loosh-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.loosh-form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: var(--loosh-font-body);
  font-size: 1rem;
}

.loosh-form-control:focus {
  outline: 2px solid var(--loosh-primary);
  outline-offset: 2px;
  border-color: transparent;
}

.loosh-form-prefix {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
}

.loosh-form-prefix__symbol {
  padding: 0.5rem 0 0.5rem 0.75rem;
  font-size: 1rem;
  color: var(--loosh-text-muted);
}

.loosh-form-prefix .loosh-form-control {
  border: none;
  border-radius: 0;
}

.loosh-form-error {
  font-size: 0.875rem;
  color: #b91c1c;
  margin-top: 0.5rem;
}

.loosh-event-request-form__form button[type="submit"] {
  margin-top: 0.5rem;
}

/* Modal */
.loosh-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.loosh-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.loosh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.loosh-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}

.loosh-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--loosh-text-muted);
}

.loosh-modal__close:hover {
  color: var(--loosh-text);
}

.loosh-modal__title {
  margin: 0 2rem 0.5rem 0;
  font-family: var(--loosh-font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Footer */
.loosh-footer {
  background: #fff;
  color: var(--loosh-text);
  padding: 3rem 1.5rem;
}

.loosh-footer__main {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .loosh-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .loosh-footer__connect {
    border: none;
    padding: 0;
  }
}

.loosh-footer__heading {
  font-family: var(--loosh-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--loosh-text);
}

.loosh-footer__contact .loosh-footer__contact-list {
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

.loosh-footer__contact a {
  color: var(--loosh-text);
  text-decoration: none;
}

.loosh-footer__contact a:hover {
  text-decoration: underline;
}

.loosh-footer__connect {
  text-align: center;
}

@media (min-width: 769px) {
  .loosh-footer__connect {
    border-left: 1px solid #e2e8f0;
    padding-left: 3rem;
  }
}

@media (max-width: 768px) {
  .loosh-footer__connect {
    text-align: left;
    border: none;
    padding: 0;
  }
}

.loosh-footer__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .loosh-footer__social {
    justify-content: flex-start;
  }
}

.loosh-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--loosh-primary);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.loosh-footer__social-icon:hover {
  opacity: 0.9;
}

.loosh-footer__connect .loosh-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--loosh-text-muted);
}

.loosh-footer__connect .loosh-footer__copy a {
  color: var(--loosh-primary);
  text-decoration: none;
}

.loosh-footer__connect .loosh-footer__copy a:hover {
  text-decoration: underline;
}

/* Contact form – self-contained so we don’t rely on blueprint */
.loosh-form-section [data-contact-wrapper] {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.loosh-form-section [data-contact-form] h2 {
  font-family: var(--loosh-font-display);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.loosh-form-section label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.loosh-form-section input[type="text"],
.loosh-form-section input[type="email"],
.loosh-form-section textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: var(--loosh-font-body);
  font-size: 1rem;
}

.loosh-form-section button[type="submit"],
.loosh-form-section .btn {
  background: var(--loosh-primary);
  color: #fff;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.loosh-form-section .field-error {
  font-size: 0.875rem;
  color: #b91c1c;
}

#af-form-269081938 {
  background:transparent!important;
    display: flex!important;
    align-items: center;
}

#af-form-269081938 .af-standards .af-element {
    padding-left: 5px!important;
    padding-right: 5px!important;
}

#af-form-269081938 .af-body {
  display:flex;
  align-items: center;
}

#af-form-269081938 .af-body .af-element {
    display: flex;
    align-items: center;
}

#af-form-269081938 .af-body label.previewLabel {
  display:none!important;
}

#af-form-269081938 .af-body .af-textWrap input.text, #af-form-269081938 .af-body .af-textWrap textarea {
  min-width:200px;
  margin-bottom: 0!important;
}

#af-form-269081938, #af-form-269081938 .quirksMode {
  max-width:100%!important;
}

#af-form-269081938 .af-header {
color: #fff!important;
    font-weight: 300!important;
    font-family: 'Playfair Display'!important;
    font-size: 16px!important;
}

#af-form-269081938 .buttonContainer input.submit {
  margin: 0 !important;
  font-family: var(--loosh-font-display)!important;
}
