:root {
  --ink: #17202a;
  --muted: #596772;
  --light: #eef5f2;
  --cream: #f7faf8;
  --paper: #ffffff;
  --gold: #f6b82e;
  --gold-dark: #a96b00;
  --gold-text: #a06400;
  --teal: #137c68;
  --teal-dark: #0d5f50;
  --clay: #ef6a4c;
  --border: #d9e4df;
  --shadow: 0 22px 65px rgba(23, 32, 42, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  z-index: 100;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 248, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 32, 42, 0.1);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: min(320px, 42vw);
  height: auto;
}
.footer-logo {
  width: min(280px, 60vw);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: white; box-shadow: 0 14px 28px rgba(19, 124, 104, 0.22); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: white; color: var(--ink); border-color: var(--border); }
.btn-small { min-height: 40px; padding: 0 16px; background: var(--ink); color: white; }
.btn.full { width: 100%; }
.hero {
  position: relative;
  padding: 96px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(246, 184, 46, 0.28), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(76, 168, 216, 0.18), transparent 32%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 220px;
  background: #e7f1ed;
  transform: rotate(-2deg);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-text);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}
h3 { line-height: 1.15; letter-spacing: -0.03em; }
.hero-lede {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 670px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  font-weight: 800;
  color: #44515b;
  font-size: 0.88rem;
}
.trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal);
  font-weight: 900;
}

.hero-card {
  position: relative;
  border-radius: 34px;
  padding: 14px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.85);
}
.logo-strip {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  background: var(--ink);
  color: white;
}
.logo-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 900;
  opacity: 0.92;
}

.section { padding: 92px 0; }
.section-alt { background: #edf5f2; }
.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-heading.compact { max-width: 660px; margin-bottom: 34px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 38px rgba(23,32,42,0.07);
}
.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff0d2;
  color: var(--clay);
  margin-bottom: 18px;
}
.service-card .icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); }
.service-card-link {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card-link:hover,
.service-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(19, 124, 104, 0.48);
  box-shadow: 0 22px 46px rgba(23,32,42,0.12);
}
.service-card-link:focus-visible {
  outline: 3px solid rgba(19, 124, 104, 0.28);
  outline-offset: 3px;
}
.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-weight: 900;
}
ul { padding-left: 20px; margin-bottom: 0; color: #44515b; font-weight: 650; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps article {
  position: relative;
  padding: 30px;
  border: 1px dashed #c8d7d1;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
}
.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}
.steps p { color: var(--muted); margin-bottom: 0; }

.quote-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(246, 184, 46, 0.24), transparent 26%),
    linear-gradient(135deg, #0f5a4e 0%, #17202a 100%);
  color: white;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}
.quote-copy p:not(.eyebrow) { color: rgba(255,255,255,0.78); font-size: 1.08rem; }
.quote-form {
  background: white;
  color: var(--ink);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.name-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label, legend { font-weight: 900; font-size: 0.92rem; color: #2e3944; }
input, select, textarea {
  width: 100%;
  border: 1px solid #c8d7d1;
  border-radius: 14px;
  padding: 13px 14px;
  margin-top: 8px;
  background: #f7faf8;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(19,124,104,0.12);
}
fieldset {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  margin: 0 0 16px;
}
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 800; }
.form-status.error { color: #ff8d88; }
.form-status.success { color: #84f0d4; }
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.service-area-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.service-area-grid p { color: var(--muted); font-size: 1.08rem; }
.area-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: white;
  border-radius: 26px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 16px 38px rgba(23,32,42,0.06);
}
.area-card span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #e7f1ed;
  font-weight: 900;
}

.faq-wrap { max-width: 880px; }
.faq-list { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; font-size: 1.05rem; }
details p { color: var(--muted); margin: 14px 0 0; }

.site-footer {
  background: var(--ink);
  color: white;
  padding: 58px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}
.footer-grid p, .footer-grid span, .footer-grid small { color: rgba(255,255,255,0.72); }
.footer-grid h3 { margin-bottom: 10px; }
.footer-grid a:not(.brand) { display: block; color: rgba(255,255,255,0.82); margin: 7px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.floating-cta {
  display: none;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 40;
  min-height: 52px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  text-align: center;
  padding: 14px 20px;
  box-shadow: 0 14px 30px rgba(23,32,42,0.28);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 700px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-links .btn { margin-top: 8px; }
  .hero { padding-top: 58px; }
  .quote-grid, .service-area-grid { grid-template-columns: 1fr; }
  .card-grid.three, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 68px 0; }
  .brand-logo { width: min(260px, 62vw); }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: 100%; justify-content: center; }
  .form-row.two { grid-template-columns: 1fr; }
  .quote-form { padding: 22px; border-radius: 24px; }
  .logo-strip-inner { justify-content: center; }
  .footer-bottom { flex-direction: column; }
  .floating-cta { display: block; }
  body { padding-bottom: 72px; }
}


