:root {
  --ink: #141617;
  --ink-soft: #242628;
  --paper: #ffffff;
  --mist: #f5f5f2;
  --line: #ddddda;
  --muted: #62645f;
  --green: #4dd119;
  --wood: #c69c6d;
  --max: 1180px;
  --shadow-soft: 0 18px 48px rgba(20, 22, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 8px 10px;
  border: 1px solid var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.nav-shell {
  width: min(100%, var(--max));
  min-height: 116px;
  margin: 0 auto;
  padding: 12px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: block;
  width: 150px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-group a,
.nav-book-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}

.nav-group a[aria-current="page"]::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 3px;
  background: var(--ink);
  transform: translateY(-28px);
}

.nav-book {
  position: relative;
}

.book-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 190px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(20, 22, 23, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-book:hover .book-menu,
.nav-book:focus-within .book-menu,
.nav-book.is-open .book-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.book-menu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  text-decoration: none;
}

.book-menu a:hover {
  background: var(--mist);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 10px 22px 22px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.hero {
  background: var(--ink);
  color: var(--paper);
}

.hero-home {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  padding: 56px clamp(22px, 7vw, 94px) 44px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: inherit;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
}

.hero-logo-panel {
  min-height: 360px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 5px solid var(--paper);
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-logo-panel img {
  width: min(100%, 760px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--paper);
}

.band .button-primary,
.contact-form .button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-secondary {
  color: inherit;
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.band .button-secondary:hover,
.band .button-secondary:focus-visible,
.contact-form .button-secondary:hover,
.contact-form .button-secondary:focus-visible {
  background: var(--mist);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 0;
  background: var(--ink);
}

.photo-strip-home {
  border-bottom: 1px solid var(--line);
}

.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-strip-home img {
  height: clamp(220px, 23vw, 310px);
}

.photo-strip-home img:first-child {
  object-position: center 62%;
}

.photo-strip-home img:nth-child(2) {
  object-position: center 42%;
}

.band {
  padding: 84px 22px;
}

.band-light {
  background: var(--mist);
}

.section-header,
.split,
.product-grid,
.image-grid,
.event-grid,
.price-grid,
.faq-list,
.link-list,
.contact-layout,
.prose,
.centered-band,
.embed-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-header {
  margin-bottom: 34px;
}

.section-header h2,
.contact-panel h2,
.prose h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: 0;
}

.section-header p,
.lede,
.fine-print {
  max-width: 720px;
  color: var(--muted);
}

.kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.home-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: start;
}

.home-intro-band {
  padding-top: 92px;
}

.home-intro .section-header {
  margin-bottom: 28px;
}

.split-media {
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1fr);
}

.split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.home-feature-list {
  padding-top: 4px;
}

.feature-list div {
  border-top: 2px solid var(--ink);
  padding: 20px 0;
}

.home-feature-list div {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  border-top-width: 1px;
}

.feature-list strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
}

.feature-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.home-feature-list span {
  margin-top: 0;
}

.home-booking-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-booking-band .section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 34px;
  align-items: end;
}

.home-booking-band .section-header .kicker,
.home-booking-band .section-header h2 {
  grid-column: 1;
}

.home-booking-band .section-header p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
}

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

.product-card,
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.home-product-grid {
  gap: 18px;
  align-items: stretch;
}

.home-product-grid .product-card > a {
  padding: 10px;
  background: #fafaf7;
}

.product-card {
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.product-card > a {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(20, 22, 23, 0.24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--ink);
  transition: transform 220ms ease;
}

.home-product-grid .product-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.025);
}

.product-card div {
  padding: 18px;
}

.product-card h3,
.price-card h3,
.prose h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.product-card p,
.price-card p {
  color: var(--muted);
}

.home-video-band .split-media {
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  align-items: start;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-frame iframe,
.embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.image-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.image-grid figure,
.event-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 6px;
}

.image-grid img,
.event-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(128px, 12vw, 168px);
  gap: 12px;
}

.home-gallery figure {
  grid-column: span 2;
}

.home-gallery figure:first-child {
  grid-column: span 3;
  grid-row: span 2;
}

.home-gallery figure:nth-child(2),
.home-gallery figure:nth-child(3) {
  grid-column: span 3;
}

.home-gallery img {
  height: 100%;
  aspect-ratio: auto;
}

.event-grid img {
  aspect-ratio: 4 / 5;
}

.page-hero {
  min-height: 430px;
  padding: 72px 22px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.page-hero > div {
  width: min(100%, 680px);
  justify-self: end;
}

.page-hero img {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--paper);
}

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

.price-card {
  min-height: 252px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 0 18px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
}

.faq-list summary::after {
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0;
  color: var(--muted);
}

.faq-list a {
  display: inline-block;
  margin-bottom: 18px;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  padding: 14px 16px;
  background: var(--mist);
  border-radius: 6px;
}

.embed-shell {
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}

.embed-shell iframe {
  min-height: 620px;
}

.schedule-shell {
  padding: 16px;
}

.buyer-intake-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1.35fr);
  gap: 48px;
  align-items: start;
}

.buyer-intake-intro {
  position: sticky;
  top: 120px;
  padding: 30px;
  border-radius: 6px;
  background: var(--mist);
}

.buyer-intake-intro h2,
.buyer-intake-success h2 {
  margin-top: 8px;
}

.buyer-intake-intro .kicker {
  color: var(--ink);
}

