:root{
  --ink:#0b1220;
  --muted:#5f6b7a;
  --line:rgba(15,23,42,.10);
  --paper:#fbfbf8;
  --cream:#f4f1ea;
  --fog:#eef2ff;

  --brand:#1D4F61;
  --gold:#C9822B;

  --radius:18px;
  --shadow: 0 18px 45px rgba(15,23,42,.10);
  --max: 1200px;

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--paper);color:var(--ink);font:16px/1.6 var(--sans)}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}

.muted{color:var(--muted)}
.micro{font-size:12px}
.eyebrow{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(11,18,32,.72);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.14);
  font-weight:700;
  background:#fff;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{ text-decoration:none; border-color:rgba(11,18,32,.26); }
.btn--brand{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}
.btn--brand:hover{filter:brightness(.96)}
.btn--dark{
  background:#0b1220;color:#fff;border-color:#0b1220;
}

/* Topbar + Header */
.topbar{
  background:#0b1220;
  color:rgba(255,255,255,.86);
  font-size:13px;
}

/* ✅ TOPBAR: texto começa mais à direita */
.topbar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;

  /* novo: desloca o conteúdo da topbar para a direita */
  padding-left: 36px;   /* aumenta a margem esquerda => texto começa mais à direita */
  padding-right: 20px;  /* evita grudar na borda direita */
}

.topbar__link{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,251,248,.84);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

/* ✅ HEADER: logo + conteúdo um pouco mais à direita, mas mantendo o alinhamento do site */
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;

  /* novo: puxa o header um pouco pra direita, porém menos que a topbar */
  padding-left: 20px;
  padding-right: 20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:52px;
  width:auto;
}

.brand__sub{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:15px;
  border:1px solid var(--line);
  background:#fff;
}

/* Mobile: reduz offsets pra não "comer" espaço */
@media (max-width: 960px){
  .topbar__row{
    padding-left: 18px;
    padding-right: 14px;
  }
  .header__row{
    padding-left: 14px;
    padding-right: 14px;
  }
}

.hamburger{
  display:none;
  width:44px;height:44px;border-radius:12px;
  border:1px solid var(--line);background:#fff;cursor:pointer;
  position:relative;
}
.hamburger span{
  position:absolute;left:12px;right:12px;height:2px;background:var(--ink);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.hamburger span:nth-child(1){top:16px}
.hamburger span:nth-child(2){top:26px}

.nav{display:flex;align-items:center;gap:18px}
.nav__cta{
  padding:10px 14px;border-radius:999px;
  background:linear-gradient(90deg, rgba(201,130,43,.20), rgba(29,79,97,.18));
  border:1px solid rgba(201,130,43,.35);
  font-weight:800;
}

/* HERO (full + editorial) */
.hero{
  min-height: 92vh;
  display:grid;
  align-items:center;
  padding: 38px 0 24px;
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(201,130,43,.14), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(29,79,97,.12), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--fog));
}
.hero__grid{
  display:grid;
  gap:22px;
}
@media (min-width: 980px){
  .hero__grid{grid-template-columns: 1.05fr 1fr; align-items:center}
}

.hero h1{
  font-family:var(--serif);
  font-size: clamp(38px, 5.2vw, 64px);
  line-height:1.02;
  margin:10px 0 12px;
}
.hero__lead{max-width:54ch;font-size:18px;color:rgba(11,18,32,.72)}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}

/* Keep buttons on one line on mobile when possible */
.hero__cta .btn{flex:1 1 0}
@media (max-width:520px){
  .hero__cta{flex-wrap:nowrap}
  .hero__cta .btn{padding:12px 12px;font-size:14px}
}

.hero__media{
  border-radius:24px;
  overflow:hidden;
}
.hero__media img{
  width:100%;
  height: 520px;
  object-fit: cover; /* ocupa tudo */
}
@media (max-width:980px){
  .hero__media img{height: 380px}
}
@media (max-width:560px){
  .hero__media img{height: 320px}
}

/* SECTION spacing */
section{padding: 54px 0}
.section-title{
  display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:18px
}
.section-title h2{
  margin:0;
  font-family:var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height:1.05;
}
.section-title p{margin:0;max-width:60ch}

/* Collections cards (Origins vibe) */
.collections{
  display:grid;gap:18px;
}
@media (min-width: 980px){ .collections{grid-template-columns: repeat(3, 1fr)} }

.collection-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
  min-height: 420px;
}
.collection-card .bg{
  position:absolute;inset:0;
  background:#111;
}
.collection-card .bg img{
  width:100%;height:100%;object-fit:cover;filter:saturate(1.05) contrast(1.02);
}
.collection-card .veil{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.0) 10%, rgba(0,0,0,.62) 90%);
}
.collection-card .content{
  position:absolute;left:16px;right:16px;bottom:16px;
  color:#fff;
}
.collection-card h3{margin:8px 0 6px;font-family:var(--serif);font-size:24px}
.collection-card p{margin:0;color:rgba(255,255,255,.86);max-width:34ch}
.collection-card .actions{display:flex;gap:10px;margin-top:12px}
.collection-card .actions a{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
}
.collection-card .actions a:hover{border-color:rgba(255,255,255,.4)}