/* V5 layout revisions */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: rgba(247, 250, 248, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 32, 42, 0.1);
}
.nav {
  min-height: 62px;
  gap: 18px;
}
.brand-logo {
  width: min(230px, 38vw);
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  flex-wrap: nowrap;
  gap: 18px;
  white-space: nowrap;
}
.nav-links a {
  white-space: nowrap;
  line-height: 1;
}
.nav-links .btn-small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 1rem;
  border-radius: 999px;
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-trigger span {
  color: var(--gold-text);
  font-size: 0.8em;
  transition: transform 160ms ease;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 80;
  min-width: 232px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.16);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span {
  transform: rotate(180deg);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #edf5f2;
  color: var(--teal-dark);
}
.hero {
  padding: 84px 0 50px;
}
h1 {
  font-size: clamp(2.65rem, 5.8vw, 4.85rem);
  margin-bottom: 18px;
}
.hero-lede {
  font-size: 1.08rem;
  margin-bottom: 22px;
}
.hero-actions {
  margin-bottom: 20px;
}
.hero-grid {
  gap: 38px;
}
.hero-card {
  padding: 10px;
}
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(247, 250, 248, 0.94);
  }
  .nav {
    min-height: 66px;
  }
  .nav-links {
    top: 66px;
    white-space: normal;
  }
  .nav-dropdown {
    display: block;
    width: 100%;
  }
  .nav-dropdown::after {
    display: none;
  }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 6px 16px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 9px 12px;
    font-size: 0.92rem;
    white-space: normal;
  }
  .hero {
    padding-top: 44px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: min(210px, 62vw);
    max-height: 46px;
  }
  h1 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }
}


/* V6 content and spacing revisions */
#rentals {
  padding-bottom: 46px;
}

.steps-section {
  padding-top: 46px;
}

.service-card .brand-style-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 22%, rgba(246,184,46,0.34), transparent 30%),
    linear-gradient(145deg, #fff0d2 0%, #e7f1ed 100%);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72), 0 12px 24px rgba(23,32,42,0.08);
}

.service-card .brand-style-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 3.2;
}

.icon-sun { fill: #f6b82e; stroke: #a96b00; }
.icon-hill { fill: #137c68; opacity: 0.88; stroke: none; }
.icon-table, .icon-chair, .icon-screen, .icon-projector { fill: #f7faf8; stroke: #17202a; }
.icon-jenga { fill: #ef6a4c; stroke: #17202a; }
.icon-cornhole { fill: #137c68; stroke: #17202a; }
.icon-hole, .icon-lens { fill: #17202a; stroke: none; }
.icon-disc, .icon-bulb { fill: #ef6a4c; stroke: #17202a; }
.icon-disc.alt, .icon-bulb.alt { fill: #f6b82e; }
.icon-spark { fill: #f6b82e; stroke: #a96b00; }
.icon-stroke, .icon-string, .icon-beam { fill: none; stroke: #17202a; }
.icon-beanbag { fill: #f6b82e; stroke: #17202a; }

.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: auto;
  right: 24px;
  bottom: 24px;
  width: auto;
  min-width: 178px;
  padding: 15px 24px;
}

@media (max-width: 620px) {
  #rentals {
    padding-bottom: 34px;
  }

  .steps-section {
    padding-top: 34px;
  }

  .floating-cta {
    display: flex;
    left: 20px;
    right: 20px;
    bottom: 18px;
    width: auto;
    min-width: 0;
  }
}


/* V7 promo modal and logo revisions */
.brand-logo {
  width: min(276px, 44vw);
  max-height: 58px;
}

.footer-logo {
  width: min(336px, 68vw);
  max-height: none;
}

.promo-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, calc(100% - 300px));
  min-height: 58px;
  padding: 8px 48px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(23,32,42,0.18);
  backdrop-filter: blur(14px);
}

.promo-banner.hidden {
  display: none;
}

.promo-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  white-space: nowrap;
  padding: 0;
}

.promo-kicker {
  color: var(--gold-text);
}

.promo-link {
  display: inline-flex;
  align-items: center;
  color: white;
  background: var(--teal);
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 12px 24px rgba(19, 124, 104, 0.18);
}

.promo-dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(23,32,42,0.08);
  color: var(--ink);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

.discount-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.discount-modal.open {
  display: grid;
}

.discount-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 31, 0.62);
  backdrop-filter: blur(6px);
}

.discount-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(246,184,46,0.18), transparent 30%),
    linear-gradient(180deg, #f7faf8 0%, #eef5f2 100%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  padding: 34px;
  color: var(--ink);
}

.discount-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(23,32,42,0.08);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 28px rgba(23,32,42,0.18);
}

.discount-dialog h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 12px;
}

.discount-copy {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 20px;
}

.discount-form {
  display: grid;
  gap: 14px;
}

.discount-name-pair {
  gap: 12px;
}

.discount-form label {
  display: block;
}

.discount-form .btn {
  margin-top: 4px;
}

.discount-terms {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.modal-open {
  overflow: hidden;
}

.discount-thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(246,184,46,0.22), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(19,124,104,0.14), transparent 24%),
    var(--cream);
}

