:root {
  --pink: #e86f96;
  --pink-dark: #bb3e68;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --ink: #2f241e;
  --muted: #725f55;
  --paper: #fff8f2;
  --cream: #f4e4d2;
  --gold: #b9893d;
  --red: #b91924;
  --green: #526f4b;
  --line: rgba(90, 62, 43, 0.18);
  --shadow: 0 22px 60px rgba(73, 42, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(73, 42, 25, 0.06);
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.main-nav a {
  border-radius: 999px;
  padding: 9px 13px;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(185, 137, 61, 0.12);
}

.main-nav a,
.header-action,
.button,
.price-card a,
.site-footer a {
  text-decoration: none;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 14px 30px rgba(47, 36, 30, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.header-action,
.button.primary {
  color: #fff;
  background: #172033;
}

.button.secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
}

.button.tertiary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.header-action:hover,
.button:hover,
.product-card a:hover,
.price-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 36, 30, 0.16);
  filter: saturate(1.06);
}

.header-action::before,
.button::before,
.product-card a::before,
.price-card a::before {
  content: "";
  display: none;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

a[href*="api.whatsapp.com"]::before {
  display: inline-block;
  background-image: url("assets/whatsapp-logo.svg");
}

.header-action::before {
  width: 24px;
  height: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: #ead4be;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 90px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
}

.quick-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(73, 42, 25, 0.06);
}

.quick-facts dt {
  font-size: 1.25rem;
  font-weight: 800;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: #fff;
  scrollbar-width: none;
}

.strip span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: #fff;
}

.intro-text {
  color: var(--muted);
  font-size: 1.1rem;
}

.intro-text p:first-child {
  margin-top: 0;
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.seo-hub {
  background: linear-gradient(90deg, #fff, #fff8f2);
}

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

.topic-grid a,
.blog-card,
.article-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(73, 42, 25, 0.05);
}

.topic-grid a {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topic-grid a:hover,
.blog-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(73, 42, 25, 0.12);
}

.topic-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.topic-grid span,
.blog-card p,
.article-card p,
.article-content p,
.article-content li {
  color: var(--muted);
}

.models {
  background: var(--paper);
}

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

.model-card,
.product-card,
.price-card,
.ranges div,
.faq details {
  border: 1px solid var(--line);
  background: #fff;
}

.model-card {
  min-height: 210px;
  padding: 24px;
}

.model-card p,
.product-card p,
.price-card li,
.market-copy p,
.custom-copy p,
.cta p,
.site-footer p,
.faq p {
  color: var(--muted);
}

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

.product-category {
  padding-top: 34px;
}

.product-category + .product-category {
  margin-top: 38px;
  border-top: 1px solid #e5e7eb;
}

.category-head {
  max-width: 840px;
  margin-bottom: 18px;
}

.category-head h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.category-head p:last-child {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 12px;
}

.category-nav a {
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  padding: 9px 12px;
  color: #344054;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.category-nav a:hover {
  border-color: #172033;
  color: #172033;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(73, 42, 25, 0.06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ead4be;
}

.package-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.package-card img {
  height: 100%;
  aspect-ratio: 2.75 / 1;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--pink-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.35rem;
}

.product-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 12px 26px rgba(18, 140, 74, 0.18);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.featured-product {
  border-color: rgba(185, 137, 61, 0.58);
  box-shadow: var(--shadow);
}

.wide-product {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ead4be;
}

.wide-product img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.pricing {
  background: #fff;
}

.custom-print {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #fff;
}

.custom-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #efe3d9;
  box-shadow: var(--shadow);
}

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

.custom-copy p {
  max-width: 760px;
  font-size: 1.08rem;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(73, 42, 25, 0.05);
}

.price-card.featured {
  border-color: rgba(232, 111, 150, 0.58);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
}

.price {
  margin: 18px 0 4px;
  color: var(--pink-dark);
  font-size: 2.6rem;
  font-weight: 900;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  margin: 18px 0 28px;
  padding-left: 20px;
}

.price-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 16px;
  margin-top: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 12px 26px rgba(18, 140, 74, 0.18);
  font-weight: 800;
}

.marketplace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  background: linear-gradient(90deg, #fff8f2, #fff);
}

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

.ranges div {
  min-height: 132px;
  padding: 22px;
}

.ranges strong {
  display: block;
  color: var(--gold);
  font-size: 1.65rem;
}

.ranges span {
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.blog-preview {
  background: #fff;
}

.blog-card,
.article-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
}

.blog-card h3,
.article-card h2 {
  margin-top: 6px;
}

.blog-card h3 a,
.article-card h2 a {
  text-decoration: none;
}

.blog-meta {
  margin: 0;
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-link {
  margin-top: 24px;
}

.blog-hero,
.article-hero {
  padding: clamp(58px, 9vw, 116px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 242, 0.9)),
    #ead4be;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 1060px;
}

.blog-hero p,
.article-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
}

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

.article-card {
  min-height: 360px;
}

.article-card h2 {
  font-size: 1.45rem;
}

