/* Madone Cigars — static site
   Palette: ivory, charcoal, taupe, dark wood, oxblood */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ivory: #f6f4f1;
  --ivory-2: #efeae2;
  --paper: #fbf9f6;
  --charcoal: #1c1816;
  --charcoal-2: #2a2421;
  --ink: #2c2724;
  --muted: #5c534c;
  --taupe: #8e8175;
  --wood: #3a2b24;
  --oxblood: #570713;
  --oxblood-2: #7a1424;
  --line: rgba(87, 7, 19, 0.28);
  --line-strong: #570713;
  --ivory-rgb: 246, 244, 241;
  --charcoal-rgb: 28, 24, 22;
  --header-h: 8rem;
  --gutter: clamp(1.25rem, 3.2vw, 4rem);
  --measure: 38rem;
  --page: 76.5rem;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.age-pending,
html.age-pending body,
body.age-gate-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

html.age-pending body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--ivory);
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin: 0;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

address {
  font-style: normal;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.6rem 1rem;
}

.skip:focus {
  top: 1rem;
}

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

:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}

.container,
.header-inner {
  width: min(calc(100% - 2 * var(--gutter)), var(--page));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 2 * var(--gutter)), 44rem);
  margin-inline: auto;
}

.rule {
  display: block;
  width: 3.25rem;
  height: 1px;
  background: var(--oxblood);
  border: 0;
  margin: 1.25rem 0 1.5rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0 0 0.85rem;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: var(--measure);
}

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid currentColor;
  padding: 0.8rem 1.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.btn::after {
  content: "→";
  font-size: 0.95em;
  line-height: 1;
}

.btn:hover {
  color: var(--oxblood);
  border-color: var(--oxblood);
}

.btn--light {
  color: var(--ivory);
}

.btn--light:hover {
  color: #fff;
  border-color: #fff;
}

.btn--solid {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.btn--solid:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--ivory);
}

.text-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  color: var(--oxblood);
}

/* Header */

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid rgba(28, 24, 22, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: auto;
}

.brand-full {
  height: 7.15rem;
}

.brand-short {
  display: none;
  height: 3.85rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: 0;
  padding: 0.4rem 0;
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
}

.nav-toggle-lines {
  display: block;
  width: 1.15rem;
  height: 9px;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.25s var(--ease);
}

.nav-toggle-lines::before {
  top: 1px;
}

.nav-toggle-lines::after {
  bottom: 1px;
}

.nav-toggle[aria-expanded="true"] {
  color: var(--oxblood);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before,
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  background: var(--oxblood);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-3px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  gap: 1.65rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.3rem 0;
}

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

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--oxblood);
}

/* Hero */

.hero {
  position: relative;
  height: 72vh;
  min-height: 30rem;
  max-height: 46rem;
  color: var(--ivory);
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% 52%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 14, 10, 0.42) 0%,
    rgba(20, 14, 10, 0.18) 38%,
    rgba(20, 14, 10, 0) 62%
  );
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 2.75rem;
}

.hero-copy .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.02;
  text-shadow: 0 1px 18px rgba(20, 12, 8, 0.28);
}

.hero-support {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 36rem;
  color: rgba(246, 244, 241, 0.94);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem 1.75rem;
  margin-top: 0.35rem;
}

.text-link--light {
  color: var(--ivory);
  border-bottom-color: rgba(246, 244, 241, 0.5);
}

.text-link--light:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Split editorial */

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3.25rem 0 3.75rem;
}

.section--ivory {
  background: var(--ivory);
}

.section--paper {
  background: var(--paper);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--ivory-2);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--ivory);
}

.section--charcoal .lede {
  color: #e6ddd4;
}

.section--charcoal .eyebrow {
  color: #d4b8bc;
}

.section--charcoal .rule {
  background: #8a2433;
}

.section--wood {
  background: var(--wood);
  color: var(--ivory-2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.02fr);
  gap: 3.5rem;
  align-items: center;
}

.split--lineup {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.02fr);
  gap: 3.25rem;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}

.split-copy h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  max-width: 14ch;
}

.split-copy .lede {
  margin-top: 0.2rem;
}

