:root {
  --color-bg: #fbf7ee;
  --color-surface: #ffffff;
  --color-text: #333333;
  --color-muted: #666666;
  --color-border: #e4dcd0;
  --color-header: #f5ecd4;
  --color-accent: #6e1111;
  --color-accent-dark: #3d0000;
  --color-accent-deep: #470000;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --container-max: 1080px;
  --container-width: 80%;
  --header-height: 84px;
  --transition: 0.3s ease;
  --font-heading: "Merriweather", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure,
.support-link,
.mobile-nav a,
.mobile-brand strong,
.mobile-brand span {
  margin: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  color: var(--color-text);
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.3125rem;
}

p {
  color: var(--color-muted);
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

.container {
  position: relative;
  width: min(var(--container-max), var(--container-width));
  margin: 0 auto;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
}

.section-heading--center {
  text-align: center;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.65rem;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.site-button:hover {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  transform: translateY(-1px);
}

.site-button--outline {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

.site-button--outline:hover {
  color: var(--color-accent);
  background: #ffffff;
  border-color: #ffffff;
}

.contact-panel .site-button--outline,
.mobile-cta .site-button--outline {
  color: var(--color-accent);
  background: transparent;
  border-color: var(--color-accent);
}

.contact-panel .site-button--outline:hover,
.mobile-cta .site-button--outline:hover {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.site-button--small {
  min-height: 42px;
  padding: 0 1.4rem;
  font-size: 14px;
}

#main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  background: var(--color-header);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition);
}

#main-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
  transition: min-height var(--transition);
}

#main-header.is-scrolled .menu-container {
  min-height: 66px;
}

.logo-container {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-container a {
  text-decoration: none;
}

.text-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.text-brand__name {
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.35vw, 1.34rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111111;
}

.text-brand__tag {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.text-brand--header {
  max-width: 310px;
  padding: 6px 0;
}

#main-header.is-scrolled .text-brand__name {
  font-size: clamp(0.96rem, 1.15vw, 1.18rem);
}

#main-header.is-scrolled .text-brand__tag {
  font-size: 0.68rem;
}

#top-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 24px;
}

#top-menu-nav {
  margin-left: auto;
  margin-right: 6px;
}

#top-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

#top-menu > li {
  position: relative;
}

#top-menu > li > a {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  transition:
    min-height var(--transition),
    color var(--transition);
}

#main-header.is-scrolled #top-menu > li > a {
  min-height: 66px;
}

#top-menu > li > a:hover,
#top-menu > li > a[aria-current="location"] {
  color: var(--color-accent);
}

#top-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  background: var(--color-header);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

#top-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--color-muted);
  white-space: nowrap;
}

#top-menu .sub-menu li a:hover {
  color: var(--color-accent);
  background: rgba(110, 17, 17, 0.05);
}

#top-menu li:hover > .sub-menu,
#top-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--color-header);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.mobile-menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mobile-menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #222222;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(3) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.mobile-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(360px, 100%);
  height: 100vh;
  padding: 24px 22px;
  background: #ffffff;
  box-shadow: -16px 0 30px rgba(0, 0, 0, 0.16);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav-panel.is-open {
  transform: translateX(0);
}

.mobile-nav-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand--text {
  align-items: flex-start;
}

.mobile-brand__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-brand strong {
  display: block;
  color: #222222;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.mobile-brand span {
  display: block;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #333333;
  font-size: 30px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: #222222;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:hover {
  color: var(--color-accent);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #2b201a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  visibility: hidden;
  background-position: 50% 42%;
  background-size: cover;
  opacity: 0;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.hero-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.hero-slide__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 440px;
  padding-top: 92px;
  padding-bottom: 56px;
}

