:root {
  color-scheme: dark;
  --bg: #0b0b09;
  --ink: #f5efe5;
  --muted: #b8ad9c;
  --quiet: #7e7465;
  --gold: #d8ad4d;
  --gold-soft: #f3d27c;
  --green: #143d37;
  --oxblood: #4d1714;
  --smoke: #16120e;
  --panel: #1d1711;
  --line: #3a2a16;
  --cream: #fff4df;
  --shadow: 0 26px 90px rgb(0 0 0 / 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgb(20 61 55 / 0.18), transparent 680px),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
blockquote,
.brand strong {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

p,
blockquote,
figure {
  margin-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4.5vw, 58px);
  border-bottom: 1px solid rgb(216 173 77 / 0.18);
  background: rgb(11 11 9 / 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.header-actions,
.hero-actions,
.ticker,
.manifesto div,
.service-card div,
.filters,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  background: rgb(216 173 77 / 0.08);
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-weight: 800;
}

.brand strong {
  display: block;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-content: center;
  gap: clamp(13px, 2vw, 28px);
}

.desktop-nav a {
  color: var(--muted);
  font-size: 0.88rem;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-soft);
}

.header-actions {
  justify-content: end;
  gap: 10px;
}

.language,
.nav-cta,
.button,
.filters button,
.menu-button,
.lightbox button {
  min-height: 44px;
  border: 1px solid rgb(216 173 77 / 0.48);
  border-radius: 8px;
}

.language,
.menu-button {
  background: rgb(255 255 255 / 0.02);
  color: var(--ink);
}

.language {
  min-width: 48px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 850;
}

.button.primary,
.nav-cta {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #130e08;
}

.button.glass {
  background: rgb(255 255 255 / 0.035);
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.language:hover,
.language:focus-visible,
.filters button:hover,
.filters button:focus-visible {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 4px rgb(216 173 77 / 0.15);
}

.menu-button {
  display: none;
  width: 46px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(28px, 4.8vw, 72px);
  min-height: 100svh;
  padding: 118px clamp(20px, 5.5vw, 78px) 78px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(216 173 77 / 0.55), transparent);
  content: "";
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(4.1rem, 10.5vw, 8.6rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-line {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3.3vw, 2.7rem);
  font-style: italic;
  line-height: 1.05;
}

.hero-text,
.section-heading p,
.manifesto p,
.service-card p,
.masters p,
.cigar-copy p,
.contact p,
.review blockquote {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stage {
  position: relative;
  min-height: 600px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(216 173 77 / 0.34);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.hero-main {
  inset: 0 4% 12% 0;
}

.hero-main::after,
.board-photo::after,
.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgb(11 11 9 / 0.58));
  pointer-events: none;
  content: "";
}

.hero-small {
  right: 0;
  bottom: 0;
  width: 38%;
  height: 42%;
}

.yard-pass {
  position: absolute;
  left: -24px;
  bottom: 46px;
  width: min(360px, 74%);
  padding: 24px;
  border: 1px solid rgb(216 173 77 / 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(20 61 55 / 0.94), rgb(29 23 17 / 0.94));
  box-shadow: var(--shadow);
}

.yard-pass span,
.yard-pass em {
  display: block;
  color: var(--muted);
}

.yard-pass strong {
  display: block;
  margin: 8px 0;
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.ticker {
  position: absolute;
  left: clamp(20px, 5.5vw, 78px);
  right: clamp(20px, 5.5vw, 78px);
  bottom: 20px;
  gap: 12px;
  overflow: hidden;
}

.ticker span {
  flex: 1 0 auto;
  min-width: fit-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.035);
  color: var(--muted);
  text-align: center;
}

.manifesto,
.section,
.footer {
  padding-right: clamp(20px, 5.5vw, 78px);
  padding-left: clamp(20px, 5.5vw, 78px);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding-top: 62px;
  padding-bottom: 62px;
  background: linear-gradient(90deg, var(--panel), #101d1a);
}

.manifesto p {
  max-width: 970px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
  line-height: 1.12;
}

.manifesto div {
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
  max-width: 420px;
}

.manifesto span,
.service-card small,
.event-cards article,
.booking-note {
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 0.035);
}

.manifesto span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
}

.section {
  padding-top: clamp(74px, 9vw, 124px);
  padding-bottom: clamp(74px, 9vw, 124px);
  content-visibility: auto;
  contain-intrinsic-size: 980px;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

h2 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: clamp(2.55rem, 6.5vw, 5.6rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: clamp(1.5rem, 2vw, 2.05rem);
}

.service-deck,
.master-grid,
.review-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.service-deck {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.master-card,
.review,
.booking-form,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.045), rgb(255 255 255 / 0.018));
  box-shadow: 0 20px 64px rgb(0 0 0 / 0.22);
}

