:root {
  /* Cor oficial BarroAR. Não alterar sem aprovação expressa da proprietária. */
  --brand-primary: #8b4321;
  --clay-950: var(--brand-primary);
  --clay-900: var(--brand-primary);
  --clay-800: var(--brand-primary);
  --clay-700: var(--brand-primary);
  --clay-500: #b96535;
  --clay-300: #d6a172;
  --sand-100: #f6efe6;
  --sand-200: #ead8c2;
  --sage: #5f6d55;
  --ink: #1f1915;
  --muted: #6f5d50;
  --white: #fffaf4;
  --shadow: 0 24px 60px rgba(37, 17, 8, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-100);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 244, 0.94);
  color: var(--clay-950);
  box-shadow: 0 12px 34px rgba(37, 17, 8, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 190px;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0 14px;
  color: inherit;
  background: rgba(255, 250, 244, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: var(--white);
  font-size: 0.76rem;
}

.site-header.is-scrolled .cart-button span,
.site-header.is-open .cart-button span {
  color: var(--white);
  background: var(--brand-primary);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
  animation: hero-image-reveal 700ms ease both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(36, 19, 12, 0.9) 0%, rgba(36, 19, 12, 0.64) 39%, rgba(36, 19, 12, 0.1) 82%),
    linear-gradient(0deg, rgba(36, 19, 12, 0.42), rgba(36, 19, 12, 0.12));
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1,
.intro h2,
.section-head h2,
.atelier h2,
.orders h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(5.2rem, 15vw, 12rem);
}

.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  color: rgba(255, 250, 244, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--clay-700);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 250, 244, 0.58);
  background: rgba(255, 250, 244, 0.08);
}

.product-ribbon {
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(90, 43, 24, 0.13);
  background: var(--white);
}

.product-ribbon-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: product-ribbon-scroll 58s linear infinite;
}

.product-ribbon:hover .product-ribbon-track,
.product-ribbon:focus-within .product-ribbon-track {
  animation-play-state: paused;
}

.product-ribbon-group {
  display: flex;
  gap: 10px;
}

.product-ribbon-item {
  display: block;
  flex: 0 0 auto;
  width: clamp(118px, 10vw, 176px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: var(--sand-200);
  cursor: pointer;
}

.product-ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-ribbon-item:hover img,
.product-ribbon-item:focus-visible img {
  transform: scale(1.05);
}

.product-ribbon-item:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: -3px;
}

@keyframes product-ribbon-scroll {
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@keyframes hero-image-reveal {
  from {
    opacity: 0;
    transform: scale(1.015);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 84px);
  background: var(--white);
}

.intro h2,
.section-head h2,
.atelier h2,
.orders h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.intro p:last-child,
.atelier-copy p,
.orders p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
}

.section-kicker {
  color: var(--clay-700);
}

.section-pad {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 84px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 720px) minmax(0, 1fr);
  margin-bottom: 38px;
}

.collection {
  background: #efe4d7;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(90, 43, 24, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(68, 35, 20, 0.08);
}

.product-card[data-managed-product] {
  cursor: pointer;
}

.product-card[data-managed-product]:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 3px;
}

.product-card,
.gallery-item,
.reference-strip figure {
  scroll-margin-top: 110px;
}

.product-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: #d8b18c;
}

.product-info {
  padding: 24px;
}

.product-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.product-info p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(31, 25, 21, 0.72);
}

.product-dialog-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  float: right;
  width: 44px;
  height: 44px;
  margin: 12px 12px -56px 0;
  border: 1px solid rgba(90, 43, 24, 0.18);
  border-radius: 50%;
  color: var(--clay-900);
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.product-dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.product-dialog-media {
  min-width: 0;
  padding: 18px;
  background: var(--sand-100);
}

.product-dialog-viewer {
  position: relative;
}

.product-dialog-viewer > img {
  width: 100%;
  height: min(68vh, 680px);
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
}

