:root {
  --verde: #1e3f20;
  --creme: #f3efe0;
  --terracota: #c86446;
  --preto: #121212;
  --folha: #2a5630;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--creme);
  color: var(--preto);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 6vw;
  background: color-mix(in srgb, var(--creme) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--verde) 15%, transparent);
}

.nav__brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 1.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links a:hover {
  color: var(--terracota);
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--verde);
  color: var(--creme);
  padding: 0.7rem 1.1rem;
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 6vw 5rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--folha);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero__logo {
  width: min(320px, 70vw);
  margin-bottom: 1.5rem;
}

.hero h1,
.section-head h2,
.essence h2 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  max-width: 16ch;
}

.hero__sub {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
}

.hero__lead {
  max-width: 42rem;
  margin: 1.4rem auto 2rem;
  color: #3a3a3a;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--verde);
  color: var(--creme);
}

.btn--ghost {
  border: 1px solid var(--verde);
  color: var(--verde);
}

.lines,
.collections,
.essence {
  padding: 4.5rem 6vw;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 2.4rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.section-head p:last-child {
  max-width: 40rem;
  color: #444;
}

.grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fffdf6;
  border: 1px solid color-mix(in srgb, var(--verde) 18%, transparent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--verde) 18%, transparent);
}

.card__media {
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: #e8e2ce;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__media--logo {
  background: #f7f3e6;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.card__media--logo img {
  width: min(78%, 280px);
  height: auto;
  object-fit: contain;
}

.card__media--woman {
  position: relative;
}

.woman-label {
  position: absolute;
  bottom: 1rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--terracota);
}

.card__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 700;
}

.card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: var(--verde);
}

.card p {
  font-size: 0.92rem;
  color: #444;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin-top: 0.3rem;
}

.chips li {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.55rem;
  border: 1px solid color-mix(in srgb, var(--verde) 28%, transparent);
  color: var(--verde);
}

.card__go {
  margin-top: auto;
  padding-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde);
}

.collections {
  background: color-mix(in srgb, var(--verde) 6%, var(--creme));
}

.collection-groups {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.collection-groups h3 {
  font-family: "Cinzel", serif;
  color: var(--verde);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.collection-groups dl > div {
  margin-bottom: 0.85rem;
}

.collection-groups dt {
  font-weight: 700;
  font-size: 0.88rem;
}

.collection-groups dd {
  font-size: 0.86rem;
  color: #555;
}

.essence {
  max-width: var(--max);
  margin: 0 auto;
}

.values {
  margin-top: 1.4rem;
  list-style: none;
}

.values li {
  padding: 0.45rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--verde) 18%, transparent);
  font-size: 0.9rem;
}

.footer {
  background: var(--verde);
  color: var(--creme);
  padding: 3rem 6vw 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.footer__brand img {
  width: 180px;
  filter: brightness(0) invert(1) sepia(0.2);
  margin-bottom: 0.6rem;
}

.footer__qr {
  display: block;
  text-align: center;
  color: inherit;
}

.footer__qr:hover span {
  text-decoration: underline;
}

.footer__qr img {
  width: 110px;
  height: 110px;
  background: #fff;
  padding: 6px;
  margin: 0 auto 0.5rem;
}

.footer__qr span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.footer__legal {
  grid-column: 1 / -1;
  opacity: 0.7;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .nav__links {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer__qr {
    justify-self: start;
  }
}
