:root {
  --bg: #070604;
  --gold: #c9a15f;
  --gold-2: #e1c17f;
  --cream: #f5efe4;
  --muted: #b8b0a4;
  --line: rgba(211, 171, 102, .34);
  --glass: rgba(11, 9, 7, .69);
  --glass-2: rgba(18, 14, 10, .78);
  --max: 1540px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background: #070604;
  position: relative;
  isolation: isolate;
}

/* Full-page photographic background: fixed, so it remains visible while scrolling. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/puro-index-background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark veil for readability without hiding the cigar boxes. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(3, 3, 3, .78) 0%,
      rgba(4, 3, 2, .62) 42%,
      rgba(4, 3, 2, .38) 72%,
      rgba(4, 3, 2, .46) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .15) 0%,
      rgba(0, 0, 0, .22) 52%,
      rgba(0, 0, 0, .48) 100%);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(5,4,3,.67), rgba(5,4,3,.42));
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-leaf {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-block {
  display: flex;
  flex-direction: column;
}

.brand-name,
.footer-brand strong {
  font-family: "Cinzel", serif;
  font-size: 23px;
  letter-spacing: .13em;
  color: var(--gold-2);
}

.brand-sub,
.footer-brand small {
  color: #a59b8f;
  font-size: 9px;
  letter-spacing: .42em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-family: "Playfair Display", serif;
  font-size: 15px;
}

.main-nav a {
  position: relative;
  color: #efe7db;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right .2s ease;
}

.main-nav a:hover::after { right: 0; }

.header-cta {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}


.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 2px;
}

.lang-btn {
  min-height: 0;
  width: 34px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  background: rgba(0,0,0,.18);
  color: inherit;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  filter: saturate(.86) brightness(.94);
  transition: border-color .18s ease, background .18s ease, transform .18s ease, filter .18s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(225,193,127,.45);
  background: rgba(225,193,127,.08);
  filter: none;
}

.lang-btn.active {
  border-color: var(--gold);
  background: rgba(225,193,127,.12);
  box-shadow: 0 0 0 1px rgba(225,193,127,.08) inset;
  filter: none;
}

.hero {
  min-height: 100vh;
  padding: 145px 0 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 74px;
  align-items: end;
}

.eyebrow,
.section-kicker {
  color: var(--gold-2);
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 20px;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.035em;
}

h1 span { color: var(--gold-2); }

h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
}

.gold-line {
  width: 62px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0 24px;
}

.hero-text {
  max-width: 780px;
  margin: 0 0 26px;
  color: #eee6db;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1.55;
}

.hero-quote {
  align-self: center;
  border-left: 1px solid var(--gold);
  padding-left: 32px;
  margin-top: 120px;
}

.hero-quote p {
  margin: 0;
  color: var(--gold-2);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.waitlist-form { max-width: 780px; }

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

.field-wrap {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(225,193,127,.68);
  background: rgba(11,9,7,.68);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.field-wrap:focus-within {
  border-color: var(--gold-2);
  background: rgba(18,14,10,.78);
  box-shadow: 0 0 0 2px rgba(225,193,127,.08);
}

.email-field {
  position: relative;
}

.mail-icon {
  color: var(--gold-2);
  padding-left: 16px;
  font-size: 18px;
  flex: 0 0 auto;
}

.field-wrap input,
.field-wrap select {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 16px;
  font: inherit;
}

.field-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 14px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field-wrap select option {
  color: #f5efe4;
  background: #15110d;
}

.field-wrap input::placeholder {
  color: #9f978d;
}

.waitlist-submit {
  width: 100%;
  margin-top: 12px;
}

button {
  border: 1px solid #d7b672;
  background: linear-gradient(180deg, #d8bb7f, #b88c4d);
  color: #120e09;
  padding: 0 22px;
  min-height: 54px;
  font: 600 12px "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: .075em;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

button:disabled { opacity: .55; cursor: not-allowed; }

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  color: #9e968d;
  font-size: 11px;
}

.privacy-check input { margin-top: 3px; }

.form-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--gold-2);
  font-size: 12px;
}

.microcopy {
  margin: 12px 0 0;
  font-size: 12px;
  color: #d8d0c6;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(225,193,127,.22);
}

.feature-mini {
  text-align: center;
  padding: 0 24px;
}

.feature-mini + .feature-mini {
  border-left: 1px solid rgba(225,193,127,.34);
}

.feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 25px;
}

.feature-mini h3 {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: .03em;
}

.feature-mini p {
  margin: 0;
  color: #e1d8cc;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  line-height: 1.35;
}

.content-section {
  padding: 110px 0;
}

.content-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(12,10,8,.66), rgba(8,7,6,.54));
  border: 1px solid rgba(225,193,127,.18);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  padding: 38px;
}

.glass-panel p {
  color: var(--muted);
  font-size: 16px;
}

.stat-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-label {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .22em;
}

.stat-panel strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  margin: 10px 0;
}

.roadmap-list {
  display: grid;
  gap: 0;
}

.roadmap-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.roadmap-list span {
  color: var(--gold);
  grid-row: 1 / 3;
  font-size: 12px;
  letter-spacing: .16em;
}

.roadmap-list strong {
  font-family: "Cinzel", serif;
  font-size: 15px;
}

.roadmap-list small {
  color: #8f877f;
}

.final-cta-section { padding-top: 90px; padding-bottom: 120px; }

.final-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta .waitlist-form { margin: 28px auto 0; }
.final-cta .privacy-check { justify-content: center; }

.site-footer {
  border-top: 1px solid rgba(225,193,127,.16);
  background: rgba(6,5,4,.68);
  backdrop-filter: blur(12px);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  color: #9f978d;
  font-size: 12px;
}

.disabled-link {
  cursor: default;
  opacity: .72;
}

.footer-tagline {
  justify-self: end;
  display: flex;
  flex-direction: column;
  color: var(--gold-2);
  font-size: 9px;
  letter-spacing: .28em;
}

.copyright {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: #777068;
  text-align: center;
  font-size: 11px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .main-nav { display: none; }
  .header-cta { justify-self: end; }

  .hero-grid,
  .content-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-quote {
    margin-top: 12px;
    max-width: 480px;
  }

  .feature-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .feature-mini:nth-child(3) { border-left: 0; }
}

@media (max-width: 680px) {
  body::before {
    background-position: 62% center;
  }
  .container { width: min(calc(100% - 26px), var(--max)); }
  .site-header { position: sticky; }
  .header-inner { min-height: 70px; }
  .brand-name { font-size: 17px; }
  .brand-sub { display: none; }
  .header-cta { display: none; }
  .language-switcher { gap: 3px; justify-self: end; }
  .lang-btn { width: 30px; height: 28px; font-size: 17px; }

  .hero { padding-top: 74px; }
  .hero-quote { display: none; }

  .waitlist-fields { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-mini + .feature-mini {
    border-left: 0;
    border-top: 1px solid rgba(225,193,127,.22);
    padding-top: 24px;
  }

  .glass-panel { padding: 26px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
  .footer-tagline { justify-self: center; }
}


@media (max-width: 760px) {
  .waitlist-fields {
    grid-template-columns: 1fr;
  }
}


/* ---------- Puro Index v6: supplied official logo ---------- */
.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.header-logo {
  display: block;
  width: 190px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.22));
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo-wrap a {
  display: inline-flex;
  line-height: 0;
}