.discount-thank-you-card {
  max-width: 780px;
  text-align: center;
  padding: 42px;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.discount-thank-you-logo {
  width: min(360px, 90%);
  margin: 0 auto 26px;
}

.discount-thank-you-card h1 {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  margin-bottom: 18px;
}

.discount-thank-you-card h1 span {
  color: var(--teal-dark);
}

.discount-thank-you-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.discount-code-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 18px;
  padding: 16px 26px;
  border: 2px dashed var(--gold-dark);
  border-radius: 18px;
  background: #fff0d2;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

@media (max-width: 900px) {
  .brand-logo {
    width: min(252px, 64vw);
    max-height: 56px;
  }

  .footer-logo {
    width: min(320px, 76vw);
  }

  .promo-banner {
    width: calc(100% - 40px);
    bottom: 86px;
    padding: 8px 42px 8px 12px;
  }

  .promo-trigger {
    gap: 7px;
    font-size: 0.94rem;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: min(238px, 66vw);
    max-height: 54px;
  }

  .promo-banner {
    width: calc(100% - 28px);
    min-height: auto;
    border-radius: 22px;
    bottom: 82px;
  }

  .promo-trigger {
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.2;
    gap: 6px 8px;
  }

  .promo-link {
    padding: 8px 12px;
  }

  .discount-dialog {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .discount-thank-you-card {
    padding: 30px 20px;
  }
}


/* V12 quote form quantity and address updates */
.quantity-fieldset {
  padding: 18px;
}

.fieldset-help {
  margin: 6px 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.quantity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quantity-item {
  display: grid;
  grid-template-columns: 1fr 92px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #d9e4df;
  border-radius: 16px;
  background: #f7faf8;
  font-weight: 800;
}

.quantity-item span {
  line-height: 1.25;
}

.quantity-item input {
  margin-top: 0;
  text-align: center;
  padding: 10px 8px;
  font-weight: 900;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  opacity: 1;
}

@media (max-width: 620px) {
  .name-pair {
    grid-template-columns: 1fr;
  }

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

  .quantity-item {
    grid-template-columns: 1fr 84px;
  }
}


/* V14 mixed quantity and package selection updates */
.package-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.package-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d9e4df;
  border-radius: 16px;
  background: #f7faf8;
  font-weight: 800;
}

.package-checkboxes input {
  width: auto;
  margin: 0;
}

@media (max-width: 620px) {
  .package-checkboxes {
    grid-template-columns: 1fr;
  }
}


/* V16 SEO content section */
.services-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(246,184,46,0.14), transparent 28%),
    linear-gradient(180deg, #f7faf8 0%, #eef5f2 100%);
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.seo-copy-grid article {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 38px rgba(23,32,42,0.06);
}

.seo-copy-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.seo-copy-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .seo-copy-grid {
    grid-template-columns: 1fr;
  }
}


/* V17 homepage hero carousel */
.hero-carousel-card {
  padding: 10px;
}

.hero-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #e7f1ed;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(23, 32, 42, 0.34);
  backdrop-filter: blur(10px);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero-carousel-card {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .hero-carousel {
    aspect-ratio: 4 / 3;
  }

  .carousel-dots {
    bottom: 10px;
  }
}


/* V18 taller hero carousel card with caption */
.hero-carousel-card {
  padding: 14px;
}

.hero-carousel {
  aspect-ratio: 4 / 3;
}

.hero-carousel-caption {
  padding: 20px 18px 10px;
  background: #ffffff;
  border-radius: 0 0 26px 26px;
}

.hero-carousel-caption h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 8px;
}

