@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --color-hero-bg: #ffe381;
  --color-button: #e35e44;
  --color-section: #61e6d7;
  --color-mesa: #362c2a;
  --color-cloud: #ffffff;
  --color-dark: #1a1412;
  --color-text-light: rgba(54, 44, 42, 0.7);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius: 16px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body.home.blog.logged-in.admin-bar.wp-custom-logo.wp-theme-shop-local-updated.customize-support{
  background:url('http://abqshop.com/wp-content/uploads/2025/11/ShopLocalVendingMachineArt_Version1_Small_Lolo-scaled.png');
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
/*   background: var(--color-cloud); */
  background:url('http://abqshop.com/wp-content/uploads/2025/11/ShopLocalVendingMachineArt_Version1_Small_Lolo-scaled.png');
  color: var(--color-mesa);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.about-section__title, .about-section__content, .spotlight-section__intro h2, .spotlight-section__intro p, .spotlight-card__name, .contact-section__title, .contact-section__subtitle, .footer__copyright p, .about-section__content{
  color: var(--color-cloud) !important;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Header */
.site-header {
/*   background: rgba(255, 255, 255, 0.98); */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(54, 44, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.wrapper.header__inner .branding {
    width: 120px;
    margin: 0 auto;
}
.branding__logo img {
  max-height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.branding__logo:hover img {
  transform: scale(1.05);
}

.site-title {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--color-mesa);
  letter-spacing: -0.02em;
}
section.cta-band, section.subscribe-section {
    display: none;
}
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-mesa);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-button);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-button);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header__cta {
  background: var(--color-button);
  color: var(--color-cloud);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(227, 94, 68, 0.25);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 94, 68, 0.35);
  opacity: 1;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
	z-index:999;
}

/* Hero Section */
.hero {
/*   background: var(--color-hero-bg); */
  padding: clamp(6rem, 15vw, 10rem) 2rem;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__background,
.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlider 15s infinite;
}

.hero__slide:nth-child(1) {
  animation-delay: 0s;
}

.hero__slide:nth-child(2) {
  animation-delay: 5s;
}

.hero__slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes heroSlider {
  0%, 30% {
    opacity: 1;
  }
  33.33%, 100% {
    opacity: 0;
  }
}

.hero__overlay {
/*   position: absolute; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 44, 42, 0.7) 0%, rgba(26, 20, 18, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0 0 2rem;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero__copy {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero__cta {
  display: inline-block;
  background: var(--color-button);
  color: var(--color-cloud);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(227, 94, 68, 0.3);
}

.hero__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(227, 94, 68, 0.4);
  opacity: 1;
}

/* About Section */
.about-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
/*   background: var(--color-cloud); */
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-section__text {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100% !important;
}

.about-section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section__subtitle {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-mesa);
  line-height: 1.4;
}

.about-section__content {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--color-text-light);
}

.about-section__content p {
  margin: 0 0 1.5rem;
}

.about-section__image-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-section__image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about-section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Spotlight Section */
.spotlight-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
/*   background: var(--color-section); */
}

.spotlight-section__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.spotlight-section__intro h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-mesa);
  line-height: 1.2;
}

.spotlight-section__intro p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin: 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.spotlight-grid--1col { grid-template-columns: 1fr; }
.spotlight-grid--2col { grid-template-columns: repeat(2, 1fr); }
.spotlight-grid--3col { grid-template-columns: repeat(3, 1fr); }
.spotlight-grid--4col { grid-template-columns: repeat(4, 1fr); }
.spotlight-grid--5col { grid-template-columns: repeat(5, 1fr); }
.spotlight-grid--6col { grid-template-columns: repeat(6, 1fr); }

.spotlight-card {
  background: var(--color-cloud);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(54, 44, 42, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
}

.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-button);
}

.spotlight-card__logo {
  max-height: 110px;
  max-width: 100%;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: grayscale(20%);
}

.spotlight-card:hover .spotlight-card__logo {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.spotlight-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-mesa);
  margin: 0;
}

.spotlight-card__name a {
  color: var(--color-mesa);
  transition: color 0.3s ease;
}

.spotlight-card__name a:hover {
  color: var(--color-button);
}

/* Contact Section */
.contact-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
/*   background: var(--color-cloud); */
}

.contact-section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-mesa);
  line-height: 1.2;
}