.footer-logo {
  display: block;
  width: 260px;
  max-width: min(260px, 74vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.34));
}

.site-footer {
  padding-top: 42px;
  padding-bottom: 34px;
}

@media (max-width: 1020px) {
  .header-logo {
    width: 168px;
    max-height: 60px;
  }
}

@media (max-width: 680px) {
  .header-logo {
    width: 138px;
    max-height: 54px;
  }

  .footer-logo-wrap {
    justify-content: center;
  }

  .footer-logo {
    width: 230px;
  }
}


/* ---------- Puro Index v7: company details ---------- */
.footer-logo-wrap {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #a49a8e;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .02em;
}

.company-info strong {
  color: var(--gold-2);
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

@media (max-width: 680px) {
  .footer-logo-wrap {
    align-items: center;
  }

  .company-info {
    align-items: center;
    text-align: center;
  }
}


/* ---------- Puro Index v8: larger header logo ---------- */
.site-header .header-inner {
  min-height: 104px;
}

.site-header .brand-logo {
  min-width: 255px;
}

.site-header .header-logo {
  width: 255px !important;
  max-width: 255px;
  max-height: 90px !important;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1100px) {
  .site-header .brand-logo {
    min-width: 215px;
  }

  .site-header .header-logo {
    width: 215px !important;
    max-width: 215px;
    max-height: 78px !important;
  }
}

@media (max-width: 760px) {
  .site-header .header-inner {
    min-height: 82px;
  }

  .site-header .brand-logo {
    min-width: 172px;
  }

  .site-header .header-logo {
    width: 172px !important;
    max-width: 172px;
    max-height: 68px !important;
  }
}


/* ---------- Puro Index v9: wide desktop layout + multilingual alignment ---------- */

/* Use substantially more of the monitor on desktop. */
@media (min-width: 1181px) {
  .container {
    width: min(calc(100% - 96px), var(--max));
  }

  .site-header .container {
    width: min(calc(100% - 64px), 1660px);
  }

  .site-header .header-inner {
    min-height: 118px;
    grid-template-columns: 116px minmax(0, 1fr) auto auto;
    gap: clamp(16px, 1.7vw, 30px);
  }

  /* The original logo is square: size it by height, rather than constraining it
     with a wide width + small max-height. */
  .site-header .brand-logo {
    min-width: 116px;
    width: 116px;
  }

  .site-header .header-logo {
    width: 112px !important;
    max-width: 112px !important;
    height: 112px !important;
    max-height: none !important;
    object-fit: contain;
    object-position: left center;
  }

  .main-nav {
    min-width: 0;
    flex-wrap: nowrap;
    gap: clamp(14px, 1.5vw, 27px);
    font-size: clamp(13px, .98vw, 15px);
  }

  .main-nav a,
  .header-cta {
    white-space: nowrap;
  }

  .header-cta {
    padding-inline: 18px;
    flex: 0 0 auto;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  /* Give the actual content more horizontal room. */
  .hero {
    padding-top: 158px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.68fr) minmax(250px, .42fr);
    gap: clamp(38px, 4vw, 74px);
  }

  .hero-copy {
    max-width: 1080px;
  }

  h1 {
    max-width: 1080px;
    font-size: clamp(58px, 5.15vw, 88px);
    line-height: .99;
    white-space: nowrap;
  }

  .hero-text {
    max-width: 940px;
  }

  .waitlist-form {
    max-width: 940px;
  }

  .feature-strip {
    width: 100%;
  }

  .content-grid,
  .two-col {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
    gap: 32px;
  }

  .glass-panel {
    padding: 44px 46px;
  }

  .final-cta {
    max-width: 1120px;
  }
}

/* At medium desktop/laptop widths keep labels on one line where possible,
   then collapse navigation before it starts wrapping. */
@media (min-width: 1021px) and (max-width: 1180px) {
  .container {
    width: min(calc(100% - 48px), 1120px);
  }

  .site-header .container {
    width: calc(100% - 36px);
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .main-nav a,
  .header-cta {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(52px, 6.2vw, 72px);
  }
}

/* Explicitly release the desktop no-wrap headline on tablets and phones. */
@media (max-width: 1180px) {
  h1 {
    white-space: normal;
  }
}