.hero-carousel-caption p {
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-carousel {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .hero-carousel-card {
    padding: 10px;
  }

  .hero-carousel {
    aspect-ratio: 4 / 3;
  }

  .hero-carousel-caption {
    padding: 16px 14px 8px;
  }
}

/* V24 SEO blog page */
.blog-hero {
  padding: 58px 0 0;
  background:
    radial-gradient(circle at top left, rgba(246, 184, 46, 0.22), transparent 34%),
    linear-gradient(180deg, #eef5f2 0%, #f7faf8 100%);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 42px;
  align-items: center;
}

.blog-hero h1 {
  font-size: 3.35rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.blog-hero .hero-lede {
  max-width: 660px;
  margin-bottom: 20px;
}

.blog-hero .hero-actions {
  margin-bottom: 18px;
}

.blog-feature-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: white;
}

.blog-feature-image img {
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  object-fit: cover;
}

.blog-section {
  background: var(--cream);
  padding-top: 28px;
}

.blog-section .section-heading {
  margin-bottom: 28px;
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-post-card {
  margin-bottom: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(23,32,42,0.08);
}

.featured-post-card a {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1.18fr;
  color: inherit;
}

.featured-post-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.featured-post-card div {
  padding: 28px;
}

.featured-post-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-text);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-post-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.14;
}

.featured-post-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.featured-post-card strong {
  color: var(--teal-dark);
}

.blog-topic-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 38px rgba(23,32,42,0.06);
}

.blog-topic-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-text);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-topic-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.blog-topic-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.blog-cta-section {
  padding-top: 28px;
}

.blog-cta {
  max-width: 820px;
}

.blog-cta h2 {
  max-width: 720px;
}

.blog-cta p {
  color: var(--muted);
  max-width: 720px;
  font-weight: 650;
}

.article-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(246, 184, 46, 0.20), transparent 36%),
    linear-gradient(180deg, #eef5f2 0%, #f7faf8 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 42px;
  align-items: center;
}

.article-hero h1 {
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.article-deck {
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 650;
  max-width: 760px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.article-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.article-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: white;
}

.article-hero-image img {
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  object-fit: cover;
}

.article-section {
  padding-top: 58px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 42px;
  align-items: start;
}

.article-content {
  min-width: 0;
  font-size: 1.05rem;
}

.article-content h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.12;
}

.article-content h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.article-content p,
.article-content li {
  color: #3f4a54;
}

.article-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.article-content ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-callout,
.article-cta,
.article-sidebar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 38px rgba(23,32,42,0.06);
}

.article-callout {
  margin: 26px 0;
  padding: 24px;
}

.article-quick-answer {
  border-left: 5px solid var(--gold);
  background: #eef5f2;
}

.article-toc ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin-bottom: 0;
}

.article-links-emphasized a:not(.btn) {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.article-callout > h2:first-child {
  margin-top: 0;
  font-size: 1.5rem;
}

.venue-detail {
  margin: 18px 0 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #eef5f2;
}

.venue-detail p {
  margin-bottom: 8px;
}

.venue-detail p:last-child {
  margin-bottom: 0;
}

.article-callout ul {
  margin-bottom: 0;
}

.article-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 24px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 38px rgba(23,32,42,0.06);
}

.article-table-wrap:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.article-comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.article-comparison-table-two-column {
  min-width: 580px;
}

.article-comparison-table th,
.article-comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.article-comparison-table th {
  background: #eef5f2;
  color: var(--ink);
  font-weight: 900;
}

.article-comparison-table td {
  color: #3f4a54;
}

.article-comparison-table tr:last-child td {
  border-bottom: 0;
}

.article-cta {
  margin-top: 48px;
  padding: 30px;
  background: #eef5f2;
}

.article-cta h2 {
  margin-top: 0;
}

