:root {
  --bg: #eef0ef;
  --bg-alt: #e2e4e2;
  --text: #16233f;
  --text-muted: #6b7280;
  --border: rgba(22, 35, 63, 0.15);
  --font-display: "Archivo Expanded", "Helvetica Neue", Arial, sans-serif;
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.muted { color: var(--text-muted); }
.cta-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--text); padding-bottom: 4px; width: fit-content;
}
.cta-link.subtle { opacity: 0.7; border-bottom-color: rgba(22,35,63,0.4); }
.cta-link.on-dark { color: var(--bg); border-bottom-color: var(--bg); }
.divider-row { display: flex; align-items: center; gap: 12px; }
.divider-row .line { height: 1px; background: var(--border); flex: 1; }
.section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 3rem); }

/* Placeholder photo blocks — troque cada .photo-* pela imagem real
   (aplique background-image: url(...) na classe, ou volte a usar
   uma tag <img> dentro do elemento, como preferir). */
.photo { background-size: cover; background-position: center; }
.photo-sea { background-image: linear-gradient(165deg, #90aebf 0%, #b7cdd8 38%, #e4e8e4 62%, #ced2cb 100%); }
.photo-arch { background-image: linear-gradient(140deg, #dfe2df 0%, #c7cdc9 55%, #97a8ac 100%); }
.photo-object { background-image: linear-gradient(160deg, #e9ebe8 0%, #d3d7d2 100%); }
.photo-editorial { background-image: linear-gradient(180deg, rgba(22,35,63,0) 30%, rgba(22,35,63,0.82) 100%), linear-gradient(150deg, #8fa6b4 0%, #c4cfd0 60%, #dfe2df 100%); }
.photo-promo { background-image: linear-gradient(150deg, #6f8ea0 0%, #9fb6bf 55%, #d9dcd7 100%); }

.trust-bar {
  background: var(--text); color: var(--bg); text-align: center;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 1rem; display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap;
}

header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem clamp(1.5rem, 5vw, 3rem);
}
.logo { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; }
nav.main-links { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.2rem); }
nav.main-links a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.header-icons { display: flex; align-items: center; gap: 1.3rem; }
.header-icons svg { display: block; }
.cart-count { font-size: 0.75rem; margin-left: 0.35rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text); }
@media (max-width: 780px) {
  nav.main-links {
    position: fixed; inset: 0 0 0 auto; width: 240px; background: var(--bg);
    flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 1.2rem;
    transform: translateX(100%); transition: transform .3s ease; z-index: 5;
  }
  nav.main-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__content { position: relative; z-index: 1; padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(3rem, 8vw, 5.5rem); max-width: 640px; display: flex; flex-direction: column; gap: 1.4rem; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.02; font-weight: 700; text-transform: uppercase; margin: 0; }
.hero__divider { width: 46px; height: 1px; background: var(--text); }
.hero__subtitle { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.7; max-width: 30ch; margin: 0; }
.hero__ctas { display: flex; align-items: center; gap: 1.75rem; margin-top: 0.5rem; flex-wrap: wrap; }

.shop-header { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { text-decoration: none; color: inherit; display: block; }
.product-card__img { position: relative; aspect-ratio: 4/5; overflow: hidden; margin-bottom: 0.65rem; display: flex; align-items: flex-end; }
.product-card__add {
  position: relative; width: 100%; background: rgba(238,240,239,0.95);
  color: var(--text); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  text-align: center; padding: 0.6rem; border-top: 1px solid rgba(22,35,63,0.12);
  opacity: 0; transition: opacity .25s ease;
}
.product-card:hover .product-card__add { opacity: 1; }
.product-card__row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.product-note { font-size: 0.7rem; color: var(--text-muted); margin-top: 1.5rem; }

.categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 780px) { .categories { grid-template-columns: 1fr; } }
.category { display: flex; flex-direction: column; gap: 0.85rem; }
.category h3 { font-size: 1.35rem; text-transform: uppercase; font-weight: 700; margin: 0; }
.category p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.category__img { width: 100%; aspect-ratio: 4/5; }
.category-link { font-size: 1rem; }

.editorial { position: relative; min-height: 58vh; display: flex; align-items: flex-end; }
.editorial__content { position: relative; z-index: 1; color: var(--bg); max-width: 560px; padding: clamp(2rem, 5vw, 3.5rem); display: flex; flex-direction: column; gap: 1rem; }
.editorial__content .eyebrow { opacity: 0.85; }
.editorial__content h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.5rem); text-transform: uppercase; font-weight: 700; margin: 0; line-height: 1.08; }

.artists-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
@media (max-width: 760px) { .artists-grid { grid-template-columns: 1fr; } }
.artist-card { display: flex; flex-direction: column; gap: 1rem; }
.artist-card__img { width: 100%; aspect-ratio: 5/4; }
.artist-card h4 { font-size: 1.1rem; text-transform: uppercase; font-weight: 700; margin: 0; }
.artist-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
@media (max-width: 860px) { .collab-grid { grid-template-columns: 1fr; } }
.collab-card__img { width: 100%; aspect-ratio: 16/11; margin-bottom: 0.75rem; }
.collab-card h4 { font-size: 0.95rem; text-transform: uppercase; font-weight: 700; margin: 0 0 0.4rem; }
.collab-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.manifesto {
  padding: clamp(4rem, 9vw, 6rem) clamp(1.5rem, 5vw, 3rem);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; text-align: center;
}
.manifesto p { max-width: 640px; font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4; font-weight: 600; margin: 0; }

.newsletter { background: var(--text); color: var(--bg); text-align: center; }
.newsletter h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); text-transform: uppercase; margin: 0 0 0.6rem; font-weight: 700; }
.newsletter p { font-size: 0.9rem; color: rgba(238,240,239,0.75); margin: 0 0 1.75rem; }
.newsletter form { display: flex; justify-content: center; gap: 0.7rem; max-width: 400px; margin: 0 auto; flex-wrap: wrap; }
.newsletter input { flex: 1 1 200px; background: transparent; border: none; border-bottom: 1px solid rgba(238,240,239,0.5); color: var(--bg); padding: 0.7rem 0.2rem; font-size: 0.85rem; }
.newsletter input::placeholder { color: rgba(238,240,239,0.6); }
.newsletter input:focus { outline: none; border-bottom-color: var(--bg); }
.newsletter button { background: none; border: none; color: var(--bg); cursor: pointer; padding: 0.7rem 0.2rem; }

footer { padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 2.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); max-width: 26ch; line-height: 1.6; margin: 0.5rem 0 0.9rem; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
footer h5 { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 1rem; opacity: 0.7; }
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
footer a { font-size: 0.8rem; color: var(--text-muted); }
footer a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.2rem; font-size: 0.72rem; color: var(--text-muted); }