@charset "UTF-8";
.hero-slider .slide-content {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.lightbox-dialog.lightbox__stage {
  display: grid;
}


body {
  min-width: 0;
}

/* Fixed contact integration */
.fixed-contact {
  display: block;
  width: 54px;
  height: 54px;
  bottom: max(24px, env(safe-area-inset-bottom));
}

.fixed-contact-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: left bottom;
}

.fixed-contact.is-open .fixed-contact-menu {
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fixed-contact-toggle {
  padding: 0;
}

.fixed-contact-toggle-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
}

.contact-launcher-icon,
.fixed-channel > .icon-wrap svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-launcher-icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.contact-launcher-icon--close {
  display: none;
}

.fixed-contact.is-open .contact-launcher-icon--chat {
  display: none;
}

.fixed-contact.is-open .contact-launcher-icon--close {
  display: block;
}

.fixed-channel > .icon-wrap {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.fixed-channel > .icon-wrap::before {
  content: none;
}

.fixed-channel > .icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.fixed-channel:hover > .icon-wrap,
.fixed-channel:focus-visible > .icon-wrap {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 760px) {
  .fixed-contact {
    width: 50px;
    height: 50px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
  }
}

/* Contact information cards */
.contact-details-section .section-head {
  max-width: 760px;
  margin-inline: auto;
}

.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 34px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-card:hover {
  border-color: rgba(228, 29, 37, 0.24);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.contact-card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(228, 29, 37, 0.3);
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.contact-card-icon svg,
.contact-card-entry small svg,
.contact-card-button svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.contact-card-entry {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card-entry small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.contact-card-entry small svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.contact-card-entry strong,
.contact-card-value {
  display: block;
  margin: 8px 0 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-card-value:hover,
.contact-card-value:focus-visible {
  color: var(--color-primary);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-card-link span {
  transition: transform 180ms ease;
}

.contact-card-link:hover span,
.contact-card-link:focus-visible span {
  transform: translateX(3px);
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.contact-card-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-card-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

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

.contact-card-button--primary {
  background: var(--color-primary);
  color: #fff;
}

.contact-card-button--primary:hover,
.contact-card-button--primary:focus-visible {
  background: var(--color-primary-dark);
  color: #fff;
}

.contact-card-button--outline {
  background: #fff;
  color: var(--color-primary);
}

.contact-card-button--outline:hover,
.contact-card-button--outline:focus-visible {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.contact-card-entry--hours {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

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

  .contact-card {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .contact-card-actions {
    flex-direction: column;
  }

  .contact-card-button {
    width: 100%;
  }
}

/* Global layout and icon repairs */
.form-row > .form-group + .form-group {
  margin-top: 0;
}

.page-hero > .container.page-hero-content {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.page-hero-content > h1 {
  max-width: 850px;
}

.header-cta .phone-icon,
.header-cta .header-phone-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 0;
  border-radius: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transform: none;
}

.service-card {
  isolation: isolate;
}

.service-card .card-image {
  z-index: 0;
}

.service-card .card-body {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  overflow: visible;
}

.service-card .service-icon {
  position: absolute;
  z-index: 2;
  top: -23px;
  left: 24px;
  box-sizing: border-box;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin: 0;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--color-primary-soft);
  box-shadow: 0 5px 14px rgba(31, 31, 31, 0.08);
}

.service-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sidebar-card__head {
  display: block;
  padding: 18px 20px;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-card__head .eyebrow {
  margin: 0 0 7px;
}

.sidebar-card__head .eyebrow:last-child {
  margin-bottom: 0;
}

.sidebar-card__head h2,
.sidebar-card__head h3 {
  padding: 0;
  margin: 0;
  border: 0;
}

.social-links a {
  overflow: hidden;
}

.social-links a svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-list li::before,
.check-list li::before {
  content: "\2713";
  font-family: Arial, sans-serif;
}

.sidebar-list a::after {
  content: "\2192";
}

.accordion-trigger::after {
  content: "";
  background-color: #fff;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center, center;
  background-size: 10px 2px, 2px 10px;
  background-repeat: no-repeat;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "";
  background-color: var(--color-primary);
  background-image: linear-gradient(#fff, #fff);
  background-position: center;
  background-size: 10px 2px;
  background-repeat: no-repeat;
  transform: none;
}

.lightbox__thumb--video::after {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  content: "";
  font-size: 0;
}

.fixed-channel > span::before,
.fixed-channel > .icon-wrap::before {
  content: none;
}

@media (max-width: 760px) {
  .page-hero > .container.page-hero-content {
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  }
}
/* Fixed contact footer clearance */
.site-footer .footer-bottom {
  padding-left: 36px;
}

@media (max-width: 760px) {
  .site-footer .footer-bottom {
    padding-left: 56px;
  }
}
/* Gallery and lightbox redesign */
.gallery-browser {
  margin-top: clamp(28px, 4vw, 48px);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.gallery-filter {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.gallery-filter svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  border-color: rgba(228, 29, 37, 0.42);
  color: var(--color-primary);
}

.gallery-filter.is-active,
.gallery-filter[aria-pressed="true"] {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(228, 29, 37, 0.2);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(10px, 1.25vw, 18px);
}

.gallery-item,
.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 5) {
  grid-column: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #ececec;
  box-shadow: 0 4px 18px rgba(20, 20, 20, 0.08);
}

.gallery-item img,
.gallery-item video,
.gallery-item:nth-child(6n + 1) img,
.gallery-item:nth-child(6n + 5) img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.7));
  opacity: 0.16;
  transition: opacity var(--ease);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.045);
}

.gallery-caption {
  right: 16px;
  bottom: 14px;
  left: 16px;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(228, 29, 37, 0.38);
  outline-offset: 3px;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(10px, 1.25vw, 18px);
}

.gallery-preview-item,
.gallery-preview-item.featured {
  position: relative;
  min-width: 0;
  overflow: hidden;
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #ececec;
  color: #fff;
  box-shadow: 0 4px 18px rgba(20, 20, 20, 0.08);
}

.gallery-preview-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview-item::after {
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.7));
  opacity: 0.24;
  transition: opacity var(--ease);
}

.gallery-preview-item span {
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}

.gallery-preview-item:hover::after,
.gallery-preview-item:focus-visible::after {
  opacity: 1;
}

.gallery-preview-item:hover span,
.gallery-preview-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-preview-item:focus-visible {
  outline: 3px solid rgba(228, 29, 37, 0.38);
  outline-offset: 3px;
}

.gallery-item .play-badge {
  width: 54px;
  height: 54px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lightbox {
  grid-template-rows: minmax(0, 1fr) 88px;
  padding: 0;
  background: rgba(7, 7, 7, 0.975);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.lightbox__media {
  position: absolute;
  inset: 72px clamp(86px, 8vw, 150px) 20px;
  display: flex;
  width: auto;
  height: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
}

.lightbox__media img,
.lightbox__media video,
.lightbox__media iframe {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border: 0;
  border-radius: 4px;
  background: #000;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox__media img {
  -webkit-user-drag: none;
  user-select: none;
}

.lightbox__media iframe {
  width: min(100%, 1180px);
  aspect-ratio: 16 / 9;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  z-index: 5;
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.lightbox__close {
  top: 18px;
  right: 20px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

.lightbox__counter {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 24px;
  display: inline-flex;
  min-width: 72px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.lightbox__meta,
.lightbox__caption {
  display: none;
}

.lightbox__thumbs-wrap {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 10px clamp(16px, 3vw, 42px) 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.54);
}

.lightbox__thumbs {
  width: fit-content;
  max-width: min(100%, 1100px);
  gap: 8px;
  padding: 2px 2px 5px;
  scrollbar-width: none;
}

.lightbox__thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox__thumb {
  width: 76px;
  height: 52px;
  flex-basis: 76px;
  border-radius: 4px;
  opacity: 0.48;
}

.lightbox__thumb.is-active,
.lightbox__thumb[aria-current="true"] {
  border-color: var(--color-primary);
  opacity: 1;
}

.lightbox__thumb[hidden],
.lightbox__prev[hidden],
.lightbox__next[hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .gallery-grid,
  .gallery-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lightbox {
    grid-template-rows: minmax(0, 1fr) 66px;
    padding: 0;
  }

  .lightbox__stage {
    padding: 0;
  }

  .lightbox__media {
    inset: 62px 10px 70px;
  }

  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
  }

  .lightbox__prev,
  .lightbox__next {
    top: auto;
    bottom: 12px;
    left: auto;
    transform: none;
  }

  .lightbox__prev {
    right: 60px;
  }

  .lightbox__next {
    right: 10px;
  }

  .lightbox__stage:has(> .lightbox__prev[hidden]) .lightbox__media {
    bottom: 12px;
  }

  .lightbox__counter {
    top: 14px;
    left: 12px;
    min-width: 64px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .lightbox__thumbs-wrap {
    padding: 8px 10px 9px;
  }

  .lightbox__thumbs {
    gap: 6px;
    padding-bottom: 3px;
  }

  .lightbox__thumb {
    width: 64px;
    height: 44px;
    flex-basis: 64px;
  }
}

@media (max-width: 560px) {
  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 6px;
    overflow: visible;
    padding: 0;
  }

  .gallery-filter {
    min-width: 0;
    min-height: 44px;
    gap: 5px;
    padding: 8px 5px;
    font-size: 0.68rem;
  }

  .gallery-filter svg {
    width: 15px;
    height: 15px;
  }

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

@media (max-height: 520px) {
  .lightbox {
    grid-template-rows: minmax(0, 1fr);
  }

  .lightbox__media {
    inset: 58px clamp(56px, 8vw, 90px) 10px;
  }

  .lightbox__thumbs-wrap {
    display: none;
  }
}

@media (max-width: 760px) and (max-height: 520px) {
  .lightbox__media {
    inset: 58px 10px 66px;
  }

  .lightbox__stage:has(> .lightbox__prev[hidden]) .lightbox__media {
    bottom: 10px;
  }
}

/* Smart header, swipe surfaces and mobile navigation */
.site-header {
  transition: top 240ms ease, box-shadow 240ms ease;
}

.site-header.is-header-hidden:not(.is-menu-open) {
  top: calc(-1 * var(--header-height));
}

.site-header.is-menu-open {
  z-index: 1300;
  top: 0;
}

.header-mobile-actions,
.mobile-nav-footer {
  display: none;
}

.hero-slider,
.lightbox__media {
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.hero-slider.is-dragging,
.lightbox__media.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.hero-slider .slide::after {
  content: none;
}

body.is-mobile-menu-open .fixed-contact {
  display: none;
}

@media (min-width: 1101px) {
  .site-header .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .site-header .brand-mark i {
    height: 32px;
  }

  .site-header .brand-mark b {
    width: 32px;
  }

  .site-header .brand-copy strong {
    font-size: 1.44rem;
  }

  .site-header .brand-copy small {
    font-size: 0.59rem;
  }

  .site-header .brand img {
    width: auto;
    max-width: 240px;
    height: 57px;
  }
}

@media (max-width: 1100px) {
  .site-header .brand {
    margin-right: auto;
  }

  .header-mobile-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 2px;
  }

  .header-mobile-phone {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--color-primary);
    transition: background-color var(--ease), color var(--ease);
  }

  .header-mobile-phone:hover,
  .header-mobile-phone:focus-visible {
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
  }

  .header-mobile-phone svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
  }

  .site-nav {
    right: 0;
    left: auto;
    display: flex;
    width: min(88vw, 390px);
    height: calc(100dvh - var(--header-height));
    max-height: none;
    flex-direction: column;
    padding: 20px 28px max(18px, env(safe-area-inset-bottom));
  }

  .site-nav > ul {
    width: 100%;
    padding: 0 0 18px;
    margin: 0;
  }

  .mobile-nav-footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
  }

  .mobile-nav-footer > span {
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-nav-socials {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .site-nav .mobile-nav-socials a {
    display: grid;
    width: 42px;
    height: 42px;
    min-height: 42px;
    flex: 0 0 42px;
    place-items: center;
    place-content: center;
    align-content: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(228, 29, 37, 0.28);
    border-radius: 50%;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    line-height: 0;
  }

  .site-nav .mobile-nav-socials a::after {
    content: none;
  }

  .site-nav .mobile-nav-socials a[aria-label="Instagram"] {
    border: 0;
    background: radial-gradient(circle at 30% 110%, #fdf497 0 6%, #fd5949 34%, #d6249f 62%, #285aeb 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(214, 36, 159, 0.24);
  }

  .mobile-nav-socials svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-nav-socials .mobile-instagram-icon {
    fill: currentColor;
    stroke: none;
  }
}

@media (max-width: 760px) {
  .site-header .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .site-header .brand-copy strong {
    font-size: 1.1rem;
  }

  .site-header .brand-copy small {
    font-size: 0.49rem;
  }

  .site-header .brand img {
    width: auto;
    max-width: 180px;
    height: 46px;
  }

  .hero-slider .slide {
    background-position: center 35%;
  }

  .hero-slider .slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 9, 8, 0.06) 0%,
      rgba(10, 9, 8, 0.14) 34%,
      rgba(10, 9, 8, 0.56) 66%,
      rgba(10, 9, 8, 0.88) 100%
    );
  }

  .hero-slider .slide-content p {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}