.vitola-index {
  margin: 2rem 0 2.25rem;
  display: grid;
  gap: 0.85rem;
  max-width: 18rem;
}

.vitola-index li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  font-size: 0.95rem;
}

.vitola-index strong {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.vitola-index span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.frame {
  background: var(--paper);
  padding: 1.75rem 1.25rem 1.15rem;
}

.frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Isolated cigar lineup — full cap to foot, never cropped */

.lineup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.9rem, 2.4vw, 2.1rem);
  width: 100%;
  padding: 0.35rem 0 0;
  overflow: visible;
}

.lineup-item {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
}

.lineup-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}

.lineup-item--toro img,
.lineup-item--gordo img {
  height: 30rem;
}

.lineup-item--robusto img {
  height: 25rem;
}

.lineup--page {
  padding: 0.5rem 0 1.5rem;
}

.lineup--page .lineup-item--toro img,
.lineup--page .lineup-item--gordo img {
  height: 32rem;
}

.lineup--page .lineup-item--robusto img {
  height: calc(32rem * 5 / 6);
}

/* Held / smoked */

.held {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: center;
}

.held-figure {
  display: flex;
  justify-content: center;
  min-height: 28rem;
}

.held-figure img {
  height: 34rem;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.held-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  max-width: 12ch;
}

.held-copy .lede {
  color: #d9d0c6;
}

.held-copy .btn {
  margin-top: 1.75rem;
}

/* Three vitolas */

.vitolas {
  text-align: center;
}

.vitolas-head {
  margin-bottom: 2.75rem;
}

.vitolas-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.vitola-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  align-items: end;
  max-width: 58rem;
  margin: 0 auto;
}

.vitola {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.vitola img {
  width: auto;
  max-width: none;
  height: 26rem;
  object-fit: contain;
}

.vitola--robusto img {
  height: 21.6rem;
}

.vitola figcaption {
  text-align: center;
}

.vitola h3 {
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vitola p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

/* Object / box */

.object-photo {
  padding: 0;
}

.object-photo img {
  width: 100%;
  height: min(78vh, 46rem);
  object-fit: cover;
  object-position: center 55%;
}

.object-caption {
  padding: 1.35rem 0 4rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.object-caption h2 {
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.object-caption p {
  color: var(--muted);
  max-width: 28rem;
}

/* Finer hour band */

.moment {
  position: relative;
  min-height: 36rem;
  height: 62vh;
  max-height: 42rem;
  overflow: hidden;
  color: var(--ivory);
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 45%;
}

.moment-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 10, 8, 0.12) 0%,
    rgba(16, 10, 8, 0.08) 40%,
    rgba(16, 10, 8, 0.42) 100%
  );
}

.moment-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 3rem;
}

.moment h2 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.moment p {
  margin-top: 0.6rem;
  font-size: 1.15rem;
  color: rgba(246, 244, 241, 0.9);
}

/* Pillars */

.pillars {
  padding: 5.5rem 0 5rem;
}

.pillars h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.pillars .lede {
  margin-top: 1.75rem;
}

/* Close / trade */

.close {
  padding: 4.25rem 0;
}

.close-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: stretch;
}

.close-grid > div {
  display: flex;
  flex-direction: column;
}

.close-grid .btn,
.close-grid .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.close h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
}

.close p {
  margin: 1rem 0 1.6rem;
  color: #d4cbc3;
  max-width: 32rem;
}

/* Ritual / in-hand — contained editorial feature, not a second hero */

.ritual {
  padding: 1.15rem 0 1.35rem;
  background: var(--ivory);
}

.ritual-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--charcoal);
  color: var(--ivory-2);
  min-height: 30rem;
  max-height: 33.75rem;
  overflow: hidden;
}

.ritual-photo {
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.ritual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 52%;
}

.ritual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.35rem 2.85rem 2.35rem 2.5rem;
  max-width: none;
}

.ritual-copy h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  max-width: 18ch;
}

.ritual .eyebrow {
  color: #d4b8bc;
}

.ritual .rule {
  background: #8a2433;
}

.ritual-copy .lede {
  color: #e6ddd4;
}

.ritual-copy p {
  max-width: 34rem;
  font-size: 1.0625rem;
}