.article-sidebar {
  position: sticky;
  top: 104px;
}

.article-sidebar-card {
  padding: 24px;
}

.article-sidebar-card h2 {
  font-size: 1.24rem;
  margin-bottom: 14px;
}

.article-sidebar-card a:not(.btn) {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 800;
}

.article-sidebar-card .btn {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .blog-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-feature-image {
    justify-self: start;
  }

  .blog-hero h1 {
    font-size: 3.05rem;
  }

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

  .featured-post-card a,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero h1 {
    font-size: 3.25rem;
  }
}

@media (max-width: 620px) {
  .blog-hero {
    padding: 52px 0 0;
  }

  .blog-hero h1 {
    font-size: 2.35rem;
  }

  .blog-feature-image img,
  .article-hero-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .blog-section {
    padding-top: 28px;
  }

  .blog-topic-grid {
    grid-template-columns: 1fr;
  }

  .blog-topic-card {
    padding: 20px;
  }

  .featured-post-card img {
    min-height: 220px;
  }

  .featured-post-card div,
  .article-callout,
  .article-cta,
  .article-sidebar-card {
    padding: 20px;
  }

  .article-hero {
    padding: 58px 0 34px;
  }

  .article-hero h1 {
    font-size: 2.45rem;
  }

  .article-content h2 {
    font-size: 1.62rem;
  }

  .article-toc ul {
    grid-template-columns: 1fr;
  }
}

/* Rental catalog and product pages */
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.rental-catalog-hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 124, 104, 0.15), transparent 31%),
    linear-gradient(180deg, #eef5f2 0%, #f7faf8 100%);
  border-bottom: 1px solid var(--border);
}

.rental-catalog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.rental-catalog-hero h1,
.product-summary h1 {
  letter-spacing: 0;
}

.rental-catalog-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 6vw, 5.1rem);
  line-height: 0.98;
}

.rental-catalog-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.13rem;
  font-weight: 620;
}

.rental-hero-actions {
  display: flex;
  min-width: 210px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 900;
}

.text-link:hover {
  color: var(--ink);
}

.rental-catalog-section {
  padding: 72px 0 88px;
}

.rental-catalog-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.rental-catalog-heading h2 {
  max-width: 700px;
  letter-spacing: 0;
}

.rental-catalog-heading > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.rental-category-group + .rental-category-group {
  margin-top: 58px;
}

.rental-category-heading {
  max-width: 720px;
  margin-bottom: 24px;
  scroll-margin-top: 96px;
}

.rental-category-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: 0;
}

.rental-category-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.rental-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rental-card:hover,
.rental-card:focus-within {
  transform: translateY(-4px);
  border-color: #a9c7bd;
  box-shadow: 0 20px 42px rgba(23, 32, 42, 0.12);
}

.rental-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.rental-card > a:focus-visible,
.related-rental-card > a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.rental-card-media,
.related-rental-media {
  position: relative;
  overflow: hidden;
  background: #eef3f1;
}

.rental-card-media {
  aspect-ratio: 4 / 3;
}

.rental-card-media img,
.related-rental-media img,
.product-gallery img {
  width: 100%;
  height: 100%;
}

.product-lifestyle img {
  object-fit: cover;
}

.product-isolated img {
  object-fit: contain;
  padding: 22px;
  background: #f7faf8;
}

.product-position-left img {
  object-position: left center;
}

.product-position-center img {
  object-position: center;
}

.product-position-right img {
  object-position: right center;
}