.hero-copy {
  width: min(100%, 920px);
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  padding-bottom: 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.hero-slider__dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.feature-section,
.services-section,
.reviews-section,
.map-section {
  padding: 56px 0 54px;
  background: var(--color-bg);
}

.projects-section,
.contact-section {
  padding: 56px 0 54px;
  background: #ffffff;
}

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

.feature-card,
.service-card,
.review-entry,
.contact-panel,
.map-card {
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.feature-card {
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}

.feature-card__body {
  padding: 28px 30px 30px;
}

.feature-card__body h3 {
  padding-bottom: 14px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.feature-card__body p {
  margin-bottom: 20px;
}

.about-band {
  padding: 30px 0;
  color: #ffffff;
  background: var(--color-accent-dark);
}

.about-band__copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.about-band__copy h2 {
  padding-bottom: 18px;
  color: #ffffff;
}

.about-band__copy p {
  color: rgba(255, 255, 255, 0.92);
}

.about-band__copy p + p {
  margin-top: 16px;
}

.about-band__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.about-band__stats article {
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-band__stats strong {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-band__stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.service-card {
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.service-card__body {
  padding: 22px 24px 24px;
}

.service-card__body h3 {
  padding-bottom: 12px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.service-card__body p {
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 700;
}

.service-link::after {
  content: ">";
  font-size: 12px;
}

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

.project-photo {
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.project-photo--large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.review-entry {
  padding: 26px 26px 24px;
  border-top: 4px solid var(--color-accent);
}

.review-entry__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.review-entry__head strong {
  color: #222222;
  font-size: 1rem;
}

.review-entry__head span {
  color: var(--color-muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.review-entry p {
  margin-bottom: 18px;
}

.review-entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-entry__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(110, 17, 17, 0.08);
  border-radius: 999px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 38px 40px;
  border-top: 4px solid var(--color-accent);
}

.contact-panel__copy h2 {
  padding-bottom: 12px;
}

.contact-panel__copy p {
  max-width: 600px;
}

.contact-panel__links {
  display: grid;
  align-content: center;
  gap: 14px;
}

.support-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  color: #222222;
  font-weight: 700;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.support-link::after {
  content: "Open";
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-card__frame {
  min-height: 0;
  aspect-ratio: 16 / 9;
}


.map-card__frame iframe {
  height: 100%;
}

.map-card__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 22px 24px;
  background: #fff7ee;
}


.map-card__details h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.map-card__details p {
  font-size: 1rem;
}

#main-footer {
  color: #ffffff;
}

.footer-top {
  background: var(--color-accent);
}

.footer-top__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 32px 0 28px;
}

.footer-column h2 {
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 1.75rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.92);
}

.footer-column--center {
  text-align: center;
}

.footer-column--center img {
  width: 180px;
  max-width: 100%;
  margin: 0 auto 14px;
}

.footer-column--right {
  text-align: right;
}

.footer-branding .text-brand {
  align-items: center;
}

.footer-branding .text-brand__name,
.footer-branding .text-brand__tag {
  color: #ffffff;
}

.footer-branding .text-brand__tag {
  opacity: 0.75;
}

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

.footer-links a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  background: var(--color-accent-dark);
}

.footer-bottom .container {
  padding: 10px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 210;
  display: none;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.mobile-cta .site-button {
  flex: 1 1 0;
}

@media only screen and (min-width: 981px) and (max-width: 1440px) {
  #top-navigation {
    padding-right: 34px;
  }

  #top-menu {
    gap: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media only screen and (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(1080px, calc(100% - 44px));
  }

  main section[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
  }

  #top-menu-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  #top-navigation {
    padding-right: 0;
  }

  .menu-container {
    min-height: var(--header-height);
  }

  #main-header.is-scrolled .menu-container {
    min-height: var(--header-height);
  }

  #logo {
    width: 160px;
    min-width: 0;
    max-height: 50px;
  }

  #main-header.is-scrolled #logo {
    max-height: 50px;
  }

  .hero-slide__inner {
    min-height: 420px;
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    max-width: 700px;
    font-size: 17px;
  }

  .feature-grid,
  .contact-panel,
  .map-card {
    grid-template-columns: 1fr;
  }

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

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

  .reviews-list {
    grid-template-columns: 1fr;
  }

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

  .footer-top__grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .footer-column--right {
    text-align: center;
  }

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

  .mobile-nav-panel {
    width: min(332px, calc(100% - 12px));
    padding: 20px 18px 26px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-cta .site-button {
    min-height: 62px;
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }


  body {
    padding-bottom: 94px;
    font-size: 15px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .mobile-nav-panel {
    width: min(308px, calc(100% - 10px));
    padding: 18px 16px 24px;
  }

  .hero-slide__inner {
    min-height: 320px;
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    padding-bottom: 10px;
    font-size: 13px;
  }

  .hero-copy h1 {
    padding-bottom: 16px;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .site-button {
    flex: 1 1 100%;
  }

  .feature-section,
  .services-section,
  .reviews-section,
  .map-section,
  .projects-section,
  .contact-section {
    padding: 40px 0;
  }

  .feature-grid,
  .services-grid,
  .projects-gallery,
  .about-band__stats,
  .footer-top__grid {
    gap: 18px;
  }

  .services-grid,
  .projects-gallery {
    grid-template-columns: 1fr;
  }

  .project-photo--large {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .feature-card__body,
  .service-card__body,
  .review-entry,
  .contact-panel,
  .map-card__details {
    padding: 22px;
  }

  .contact-panel {
    gap: 20px;
  }

  .review-entry__head {
    flex-direction: column;
    gap: 6px;
  }

  .review-entry__head span {
    white-space: normal;
  }

  .support-link {
    gap: 12px;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    align-items: flex-start;
  }

  .map-card__frame {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about-band {
    padding: 40px 0;
  }

  .footer-top__grid {
    padding: 24px 0 20px;
  }

  .footer-column h2 {
    font-size: 1.45rem;
  }

  .footer-links a {
    font-size: 15px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media only screen and (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .logo-container {
    max-width: 74%;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .about-band__stats {
    grid-template-columns: 1fr;
  }

  .site-button {
    width: 100%;
  }

  .feature-card__body h3 {
    font-size: 19px;
  }
}


.map-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
