:root {
  --navy: #082d4d;
  --navy-2: #0c3b62;
  --ink: #13283a;
  --saffron: #d9891b;
  --gold: #ba8a42;
  --cream: #fbf6ea;
  --paper: #fffdf7;
  --muted: #63707b;
  --line: #ddcfb5;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
button,
a {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: #fff;
  padding: 10px 16px;
  color: var(--navy);
}
.skip-link:focus {
  transform: none;
}
.topline {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--saffron),
    var(--gold) 35%,
    var(--navy) 35%,
    var(--navy) 100%
  );
}
.site-header {
  height: 96px;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid rgba(8, 45, 77, 0.12);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  text-align: left;
  color: var(--navy);
  cursor: pointer;
}
.logo-frame {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}
.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}
.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.23em;
  margin-top: 6px;
}
.tab-list {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tab {
  position: relative;
  border: 0;
  background: none;
  color: #364957;
  font-weight: 600;
  padding: 14px 13px;
  cursor: pointer;
}
.tab:after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: 0.25s;
}
.tab:hover,
.tab.active {
  color: var(--navy);
}
.tab.active:after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
.tab-panel {
  min-height: 630px;
  animation: fade 0.4s ease;
}
.tab-panel[hidden] {
  display: none;
}
@keyframes fade {
  from {
    opacity: 0.25;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-pattern {
  position: absolute;
  inset: 0 0 auto auto;
  width: 52%;
  height: 600px;
  opacity: 0.06;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--navy) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  mask-image: linear-gradient(to left, #000, transparent);
  pointer-events: none;
}
#panel-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper) 50%, var(--cream) 50%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 70px;
  padding: 60px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--saffron);
  font-size: 0.77rem;
  font-weight: 700;
}
.eyebrow span {
  width: 35px;
  height: 1px;
  background: currentColor;
}
h1,
h2,
p {
  margin-top: 0;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.7vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy);
  max-width: 850px;
  margin-bottom: 25px;
}
h1 em {
  font-style: italic;
  color: var(--saffron);
}
.lede {
  font-size: 1.16rem;
  max-width: 660px;
  color: #4a5b68;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 33px 0 44px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  border: 1px solid var(--navy);
  border-radius: 2px;
  min-height: 54px;
  padding: 0 23px;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(217, 137, 27, 0.22);
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(8, 45, 77, 0.15);
}
.primary {
  background: var(--navy);
  color: #fff;
}
.secondary {
  background: transparent;
  color: var(--navy);
}
.quick-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.quick-facts div {
  min-width: 140px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}