/* News */

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.news-head h2 {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 1.75rem 1.75rem 1.75rem 0;
  border-right: 1px solid var(--line);
}

.news-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.news-item:first-child {
  padding-left: 0;
}

.news-item + .news-item {
  padding-left: 1.75rem;
}

.news-meta {
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.news-item h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.news-item p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 28rem;
}

/* Footer */

.site-footer {
  background: var(--ivory-2);
  border-top: 1px solid rgba(28, 24, 22, 0.08);
  padding: 2.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  width: min(calc(100% - 2 * var(--gutter)), var(--page));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand img {
  height: 3.1rem;
  width: auto;
}

.footer-tag {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  letter-spacing: 0.08em;
}

.footer-tag small {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-legal {
  width: min(calc(100% - 2 * var(--gutter)), var(--page));
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(28, 24, 22, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

/* Page heroes (interior) */

.page-hero {
  padding: 3.75rem 0 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.03em;
}

.page-hero .lede {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.page-hero .support {
  max-width: 38rem;
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.65;
}

.section--charcoal .text-link {
  color: var(--ivory);
  border-bottom-color: var(--oxblood);
}

.pack-intro {
  padding-bottom: 1.5rem;
}

.pack-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.pack-intro .lede {
  margin-bottom: 2rem;
}

.section--follow {
  padding-top: 0;
}

.range-head {
  padding: 0 0 0.5rem;
}

.range-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.story-prose {
  padding: 0 0 4.25rem;
}

.story-prose p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 42rem;
}

.origin {
  padding: 2.85rem 0 3rem;
  background: var(--ivory-2);
}

.origin h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  max-width: 16ch;
}

.origin p {
  max-width: 38rem;
  font-size: 1.125rem;
}

.origin p + p {
  margin-top: 0.85rem;
}

.origin .btn {
  margin-top: 1.35rem;
}

.profile {
  padding: 4rem 0 2.25rem;
}

.profile h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
}

.profile-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.profile-copy {
  max-width: 42rem;
}

.profile-copy p {
  font-size: 1.125rem;
}

.profile-graphic {
  width: 86%;
  max-width: 62rem;
  margin: 2.35rem auto 0;
}

.profile-graphic img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.profile-specs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 1.75rem 0 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-specs > div {
  padding: 1.15rem 1rem 1.2rem 0;
}

.profile-specs dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
}

.profile-specs dd {
  margin: 0.45rem 0 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.3;
}

.find-subhead {
  margin-top: 2.75rem;
}

.founder-id {
  margin: 0 0 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.founder-id span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 400;
  color: var(--muted);
}

.founder-note {
  margin: 0 0 3.5rem;
  padding: 0 0 0;
  border: 0;
  max-width: 38rem;
}

.founder-note p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--charcoal);
  max-width: none;
}

.founder-note footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.15rem;
  font-family: var(--sans);
  font-style: normal;
}

.founder-note cite {
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.founder-note span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-note + .contact-note {
  margin-top: 1.2rem;
}

.page-hero--photo {
  padding: 0 0 0;
}

.page-hero--photo .container {
  padding: 3.5rem 0 2.5rem;
}

.collection-visual {
  padding: 0.5rem 0 1.25rem;
}

.collection-visual img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

/* Classics editorial blocks */

.range {
  padding: 1rem 0 4rem;
}

.range-item {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
}

.range-item:last-child {
  border-bottom: 1px solid var(--line);
}

.range-item--flip {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr);
}

.range-item--flip .range-copy {
  order: -1;
}

.range-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: var(--paper);
  padding: 2rem 1rem 1.75rem;
  overflow: visible;
}

