:root {
  --bg: #f8f3ea;
  --paper: #fffaf2;
  --ink: #1d1710;
  --muted: #746858;
  --coffee: #2b180c;
  --coffee-2: #4b2b12;
  --gold: #bb8424;
  --gold-bright: #e2b95c;
  --line: rgba(74, 43, 18, 0.16);
  --shadow: 0 24px 70px rgba(43, 24, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 50%;
  width: min(1040px, calc(100% - 28px));
  min-height: 58px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 7px 10px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 18px 48px rgba(24, 14, 6, 0.14);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 124px;
  height: 46px;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.78;
}

.nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.header-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--coffee), var(--gold));
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px min(6vw, 66px) 54px;
  color: #fff;
  background: var(--coffee);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 12, 5, 0.92) 0%, rgba(22, 12, 5, 0.74) 38%, rgba(22, 12, 5, 0.4) 100%),
    linear-gradient(0deg, rgba(22, 12, 5, 0.7) 0%, rgba(22, 12, 5, 0.14) 54%);
}

.hero-content {
  position: relative;
  width: min(500px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  max-width: 510px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3.1vw, 3.15rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-text {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button.primary {
  color: #211407;
  background: linear-gradient(135deg, #f2d47d, #b77a1d);
  box-shadow: 0 16px 32px rgba(183, 122, 29, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
}

.button.secondary.dark {
  border-color: rgba(43, 24, 12, 0.22);
  color: var(--coffee);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(242, 212, 125, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.section {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

.centered {
  width: min(660px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.line-grid article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.68);
}

.line-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.line-grid p,
.wholesale-copy p,
.location p,
.contact p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.wholesale {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) 1fr;
  gap: min(5vw, 54px);
  align-items: center;
  padding: 68px min(6vw, 66px);
  background:
    radial-gradient(circle at 10% 20%, rgba(226, 185, 92, 0.18), transparent 30%),
    linear-gradient(135deg, #211308, #4a2a12);
  color: #fff;
}

.wholesale-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wholesale-copy h2 {
  color: #fff;
}

.wholesale-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(226, 185, 92, 0.13);
}

.gallery-section {
  width: min(1080px, calc(100% - 32px));
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  background: #140c06;
  box-shadow: 0 18px 52px rgba(43, 24, 12, 0.16);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.photo-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.location {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 64px min(6vw, 66px);
  background: var(--paper);
}

.location img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  padding: 70px 16px;
  background:
    linear-gradient(rgba(35, 20, 8, 0.78), rgba(35, 20, 8, 0.78)),
    url("assets/loja.jpg") center / cover;
}

.contact-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4.5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  color: var(--muted);
  background: #fffaf2;
  text-align: center;
}

.footer img {
  width: 132px;
  height: 58px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    padding: 104px 22px 44px;
  }

  .intro,
  .wholesale,
  .location {
    grid-template-columns: 1fr;
  }

  .line-grid,
  .video-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid img {
    height: 280px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 7px 9px;
  }

  .brand img {
    width: 102px;
    height: 40px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2.08rem;
  }

  .hero {
    min-height: 78svh;
    padding: 94px 18px 32px;
  }

  .hero-media img {
    object-position: 58% 48%;
  }

  .section {
    padding: 52px 0;
  }

  .line-grid,
  .video-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: auto;
  }

  .wholesale,
  .location {
    padding: 52px 18px;
  }

  .button {
    width: 100%;
  }
}
