:root {
  --bg: #e8e7e3;
  --bg-soft: #f5f4f1;
  --surface: rgba(248, 248, 246, 0.82);
  --surface-strong: #f3f2ef;
  --ink: #34312f;
  --muted: #66615d;
  --line: rgba(23, 20, 18, 0.1);
  --accent: #9a6b39;
  --accent-soft: #d9bc90;
  --olive: #4e6253;
  --shadow: 0 24px 70px rgba(31, 22, 12, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --section-space: 82px;
  --section-space-mobile: 62px;
  --page-glow-1: rgba(215, 213, 208, 0.2);
  --page-glow-2: rgba(176, 177, 179, 0.16);
  --page-grad-start: #efefec;
  --page-grad-end: #dfdfdc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--page-glow-1), transparent 28%),
    radial-gradient(circle at 80% 10%, var(--page-glow-2), transparent 22%),
    linear-gradient(180deg, var(--page-grad-start) 0%, var(--page-grad-end) 100%);
  transition: background 260ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(23, 20, 18, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 18, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
}

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

button,
select {
  font: inherit;
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 14, 11, 0.92);
  color: #f7efe4;
  font-size: 0.9rem;
}

.announcement-bar a {
  color: #f2ca8d;
}

.site-header {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 18px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  color: rgba(52, 49, 47, 0.8);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(154, 107, 57, 0.45);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 0 var(--section-space);
}

.hero-showcase {
  width: 100%;
}

.hero-copy {
  width: 100%;
}

.hero-copy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
  margin-top: 12px;
}

.hero-copy-main,
.hero-copy-side {
  min-width: 0;
}

.hero-copy-side {
  padding-top: 8px;
}

.banner-frame {
  position: relative;
  width: 100%;
  height: clamp(200px, 31vw, 420px);
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.banner-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  display: none;
}

.banner-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.banner-arrow,
.banner-dot {
  border: 0;
  cursor: pointer;
}

.banner-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(248, 248, 246, 0.88);
  color: var(--ink);
  font-size: 1.6rem;
  box-shadow: 0 14px 24px rgba(20, 15, 11, 0.1);
}

.banner-dots {
  display: flex;
  gap: 10px;
}

.banner-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.18);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.banner-dot.is-active {
  transform: scale(1.2);
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.story-panel h2,
.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading > p,
.story-panel > p,
.site-footer > p,
.benefit-card p,
.product-copy p,
.quote-card p,
.stats-card p,
.hero-card-content p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: #f8f3ea;
  box-shadow: 0 16px 28px rgba(16, 14, 11, 0.18);
}

.button-light {
  background: rgba(248, 248, 246, 0.72);
  color: var(--ink);
  border-color: rgba(23, 20, 18, 0.14);
  backdrop-filter: blur(18px);
}

