/* 1923 Reserve — palette: Iron Black, Aged Brass, Oxblood, Warm Ivory, Deep Olive */
:root {
  --iron-black:  #0D0D0D;
  --iron-2:      #15110F;
  --brass:       #B0A065;
  --brass-light: #cab98a;
  --oxblood:     #3B1F1F;
  --ivory:       #F2EDE4;
  --ivory-deep:  #e9e3d5;
  --olive:       #3A3F2B;
  --ink:         #1a1614;

  --display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', -apple-system, sans-serif;

  --max:    1280px;
  --narrow: 760px;
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.container.narrow { max-width: var(--narrow); text-align: center; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── Type primitives ─── */
.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 0;
  padding-left: 0.42em;
}
.folio {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}
.folio span:first-child {
  letter-spacing: 0.18em;
  color: rgba(26, 22, 20, 0.55);
}
.folio span:nth-child(2) {
  position: relative;
  padding-left: 1rem;
}
.folio span:nth-child(2)::before {
  content: "·";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-55%);
  color: var(--brass);
}
.folio.centered { display: flex; justify-content: center; }

.title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.title.centered { text-align: center; }
.rule-short {
  border: 0;
  width: 70px;
  height: 1px;
  background: var(--brass);
  margin: 0 0 2rem;
  display: block;
}
.rule-short.centered { margin-left: auto; margin-right: auto; }
.editorial {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}
.editorial.centered { text-align: center; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.7), transparent);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(176, 160, 101, 0.22);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: var(--ivory);
}
.house-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
  border-right: 1px solid rgba(242, 237, 228, 0.22);
  padding-right: 1rem;
}
.house-link:hover { opacity: 1; }
.house-mark { width: 1.4rem; height: 1.4rem; object-fit: contain; }
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  justify-self: start;
}
.brand-mark { width: 2rem; height: 2rem; object-fit: contain; }
.site-nav {
  display: flex;
  gap: 1.75rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  justify-self: end;
}
.site-nav a { opacity: 0.85; transition: opacity 0.3s var(--ease); padding: 0.25rem 0; position: relative; }
.site-nav a:hover { opacity: 1; }
.site-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ivory);
}
.hero-image {
  position: absolute; inset: 0;
  background: url('assets/reserve-hero.png') center/cover no-repeat;
  filter: brightness(0.7);
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(13,13,13,0.55), rgba(13,13,13,0.15) 60%, transparent 80%),
    linear-gradient(180deg, rgba(13,13,13,0.6) 0%, rgba(59,31,31,0.25) 50%, rgba(13,13,13,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lockup .eyebrow { color: var(--brass-light); }
.hero-mark {
  width: clamp(110px, 13vw, 170px);
  height: auto;
  margin: 0.25rem 0 0.25rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55));
}
.wordmark {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 3px 24px rgba(0,0,0,0.85);
  padding-left: 0.18em;
  white-space: nowrap;
  line-height: 1.05;
}
.rule {
  display: flex; align-items: center; gap: 0.85rem;
  width: clamp(220px, 28vw, 340px);
  margin: 0.5rem auto 0.25rem;
}
.rule span {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--brass), transparent);
}
.rule i {
  font-style: normal;
  color: var(--brass-light);
  font-size: 0.6rem;
}
.tagline {
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.45;
  color: var(--ivory);
  opacity: 0.95;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}

/* ─── Sections ─── */
.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.philosophy { background: var(--ivory); }

/* Collection cards */
.collection { background: var(--ivory-deep); }
.cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--ivory);
  border: 1px solid rgba(58, 31, 31, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--brass); }