.product-custom-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(90, 43, 24, 0.14);
  border-radius: 6px;
  color: var(--clay-700);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-dialog-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 250, 244, 0.58);
  border-radius: 50%;
  color: var(--white);
  background: rgba(31, 25, 21, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-dialog-arrow.previous {
  left: 14px;
}

.product-dialog-arrow.next {
  right: 14px;
}

.product-dialog-arrow:hover {
  background: var(--brand-primary);
}

.product-dialog-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(31, 25, 21, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-dialog-copy {
  align-self: center;
  padding: 32px;
}

.product-dialog-copy span {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-dialog-copy h2 {
  margin: 12px 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
}

.product-dialog-price {
  display: block;
  margin: 18px 0;
  color: var(--brand-primary);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.product-dialog-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.product-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.product-dialog-whatsapp,
.product-dialog-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--brand-primary);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.product-dialog-cart {
  color: var(--brand-primary);
  background: var(--white);
}

.product-dialog-whatsapp {
  color: var(--white);
  background: var(--brand-primary);
}

.product-dialog-whatsapp:hover,
.product-dialog-whatsapp:focus-visible,
.product-dialog-cart:hover,
.product-dialog-cart:focus-visible {
  filter: brightness(1.08);
}

.cart-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cart-dialog::backdrop {
  background: rgba(31, 25, 21, 0.72);
}

.cart-dialog-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  float: right;
  width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 12px 12px -56px 0;
  border: 1px solid rgba(90, 43, 24, 0.18);
  border-radius: 50%;
  color: var(--clay-900);
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-dialog-inner {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.cart-dialog-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.95;
}

.cart-dialog-head p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-contact {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(90, 43, 24, 0.13);
  border-radius: 8px;
  background: var(--sand-100);
}

.cart-contact h3 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.cart-contact > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.cart-contact label {
  display: grid;
  gap: 7px;
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-contact input,
.cart-contact textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(90, 43, 24, 0.16);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.cart-contact textarea {
  min-height: 92px;
  resize: vertical;
}

.cart-contact label:last-child {
  grid-column: 1 / -1;
}

.cart-site-submit {
  justify-self: start;
  min-height: 46px;
  border: 1px solid var(--brand-primary);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--brand-primary);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-site-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.cart-site-message {
  min-height: 20px;
  margin: 0;
  color: var(--brand-primary);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}

.cart-site-message.is-error {
  color: #8a2925;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(90, 43, 24, 0.28);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(90, 43, 24, 0.13);
  border-radius: 8px;
  background: #fffdf9;
}

.cart-item img {
  width: 78px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--sand-200);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item strong {
  color: var(--brand-primary);
}

.cart-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cart-item-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  min-height: 36px;
  border: 1px solid rgba(90, 43, 24, 0.18);
  border-radius: 6px;
  color: var(--brand-primary);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-item-controls [data-remove-cart-item] {
  width: auto;
  padding: 0 10px;
  color: #8a2925;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--sand-100);
}

.cart-summary span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.cart-summary strong {
  color: var(--brand-primary);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.cart-actions button,
.cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--brand-primary);
  border-radius: 6px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
}

.cart-actions button {
  color: var(--brand-primary);
  background: var(--white);
}

.cart-checkout {
  color: var(--white);
  background: var(--brand-primary);
}

.cart-checkout.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.product-dialog-whatsapp.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.gallery {
  background: var(--white);
}

.references {
  background: #efe4d7;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #d8b18c;
  box-shadow: 0 18px 42px rgba(68, 35, 20, 0.08);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(36, 19, 12, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.reference-strip figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(68, 35, 20, 0.08);
}

.reference-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.reference-strip figcaption {
  padding: 12px;
  color: var(--clay-900);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.atelier {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  background: var(--clay-950);
  color: var(--white);
}

.atelier .section-kicker {
  color: var(--clay-300);
}

.atelier-copy p {
  margin-top: 24px;
  color: rgba(255, 250, 244, 0.76);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list div {
  padding: 24px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.06);
}

.process-list span {
  display: block;
  color: var(--clay-300);
  font-family: var(--serif);
  font-size: 2.3rem;
}

.process-list strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.process-list p {
  margin: 10px 0 0;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.65;
}

.orders {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(rgba(255, 250, 244, 0.86), rgba(255, 250, 244, 0.9)),
    repeating-linear-gradient(90deg, rgba(139, 67, 33, 0.08) 0 1px, transparent 1px 92px);
}

.orders-inner {
  max-width: 850px;
}

.orders p {
  max-width: 680px;
  margin-top: 22px;
  margin-bottom: 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 32px;
  padding: 42px clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--clay-900);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 250, 244, 0.72);
}

.footer-links {
  display: grid;
  align-content: center;
  gap: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--clay-300);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 92px;
  }

  .menu-button {
    display: block;
  }

  .cart-button {
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    color: var(--clay-950);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(36, 19, 12, 0.83), rgba(36, 19, 12, 0.2));
  }

  .intro,
  .section-head,
  .atelier,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .product-dialog-copy {
    padding: 24px;
  }

  .cart-dialog-inner {
    padding: 24px;
  }

  .cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .cart-contact-grid {
    grid-template-columns: 1fr;
  }

  .product-dialog-viewer > img {
    height: min(58vh, 520px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

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

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 154px;
    min-width: 154px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .button {
    width: 100%;
  }

  .product-dialog-actions,
  .cart-actions,
  .cart-summary {
    display: grid;
  }

  .product-dialog-whatsapp,
  .product-dialog-cart,
  .cart-actions button,
  .cart-checkout {
    width: 100%;
  }

  .product-ribbon {
    padding: 7px 0;
  }

  .product-ribbon-track,
  .product-ribbon-group {
    gap: 7px;
  }

  .product-ribbon-item {
    width: 104px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .reference-strip {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .intro h2,
  .section-head h2,
  .atelier h2,
  .orders h2 {
    font-size: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }

  .product-ribbon {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .product-ribbon-track {
    animation: none;
  }

  .product-ribbon-group:last-child {
    display: none;
  }
}
