:root {
  --bg: #f6f3ea;
  --bg-dark: #131a13;
  --bg-dark-2: #1b241b;
  --ink: #1d231c;
  --ink-soft: #4a5246;
  --muted: #7a8175;
  --accent: #b3873e;
  --accent-bright: #d4a95c;
  --line: #e2dcc9;
  --line-dark: #2c372c;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: linear-gradient(to bottom, rgba(19,26,19,.85), rgba(19,26,19,.45) 70%, transparent); transition: background .4s ease; }
.site-header.scrolled { background: rgba(19,26,19,.96); box-shadow: 0 1px 0 var(--line-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 32px; max-width: 1280px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; color: #f4efe2; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-family: var(--serif); font-size: 22px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.brand-name em { font-style: italic; color: var(--accent-bright); }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { color: #e7e1cf; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; transition: color .25s; }
.nav a:hover { color: var(--accent-bright); }
.nav a.nav-cta { border: 1px solid rgba(212,169,92,.55); padding: 10px 20px; border-radius: 999px; }
.nav a.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: #f4efe2; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(19,26,19,.35) 0%, rgba(19,26,19,.55) 55%, #131a13 100%); }
.hero-inner { padding: 160px 32px 96px; max-width: 1280px; margin: 0 auto; width: 100%; }
.eyebrow { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--accent-bright); font-weight: 600; display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--accent-bright); display: inline-block; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(46px, 7vw, 88px); line-height: 1.04; margin: 26px 0 0; max-width: 13em; }
.hero h1 em { font-style: italic; color: var(--accent-bright); }
.hero-sub { max-width: 560px; margin-top: 28px; font-size: 17px; color: #d9d3c0; font-weight: 300; }
.hero-ctas { display: flex; gap: 18px; margin-top: 42px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; padding: 16px 30px; border-radius: 999px; transition: all .3s ease; }
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(244,239,226,.4); color: #f4efe2; }
.btn-ghost:hover { border-color: var(--accent-bright); color: var(--accent-bright); }
.hero-meta { display: flex; gap: 48px; margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(244,239,226,.18); flex-wrap: wrap; }
.hero-meta div span { display: block; }
.hero-meta .k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #b9b39d; }
.hero-meta .v { font-family: var(--serif); font-size: 30px; color: #f4efe2; font-style: italic; }

/* ---------- shared sections ---------- */
.section { padding: 110px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.08; margin-top: 20px; max-width: 15em; }
.section-title em { font-style: italic; color: var(--accent); }
.section-lead { max-width: 420px; color: var(--ink-soft); font-size: 15.5px; font-weight: 300; }
.divider { height: 1px; background: var(--line); margin: 0 32px; max-width: 1216px; margin-left: auto; margin-right: auto; }

/* ---------- variety cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.vcard:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -18px rgba(29,35,28,.22); }
.vcard-img { position: relative; aspect-ratio: 4 / 3.1; overflow: hidden; }
.vcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.vcard:hover .vcard-img img { transform: scale(1.06); }
.vcard-num { position: absolute; top: 16px; left: 16px; font-family: var(--serif); font-style: italic; font-size: 15px; color: #fff; background: rgba(19,26,19,.72); padding: 4px 13px; border-radius: 999px; letter-spacing: .08em; }
.vcard-tag { position: absolute; bottom: 14px; left: 16px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: #fff; background: rgba(179,135,62,.92); padding: 6px 12px; border-radius: 999px; font-weight: 600; }
.vcard-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.vcard-body h3 { font-family: var(--serif); font-weight: 500; font-size: 27px; line-height: 1.1; }
.vcard-latin { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15.5px; margin-top: 4px; }
.vcard-body p { color: var(--ink-soft); font-size: 14.5px; font-weight: 300; margin-top: 14px; flex: 1; }
.vcard-link { margin-top: 22px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.vcard-link:hover { gap: 13px; }
.vcard-link { transition: gap .25s ease; }

/* ---------- dark band ---------- */
.band-dark { background: var(--bg-dark); color: #ece7d5; padding: 110px 0; }
.band-dark .eyebrow { color: var(--accent-bright); }
.band-dark .eyebrow::before { background: var(--accent-bright); }
.band-dark .section-title { color: #f4efe2; }
.band-dark .section-title em { color: var(--accent-bright); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.feature { background: var(--bg-dark-2); padding: 44px 42px 48px; }
.feature .fnum { font-family: var(--serif); font-style: italic; color: var(--accent-bright); font-size: 17px; }
.feature h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin-top: 10px; color: #f4efe2; }
.feature p { color: #a9ac97; font-size: 14.5px; font-weight: 300; margin-top: 12px; }

/* ---------- quote ---------- */
.quote-band { background: var(--bg-dark); padding: 130px 0; text-align: center; }
.quote-band .q-mark { font-family: var(--serif); font-size: 90px; line-height: 0; color: var(--accent); }
.quote-band blockquote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(28px, 4vw, 46px); line-height: 1.3; color: #f1ecda; max-width: 22em; margin: 40px auto 0; }
.quote-band cite { display: block; margin-top: 36px; font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #9ba08a; }

/* ---------- field notes ---------- */
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.note { border-top: 2px solid var(--accent); background: #fff; border: 1px solid var(--line); border-top: 2px solid var(--accent); padding: 34px 30px 38px; border-radius: 0 0 6px 6px; }
.note .n-kicker { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.note h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-top: 10px; }
.note p { color: var(--ink-soft); font-size: 14.5px; font-weight: 300; margin-top: 12px; }

/* ---------- catalog ---------- */
.page-hero { background: var(--bg-dark); color: #f4efe2; padding: 150px 0 90px; }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.5vw, 66px); line-height: 1.06; margin-top: 22px; }
.page-hero h1 em { font-style: italic; color: var(--accent-bright); }
.page-hero .lead { max-width: 620px; color: #c5bfa9; margin-top: 24px; font-weight: 300; font-size: 16.5px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.catalog-note { margin-top: 70px; padding: 30px 34px; background: #efe9d8; border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; color: var(--ink-soft); font-size: 14px; font-weight: 300; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-dark); color: #b6baa5; padding: 80px 0 46px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.site-footer .brand-name { color: #f4efe2; }
.footer-col h4 { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: #8d927e; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; color: #c9cdb8; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-about p { font-size: 14px; font-weight: 300; color: #a5aa93; max-width: 34em; margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; font-size: 12.5px; color: #7d8270; flex-wrap: wrap; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .cards-3, .notes-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .cards-3, .notes-grid, .catalog-grid { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta) { display: none; }
  .hero-meta { gap: 28px; }
}