.card-image {
  height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(58, 31, 31, 0.18);
}
.card-text { padding: 1.75rem; }
.card-num {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--brass);
  margin: 0 0 0.5rem;
}
.card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.85rem;
}
.card-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* Craft */
.craft {
  background: var(--oxblood);
  color: var(--ivory);
  padding: 0;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.craft-image {
  background: url('assets/app-04.png') center/cover no-repeat;
}
.craft-text {
  padding: clamp(3rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.craft .title { color: var(--ivory); }
.craft .editorial { color: var(--ivory); opacity: 0.95; }
.craft .folio span:first-child { color: rgba(242, 237, 228, 0.55); }
.craft .folio span:nth-child(2)::before { color: var(--brass-light); }
.craft .folio { color: var(--brass-light); }
.craft .rule-short { background: var(--brass); }
.creed {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
.creed li {
  padding: 0.85rem 0 0.85rem 1.5rem;
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(242, 237, 228, 0.14);
}
.creed li::before {
  content: "◆";
  position: absolute; left: 0; top: 1rem;
  color: var(--brass-light);
  font-size: 0.55rem;
  font-style: normal;
}
.creed li:last-child { border-bottom: none; }

/* Journal */
.journal { background: var(--ivory); }
.journal-list {
  margin-top: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.journal-list li { border-bottom: 1px solid rgba(58, 31, 31, 0.18); }
.journal-list li:last-child { border-bottom: none; }
.journal-list a {
  display: block;
  padding: 1.25rem 0;
  text-align: left;
  transition: padding-left 0.3s var(--ease);
}
.journal-list a:hover { padding-left: 0.5rem; }
.journal-list em {
  font-family: var(--display);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.5rem;
}
.journal-list strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
}
.journal-list p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  margin: 0;
  color: var(--ink);
  opacity: 0.85;
}

/* Access */
.access {
  background: var(--iron-black);
  color: var(--ivory);
  text-align: center;
}
.access-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.access .title { color: var(--ivory); }
.access .editorial { color: var(--ivory); opacity: 0.92; max-width: 56ch; }
.access .folio { color: var(--brass-light); }
.access .folio span:first-child { color: rgba(242, 237, 228, 0.5); }
.access .rule-short { background: var(--brass); }
.access-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 2rem auto 1.5rem;
  flex-wrap: wrap;
}
.access-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid rgba(176, 160, 101, 0.5);
  color: var(--ivory);
  padding: 0.85rem 1rem;
  font-family: var(--serif);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.access-form input::placeholder { color: rgba(242, 237, 228, 0.55); font-style: italic; }
.access-form input:focus { border-color: var(--brass-light); }
.access-form button {
  background: var(--brass);
  color: var(--iron-black);
  border: 1px solid var(--brass);
  padding: 0.85rem 1.4rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.access-form button:hover { background: transparent; color: var(--brass-light); }
.closing-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brass-light);
  margin: 1rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--iron-black);
  border-top: 1px solid rgba(176, 160, 101, 0.22);
  padding: 2.25rem 0;
  color: var(--ivory);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: baseline; gap: 1rem; }
.footer-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-house {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--brass-light);
}
.footer-copy {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-image { min-height: 360px; }
}
@media (max-width: 760px) {
  .site-nav, .house-link { display: none; }
  .header-inner { grid-template-columns: 1fr; justify-items: center; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}


.hero.hero-sheet {
  min-height: 0;
  padding: 0;
  background: #000;
  display: block;
  width: 100%;
  margin: 0;
}
.hero-sheet-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* ── Brand-sheet hero (full-viewport, centered panel, brand-color frame) ── */
.hero.hero-sheet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  margin: 0;
  padding: 0;
  background: #0D0D0D;
  overflow: hidden;
}
.hero-sheet-img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 760px) {
  .hero.hero-sheet { height: auto; min-height: 0; }
  .hero-sheet-img { width: 100%; height: auto; }
}

/* ── Hero-sheet override: full-bleed responsive image ── */
.hero.hero-sheet {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}
.hero.hero-sheet .hero-sheet-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1100px) {
  .hero.hero-sheet .hero-sheet-img {
    max-height: 90vh;
    width: 100%;
    object-fit: cover;
  }
}