.range-visual img {
  height: auto;
  width: auto;
  max-height: 28rem;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.range-item--robusto .range-visual img {
  max-height: 23.35rem;
}

.range-copy h2 {
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.range-copy .dims {
  margin: 0.4rem 0 1.1rem;
  color: var(--muted);
  font-size: 1rem;
}

.packaging {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.35rem;
  align-items: end;
}

.packaging-break {
  padding: 1rem 0 5rem;
}

.packaging img {
  width: 100%;
  height: auto;
  display: block;
}

.packaging figure:first-child img {
  width: 100%;
}

.detail-split {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.detail-split img {
  margin: 0 auto;
  height: 28rem;
  width: auto;
}

.detail-split .btn {
  margin-top: 1.75rem;
}

/* Story */

.story-open {
  padding: 3.75rem 0 2.5rem;
}

.story-open .lede {
  font-size: 1.2rem;
  max-width: 40rem;
}

.story-photo {
  padding: 0;
  margin: 0.5rem 0 0;
  background: transparent;
}

.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-chapters {
  padding: 3.75rem 0;
}

.chapter {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.chapter:last-child {
  border-bottom: 1px solid var(--line);
}

.chapter h2 {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter p {
  max-width: 38rem;
}

.story-close {
  padding: 4.5rem 0 5rem;
}

.story-close h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.04em;
}

.story-close .btn {
  margin-top: 1.75rem;
}

.story-close p {
  margin-top: 1rem;
  max-width: 32rem;
}

/* Contact */

.enquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin: 2rem 0 2.5rem;
  padding-bottom: 0.5rem;
}

.enquiry-types li {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
  padding-bottom: 5rem;
}

.contact-note {
  color: var(--muted);
  max-width: 28rem;
}

.form {
  position: relative;
  display: grid;
  gap: 1.15rem;
}

.honeypot {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  background: var(--paper);
  border: 1px solid rgba(28, 24, 22, 0.18);
  border-radius: 0;
  padding: 0.7rem 0.8rem;
  width: 100%;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--oxblood);
  outline-offset: 0;
  border-color: var(--oxblood);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--oxblood);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

.field .error {
  color: var(--oxblood);
  font-size: 0.875rem;
  min-height: 1.1em;
}

.form-status {
  margin-top: 0.4rem;
  font-size: 1rem;
}

.form-status[data-state="success"] {
  color: var(--charcoal);
}

.form-status[data-state="error"] {
  color: var(--oxblood);
}

.legal-body {
  padding: 0 0 5rem;
}

.legal-body p,
.legal-body li {
  max-width: 42rem;
}

.legal-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.7rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.7rem 0;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.not-found h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}

.not-found img {
  height: 4.5rem;
  width: auto;
  margin-inline: auto;
}

.not-found p {
  margin-top: 0.5rem;
}

.not-found .btn {
  margin-top: 1.5rem;
}

/* Age gate */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--ivory);
  overflow: auto;
  color: var(--charcoal);
}

.age-gate-panel {
  width: min(100%, 36rem);
  margin: auto;
  text-align: center;
}

.age-gate-logo {
  width: auto;
  height: auto;
  max-width: min(100%, 16.25rem);
  max-height: 5.85rem;
  margin: 0 auto 1rem;
}

.age-gate-tag {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 1.15rem;
}

.age-gate-rule {
  width: 3.25rem;
  height: 1px;
  margin: 0 auto 1.35rem;
  background: var(--oxblood);
  border: 0;
}

.age-gate-copy {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
}

