:root {
  --black: #050505;
  --orange: #e15626;
  --gray: #6e6e6e;
  --accent: #ffaa00;
  --white: #ffffff;
  --soft-white: #f5f5f2;
  --warm-panel: #f0eee8;
  --warm-paper: #fffaf0;
  --dark-card: #111111;
  --border: rgba(255, 255, 255, 0.12);
  --muted: rgba(255, 255, 255, 0.7);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #090909;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
}

body::selection {
  background: var(--orange);
  color: var(--white);
}

body,
.menu-panel,
.modal-panel {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.12);
}

body::-webkit-scrollbar,
.menu-panel::-webkit-scrollbar,
.modal-panel::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track,
.menu-panel::-webkit-scrollbar-track,
.modal-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

body::-webkit-scrollbar-thumb,
.menu-panel::-webkit-scrollbar-thumb,
.modal-panel::-webkit-scrollbar-thumb {
  border: 3px solid rgba(5, 5, 5, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--accent));
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  min-height: 106px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand-link,
.site-header nav a,
.button-reset,
.site-footer button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  grid-column: 2;
  grid-row: 1;
}

.brand-link img {
  width: clamp(178px, 20vw, 270px);
  max-height: 78px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  grid-column: 1;
  grid-row: 1;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a.active,
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.call-pill,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.call-pill,
.secondary-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.call-pill {
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
}

.primary-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff7a2d 60%, var(--accent));
  box-shadow: 0 16px 34px rgba(225, 86, 38, 0.26);
}

button.primary-button,
button.secondary-button {
  border-radius: 999px;
}

.primary-button:hover,
.secondary-button:hover,
.call-pill:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.call-pill:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100svh - 106px);
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at top right, rgba(225, 86, 38, 0.34), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 170, 0, 0.18), transparent 30%),
    var(--black);
}

.hero-content,
.page-hero {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Saira Condensed', Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: 2rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.18rem;
  margin-inline: auto;
}

.hero-actions,
.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  justify-content: center;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--soft-white);
  background: transparent;
  font-size: 0.94rem;
  font-weight: 900;
}

.trust-strip span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark-card);
  box-shadow: var(--shadow);
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-panel div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.hero-panel span {
  color: var(--muted);
}

.section,
.booking-section,
.page-hero {
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section {
  max-width: 1320px;
  margin-inline: auto;
}

.services-section {
  width: min(1320px, calc(100% - clamp(24px, 6vw, 72px)));
  max-width: none;
  margin-inline: auto;
  margin-block: clamp(24px, 5vw, 56px);
  border-radius: clamp(20px, 3vw, 34px);
  background: var(--warm-panel);
  color: #171717;
  box-shadow: var(--shadow);
}

.services-section .section-heading,
.services-section .package-showcase,
.services-section .pricing-note {
  max-width: 1180px;
  margin-inline: auto;
}

.services-section .section-heading p {
  color: #343434;
}

.preview-band,
.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-block: 1px solid var(--border);
  background: var(--warm-paper);
  color: #171717;
}

.about-preview {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

.about-preview .eyebrow {
  color: var(--orange);
  font-weight: 900;
}

.preview-band p,
.story-section p {
  color: #363636;
}

.values-grid article p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
  text-align: center;
  margin-inline: auto;
}

.row-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  align-items: end;
}

.package-showcase {
  display: grid;
  gap: 18px;
}

.package-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.package-card,
.values-grid article {
  position: relative;
  display: grid;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--dark-card);
  color: var(--white);
}

