:root {
  --ink: #12100f;
  --ink-soft: #1b1816;
  --cream: #f3ead8;
  --paper: #fffaf1;
  --copper: #b66d3f;
  --gold: #c8a66b;
  --muted: #756b61;
  --line: rgba(200, 166, 107, .28);
  --shadow: 0 18px 45px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(18,16,15,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: white; }
.brand-mark {
  width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; font-family: Georgia, serif; font-size: 25px; color: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(200,166,107,.06);
}
.brand-copy strong { display: block; letter-spacing: .12em; font-size: 16px; }
.brand-copy small { color: #c8bba8; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; color: #eee6db; font-size: 14px; font-weight: 700; letter-spacing: .04em; }
nav a:hover, nav a[aria-current="page"] { color: var(--gold); }
.menu-btn { display: none; border: 1px solid rgba(255,255,255,.2); color: white; background: transparent; padding: 8px 11px; border-radius: 8px; }

.hero {
  min-height: 760px;
  color: white;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,9,8,.93) 0%, rgba(10,9,8,.72) 38%, rgba(10,9,8,.18) 70%),
              url('assets/hero-cover.png') center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after { content:""; position:absolute; inset:auto 0 0; height:180px; background:linear-gradient(transparent, #12100f); }
.hero-content { position: relative; z-index: 2; width: min(690px, 90%); padding: 100px 0 140px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .24em; font-weight: 800; font-size: 12px; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(54px, 8vw, 100px); margin-bottom: 22px; letter-spacing: -.04em; }
.hero p { font-size: clamp(18px, 2.1vw, 24px); max-width: 630px; color: #e8dfd4; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; border-radius: 4px; text-decoration: none; font-weight: 800; letter-spacing: .03em; border: 1px solid transparent; }
.btn-primary { background: var(--copper); color: white; }
.btn-primary:hover { background: #9f5932; }
.btn-secondary { border-color: rgba(255,255,255,.4); color: white; background: rgba(255,255,255,.04); }
.btn-dark { background: var(--ink); color: white; }

.stats { position: relative; margin-top: -82px; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--cream); box-shadow: var(--shadow); }
.stat { padding: 28px 24px; border-right: 1px solid rgba(0,0,0,.08); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: Georgia, serif; font-size: 27px; }
.stat span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

.section { padding: 100px 0; }
.section-dark { background: var(--ink); color: white; }
.section-kicker { color: var(--copper); text-transform: uppercase; letter-spacing: .2em; font-weight: 800; font-size: 12px; margin-bottom: 14px; }
.section h2 { font-size: clamp(38px, 5vw, 62px); margin-bottom: 20px; }
.section-lead { max-width: 760px; color: var(--muted); font-size: 18px; }
.section-dark .section-lead { color: #cfc4b7; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.portrait { border-radius: 4px; box-shadow: var(--shadow); background: #ddd; }
.about-copy p { font-size: 18px; color: #4b433c; }
.signature { font-family: Georgia, serif; font-style: italic; color: var(--copper); font-size: 28px; margin-top: 24px; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 46px; }
.card { position: relative; min-height: 420px; overflow: hidden; background: #222; color: white; box-shadow: var(--shadow); }
.card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; filter: brightness(.75); transition: transform .4s ease; }
.card:hover img { transform: scale(1.035); }
.card::after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 35%, rgba(0,0,0,.9)); }
.card-copy { position: absolute; z-index: 2; inset: auto 28px 26px; }
.card-copy h3 { font-size: 34px; margin-bottom: 8px; }
.card-copy p { margin: 0; color: #ded6cb; }

.feature-band { background: #d9c5a2; padding: 58px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.feature h3 { font-size: 25px; margin-bottom: 8px; }
.feature p { margin: 0; color: #4a4038; }

.cta { background: linear-gradient(135deg, #231c18, #0e0d0c); color: white; text-align: center; padding: 90px 20px; }
.cta h2 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 14px; }
.cta p { color: #d7ccc0; max-width: 720px; margin: 0 auto; }
.cta .actions { justify-content: center; }

.page-hero { background: var(--ink); color: white; padding: 92px 0 72px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 80px); margin-bottom: 16px; }
.page-hero p { max-width: 760px; color: #cec4b8; font-size: 18px; }

.catalogue-wrap { display: grid; grid-template-columns: 320px 1fr; gap: 30px; align-items: start; }
.catalogue-panel { background: var(--cream); padding: 26px; position: sticky; top: 100px; }
.catalogue-panel h2 { font-size: 30px; }
.catalogue-panel p { color: #5f554d; }
.pdf-frame { width: 100%; min-height: 900px; border: 0; background: #ddd; box-shadow: var(--shadow); }
.mobile-pdf-note { display: none; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; }
.contact-card { background: var(--ink); color: white; padding: 36px; }
.contact-card h2 { font-size: 38px; }
.contact-line { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-line small { display:block; text-transform:uppercase; letter-spacing:.14em; color:var(--gold); margin-bottom:4px; }
.contact-line a { text-decoration:none; font-size:18px; }
form { display: grid; gap: 16px; }
label { font-weight: 700; font-size: 14px; }
input, textarea, select { width:100%; padding:14px 15px; border:1px solid #cfc4b7; background:white; font:inherit; border-radius:3px; }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 13px; }

.site-footer { background:#0b0a09; color:#c7bbae; padding:48px 0 24px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:44px; }
.footer-grid h3 { color:white; font-size:22px; }
.footer-grid a { color:#c7bbae; text-decoration:none; display:block; margin:7px 0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:36px; padding-top:20px; font-size:13px; color:#8f8479; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }

@media (max-width: 900px) {
  nav { display:none; position:absolute; top:76px; left:0; right:0; background:#12100f; padding:20px; flex-direction:column; align-items:flex-start; }
  nav.open { display:flex; }
  .menu-btn { display:block; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .catalogue-wrap, .contact-grid { grid-template-columns:1fr; }
  .catalogue-panel { position: static; }
  .cards { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
}

@media (max-width: 600px) {
  .container { width:min(100% - 24px, 1180px); }
  .hero { min-height:700px; }
  .hero-content { padding-top:75px; }
  .stats { margin-top:-55px; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat { padding:18px 15px; }
  .section { padding:72px 0; }
  .card { min-height:330px; }
  .pdf-frame { min-height:620px; }
  .mobile-pdf-note { display:block; background:#fff0d9; padding:14px; margin-bottom:14px; }
}