.age-gate-actions {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.age-gate-enter {
  min-width: min(100%, 16.5rem);
  min-height: 2.85rem;
  justify-content: center;
}

.age-gate-decline {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.age-gate-decline:hover {
  color: var(--charcoal);
  border-bottom-color: var(--oxblood);
}

.age-gate-note {
  margin: 1.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--taupe);
}

.age-gate-denied .age-gate-copy {
  margin-bottom: 0;
}

@media (max-height: 540px) and (orientation: landscape) {
  .age-gate {
    align-items: flex-start;
    padding: 16px 24px;
  }

  .age-gate-logo {
    max-height: 4rem;
    margin-bottom: 0.55rem;
  }

  .age-gate-tag {
    margin-bottom: 0.55rem;
  }

  .age-gate-rule {
    margin-bottom: 0.75rem;
  }

  .age-gate-copy {
    margin-bottom: 0.9rem;
  }

  .age-gate-note {
    margin-top: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate,
  .age-gate-enter,
  .age-gate-decline {
    transition: none;
  }
}

/* Motion */

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after,
  .btn {
    transition: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .split,
  .split--reverse,
  .split--lineup,
  .held,
  .range-item,
  .range-item--flip,
  .contact-layout,
  .packaging,
  .detail-split,
  .ritual-inner,
  .news-list,
  .close-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-graphic {
    width: 100%;
    margin-top: 1.75rem;
  }

  .profile-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-item,
  .news-item + .news-item {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .news-item:last-child {
    border-bottom: 0;
  }

  .ritual-inner {
    max-height: none;
    min-height: 0;
    gap: 0;
  }

  .ritual-copy {
    padding: 2rem 1.75rem 2.25rem;
    max-width: none;
  }

  .ritual-photo {
    height: 18rem;
    max-height: 18rem;
  }

  .ritual-photo img {
    object-position: 44% 50%;
  }

  .range-item--flip .range-copy {
    order: 0;
  }

  .held-figure img,
  .detail-split img {
    height: 24rem;
  }

  .range-visual img {
    max-height: 24rem;
  }

  .range-item--robusto .range-visual img,
  .vitola--robusto img {
    max-height: 20rem;
    height: auto;
  }

  .lineup-item--toro img,
  .lineup-item--gordo img,
  .lineup--page .lineup-item--toro img,
  .lineup--page .lineup-item--gordo img {
    height: 24rem;
  }

  .lineup-item--robusto img,
  .lineup--page .lineup-item--robusto img {
    height: 20rem;
  }
}

@media (max-width: 1140px) {
  :root {
    --header-h: 5.1rem;
  }

  .brand-full {
    display: none;
  }

  .brand-short {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--ivory);
    padding: 1.5rem var(--gutter) 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    border-top: 1px solid rgba(28, 24, 22, 0.08);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: none;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  body {
    font-size: 1.125rem;
  }

  .hero {
    height: 64vh;
    min-height: 24rem;
    max-height: 34rem;
  }

  .hero img {
    object-position: 32% 62%;
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(16, 10, 8, 0.08) 0%,
      rgba(16, 10, 8, 0.16) 42%,
      rgba(16, 10, 8, 0.5) 100%
    );
  }

  .hero-support {
    max-width: 34rem;
  }

  .section,
  .pillars,
  .close,
  .origin,
  .profile {
    padding: 3rem 0;
  }

  .origin {
    padding: 2.75rem 0 3rem;
  }

  .vitola-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .lineup {
    gap: 0.85rem;
  }

  .lineup-item--toro img,
  .lineup-item--gordo img,
  .lineup--page .lineup-item--toro img,
  .lineup--page .lineup-item--gordo img {
    height: 16.5rem;
  }

  .lineup-item--robusto img,
  .lineup--page .lineup-item--robusto img {
    height: 13.75rem;
  }

  .vitola img {
    height: 16.5rem;
  }

  .vitola--robusto img {
    height: 13.75rem;
  }

  .form-row,
  .chapter {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .object-photo img {
    height: 22rem;
  }

  .moment {
    height: 28rem;
    min-height: 22rem;
  }

  .packaging img {
    min-height: 0;
  }

  .news-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    letter-spacing: 0.03em;
  }

  .hero-support {
    font-size: 1.0625rem;
  }

  .vitola-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.25rem;
  }

  .vitola img,
  .vitola--robusto img {
    height: 20rem;
  }

  .profile-specs {
    grid-template-columns: 1fr;
  }

  .held-figure {
    min-height: 0;
  }

  .held-figure img {
    height: 20rem;
  }

  .range-visual img {
    max-height: 18rem;
  }

  .range-item--robusto .range-visual img {
    max-height: 15rem;
  }

  .object-caption,
  .footer-legal {
    flex-direction: column;
  }

  .ritual-photo {
    height: 16.5rem;
    max-height: 16.5rem;
  }

  .lineup-item--toro img,
  .lineup-item--gordo img,
  .lineup--page .lineup-item--toro img,
  .lineup--page .lineup-item--gordo img {
    height: 14.5rem;
  }

  .lineup-item--robusto img,
  .lineup--page .lineup-item--robusto img {
    height: 12.1rem;
  }

  body.is-nav-open {
    overflow: hidden;
  }
}

@media (min-width: 1600px) {
  :root {
    --page: 80rem;
  }

  .hero {
    max-height: 48rem;
  }
}