.package-card {
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.package-collapse {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: none;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.62);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.package-card.open .package-collapse {
  display: grid;
}

.values-grid article {
  gap: 14px;
  padding: 24px;
}

.package-card:hover,
.package-card.open {
  transform: translateY(-2px);
  border-color: rgba(225, 86, 38, 0.68);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.package-card-summary {
  display: grid;
  justify-items: center;
  gap: 9px;
  width: 100%;
  min-height: 154px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: center;
}

.package-card.open .package-card-summary {
  padding-inline: 52px;
}

.package-card-summary:focus-visible {
  outline: 3px solid rgba(255, 170, 0, 0.24);
  outline-offset: -3px;
}

.package-tile-title {
  font-family: 'Saira Condensed', Inter, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.package-tile-price {
  color: var(--soft-white);
  font-weight: 900;
}

.package-tile-action {
  justify-self: center;
  align-self: end;
  margin-top: auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.package-card.open .package-tile-action {
  background: linear-gradient(135deg, var(--orange), #ff7a2d 65%, var(--accent));
}

.package-card-details {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 18px 18px;
  text-align: center;
}

.package-card-details[hidden] {
  display: none;
}

.package-card-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.price {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.package-card-details ul {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  color: var(--soft-white);
  font-weight: 700;
}

.package-card-details li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.package-card-details .primary-button {
  width: 100%;
  margin-top: 4px;
}

.pricing-note {
  margin-top: 22px;
  color: #343434;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark-card);
  flex: 0 0 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.gallery-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card strong {
  font-size: 1.2rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-carousel {
  max-width: 1180px;
}

.carousel-track {
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.carousel .gallery-card {
  border: 0;
  border-radius: 0;
}

.carousel .gallery-card img {
  min-height: clamp(360px, 58vw, 680px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-arrow.previous {
  left: 16px;
}

.carousel-arrow.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.carousel-dots button.active {
  width: 30px;
  background: var(--accent);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  max-width: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 86, 38, 0.18), transparent 28%),
    radial-gradient(circle at 80% 90%, rgba(255, 170, 0, 0.16), transparent 26%),
    #080808;
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.direct-actions a {
  color: var(--white);
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.booking-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  text-align: center;
  box-shadow: var(--shadow);
}

.booking-card img {
  width: min(330px, 90%);
}

.modal-open {
  overflow: hidden;
}

.menu-open {
  overflow: hidden;
}

.menu-toggle {
  grid-column: 3;
  grid-row: 1;
  display: inline-grid;
  gap: 7px;
  align-content: center;
  justify-self: end;
  width: 56px;
  height: 50px;
  padding: 12px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--white);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.site-menu.open {
  pointer-events: auto;
}

.menu-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 240ms ease;
}

.site-menu.open .menu-scrim {
  background: rgba(0, 0, 0, 0.58);
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 24px;
  width: min(390px, 88vw);
  height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 28px 38px;
  background: #2b2f35;
  color: var(--white);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 280ms ease;
}

.site-menu.open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  justify-self: start;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1;
}

.menu-logo {
  width: min(260px, 82%);
}

.veteran-badge {
  width: min(168px, 48vw);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.hero-badge {
  width: clamp(92px, 12vw, 138px);
  margin-bottom: 14px;
}

.menu-nav {
  display: grid;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.menu-nav a,
.menu-nav button {
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Saira Condensed', Inter, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-nav a {
  display: inline-flex;
  align-items: center;
}

.menu-nav a.active,
.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--accent);
}

.menu-contact {
  display: grid;
  width: 100%;
  margin-top: 4px;
  text-align: center;
}

.menu-contact a {
  color: var(--soft-white);
  font-weight: 900;
  text-decoration: none;
}

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

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  max-height: min(92vh, 980px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(225, 86, 38, 0.18), transparent 28%),
    #0d0d0d;
  box-shadow: var(--shadow);
}

.modal-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 58px);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.modal-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 4px clamp(20px, 4vw, 34px) 24px;
  text-align: center;
}

.modal-heading img {
  width: min(250px, 82%);
}

.modal-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.modal-panel .inquiry-form {
  margin: 0 clamp(14px, 4vw, 34px) clamp(18px, 4vw, 34px);
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

label span,
small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  min-height: 50px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(255, 170, 0, 0.16);
}

.custom-select {
  position: relative;
}

.custom-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 12px 44px 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  text-align: left;
}

.custom-select-button::after {
  content: '';
  position: absolute;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-3px);
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #171717;
  box-shadow: var(--shadow);
}

.custom-select.open .custom-options {
  display: grid;
}

.custom-options button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--white);
  padding: 13px;
  text-align: left;
}

.custom-options button:hover,
.custom-options button[aria-selected='true'] {
  background: rgba(225, 86, 38, 0.22);
  color: var(--accent);
}

textarea {
  resize: vertical;
}

.service-hours {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 170, 0, 0.24);
  border-radius: 8px;
  background: rgba(255, 170, 0, 0.08);
}