.contact-section__subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(54, 44, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-form__message {
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form__message--success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.contact-form__message--error {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.contact-form__message--error ul {
  margin: 0.75rem 0 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0rem;
}

.contact-form__field {
  margin-bottom: 2rem;
}

.contact-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-mesa);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.contact-form__label .required {
  color: var(--color-button);
  margin-left: 0.25rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(54, 44, 42, 0.12);
  border-radius: var(--radius-sm);
  background: var(--color-cloud);
  color: var(--color-mesa);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-button);
  box-shadow: 0 0 0 4px rgba(227, 94, 68, 0.1);
  background: var(--color-cloud);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.contact-form__submit {
  text-align: center;
  margin-top: 2.5rem;
}

.contact-form__btn {
  background: var(--color-button);
  color: var(--color-cloud);
  padding: 1.25rem 4rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(227, 94, 68, 0.3);
}

.contact-form__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(227, 94, 68, 0.4);
}

.contact-form__btn:active {
  transform: translateY(-1px);
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--color-mesa) 0%, var(--color-dark) 100%);
  color: var(--color-cloud);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  position: relative;
  overflow: hidden;
}

.cta-band__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.cta-band__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 44, 42, 0.8) 0%, rgba(26, 20, 18, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(227, 94, 68, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-band .wrapper {
  position: relative;
  z-index: 2;
}

.cta-band__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-cloud);
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.cta-band p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-button);
  color: var(--color-cloud);
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(227, 94, 68, 0.3);
  position: relative;
  z-index: 2;
}

.cta-band__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(227, 94, 68, 0.4);
  opacity: 1;
}

/* Subscribe Section */
.subscribe-section {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 230, 215, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.subscribe-section__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.subscribe-section__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-mesa);
  line-height: 1.2;
}

.subscribe-section__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form {
  margin-top: 2rem;
}

.subscribe-form__message {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: slideDown 0.4s ease;
}

.subscribe-form__message--success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.subscribe-form__message--error {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.subscribe-form__group {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-cloud);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(54, 44, 42, 0.08);
  transition: var(--transition);
}

.subscribe-form__group:focus-within {
  border-color: var(--color-button);
  box-shadow: 0 8px 24px rgba(227, 94, 68, 0.2);
}

.subscribe-form__input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--color-mesa);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  border-radius: 50px;
}

.subscribe-form__input::placeholder {
  color: rgba(54, 44, 42, 0.5);
}

.subscribe-form__btn {
  background: var(--color-button);
  color: var(--color-cloud);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(227, 94, 68, 0.3);
}

.subscribe-form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 94, 68, 0.4);
}

.subscribe-form__btn:active {
  transform: translateY(0);
}

/* Footer */
.site-footer {
/*   background: var(--color-dark); */
  color: var(--color-cloud);
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__branding {
  display: flex;
  align-items: center;
}

.footer__logo img {
  max-height: 60px;
  width: auto;
/*   filter: brightness(0) invert(1); */
  transition: transform 0.3s ease;
}

.footer__logo:hover img {
  transform: scale(1.05);
}

.footer__site-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--color-cloud);
  letter-spacing: -0.02em;
}

.footer__navigation {
  display: flex;
  justify-content: flex-end;
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-button);
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: var(--color-cloud);
}

.footer-menu a:hover::after {
  width: 100%;
}

.footer__copyright {
  text-align: center;
  padding-top: 2rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer__copyright p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 1.5rem;
  }

  .wrapper {
    padding: 0 1.5rem;
  }

  .about-section__inner {
    gap: 3.5rem;
  }

  .spotlight-grid--4col,
  .spotlight-grid--5col,
  .spotlight-grid--6col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header__inner {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
  }

  .main-navigation {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-menu {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .header__cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 75vh;
    padding: 4rem 1rem;
  }

  .wrapper {
    padding: 0 1rem;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-section__image-wrapper {
    order: -1;
  }

  .spotlight-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .spotlight-grid--2col,
  .spotlight-grid--3col,
  .spotlight-grid--4col,
  .spotlight-grid--5col,
  .spotlight-grid--6col {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }

  .contact-form {
    padding: 2.5rem 2rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-section,
  .spotlight-section,
  .contact-section {
    padding: 4rem 0;
  }
}

@media (max-width: 640px) {
  .nav-menu {
    gap: 1.25rem;
    font-size: 0.9rem;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .spotlight-grid--2col,
  .spotlight-grid--3col,
  .spotlight-grid--4col,
  .spotlight-grid--5col,
  .spotlight-grid--6col {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .cta-band {
    padding: 4rem 1rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer__navigation {
    justify-content: center;
  }

  .footer-menu {
    justify-content: center;
    gap: 1.5rem;
  }

  .subscribe-section {
    padding: 4rem 1rem;
  }

  .subscribe-form__group {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 1rem;
  }

  .subscribe-form__input {
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
  }

  .subscribe-form__btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }
}