.rental-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.rental-card-copy > span,
.related-rental-card span {
  color: var(--gold-text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-card-copy h2,
.rental-card-copy h3 {
  margin: 8px 0 10px;
  font-size: 1.28rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.rental-card-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.rental-card-copy strong,
.related-rental-card strong {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.rental-process-band {
  padding: 76px 0;
  border-block: 1px solid var(--border);
  background: #edf5f2;
}

.rental-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.rental-process-grid article {
  position: relative;
  padding-top: 18px;
  border-top: 2px solid var(--teal);
}

.rental-process-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.rental-process-grid h3 {
  margin-bottom: 8px;
  font-size: 1.26rem;
  letter-spacing: 0;
}

.rental-process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.rental-final-cta {
  padding: 72px 0;
  background: #eef5f2;
}

.rental-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rental-final-cta h2 {
  margin-bottom: 12px;
  letter-spacing: 0;
}

.rental-final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-hero {
  padding: 38px 0 72px;
  background: var(--paper);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 58px;
  align-items: start;
}

.product-gallery {
  height: min(620px, 62vw);
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9e4df;
  border-radius: 8px;
  background: #eef3f1;
}

.product-gallery.product-isolated img {
  padding: clamp(40px, 7vw, 92px);
}

.product-summary h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.product-lead {
  margin-bottom: 26px;
  color: #3d4852;
  font-size: 1.16rem;
  font-weight: 620;
}

.product-availability {
  display: grid;
  gap: 2px;
  margin-bottom: 24px;
  padding-block: 18px;
  border-block: 1px solid var(--border);
}

.product-availability strong {
  font-size: 1.05rem;
}

.product-availability span {
  color: var(--muted);
  font-size: 0.93rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.product-actions .btn {
  min-width: 0;
  padding-inline: 16px;
}

.product-service-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.product-service-points li {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-service-points li::before {
  content: "\2713";
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 1rem;
}

.product-summary-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.product-summary-details > .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-text);
}

.product-summary-detail-text {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-summary-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-summary-highlight-grid article {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid #dbc174;
}

.product-summary-highlight-grid article > span {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 10px;
  background: var(--gold);
}

.product-summary-highlight-grid h2 {
  margin-bottom: 6px;
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-summary-highlight-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.product-details-band {
  padding: 78px 0;
  border-block: 1px solid var(--border);
  background: #edf5f2;
}

.product-details-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(280px, 0.92fr) minmax(300px, 1.2fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 44px;
}

.product-details-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  letter-spacing: 0;
}

.product-details-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.product-highlight-grid article {
  padding-top: 18px;
  border-top: 1px solid #b8d4ca;
}

.product-highlight-grid article > span {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  background: var(--gold);
}

.product-highlight-grid h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.product-highlight-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-planning-section {
  padding: 80px 0;
}

.product-planning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.product-planning-grid h2 {
  max-width: 520px;
  letter-spacing: 0;
}

.product-planning-grid ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-planning-grid li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--border);
  color: #3e4a54;
  font-size: 1.02rem;
}

.product-planning-grid li:last-child {
  border-bottom: 1px solid var(--border);
}

.product-planning-grid li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.related-rentals-section {
  padding: 76px 0 88px;
  border-block: 1px solid var(--border);
  background: #f4f8f5;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.related-heading h2 {
  margin-bottom: 0;
  letter-spacing: 0;
}

.related-rental-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-rental-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.related-rental-card > a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 154px;
}

.related-rental-media {
  min-height: 154px;
}

.related-rental-card > a > div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.related-rental-card h3 {
  margin: 6px 0 12px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

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

  .product-hero-grid {
    gap: 38px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .rental-catalog-hero-inner,
  .product-hero-grid,
  .product-details-intro,
  .product-planning-grid {
    grid-template-columns: 1fr;
  }

  .rental-hero-actions {
    min-width: 0;
    max-width: 260px;
  }

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

  .product-gallery {
    height: min(680px, 82vw);
    min-height: 430px;
  }

  .product-summary {
    max-width: 700px;
  }

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

  .product-details-intro {
    gap: 10px;
  }

  .related-rental-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .rental-catalog-hero,
  .product-hero {
    padding-top: 42px;
  }

  .rental-catalog-hero h1,
  .product-summary h1 {
    font-size: 2.45rem;
  }

  .rental-catalog-section,
  .rental-process-band,
  .product-details-band,
  .product-planning-section,
  .related-rentals-section,
  .rental-final-cta {
    padding-block: 54px;
  }

  .rental-grid,
  .rental-process-grid,
  .product-highlight-grid,
  .product-summary-highlight-grid,
  .product-actions,
  .product-service-points {
    grid-template-columns: 1fr;
  }

  .rental-card-media {
    aspect-ratio: 5 / 4;
  }

  .rental-process-grid {
    gap: 26px;
  }

  .rental-final-cta-inner,
  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-gallery {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product-gallery.product-isolated {
    aspect-ratio: 1 / 1;
  }

  .product-service-points {
    gap: 8px;
  }

  .product-service-points li {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-service-points li::before {
    display: inline;
    margin: 0;
  }

  .product-planning-grid {
    gap: 20px;
  }

  .related-rental-card > a {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}