.service-card {
  min-height: 380px;
  padding: clamp(22px, 3vw, 34px);
}

.service-card.featured {
  border-color: rgb(216 173 77 / 0.62);
  background: linear-gradient(150deg, rgb(216 173 77 / 0.14), rgb(20 61 55 / 0.16));
}

.service-index,
.role {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card p {
  min-height: 120px;
}

.service-card small {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--gold-soft);
}

.service-card div {
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-card strong {
  color: var(--gold-soft);
  font-size: 1.55rem;
}

.service-card div span {
  color: var(--quiet);
}

.masters {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  background: var(--smoke);
}

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

.master-card {
  overflow: hidden;
}

.master-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
}

.master-card div {
  padding: 24px;
}

.cigar-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  background:
    linear-gradient(145deg, rgb(77 23 20 / 0.36), transparent 36%),
    var(--bg);
}

.cigar-copy blockquote {
  margin: 30px 0;
  color: var(--cream);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.cigar-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.board-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(216 173 77 / 0.35);
  border-radius: 14px;
  background: var(--panel);
}

.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-photo.wide {
  grid-column: 1 / 2;
}

.board-photo.tall {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

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

.event-cards article {
  min-height: 130px;
  padding: 18px;
  border-radius: 12px;
}

.event-cards strong,
.event-cards span {
  display: block;
}

.event-cards strong {
  margin-bottom: 10px;
  color: var(--gold-soft);
}

.event-cards span {
  color: var(--muted);
  line-height: 1.5;
}

.gallery-section {
  background: var(--smoke);
}

.filters {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px auto 34px;
}

.filters button {
  padding: 10px 16px;
  background: rgb(255 255 255 / 0.03);
  color: var(--ink);
}

.filters button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #130e08;
  font-weight: 850;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 145px;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  text-align: left;
}

.gallery-item.large {
  grid-column: span 6;
}

.gallery-item.tall {
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgb(216 173 77 / 0.42);
  border-radius: 999px;
  background: rgb(11 11 9 / 0.7);
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.08);
}

.booking-section {
  background:
    linear-gradient(180deg, rgb(20 61 55 / 0.28), transparent 36%),
    var(--bg);
}

.booking-form,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(11 11 9 / 0.88);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgb(216 173 77 / 0.14);
}

.wide {
  grid-column: 1 / -1;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.booking-note {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-align: center;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--smoke);
}

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

.review {
  margin: 0;
  padding: 26px;
}

.review div {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review blockquote {
  margin: 18px 0;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.review figcaption {
  color: var(--muted);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
}

.contact dl {
  display: grid;
  gap: 16px;
  margin: 34px 0;
}

.contact dl div {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.contact dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1.15rem;
}

.map-link {
  color: var(--gold-soft);
  font-weight: 900;
}

.contact-form {
  grid-template-columns: 1fr;
  margin: 0;
}

.footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.footer strong {
  color: var(--ink);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 72px 20px 30px;
  background: rgb(0 0 0 / 0.88);
}

.lightbox figure {
  display: grid;
  gap: 12px;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 0;
}

.lightbox img {
  max-height: 78vh;
  width: auto;
  border: 1px solid rgb(216 173 77 / 0.42);
  border-radius: 12px;
  object-fit: contain;
}

.lightbox figcaption {
  color: var(--muted);
  text-align: center;
}

.lightbox button {
  position: fixed;
  z-index: 2;
  padding: 10px 14px;
  background: var(--panel);
  color: var(--ink);
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

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

  .menu-button {
    display: block;
  }

  .mobile-nav.is-open {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    min-height: 44px;
    padding: 11px 8px;
  }

  .hero,
  .masters,
  .cigar-experience,
  .proof,
  .contact,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .manifesto div {
    justify-content: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .section-heading.left {
    max-width: 790px;
  }

  .service-deck {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 4;
  }
}

@media (max-width: 740px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 104px 18px 78px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-main {
    inset: 0 0 20% 0;
  }

  .hero-small {
    width: 48%;
    height: 36%;
  }

  .yard-pass {
    left: 0;
    bottom: 22px;
    width: 78%;
    padding: 18px;
  }

  .ticker {
    position: static;
    margin-top: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .manifesto,
  .section,
  .footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .master-grid,
  .event-cards,
  .review-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .cigar-board {
    grid-template-columns: 1fr;
  }

  .board-photo.wide,
  .board-photo.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 132px;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 1;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .lightbox-nav.prev,
  .lightbox-nav.next {
    bottom: 18px;
    top: auto;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 9px;
  }

  .language {
    min-width: 44px;
  }

  .hero-line {
    font-size: 1.35rem;
  }

  .gallery-grid {
    grid-auto-rows: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
