/* DonFrancesco Cigars gentleman-club brochure */

:root {
  --ink: #080705;
  --espresso: #110c09;
  --panel: #1a120e;
  --panel-2: #231810;
  --raised: #2b1d14;
  --gold: #c4a35a;
  --gold-bright: #e4c878;
  --gold-dim: #8d7340;
  --cream: #f3e8d3;
  --cream-dim: #c9b89a;
  --muted: #9a8b74;
  --sage: #6e7d62;
  --rule: rgba(196, 163, 90, 0.32);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --pad: clamp(1.1rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(196, 163, 90, 0.08), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(110, 125, 98, 0.06), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--espresso) 40%, #0d0a08 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--cream);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  z-index: 100;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 7, 5, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

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

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark .name {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.wordmark .tag {
  margin-top: 0.22rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav {
  display: none;
}

.nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--panel);
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem var(--pad) 1rem;
}

.nav a {
  display: block;
  padding: 0.7rem 0.2rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.12);
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--gold-bright);
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3.2rem, 10vw, 6.5rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--gold);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

h1 {
  margin: 0 auto 0.85rem;
  max-width: 16ch;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
}

.lede {
  margin: 0 auto 1.8rem;
  max-width: 38ch;
  color: var(--cream-dim);
  font-size: 1.15rem;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.78rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: transparent;
  color: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */

.section {
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.section-head p {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--cream-dim);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Cards */

.stack {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.25rem 1.5rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.7rem;
}

.card h4 {
  margin: 0 0 0.2rem;
  font-size: 1.45rem;
}

.meta {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card p {
  margin: 0 0 1rem;
  color: var(--cream-dim);
}

.card p:last-child {
  margin-bottom: 0;
}

.label {
  display: block;
  margin: 1.15rem 0 0.35rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-bright);
  margin: 0.15rem 0 0.35rem;
}

.list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--cream-dim);
}

.list li + li {
  margin-top: 0.35rem;
}

.note {
  margin: 1.2rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(196, 163, 90, 0.06);
  color: var(--cream-dim);
  font-size: 0.98rem;
}

/* Bundles grid */

.bundle-grid {
  display: grid;
  gap: 1.25rem;
}

.bundle {
  display: flex;
  flex-direction: column;
}

.bundle .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Blog */

.article + .article {
  margin-top: 2.4rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 0 1rem 3.1rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.14);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.pairings h3 {
  margin: 1.4rem 0 0.4rem;
  font-size: 1.4rem;
}

/* Form */

.form-frame {
  width: 100%;
  min-height: 1400px;
  border: 1px solid var(--rule);
  background: #fff;
}

/* Footer */

.site-footer {
  margin-top: 2rem;
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid var(--rule);
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  margin-bottom: 0.9rem;
}

.site-footer a {
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.age-notice {
  margin: 0.85rem 0 0.4rem;
  color: var(--cream-dim);
  font-size: 0.88rem;
}

.copy {
  margin: 0;
  font-size: 0.82rem;
}

/* Desktop */

@media (min-width: 800px) {
  .nav-toggle { display: none; }

  .nav {
    display: flex;
    gap: 1.4rem;
    position: static;
    background: none;
    border: 0;
    padding: 0;
  }

  .nav a {
    display: inline-block;
    padding: 0.3rem 0;
    border: 0;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .wordmark .name {
    font-size: 1.2rem;
  }

  .card {
    padding: 1.8rem 1.7rem 1.9rem;
  }

  .rec-grid,
  .bundle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    max-width: 18ch;
  }
}
