:root {
  --ink: #17202a;
  --muted: #5f6b76;
  --light: #fff8ec;
  --cream: #fffdf7;
  --paper: #ffffff;
  --gold: #f7b733;
  --gold-dark: #d99113;
  --teal: #1f8a70;
  --teal-dark: #136854;
  --clay: #da6b3c;
  --border: #eadfce;
  --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(255, 253, 247, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.75);
}
.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(31, 138, 112, 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(247, 183, 51, 0.24), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(31, 138, 112, 0.16), transparent 32%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 220px;
  background: #f7eddc;
  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-dark);
  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: #fff5e5; }
.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: #fff2d4;
  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); }
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 #dbcbb7;
  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(247,183,51,0.22), transparent 26%),
    linear-gradient(135deg, #17332d 0%, #15212c 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; }
label, legend { font-weight: 900; font-size: 0.92rem; color: #2e3944; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8cdbd;
  border-radius: 14px;
  padding: 13px 14px;
  margin-top: 8px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31,138,112,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: #f7eddc;
  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(255, 253, 247, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.55);
}
.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;
}
.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(255, 253, 247, 0.92);
  }
  .nav {
    min-height: 66px;
  }
  .nav-links {
    top: 66px;
    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(247,183,51,0.34), transparent 30%),
    linear-gradient(145deg, #fff5dc 0%, #e9f8ee 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: #f7b733; stroke: #d99113; }
.icon-hill { fill: #1f8a70; opacity: 0.88; stroke: none; }
.icon-table, .icon-chair, .icon-screen, .icon-projector { fill: #fffdf7; stroke: #17202a; }
.icon-jenga { fill: #da6b3c; stroke: #17202a; }
.icon-cornhole { fill: #1f8a70; stroke: #17202a; }
.icon-hole, .icon-lens { fill: #17202a; stroke: none; }
.icon-disc, .icon-bulb { fill: #da6b3c; stroke: #17202a; }
.icon-disc.alt, .icon-bulb.alt { fill: #f7b733; }
.icon-spark { fill: #f7b733; stroke: #d99113; }
.icon-stroke, .icon-string, .icon-beam { fill: none; stroke: #17202a; }
.icon-beanbag { fill: #f7b733; 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, 253, 247, 0.96);
  border: 1px solid rgba(234, 223, 206, 0.92);
  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-dark);
}

.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(31, 138, 112, 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(247,183,51,0.18), transparent 30%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ec 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-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(247,183,51,0.22), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(31,138,112,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: #fff7e7;
  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 #eee1d0;
  border-radius: 16px;
  background: #fffaf1;
  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) {
  .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 #eee1d0;
  border-radius: 16px;
  background: #fffdf9;
  font-weight: 800;
}

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

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


/* V16 SEO content section */
.seo-services-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(247,183,51,0.14), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ec 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: #f7eddc;
}

.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: 86px 0 58px;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.22), transparent 34%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf7 100%);
}

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

.blog-hero h1 {
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.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%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-section {
  background: var(--cream);
}

.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-dark);
  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-dark);
  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(247, 183, 51, 0.20), transparent 36%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf7 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  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%;
  aspect-ratio: 4 / 3;
  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 {
  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 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-callout ul {
  margin-bottom: 0;
}

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

.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-hero h1 {
    font-size: 3.4rem;
  }

  .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: 64px 0 42px;
  }

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

  .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;
  }
}