.service-hours strong {
  color: var(--white);
  font-weight: 900;
}

.service-hours p,
.service-hours small {
  margin: 0;
  color: var(--soft-white);
}

.service-hours small {
  color: var(--muted);
}

fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

legend {
  padding: 0 8px;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.consent {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.form-submit {
  width: 100%;
}

.form-message {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
}

.success {
  background: rgba(255, 170, 0, 0.16);
}

.error {
  background: rgba(225, 86, 38, 0.18);
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(225, 86, 38, 0.26), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 170, 0, 0.12), transparent 28%),
    var(--black);
}

.about-hero {
  display: block;
  max-width: none;
  text-align: center;
}

.about-hero-copy {
  max-width: 860px;
  margin-inline: auto;
}

.about-hero-copy .hero-badge {
  margin-inline: auto;
}

.about-hero-copy h1,
.about-hero-copy p {
  margin-inline: auto;
}

.owner-photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark-card);
  box-shadow: var(--shadow);
}

.owner-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.owner-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-text-wrap {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: left;
}

.owner-text-wrap::after {
  content: '';
  display: block;
  clear: both;
}

.owner-text-wrap p {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.about-preview .owner-text-wrap {
  max-width: 820px;
  margin-inline: 0;
}

.inline-owner-photo {
  float: left;
  width: clamp(118px, 18vw, 178px);
  aspect-ratio: 4 / 5;
  margin: 0 18px 10px 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 34px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--border);
  background: #030303;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-links button,
.footer-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    min-height: 92px;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .booking-section,
  .preview-band,
  .about-hero,
  .story-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-hero-copy {
    text-align: center;
  }

  .about-hero-copy .hero-badge,
  .about-hero-copy h1,
  .about-hero-copy p {
    margin-inline: auto;
  }

  .booking-copy {
    position: static;
  }

  .package-picker,
  .values-grid,
  .compact-gallery,
  .full-gallery {
    grid-template-columns: 1fr;
  }

  .row-heading {
    display: grid;
    justify-items: center;
    align-items: start;
    text-align: center;
  }

  .preview-band,
  .story-section,
  .booking-copy {
    justify-items: center;
    text-align: center;
  }

  .preview-band > div,
  .story-section > div,
  .booking-copy {
    max-width: 860px;
    margin-inline: auto;
  }

  .preview-band p,
  .story-section p,
  .booking-copy p {
    margin-inline: auto;
  }

  .owner-text-wrap {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    padding-inline: 12px;
  }

  .site-header nav a {
    padding-inline: 11px;
    white-space: nowrap;
  }

  .brand-link img {
    width: clamp(134px, 38vw, 184px);
  }

  .call-pill {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 44px;
    padding-inline: 8px;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .form-grid,
  .package-card-details ul {
    grid-template-columns: 1fr;
  }

  .hero-panel img {
    aspect-ratio: 1 / 1;
  }

  .inline-owner-photo {
    width: clamp(112px, 34vw, 148px);
    margin-right: 14px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 260px;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Community / giving back page */
.community-hero {
  max-width: 940px;
}

/* Tighter, consistent vertical rhythm across the community page */
.community-hero,
.community-story,
.community-winners,
.community-gallery,
.community-close {
  padding-block: clamp(30px, 4vw, 54px);
}

.community-close .eyebrow {
  color: var(--orange);
}

.community-prose {
  max-width: 760px;
  margin-inline: auto;
}

.community-story-figure {
  float: right;
  width: min(340px, 42%);
  margin: 6px 0 18px 28px;
}

.community-story-figure img {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.community-story-figure figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.55;
}

.community-prose p {
  font-size: 1.12rem;
}

.community-prose p + p {
  margin-top: 20px;
}

.community-winners-note {
  margin-top: 14px;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.winner-card {
  display: grid;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--dark-card);
}

.winner-photo {
  width: 112px;
  height: 112px;
  margin: 0 auto 4px;
  border-radius: 50%;
  object-fit: cover;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.winner-place {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Gold */
.winner-first {
  border-color: rgba(255, 207, 92, 0.6);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 207, 92, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--dark-card);
}

.winner-first .winner-photo {
  border-color: #ffcf5c;
  box-shadow: 0 10px 26px rgba(255, 207, 92, 0.28);
}

.winner-first .winner-place {
  color: #ffcf5c;
}

/* Silver */
.winner-second {
  border-color: rgba(212, 219, 228, 0.5);
  background:
    radial-gradient(circle at 50% -10%, rgba(212, 219, 228, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--dark-card);
}

.winner-second .winner-photo {
  border-color: #d4dbe4;
  box-shadow: 0 10px 26px rgba(212, 219, 228, 0.22);
}

.winner-second .winner-place {
  color: #dbe2ea;
}

/* Bronze */
.winner-third {
  border-color: rgba(211, 138, 79, 0.55);
  background:
    radial-gradient(circle at 50% -10%, rgba(211, 138, 79, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--dark-card);
}

.winner-third .winner-photo {
  border-color: #d38a4f;
  box-shadow: 0 10px 26px rgba(211, 138, 79, 0.24);
}

.winner-third .winner-place {
  color: #e2a066;
}

.winner-award {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.winner-name {
  font-size: 1.6rem;
  color: var(--soft-white);
}

.community-gallery {
  max-width: 1280px;
}

/* Home page community / giving-back teaser band */
.community-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.community-band-media img {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.community-band-copy .primary-button {
  margin-top: 24px;
}

@media (max-width: 820px) {
  .community-band {
    grid-template-columns: minmax(0, 1fr);
  }
}

.community-gallery-hint {
  margin-top: 12px;
}

/* Peek carousel: large centered slide with neighbors peeking */
.peek-gallery {
  position: relative;
  --peek-slide: min(600px, 58vw);
}

.peek-track {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: calc((100% - var(--peek-slide)) / 2);
  padding-block: 10px;
  scrollbar-width: none;
}

.peek-track::-webkit-scrollbar {
  display: none;
}

.peek-slide {
  flex: 0 0 var(--peek-slide);
  scroll-snap-align: center;
  display: block;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #0f0f0f;
  color: var(--white);
  cursor: zoom-in;
  box-shadow: var(--shadow);
  opacity: 0.55;
  transition: opacity 320ms ease, transform 320ms ease;
}

.peek-slide.is-active {
  opacity: 1;
}

.peek-slide img {
  display: block;
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: contain;
  background: #0f0f0f;
}

.peek-caption {
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  text-align: left;
}

.peek-place {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.peek-caption strong {
  font-size: 1.15rem;
}

.peek-arrow {
  position: absolute;
  top: clamp(150px, 20vw, 250px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  transform: translateY(-50%);
}

.peek-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
}

.peek-prev {
  left: clamp(6px, 2vw, 22px);
}

.peek-next {
  right: clamp(6px, 2vw, 22px);
}

.peek-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.peek-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.peek-dots button.active {
  width: 30px;
  background: var(--accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 52px);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  max-width: min(960px, 100%);
}

.lightbox-img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 10px;
  background: #0f0f0f;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 24px);
  right: clamp(14px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.6);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.6);
  color: var(--white);
  transform: translateY(-50%);
}

.lightbox-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: clamp(8px, 3vw, 30px);
}

.lightbox-next {
  right: clamp(8px, 3vw, 30px);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .peek-gallery {
    --peek-slide: min(520px, 70vw);
  }
}

@media (max-width: 640px) {
  .peek-gallery {
    --peek-slide: 82vw;
  }

  .peek-arrow {
    width: 42px;
    height: 42px;
  }
}

.community-close {
  text-align: left;
}

@media (max-width: 720px) {
  .winners-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .community-story-figure {
    float: none;
    width: 100%;
    margin: 0 0 22px;
  }
}
