:root {
  --lemon: #fccb00;
  --lemon-soft: #fff0a6;
  --ink: #12110d;
  --ink-2: #1f201d;
  --paper: #fffdf3;
  --warm: #fff7cf;
  --line: rgba(11, 11, 9, 0.12);
  --muted: #68675f;
  --white: #ffffff;
  --success: #25d366;
  --shadow: 0 16px 42px rgba(11, 11, 9, 0.12);
  --shadow-soft: 0 10px 26px rgba(11, 11, 9, 0.08);
  --radius: 8px;
  --font-title: "Anton", Impact, sans-serif;
  --font-body: "Inter", "Alegreya Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.section--cream {
  background: linear-gradient(180deg, #fff7cf 0%, #fffdf3 100%);
}

.section--ink {
  background: linear-gradient(135deg, #fff0a6 0%, #fffdf3 72%);
  color: var(--ink);
}

.section__eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: var(--lemon);
  border: 1px solid rgba(11, 11, 9, 0.16);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.section__title,
.hero__title,
.page-hero__title {
  font-family: var(--font-title);
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section__title {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 4rem;
}

.section__text {
  max-width: 620px;
  color: var(--muted);
  font-weight: 600;
}

.section--ink .section__text {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--lemon {
  color: var(--ink);
  background: var(--lemon);
  box-shadow: var(--shadow-soft);
}

.btn--lemon:hover {
  background: #ffe16a;
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
}

.btn--outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.btn--ghost {
  border-color: rgba(18, 17, 13, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.btn--wa {
  color: var(--white);
  background: var(--success);
}

.btn--small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.site-topbar {
  background: var(--lemon);
  color: var(--ink);
  font-size: 0.9rem;
}

.site-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}

.site-topbar__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-topbar__promo i {
  color: var(--ink);
}

.site-topbar__links {
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(18, 17, 13, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 900;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--lemon);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: var(--ink);
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 243, 0.98) 0%, rgba(255, 253, 243, 0.9) 38%, rgba(255, 253, 243, 0.28) 70%, rgba(255, 253, 243, 0.08) 100%),
    radial-gradient(760px 460px at 10% 18%, rgba(252, 203, 0, 0.32), transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.hero__title {
  max-width: 720px;
  margin: 16px 0;
  font-size: 6.6rem;
}

.hero__lead {
  max-width: 640px;
  margin: 0 0 26px;
  color: rgba(18, 17, 13, 0.74);
  font-size: 1.18rem;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.hero__stat {
  border: 1px solid rgba(18, 17, 13, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero__stat--google {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  border-color: rgba(251, 188, 5, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 207, 0.92));
  box-shadow: 0 12px 28px rgba(18, 17, 13, 0.08);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.85rem;
  line-height: 1;
}

.hero__stat span {
  color: rgba(18, 17, 13, 0.66);
  font-weight: 700;
}

.hero__stat--google strong {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--lemon);
  color: var(--ink);
}

.hero__stat--google .hero__stat-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbc05;
  font-size: 0.84rem;
  line-height: 1;
}

.hero__stat--google span:last-child {
  color: var(--ink);
  font-weight: 900;
}

.quote-panel {
  background: rgba(255, 253, 245, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.quote-panel__media {
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
}

.quote-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-panel__body {
  padding: 22px;
}

.quote-panel__body h2 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.quote-panel__body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.mini-list i {
  color: var(--lemon);
}

.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  padding: 13px 16px;
  border: 1px solid rgba(18, 17, 13, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(18, 17, 13, 0.1);
  font-weight: 900;
}

.rating-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff7cf;
  border: 1px solid rgba(18, 17, 13, 0.1);
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-size: 1.7rem;
}

.rating-card__stars {
  color: var(--lemon);
  white-space: nowrap;
  display: inline-flex;
  gap: 2px;
  margin: 2px 0 3px;
}

.rating-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.google-rating {
  width: fit-content;
  max-width: 100%;
}

.google-rating__mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-weight: 950;
  font-size: 1.05rem;
}

.google-rating__content {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.google-rating__label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.review-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.review-card--highlight {
  background: var(--lemon);
}

.review-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: rgba(18, 17, 13, 0.7);
  font-weight: 700;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--lemon);
  margin-bottom: 12px;
}

.review-card--highlight .review-stars {
  color: var(--ink);
}

.category-grid,
.service-grid,
.fabric-grid,
.model-grid,
.price-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: 1.2fr repeat(2, 1fr);
  grid-auto-rows: 260px;
}

.category-card {
  position: relative;
  min-height: 220px;
  color: var(--white);
  background: var(--ink) center / cover no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 243, 0.04), rgba(18, 17, 13, 0.52));
}

.category-card__content {
  position: absolute;
  inset: auto 18px 18px;
}

.category-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.category-card p {
  margin: 0 0 14px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

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

.service-card,
.fabric-card,
.contact-card,
.faq-card,
.price-card,
.model-card,
.process-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 22px;
}

.service-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--ink);
  color: var(--lemon);
  border-radius: var(--radius);
}

