:root {
  --ink: #171717;
  --muted: #62676b;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #ded9cf;
  --red: #b51f2b;
  --red-dark: #7f111d;
  --steel: #24576d;
  --green: #25704f;
  --gold: #b8892e;
  --charcoal: #242828;
  --shadow: 0 18px 40px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(247, 246, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 118px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--red);
}

.nav-menu {
  position: relative;
  padding: 14px 0;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-menu:hover .submenu,
.nav-menu:focus-within .submenu {
  display: grid;
}

.submenu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
}

.submenu a:hover {
  background: var(--paper);
  color: var(--red);
}

.hero-slider {
  position: relative;
  min-height: min(760px, 78vh);
  overflow: hidden;
  background: #111;
  color: var(--white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: inherit;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px) clamp(78px, 10vw, 110px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.72) 34%, rgba(9, 9, 9, 0.18) 72%),
    var(--slide-image) center / cover no-repeat;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(760px, 92vw);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy h1,
.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.slider-controls {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.slider-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--white);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.band,
.page-hero,
.catalog-shell,
.contact-layout,
.service-detail,
.cta-strip {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(36, 40, 40, 0.93), rgba(36, 40, 40, 0.72)),
    linear-gradient(135deg, #242828, #24576d);
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.intro-grid,
.split,
.cta-strip,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.trust-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 26%, rgba(181, 31, 43, 0.26), transparent 34%),
    linear-gradient(135deg, #141819 0%, #242828 54%, #183748 100%);
}

.trust-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--steel));
}

.trust-copy,
.trust-panel {
  position: relative;
  z-index: 1;
}

.trust-copy h2 {
  max-width: 760px;
}

.trust-panel {
  max-width: 680px;
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.trust-panel p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-metrics strong {
  color: var(--gold);
  font-size: 1rem;
}

.text-link {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}

.text-link:hover {
  border-bottom-color: var(--gold);
}

.intro-grid p,
.copy-stack p,
.feature-columns p,
.service-detail li,
.contact-panel p,
.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.maintenance-section {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.maintenance-header {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.maintenance-header h2 {
  max-width: 780px;
}

.maintenance-header p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.maintenance-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.maintenance-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(238, 236, 230, 0.95)),
    #eeece6;
}

.maintenance-card.featured img {
  object-fit: cover;
  padding: 0;
}

.maintenance-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.maintenance-card span {
  color: var(--red);
  font-weight: 900;
}

.maintenance-card p {
  color: var(--muted);
  line-height: 1.55;
}

.maintenance-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #481016);
}

.maintenance-card.featured span,
.maintenance-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-columns article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
}

.feature-columns span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 15, 16, 0.88) 0%, rgba(17, 28, 35, 0.76) 42%, rgba(17, 28, 35, 0.5) 100%),
    url("assets/bg-extinrod-operacion.jpg") center center / cover no-repeat,
    var(--charcoal);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 30%, rgba(181, 31, 43, 0.3), transparent 34%);
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.solutions-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.section-kicker {
  max-width: 560px;
}

.section-kicker p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.showcase-card {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  min-height: 190px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eeece6;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.74));
}

.showcase-card img {
  position: absolute;
  inset: 16px 16px 42px;
  width: calc(100% - 32px);
  height: calc(100% - 66px);
  object-fit: contain;
  transition: transform 180ms ease;
}

.showcase-card:hover img {
  transform: translateY(-4px) scale(1.03);
}

.showcase-card span {
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.showcase-card.large {
  grid-row: span 2;
}

.showcase-card.wide {
  grid-column: span 2;
}

.cta-strip .button {
  justify-self: end;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats article {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: var(--white);
}

.stats strong {
  color: var(--red);
  font-size: clamp(2rem, 5vw, 4rem);
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  scroll-margin-top: 90px;
}

.service-detail:nth-of-type(odd) {
  background: var(--paper);
}

.service-detail ul {
  margin: 0;
  padding-left: 20px;
}

.service-detail li + li {
  margin-top: 12px;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.commerce-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.commerce-toolbar h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.cart-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.cart-button span {
  min-width: 26px;
  min-height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.visual-category {
  display: grid;
  grid-template-rows: 118px auto auto;
  gap: 8px;
  min-height: 210px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.08);
  cursor: pointer;
}

.visual-category:hover {
  border-color: rgba(181, 31, 43, 0.45);
}

.visual-category img {
  width: 100%;
  height: 118px;
  object-fit: contain;
}

.visual-category span {
  color: var(--red);
  font-weight: 900;
}

.visual-category small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.category-nav {
  position: sticky;
  top: 88px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.category-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.category-button.active {
  color: var(--white);
  border-color: var(--steel);
  background: var(--steel);
}

.search-box {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(23, 23, 23, 0.12);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  background: #f0eee8;
}

.product-media img {
  width: 86%;
  height: 150px;
  object-fit: contain;
}

.product-body {
  display: grid;
  gap: 11px;
  padding: 16px;
}

.product-meta,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.category-tag,
.stock {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
}

.stock {
  background: var(--green);
}

.stock.out {
  background: var(--muted);
}

.price-row {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.price {
  color: var(--red);
  font-size: 1.16rem;
  font-weight: 900;
}

.detail-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(181, 31, 43, 0.2);
  border-radius: 6px;
  background: rgba(181, 31, 43, 0.08);
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.detail-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
  background: rgba(10, 15, 18, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.quote-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.quote-card {
  width: min(440px, 100%);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  box-shadow: -20px 0 46px rgba(0, 0, 0, 0.18);
}

.quote-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.quote-head h2 {
  margin: 0;
}

.icon-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.cart-actions {
  display: grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-weight: 900;
}

.cart-actions button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(4, minmax(140px, 1fr));
  gap: 28px;
  padding: clamp(34px, 6vw, 62px) clamp(18px, 5vw, 64px) 22px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 88% 0%, rgba(181, 31, 43, 0.22), transparent 34%),
    linear-gradient(135deg, #151818, #242828);
  font-size: 0.9rem;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand img {
  width: 138px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .commerce-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-button {
    width: 100%;
    justify-content: center;
  }

  .submenu {
    position: static;
    margin-top: 8px;
  }

  .intro-grid,
  .split,
  .cta-strip,
  .contact-layout,
  .service-detail,
  .catalog-shell,
  .solutions-showcase {
    grid-template-columns: 1fr;
  }

  .feature-columns,
  .stats,
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-header {
    grid-template-columns: 1fr;
  }

  .maintenance-card {
    min-height: auto;
  }

  .category-nav {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .category-visuals {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card.large,
  .showcase-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .cta-strip .button {
    justify-self: start;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-slide {
    align-items: end;
    padding-top: 220px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.22) 0%, rgba(9, 9, 9, 0.58) 42%, rgba(9, 9, 9, 0.95) 78%),
      var(--slide-image) center top / auto 52% no-repeat,
      #111;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 4rem);
    line-height: 1;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .slider-controls {
    bottom: 16px;
  }

  .slider-dot {
    width: 24px;
  }

  .quote-card {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