.hero-notes {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  position: relative;
  padding-left: 18px;
  color: rgba(52, 49, 47, 0.8);
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: min(100%, 500px);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(145deg, rgba(250, 249, 247, 0.92), rgba(233, 232, 228, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card-main {
  transform: rotate(-5deg);
}

.tag {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(154, 107, 57, 0.14);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shirt-display {
  padding: 30px 0 24px;
}

.shirt-body {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 32px 32px 42px 42px;
  background:
    linear-gradient(180deg, #fdf7ef 0%, #e6d7c1 100%);
  box-shadow:
    inset 0 -24px 40px rgba(127, 97, 62, 0.12),
    0 25px 45px rgba(35, 24, 14, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.shirt-body::before,
.shirt-body::after {
  content: "";
  position: absolute;
  top: 42px;
  width: 102px;
  height: 124px;
  background: inherit;
  box-shadow: inherit;
  z-index: -1;
}

.shirt-body::before {
  left: -40px;
  transform: rotate(32deg);
  border-radius: 28px;
}

.shirt-body::after {
  right: -40px;
  transform: rotate(-32deg);
  border-radius: 28px;
}

.shirt-body span {
  width: 70%;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.16em;
  color: rgba(52, 49, 47, 0.92);
}

.hero-card-content {
  display: grid;
  gap: 8px;
}

.hero-card-content strong,
.stats-card strong {
  font-size: 1.1rem;
}

.hero-floating {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(248, 248, 246, 0.78);
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: 0 22px 40px rgba(35, 24, 14, 0.12);
  backdrop-filter: blur(16px);
}

.hero-floating span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-floating strong {
  font-size: 1rem;
}

.hero-floating-top {
  top: 38px;
  right: 18px;
}

.hero-floating-bottom {
  bottom: 50px;
  left: -8px;
}

.benefits,
.products,
.customize,
.testimonials,
.info-section {
  padding: 0 0 var(--section-space);
}


.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.section-heading h2,
.story-panel h2,
.site-footer h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading > div {
  min-width: 0;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
}

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

.benefit-card,
.product-card,
.story-panel,
.quote-card,
.stats-card,
.site-footer {
  border: 1px solid rgba(23, 20, 18, 0.08);
  background: rgba(248, 248, 246, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-card h3,
.product-copy h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 20px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(154, 107, 57, 0.08);
  border: 1px solid rgba(154, 107, 57, 0.18);
}

.product-price-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}

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

.product-card {
  overflow: hidden;
  border-radius: 28px;
}

.product-preview {
  position: relative;
  min-height: 360px;
  padding: 22px;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(160deg, #e8e2d8, #c8b79f);
  overflow: hidden;
}

.product-preview::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(4px);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(250, 249, 247, 0.76);
  color: rgba(52, 49, 47, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-photo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.06)),
    rgba(35, 30, 25, 0.08);
  box-shadow: 0 24px 42px rgba(24, 18, 13, 0.14);
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(248, 248, 246, 0.72);
  transition:
    opacity 260ms ease,
    transform 360ms ease,
    filter 260ms ease;
}

.product-image-main {
  opacity: 1;
}

.product-image-hover {
  opacity: 0;
}

.product-preview.has-hover-image:hover .product-image-main {
  opacity: 0;
}

.product-preview.has-hover-image:hover .product-image-hover {
  opacity: 1;
  transform: scale(1.02);
}

.product-preview.has-hover-effect:hover .product-image-main {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

/* Ecobags: cover elimina as laterais brancas, moldura permanece igual */
.ecobag-card .product-image {
  object-fit: cover;
  background: none;
}

.product-shirt {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1 / 1.08;
  margin: 26px auto 0;
  border-radius: 26px 26px 34px 34px;
  background: var(--shirt-color);
  box-shadow:
    inset 0 -28px 42px rgba(0, 0, 0, 0.08),
    0 28px 40px rgba(24, 18, 13, 0.12);
  display: grid;
  place-items: center;
}

.product-shirt::before,
.product-shirt::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 82px;
  height: 100px;
  background: var(--shirt-color);
  z-index: -1;
}

.product-shirt::before {
  left: -32px;
  transform: rotate(36deg);
  border-radius: 24px;
}

.product-shirt::after {
  right: -32px;
  transform: rotate(-36deg);
  border-radius: 24px;
}

.shirt-print {
  width: 68%;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--print-color);
  text-transform: uppercase;
}

.product-copy {
  padding: 26px;
}

.product-copy p {
  margin: 0 0 20px;
}

.product-meta {
  display: grid;
  gap: 16px;
}

.meta-group {
  display: grid;
  gap: 10px;
}

.meta-group label,
.meta-group span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(52, 49, 47, 0.68);
}

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

.color-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(249, 249, 247, 0.82);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.color-option:hover,
.color-option.active {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(23, 20, 18, 0.32);
  background: #fff;
  box-shadow: 0 12px 18px rgba(24, 18, 13, 0.08);
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(23, 20, 18, 0.16);
}

.selected-color {
  display: inline-block;
  margin-left: 8px;
  color: var(--ink);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: none;
}

.size-select {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(250, 250, 248, 0.86);
  color: var(--ink);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.product-actions .button {
  flex: 1;
}

.button-secondary {
  background: rgba(249, 249, 247, 0.78);
  border-color: rgba(23, 20, 18, 0.1);
  color: var(--ink);
}

.customize-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  background:
    linear-gradient(160deg, rgba(154, 107, 57, 0.1), rgba(248, 248, 246, 0.82)),
    rgba(248, 248, 246, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.customize-copy {
  max-width: 640px;
}

.customize-copy h2,
.customize-card h3 {
  margin: 0 0 16px;
}

.customize-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.customize-copy p:last-child {
  margin-bottom: 0;
}

.customize-card {
  align-self: stretch;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  background: rgba(23, 20, 18, 0.92);
  color: #f8f2e8;
  box-shadow: 0 18px 36px rgba(31, 22, 12, 0.18);
}

.customize-card .info-label {
  background: rgba(255, 255, 255, 0.08);
  color: #f2ca8d;
}

.customize-list {
  margin: 0 0 28px;
  padding-left: 20px;
  color: rgba(248, 242, 232, 0.82);
  line-height: 1.8;
}

.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.story-panel,
.quote-card,
.stats-card,
.site-footer {
  border-radius: 30px;
}

.story-panel {
  padding: 38px;
}

.testimonials,
.info-section {
  position: relative;
}

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

.info-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  background: rgba(248, 248, 246, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card h3 {
  display: block;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.info-card p {
  color: var(--muted);
  line-height: 1.75;
}

/* ── Testimonials ──────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 28px;
  border-radius: 28px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  background: rgba(248, 248, 246, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.testimonial-card-featured {
  background: linear-gradient(160deg, rgba(23, 20, 18, 0.92), rgba(60, 42, 23, 0.92));
  color: #f8f2e8;
  border-color: transparent;
}

.testimonial-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.55;
  display: block;
  margin-bottom: 14px;
}

.testimonial-card-featured .testimonial-mark {
  color: var(--accent-soft);
  opacity: 0.75;
}

.testimonial-text {
  flex: 1;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.testimonial-card-featured .testimonial-text {
  color: rgba(248, 242, 232, 0.82);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-card-featured .testimonial-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-card-featured .info-label {
  background: rgba(255, 255, 255, 0.08);
  color: #f2ca8d;
}

.info-card-highlight {
  background:
    linear-gradient(180deg, rgba(154, 107, 57, 0.1), rgba(248, 248, 246, 0.78)),
    rgba(248, 248, 246, 0.78);
}

.info-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(154, 107, 57, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.story-aside {
  display: grid;
  gap: 24px;
}

.quote-card,
.stats-card {
  padding: 28px;
}

.quote-card {
  background:
    linear-gradient(160deg, rgba(23, 20, 18, 0.92), rgba(60, 42, 23, 0.92));
  color: #f8f2e8;
}

.quote-card p {
  color: rgba(248, 242, 232, 0.82);
  font-size: 1.15rem;
}

.site-footer {
  margin: 0 auto 42px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-copy p:last-child {
  margin-bottom: 0;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 6px;
  font-weight: 700;
  color: rgba(52, 49, 47, 0.74);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-copy-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .banner-frame {
    height: clamp(220px, 55vw, 420px);
  }

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

  .customize-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 760px) {
  .announcement-bar {
    gap: 8px 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
  }

  .site-nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: var(--section-space-mobile);
  }

  .hero-visual {
    min-height: 0;
  }

  .benefit-grid,
  .product-grid,
  .testimonial-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .benefits,
  .products,
  .customize,
  .testimonials,
  .info-section,
  .story {
    padding-bottom: var(--section-space-mobile);
  }

  .site-footer {
    padding: 30px;
    margin-bottom: 24px;
  }
}

@media (max-width: 540px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .announcement-bar {
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .button,
  .footer-link {
    width: 100%;
  }

  .product-actions {
    flex-direction: column;
  }

  .color-options {
    flex-direction: column;
  }

  .banner-frame {
    max-height: 90vw;
    border-radius: 20px;
  }
}