.service-card h3,
.fabric-card h3,
.process-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 950;
}

.service-card p,
.fabric-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.process-card {
  padding: 20px;
}

.process-card strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--lemon);
  border-radius: var(--radius);
  font-weight: 950;
}

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

.fabric-card {
  overflow: hidden;
}

.fabric-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fabric-card__body {
  padding: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

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

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 950;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--lemon);
  border-radius: var(--radius);
  flex: 0 0 auto;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card--dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 181, 0.96)),
    url("../img/generated/lemon-totebags-showcase.png") center right / cover no-repeat;
  border: 2px solid rgba(252, 203, 0, 0.72);
  color: var(--ink);
}

.contact-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 243, 0.99), rgba(255, 253, 243, 0.9));
}

.contact-card--dark > * {
  position: relative;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card--dark h2 {
  padding-bottom: 14px;
  border-bottom: 4px solid var(--lemon);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(18, 17, 13, 0.1);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(18, 17, 13, 0.05);
}

.contact-list strong {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.8;
}

.contact-list span,
.contact-list a,
.contact-card--dark p {
  color: rgba(18, 17, 13, 0.82);
  font-weight: 650;
}

.contact-list a,
.contact-list span {
  font-size: 1.02rem;
  font-weight: 850;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 900;
}

.field input,
.field select,
.field textarea,
.newsletter input,
.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter input:focus,
.search-field input:focus {
  border-color: var(--lemon);
  box-shadow: 0 0 0 4px rgba(247, 201, 12, 0.24);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.product-showcase {
  padding: 64px 0;
  background: linear-gradient(180deg, #fffdf3 0%, #fff7cf 100%);
}

.product-showcase__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.product-showcase__copy h2 {
  margin: 12px 0 0;
  font-family: var(--font-title);
  font-size: 3rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-showcase__track {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.showcase-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.35s ease;
}

.showcase-card--wide img {
  aspect-ratio: 4 / 3;
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--lemon);
  color: var(--ink);
  font-weight: 950;
}

.site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(252, 203, 0, 0.2), transparent 28%),
    linear-gradient(180deg, #fff7cf 0%, #fffdf3 100%);
  color: var(--ink);
  padding: 46px 0 24px;
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer img {
  width: 152px;
  padding: 8px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-footer p {
  max-width: 520px;
  color: rgba(18, 17, 13, 0.72);
  font-weight: 650;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.newsletter input {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.newsletter input::placeholder {
  color: rgba(18, 17, 13, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(18, 17, 13, 0.62);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
  font-size: 1.55rem;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow-y: auto;
  background: rgba(11, 11, 9, 0.72);
}

.promo-modal.is-open {
  display: flex;
}

.promo-modal.is-compact {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
}

.promo-modal.is-compact .promo-modal__panel {
  width: min(340px, 94%);
  max-height: calc(100vh - 24px);
}

.promo-modal.is-compact .promo-modal__offer {
  grid-template-columns: 1fr;
}

.promo-modal__panel {
  width: min(720px, 94%);
  max-width: 720px;
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.promo-modal__hero {
  position: relative;
  min-height: 240px;
  display: grid;
  align-items: end;
  padding: 24px;
  color: var(--white);
  background: var(--ink) center / cover no-repeat;
}

.promo-modal__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 13, 0.04), rgba(18, 17, 13, 0.38));
}

.promo-modal__hero > * {
  position: relative;
}

.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
}

.promo-modal__title {
  margin: 10px 0 0;
  font-family: var(--font-title);
  font-size: 5rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.promo-modal__body {
  padding: 24px;
}

.promo-modal__offer {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.promo-modal__offer > * {
  min-width: 0;
}

.promo-modal__discount {
  display: grid;
  place-items: center;
  min-height: 168px;
  padding: 18px;
  background: var(--lemon);
  border: 1px solid rgba(11, 11, 9, 0.16);
  border-radius: var(--radius);
  text-align: center;
}

.promo-modal__discount strong {
  display: block;
  font-family: var(--font-title);
  font-size: 5.8rem;
  line-height: 0.9;
}

.promo-modal__discount span {
  font-weight: 950;
}

.promo-modal__body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.promo-modal__body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 650;
}

.promo-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-hero {
  padding: 72px 0 46px;
  background:
    radial-gradient(560px 260px at 82% 18%, rgba(252, 203, 0, 0.34), transparent 70%),
    linear-gradient(180deg, #fff8d4 0%, #fffdf3 100%);
  color: var(--ink);
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 30px;
  align-items: center;
}

.page-hero__title {
  margin: 14px 0;
  font-size: 5.8rem;
}

.page-hero__text {
  max-width: 680px;
  margin: 0;
  color: rgba(18, 17, 13, 0.72);
  font-weight: 650;
}

.page-hero__card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  padding: 18px;
}

.search-panel {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.search-panel__inner {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-field {
  position: relative;
}

.search-field i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-field input {
  padding-left: 42px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.is-active {
  border-color: var(--lemon);
  background: var(--lemon);
}

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

.price-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
}

.price-card__image {
  padding: 16px;
  background: #f7f5ee;
}

.price-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.price-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.product-tag {
  padding: 5px 8px;
  background: var(--lemon-soft);
  border: 1px solid rgba(11, 11, 9, 0.08);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 950;
}

.product-name {
  min-height: 2.6em;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 950;
}

.product-price {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.price-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.empty-state {
  display: none;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.size-table th,
.size-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 800;
}

.size-table th {
  background: var(--ink);
  color: var(--white);
}

.model-hero-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.model-hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

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

.model-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.model-card--feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.model-card__image {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #f4f1e8;
}

.model-card__image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.model-card__body {
  padding: 18px;
}

.model-card__number {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  background: var(--lemon);
  border-radius: var(--radius);
  font-weight: 950;
}

.model-card h3 {
  margin: 0 0 8px;
  font-weight: 950;
}

.model-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.model-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.cta-band {
  padding: 34px;
  background: var(--lemon);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 3.5rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.cta-band p {
  margin: 8px 0 0;
  max-width: 640px;
  color: rgba(11, 11, 9, 0.72);
  font-weight: 750;
}

@media (max-width: 1200px) {
  .promo-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .promo-modal__panel {
    width: min(360px, 94%);
    max-height: calc(100vh - 24px);
  }

  .promo-modal__offer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 74px 0;
  }

  .hero__title {
    max-width: 100%;
    font-size: 2.9rem;
    overflow-wrap: break-word;
  }

  .page-hero__title {
    font-size: 4.6rem;
  }

  .section__title {
    font-size: 3.2rem;
  }

  .promo-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .promo-modal__panel {
    width: min(360px, 94%);
    max-height: calc(100vh - 24px);
  }

  .promo-modal__offer {
    grid-template-columns: 1fr;
  }

  .hero__inner,
  .page-hero__layout,
  .contact-layout,
  .faq-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card--large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .service-grid,
  .fabric-grid,
  .process-grid,
  .price-grid,
  .model-grid,
  .product-showcase__inner,
  .review-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .section {
    padding: 54px 0;
  }

  .hero__title,
  .page-hero__title {
    font-size: 2.32rem;
    max-width: 100%;
  }

  .section__title {
    font-size: 2rem;
  }

  .hero__lead,
  .page-hero__text {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn,
  .rating-card,
  .google-rating {
    width: 100%;
  }

  .rating-card {
    align-items: flex-start;
    gap: 10px;
  }

  .category-card h3,
  .contact-card h2,
  .contact-card h3,
  .quote-panel__body h2 {
    font-size: 2rem;
  }

  .promo-modal__title {
    font-size: 3.2rem;
  }

  .promo-modal__discount strong {
    font-size: 4.2rem;
  }

  .promo-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .promo-modal__panel {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 24px);
  }

  .promo-modal__hero {
    min-height: 210px;
    padding: 18px;
  }

  .promo-modal__body {
    padding: 18px;
  }

  .cta-band h2 {
    font-size: 2.35rem;
  }

  .site-topbar__inner,
  .section__head,
  .site-footer__grid,
  .footer-bottom,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-topbar__links {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand img {
    width: 126px;
  }

  .site-header__actions {
    display: none;
  }

  .hero__stats,
  .category-grid,
  .service-grid,
  .fabric-grid,
  .process-grid,
  .price-grid,
  .model-grid,
  .model-feature-grid,
  .form-grid,
  .promo-modal__offer,
  .review-band {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-auto-rows: auto;
  }

  .category-card {
    min-height: 250px;
  }

  .product-showcase {
    padding: 46px 0;
  }

  .product-showcase__inner,
  .product-showcase__track {
    grid-template-columns: 1fr;
  }

  .product-showcase__copy h2 {
    font-size: 2rem;
  }

  .showcase-card,
  .showcase-card img,
  .showcase-card--wide img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .newsletter {
    flex-direction: column;
  }

  .model-card--feature {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 50px;
  }
}