.quick-facts div:last-child {
  border: 0;
}
.quick-facts strong,
.quick-facts span {
  display: block;
}
.quick-facts strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}
.quick-facts span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.welcome-card,
.hours-card {
  position: relative;
  background: var(--navy);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(186, 138, 66, 0.5);
  box-shadow: 14px 14px 0 rgba(217, 137, 27, 0.13);
}
.welcome-card:before,
.hours-card:before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}
.photo-card {
  padding: 0;
  overflow: hidden;
}
.welcome-photo {
  width: 100%;
  height: 225px;
  display: block;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.82) contrast(1.04);
}
.welcome-content {
  padding: 25px 34px 30px;
}
.arch-mark {
  width: 180px;
  height: 180px;
  margin: -120px auto 12px;
  border-radius: 50% 50% 8px 8px;
  background: var(--paper);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  padding: 13px;
}
.arch-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gurmukhi {
  font-size: 2rem;
  color: #f0b04f;
  margin: 5px;
}
.welcome-card h2 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 12px;
}
.welcome-card .welcome-content > p:not(.gurmukhi) {
  color: #dbe6ee;
}
.gold-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  margin: 18px 0;
}
.gold-rule:before,
.gold-rule:after {
  content: "";
  height: 1px;
  background: rgba(186, 138, 66, 0.6);
  flex: 1;
}
.location {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.intro-band p {
  margin: 0;
  color: #465a69;
}
.text-link {
  border: 0;
  background: none;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  touch-action: manipulation;
}
.page-intro {
  padding: 80px 0 42px;
}
.page-intro.narrow {
  text-align: center;
  margin: auto;
}
.page-intro.narrow .eyebrow {
  justify-content: center;
}
.page-intro h1 {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
}
.page-intro.narrow h1,
.page-intro.narrow .lede {
  margin-left: auto;
  margin-right: auto;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 405px;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s;
}
.service-card:hover:before {
  transform: scaleX(1);
}
.card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(145deg, #fffaf0, var(--cream));
}
.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: 10px;
  filter: saturate(0.8);
  transition:
    transform 0.45s ease,
    filter 0.3s;
}
.service-card:hover .card-image img {
  transform: scale(1.04);
  filter: saturate(1);
}
.card-body {
  padding: 27px 25px 25px;
}
.media-icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 46px;
  height: 46px;
  background: rgba(8, 45, 77, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.media-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.number {
  color: #a28861;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.service-card h2,
.mission h2,
.split-callout h2,
.booking-card h2,
.leadership h2,
.hours-card h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--navy);
}
.service-card h2 {
  margin: 10px 0;
}
.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}
.split-callout {
  background: var(--navy);
  color: white;
  padding: 42px 50px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.split-callout h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 8px;
}
.split-callout p {
  margin-bottom: 0;
  color: #d1dee8;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 12px;
}
.contact-actions {
  display: grid;
  gap: 10px;
  min-width: 245px;
}
.secondary.light {
  border-color: #fff;
  color: #fff;
}
.occasion-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 55px;
  padding-bottom: 90px;
}
.occasion-list > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.occasion-list > div:last-child {
  border-bottom: 1px solid var(--line);
}
.occasion-list span {
  color: var(--saffron);
  font-size: 0.8rem;
}
.occasion-list h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin: 0;
}
.booking-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 38px;
}
.booking-card p:not(.kicker) {
  color: var(--muted);
}
.full {
  width: 100%;
  margin-top: 10px;
}
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  padding: 10px 0 90px;
}
.mission {
  margin-top: 45px;
  border-left: 3px solid var(--saffron);
  padding: 8px 0 1px 28px;
}
.leadership {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 42px;
  margin-top: 80px;
}
.leadership article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.leadership article:nth-of-type(2) {
  border-bottom: 1px solid var(--line);
}
.initial {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.leadership h2 {
  margin: 0 0 4px;
}
.leadership article p {
  margin: 0;
  color: var(--muted);
}
.quote {
  position: relative;
  padding: 30px 0 0;
}
.quote span {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 8px;
}
.quote p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  padding-left: 32px;
  margin: 0;
  color: var(--navy);
}
.contact-list {
  display: grid;
  margin-top: 40px;
}
.contact-list a {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}
.contact-list a:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-list a > span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--saffron);
  font-weight: 700;
}
.contact-list strong {
  font-weight: 600;
  overflow-wrap: anywhere;
}
.hours-card {
  margin-top: 80px;
  text-align: left;
  padding: 75px 42px 42px;
}
.hours-card .arch-mark {
  margin: -133px auto 28px;
}
.hours-card h2 {
  color: #fff;
  font-size: 2.1rem;
}
.hours-card > p:not(.kicker) {
  color: #d1dee8;
}
.hours-card .button {
  margin-top: 22px;
  background: var(--saffron);
  border-color: var(--saffron);
  color: #172737;
}
.hours-card .button + .button {
  margin-top: 10px;
}
.canada-showcase,
.instrument-showcase {
  padding: 80px 0;
  background: var(--navy);
  color: white;
}
.instrument-showcase {
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 70px;
}
.showcase-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 36px;
}
.showcase-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 0;
  color: white;
}
.showcase-heading > p {
  margin: 0;
  color: #c7d6e1;
  max-width: 440px;
}
.instrument-showcase .showcase-heading h2 {
  color: var(--navy);
}
.instrument-showcase .showcase-heading > p {
  color: var(--muted);
}
.canada-gallery,
.instrument-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}
.canada-gallery figure,
.instrument-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #092641;
}
.canada-gallery .canada-feature,
.instrument-gallery .instrument-wide {
  grid-row: 1/3;
}
.canada-gallery img,
.instrument-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.35s;
  filter: saturate(0.88) contrast(1.03);
}
.canada-gallery figure:hover img,
.instrument-gallery figure:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}
.canada-gallery figcaption,
.instrument-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 55px 24px 20px;
  background: linear-gradient(transparent, rgba(4, 22, 38, 0.9));
  display: grid;
  color: white;
}
.canada-gallery figcaption span,
.instrument-gallery figcaption span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: #efb253;
}
.canada-gallery figcaption strong,
.instrument-gallery figcaption strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}
.context-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: #aebfcc;
  font-size: 0.74rem;
}
.instrument-gallery {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 285px 285px;
}
.instrument-gallery figure {
  background: #173b59;
}
.instrument-gallery .instrument-wide img {
  filter: sepia(0.15) contrast(1.08);
}
.reviews-section {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.reviews-copy h2 {
  margin: 15px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1;
}
.reviews-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.map-embed {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 14px 14px 0 rgba(217, 137, 27, 0.13);
  background:
    radial-gradient(circle at 20% 25%, rgba(217, 137, 27, 0.18), transparent 32%),
    linear-gradient(145deg, #0b3b61, var(--navy));
}
.map-link-card {
  width: 100%;
  min-height: 360px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #fff;
  text-decoration: none;
  touch-action: manipulation;
}
.map-pin {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--saffron);
  font-size: 3rem;
}
.map-link-card small,
.map-link-card strong,
.map-link-card em {
  display: block;
}
.map-link-card small {
  margin-bottom: 10px;
  color: #efb253;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.map-link-card strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.15;
}
.map-link-card em {
  margin-top: 18px;
  color: #d7e3eb;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
}
footer {
  background: #061f35;
  color: #d2dee8;
  padding: 45px 0 22px;
  border-top: 3px solid var(--gold);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 50px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  background: white;
  border-radius: 50%;
  padding: 3px;
}
.footer-brand p {
  margin: 0;
}
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: white;
}
.footer-brand span {
  color: #9fb1bf;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}
.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.footer-contact {
  display: grid;
  gap: 7px;
}
.footer-contact a {
  color: #d2dee8;
  text-decoration: none;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}
.footer-contact a:hover {
  color: white;
}
.footer-contact a span:first-child {
  color: var(--gold);
  display: inline-block;
  width: 22px;
}
.address-indent {
  margin-left: 26px;
}
.footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.7rem;
  color: #93a7b6;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom details {
  text-align: right;
  max-width: 620px;
}
.footer-bottom summary {
  cursor: pointer;
  color: #b4c3ce;
}
.footer-bottom a {
  color: #b4c3ce;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .site-header {
    height: 82px;
  }
  .logo-frame {
    width: 60px;
    height: 60px;
  }
  .brand-copy strong {
    font-size: 1.15rem;
  }
  .menu-toggle {
    display: grid;
    gap: 5px;
    background: none;
    border: 1px solid var(--line);
    padding: 12px;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgba(8, 45, 77, 0.1);
  }
  .site-nav.open {
    display: block;
  }
  .tab-list {
    display: grid;
  }
  .tab {
    text-align: left;
    width: 100%;
    min-height: 48px;
    touch-action: manipulation;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0 85px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .welcome-card {
    max-width: 620px;
    margin: auto;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .occasion-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .leadership,
  .hours-card {
    margin-top: 30px;
  }
  .split-callout {
    align-items: flex-start;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .canada-gallery,
  .instrument-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 260px;
  }
  .canada-gallery .canada-feature,
  .instrument-gallery .instrument-wide {
    grid-column: 1/3;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .brand-copy {
    display: none;
  }
  h1 {
    font-size: 3.25rem;
  }
  .hero-grid {
    padding-top: 45px;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
    min-height: 56px;
  }
  .hero-actions,
  .contact-actions {
    position: relative;
    z-index: 3;
  }
  .quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .quick-facts div {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
  }
  .quick-facts div:last-child {
    grid-column: span 2;
  }
  .intro-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .split-callout {
    padding: 35px 25px;
    display: grid;
  }
  .occasion-layout {
    gap: 35px;
  }
  .occasion-list h2 {
    font-size: 1.55rem;
  }
  .occasion-list > div {
    grid-template-columns: 42px 1fr;
  }
  .booking-card,
  .leadership {
    padding: 30px 24px;
  }
  .page-intro {
    padding-top: 55px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: grid;
  }
  .footer-bottom details {
    text-align: left;
  }
  .welcome-photo {
    height: 190px;
  }
  .canada-showcase,
  .instrument-showcase {
    padding: 55px 0;
  }
  .reviews-section {
    padding: 55px 0 68px;
  }
  .map-embed,
  .map-link-card {
    min-height: 310px;
  }
  .map-link-card {
    padding: 30px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .map-pin {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }
  .canada-gallery,
  .instrument-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .canada-gallery .canada-feature,
  .instrument-gallery .instrument-wide {
    grid-column: auto;
  }
  .canada-gallery figure,
  .instrument-gallery figure {
    height: 260px;
  }
  .canada-gallery .canada-feature,
  .instrument-gallery .instrument-wide {
    height: 390px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.welcome-photo.painting {
  height: 300px;
  object-position: center 68%;
  filter: saturate(0.9) contrast(1.02);
}
.home-instruments {
  padding: 80px 0;
  background: var(--navy);
  color: #fff;
}
@media (max-width: 600px) {
  .home-instruments {
    padding: 55px 0;
  }
  .welcome-photo.painting {
    height: 260px;
  }
}