.article-card a.read-more {
  margin-top: auto;
  color: var(--pink-dark);
  font-weight: 900;
  text-decoration: none;
}

.blog-index {
  background: #fff;
}

.blog-category + .blog-category {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid #e5e7eb;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.94rem;
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.breadcrumb strong {
  font-weight: 700;
}

.article-content {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 58px);
  background: #fff;
}

.note-box,
.toc-list,
.article-links,
.article-faq {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
}

.note-box {
  padding: 22px;
}

.note-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.note-box p {
  margin: 0;
}

.toc-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 20px 22px 20px 42px;
}

.toc-list a {
  text-decoration: none;
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.article-content h3 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.article-content p,
.article-content li {
  font-size: 1.08rem;
}

.article-content a {
  color: var(--pink-dark);
  font-weight: 800;
}

.article-links,
.article-faq {
  margin-top: 42px;
  padding: 24px;
}

.article-links h2,
.article-faq h2 {
  margin-top: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.related-grid a {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.related-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-faq details + details {
  margin-top: 10px;
}

.article-faq details {
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
}

.article-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.article-cta {
  margin-top: 42px;
  padding: 28px;
  color: #fff;
  background: #30231d;
}

.article-cta p {
  color: #ffd5e1;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 4vw, 58px) clamp(40px, 6vw, 80px);
  padding: clamp(32px, 5vw, 62px);
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(109, 61, 242, 0.16), rgba(37, 211, 102, 0.1)),
    #30231d;
  box-shadow: var(--shadow);
}

.cta .eyebrow,
.cta p {
  color: #ffd5e1;
}

.cta h2 {
  max-width: 950px;
}

.cta-actions {
  min-width: 260px;
  flex-direction: column;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro,
  .marketplace,
  .custom-print,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media img {
    height: auto;
  }

  .model-grid,
  .product-grid,
  .category-grid,
  .price-grid,
  .topic-grid,
  .blog-grid,
  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .cta-actions {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: auto 1fr;
    padding: 12px 16px;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    width: 176px;
  }

  .header-action {
    width: auto;
    justify-self: end;
    min-height: 44px;
    padding: 11px 14px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px;
    order: 3;
    width: 100%;
    padding: 4px 0 2px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .main-nav a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: #fff;
    padding: 8px 11px;
    font-size: 0.95rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    order: 1;
    padding: 28px 16px 24px;
  }

  .hero-media {
    order: 2;
  }

  .hero-media img {
    max-height: 300px;
    object-fit: cover;
    object-position: center top;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.55rem);
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-text,
  .section-head p,
  .intro-text,
  .custom-copy p,
  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .quick-facts div {
    padding: 11px 12px;
  }

  .quick-facts dt {
    font-size: 1.05rem;
  }

  .section,
  .blog-hero,
  .article-hero,
  .article-content {
    padding-inline: 16px;
  }

  .breadcrumb {
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .blog-category + .blog-category {
    margin-top: 34px;
    padding-top: 28px;
  }

  .note-box,
  .toc-list,
  .article-links,
  .article-faq,
  .article-cta {
    padding: 18px;
  }

  .toc-list {
    padding-left: 34px;
  }

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

  .product-card,
  .price-card,
  .topic-grid a,
  .blog-card,
  .article-card {
    border-radius: 8px;
  }

  .product-card img {
    max-height: 240px;
    object-fit: contain;
    background: #ead4be;
  }

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

  .quick-facts {
    gap: 8px;
    margin-top: 20px;
  }

  .package-card img {
    max-height: 220px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .product-body,
  .blog-card,
  .article-card {
    padding: 18px;
  }

  .product-card a,
  .price-card a,
  .button {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
  }

  .strip {
    padding-inline: 16px;
  }

  .cta {
    border-radius: 0;
    padding: 28px 16px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .hero-copy {
    padding: 26px 16px 30px;
  }

  .hero-media img {
    height: auto;
  }

  .hero-actions,
  .quick-facts,
  .model-grid,
  .product-grid,
  .category-grid,
  .price-grid,
  .ranges,
  .topic-grid,
  .blog-grid,
  .article-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    display: grid;
  }

  .model-card,
  .package-card,
  .price-card {
    grid-column: auto;
    min-height: auto;
  }

  .wide-product img {
    aspect-ratio: 1 / 1;
  }

  .cta {
    margin-inline: 0;
  }

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

/* Modern corporate theme overrides */
:root {
  --pink: #c23b55;
  --pink-dark: #9f243d;
  --whatsapp: #1f9d55;
  --whatsapp-dark: #157347;
  --ink: #172033;
  --muted: #667085;
  --paper: #f6f7f9;
  --cream: #eef1f5;
  --gold: #b7791f;
  --red: #b42318;
  --green: #157347;
  --line: rgba(23, 32, 51, 0.1);
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.brand img {
  width: 184px;
}

.main-nav {
  gap: 4px;
  color: #475467;
  font-size: 0.94rem;
}

.main-nav a {
  border-radius: 6px;
  padding: 9px 12px;
}

.main-nav a:hover {
  background: #f2f4f7;
}

.header-action,
.button,
.product-card a,
.price-card a {
  border-radius: 6px;
  box-shadow: none;
}

.header-action,
.button.primary {
  background: #172033;
}

.button.secondary,
.product-card a,
.price-card a {
  background: #178c50;
}

.button.tertiary {
  background: #fff;
  border-color: #d0d5dd;
}

.header-action:hover,
.button:hover,
.product-card a:hover,
.price-card a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding: clamp(52px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, #fff, #f8fafc);
  border-bottom: 1px solid #e5e7eb;
}

.hero-media {
  order: 2;
  display: flex;
  align-items: stretch;
  background: #f2f4f7;
}

.hero-media img {
  height: 100%;
  min-height: 0;
  max-height: 620px;
  object-fit: cover;
}

.hero-copy {
  order: 0;
  padding: 0;
}

.eyebrow {
  color: #9f243d;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  line-height: 1.06;
}

.hero-text {
  max-width: 660px;
  color: #475467;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.hero-panel {
  order: 0;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 18px;
  border-radius: 8px;
  background: #f8fafc;
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
}

.hero-panel span {
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.hero-panel small {
  margin-top: 6px;
  font-size: 0.95rem;
}

.quick-facts {
  max-width: 760px;
  margin-top: 34px;
}

.quick-facts div {
  border-radius: 6px;
  background: #f9fafb;
  box-shadow: none;
}

.quick-facts dt {
  color: var(--ink);
  font-size: 1.05rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: #e5e7eb;
  border-block: 1px solid #e5e7eb;
}

.trust-band div {
  min-height: 94px;
  padding: 22px 20px;
  background: #fff;
}

.trust-band strong,
.trust-band span {
  display: block;
}

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

.trust-band span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.strip {
  display: none;
}

.section {
  padding: clamp(52px, 7vw, 94px) clamp(18px, 4vw, 56px);
}

.intro,
.pricing,
.custom-print,
.blog-preview {
  background: #fff;
}

.seo-hub,
.models,
.faq {
  background: #f6f7f9;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head p {
  color: #667085;
}

.topic-grid,
.blog-grid,
.product-grid,
.category-grid,
.price-grid,
.ranges {
  gap: 14px;
}

.topic-grid a,
.blog-card,
.article-card,
.product-card,
.price-card,
.ranges div,
.faq details {
  border-color: #e5e7eb;
  border-radius: 8px;
  box-shadow: none;
}

.topic-grid a {
  min-height: 148px;
  padding: 22px;
}

.topic-grid a:hover,
.blog-card:hover,
.article-card:hover {
  box-shadow: var(--shadow);
}

.topic-grid strong {
  font-family: Arial, Helvetica, sans-serif;
}

.product-card {
  background: #fff;
}

.product-card img {
  background: #f2f4f7;
}

.product-body {
  padding: 20px;
}

.product-kicker,
.blog-meta {
  color: #9f243d;
  letter-spacing: 0.04em;
}

.featured-product {
  border-color: #d0d5dd;
  box-shadow: none;
}

.price-card {
  min-height: 350px;
}

.price-card.featured {
  border-color: #172033;
  box-shadow: none;
}

.price {
  color: #172033;
}

.badge {
  border-radius: 6px;
  background: #172033;
}

.marketplace {
  background: #fff;
}

.ranges strong {
  color: #172033;
}

.custom-image {
  border-radius: 8px;
  border-color: #e5e7eb;
  box-shadow: none;
}

.cta {
  border-radius: 8px;
  background: #172033;
  box-shadow: none;
}

.cta .eyebrow,
.cta p {
  color: #d0d5dd;
}

.site-footer {
  background: #fff;
  border-top-color: #e5e7eb;
}

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

  .hero-media img {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand img {
    width: 148px;
  }

  .header-action {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .main-nav {
    margin-inline: -14px;
    padding: 8px 14px 2px;
    border-top: 1px solid #eef0f3;
  }

  .main-nav a {
    border: 0;
    background: transparent;
    padding: 8px 10px;
  }

  .hero {
    background: #fff;
    padding: 32px 16px 0;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
    line-height: 1;
  }

  .hero-text {
    margin-top: 16px;
  }

  .hero-media img {
    max-height: 220px;
  }

  .quick-facts {
    display: none;
  }

  .hero-panel {
    margin-top: 22px;
    padding: 0;
    border: 0;
    box-shadow: none;
    gap: 8px;
  }

  .hero-panel div {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
  }

  .hero-panel span {
    margin-bottom: 3px;
    font-size: 0.72rem;
  }

  .hero-panel strong {
    font-size: 1.04rem;
  }

  .hero-panel small {
    margin-top: 3px;
    font-size: 0.84rem;
  }

  .trust-band {
    display: none;
  }

  .trust-band {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .trust-band div {
    min-height: 76px;
    padding: 16px;
  }

  .section {
    padding-block: 46px;
  }

  .topic-grid a {
    min-height: auto;
  }

  .product-card a,
  .price-card a,
  .button {
    border-radius: 6px;
  }
}