.buyer-intake-intro ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.buyer-trust-note {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.buyer-trust-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.buyer-intake-form {
  display: grid;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  scroll-margin-top: 120px;
}

.preview-notice {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--orange) 55%, var(--line));
  border-radius: 6px;
  background: color-mix(in srgb, var(--orange) 8%, var(--paper));
  font-size: 0.92rem;
}

.form-progress {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-progress-track {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--mist);
}

.form-progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--orange);
  transition: width 180ms ease;
}

.buyer-path {
  padding: 22px;
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: var(--mist);
}

.buyer-path .kicker,
.buyer-path h2,
.buyer-path p {
  margin-top: 0;
}

.buyer-path h2 {
  margin-bottom: 8px;
}

.buyer-path ul {
  display: grid;
  gap: 7px;
  margin-bottom: 0;
  padding-left: 20px;
}

.buyer-intake-step {
  display: grid;
  gap: 26px;
}

.buyer-intake-step[hidden],
.buyer-intake-success[hidden],
.form-progress[hidden] {
  display: none;
}

.buyer-intake-step fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.buyer-intake-step legend,
.buyer-intake-step > label,
.contact-field-grid label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

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

.choice-grid-five,
.choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  text-align: center;
  transition: border-color 140ms ease, background 140ms ease;
}

.next-step-grid .choice-card span {
  align-content: center;
  gap: 5px;
  min-height: 104px;
}

.next-step-grid small {
  color: var(--muted);
  font-weight: 500;
}

.choice-card input:checked + span {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, var(--paper));
}

.choice-card input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--orange) 35%, transparent);
  outline-offset: 2px;
}

.buyer-intake-step input[type="text"],
.buyer-intake-step input[type="email"],
.buyer-intake-step input[type="tel"],
.buyer-intake-step textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
}

.buyer-intake-step textarea {
  resize: vertical;
}

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

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500 !important;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-actions-end {
  justify-content: flex-end;
}

.buyer-intake-status {
  color: var(--ink);
}

.buyer-intake-success {
  padding: 26px;
  border-radius: 6px;
  background: var(--mist);
}

.buyer-intake-success .kicker {
  color: var(--ink);
}

.buyer-recommendations {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.buyer-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.buyer-recommendation-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.buyer-recommendation-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.buyer-recommendation-card > div {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.buyer-recommendation-card h2,
.buyer-recommendation-card h3,
.buyer-recommendation-card p {
  margin: 0;
}

.buyer-recommendation-card h2 {
  font-size: 1.25rem;
}

.saved-results-nav,
.saved-results {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.saved-results-nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.saved-results-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.saved-results {
  padding: clamp(48px, 7vw, 88px) 0;
}

.saved-results-heading {
  max-width: 760px;
}

.saved-results-heading h1 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.saved-results-filters {
  font-weight: 700;
}

.saved-results-next {
  margin-top: 3rem;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 6px;
  background: var(--mist);
}

.buyer-recommendation-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.contact-form span {
  float: right;
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  padding: 28px;
  background: var(--mist);
  border-radius: 6px;
}

.contact-panel img {
  margin-top: 24px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.prose {
  max-width: 850px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal ul {
  padding-left: 22px;
}

.centered-band {
  text-align: center;
}

.centered-band .lede {
  margin-left: auto;
  margin-right: auto;
}

.centered-band .cta-row {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(130px, 0.55fr));
  gap: 32px;
}

.footer-inner p {
  max-width: 330px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 16px 22px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 92px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 132px;
  }

  .nav-group {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero-home,
  .page-hero,
  .split,
  .split-media,
  .contact-layout,
  .buyer-intake-shell {
    grid-template-columns: 1fr;
  }

  .buyer-recommendation-grid {
    grid-template-columns: 1fr;
  }

  .buyer-intake-intro {
    position: static;
  }

  .hero-home {
    min-height: 0;
    gap: 34px;
    padding: 58px 22px 42px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-logo-panel {
    min-height: 260px;
  }

  .home-intro,
  .home-video-band .split-media {
    grid-template-columns: 1fr;
  }

  .home-booking-band .section-header {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .home-booking-band .section-header .kicker,
  .home-booking-band .section-header h2,
  .home-booking-band .section-header p {
    grid-column: auto;
    grid-row: auto;
  }

  .home-booking-band .section-header p {
    margin-top: 0;
  }

  .page-hero > div {
    justify-self: start;
  }

  .product-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid,
  .event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .home-gallery figure,
  .home-gallery figure:first-child,
  .home-gallery figure:nth-child(2),
  .home-gallery figure:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .home-gallery figure:first-child {
    grid-column: span 3;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .buyer-intake-form,
  .buyer-intake-intro {
    padding: 22px;
  }

  .choice-grid,
  .choice-grid-five,
  .choice-grid-three,
  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 18px;
  }

  .photo-strip,
  .product-grid,
  .price-grid,
  .image-grid,
  .event-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    height: 210px;
  }

  .home-feature-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-product-grid .product-card img {
    aspect-ratio: 5 / 4;
  }

  .home-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .home-gallery figure,
  .home-gallery figure:first-child,
  .home-gallery figure:nth-child(2),
  .home-gallery figure:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .home-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .band {
    padding: 58px 18px;
  }

  .hero-home {
    padding: 32px 18px 22px;
    gap: 24px;
  }

  .hero-logo-panel {
    min-height: 170px;
    border-width: 4px;
    padding: 16px;
  }

  .section-header h2,
  .contact-panel h2,
  .prose h2 {
    font-size: 34px;
  }

  .page-hero {
    padding: 50px 18px;
  }

  .cta-row,
  .social-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