/* How it works (editorial blocks) */
.how{
  display:grid;gap:18px;
}
@media (min-width: 980px){ .how{grid-template-columns: 1fr 1fr 1fr} }
.how .card{
  background:#fff;border:1px solid var(--line);border-radius:22px;padding:18px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.how .k{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:rgba(11,18,32,.70)}
.how h3{margin:10px 0 8px;font-family:var(--serif);font-size:22px;line-height:1.1}

/* SHOP carousel (full-bleed style) */
.shop-band{
  background: linear-gradient(180deg, var(--paper), #fff);
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.carousel{
  position:relative;
}
.track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: minmax(260px, 1fr);
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding: 8px 2px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width:none;
}
.track::-webkit-scrollbar{display:none}
.slide{
  scroll-snap-align:start;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
  overflow:hidden;
}
.slide .media{
  height: 260px;
  background: #f6f7fb;
}
.slide .media img{
  width:100%;
  height:100%;
  object-fit: cover; /* ocupa toda área */
}
.slide .body{padding:14px 14px 16px}
.slide h3{margin:6px 0 6px;font-family:var(--serif);font-size:22px;line-height:1.1}
.slide .meta{display:flex;justify-content:space-between;gap:10px;margin-top:10px}
.dots{display:flex;gap:8px;justify-content:center;margin-top:10px}
.dot{
  width:9px;height:9px;border-radius:999px;border:0;background:rgba(11,18,32,.22);cursor:pointer
}
.dot.is-active{width:22px;background:rgba(11,18,32,.62)}

/* Stories (editorial) */
.stories{
  display:grid;gap:18px;
}
@media (min-width:980px){ .stories{grid-template-columns: 1.1fr .9fr} }
.story{
  border-radius:22px;overflow:hidden;background:#fff;border:1px solid rgba(15,23,42,.08);box-shadow: var(--shadow);
}
.story img{width:100%;height: 360px;object-fit:cover}
.story .body{padding:18px}
.story h3{margin:8px 0 8px;font-family:var(--serif);font-size:28px;line-height:1.05}
.story p{margin:0;color:rgba(11,18,32,.72);max-width:60ch}

/* Footer (mobile spacing comfy) */
.site-footer{background:#fff;border-top:1px solid rgba(15,23,42,.08);padding:24px 0 28px}
.footer__grid{
  display:grid;
  gap:18px;
}
@media (min-width: 980px){
  .footer__grid{grid-template-columns: 1.2fr .6fr .8fr; align-items:start}
}
.footer__brand{display:flex;align-items:center;gap:12px}
.footer__brand img{height:52px;width:auto}
.footer__meta{margin:12px 0 0;color:var(--muted);font-size:13px;line-height:1.7}
.footer__links{display:grid;gap:10px}
.footer__links a{color:rgba(11,18,32,.78)}
.footer__card{border:1px solid rgba(15,23,42,.10);border-radius:18px;padding:14px;background:linear-gradient(180deg,#fff, rgba(29,79,97,.04))}
.footer__cta{margin-top:12px}
.footer__bottom{padding-top:10px}

.disclaimer{
  margin: 14px 0 0;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.06);
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
}

/* Mobile nav */
@media (max-width: 960px){
  .hamburger{display:inline-flex}
  .nav{
    display:none;
    position:absolute;
    right:18px;
    top: 120px;
    width:min(92vw, 340px);
    flex-direction:column;
    gap:12px;
    padding:16px;
    border-radius:18px;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(15,23,42,.12);
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
}
.ellipsis, .dots-loading, .loading-dots, .more-dots, .carousel-ellipsis { 
  display: none !important; 
}

.dots::after,
.products-dots::after,
.carousel::after,
.track::after {
  content: "" !important;
  display: none !important;
}
#shop .slide .meta{
  display: flex;
  justify-content: center;  
  margin-top: 14px;
}

#shop .slide .meta .btn{
  text-align: center;
}
.story-cta{
  margin-top:12px;
  display:flex;
  justify-content:flex-end;
}
.footer__legal{
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 20px 30px;
  border-top: 1px solid #e5e7eb;
}

.footer__legal p{
  margin: 10px 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #6b7280;
}

.footer-disclaimer{
  font-style: italic;
}

.footer-clickbank{
  font-size: 12px;
  color: #4b5563;
}

.footer-clickbank strong{
  color: #111827;
}

.footer-copy{
  font-size: 13px;
}

