:root {
  --ink: #07141d;
  --ink-2: #0d202c;
  --ink-3: #122a38;
  --paper: #f7f3ec;
  --paper-2: #efe8dd;
  --white: #ffffff;
  --copper: #c97a4a;
  --copper-2: #e4a06f;
  --gold: #d5ad6d;
  --muted: #667078;
  --line: rgba(201, 122, 74, 0.24);
  --shadow: 0 22px 60px rgba(4, 17, 25, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section.compact { padding: 70px 0; }
.bg-dark { color: var(--white); background: var(--ink); }
.bg-soft { background: var(--paper-2); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.display {
  margin: 14px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.heading {
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.subheading {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.18;
}
.lead { max-width: 760px; margin: 0; font-size: 1.08rem; color: var(--muted); }
.bg-dark .lead { color: rgba(255,255,255,.72); }
.copper { color: var(--copper-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(201,122,74,.2);
}
.btn:hover { transform: translateY(-2px); background: #d98755; }
.btn.secondary { background: transparent; border-color: rgba(255,255,255,.32); box-shadow: none; }
.btn.secondary:hover { background: rgba(255,255,255,.08); }
.btn.dark { background: var(--ink); box-shadow: none; }
.btn.small { min-height: 42px; padding: 0 17px; font-size: .9rem; }
.text-link { color: var(--copper); font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(7, 20, 29, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { width: 150px; flex: 0 0 auto; }
.logo img { width: 100%; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-size: .94rem; color: rgba(255,255,255,.84); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: var(--copper);
  transition: right .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4,13,20,.94) 0%, rgba(4,13,20,.75) 43%, rgba(4,13,20,.16) 100%),
    url('../images/hero.webp') center 47%/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(4,13,20,.9));
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 40px;
  padding: 92px 0;
}
.hero-copy { max-width: 720px; }
.hero-copy p { max-width: 620px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-card {
  align-self: end;
  justify-self: end;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(7,20,29,.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.hero-card strong { display: block; margin-bottom: 6px; font-family: Georgia,serif; font-size: 1.35rem; }
.hero-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .94rem; }

.stats { position: relative; z-index: 2; margin-top: -62px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}
.stat { padding: 28px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: Georgia,serif; font-size: 2rem; line-height: 1; color: var(--copper-2); }
.stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: .88rem; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.section-head > div { max-width: 760px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(7,20,29,.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7,20,29,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: 0 28px 60px rgba(7,20,29,.14); }
.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee9e2;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.zoom-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  color: var(--white);
  background: rgba(7,20,29,.78);
  backdrop-filter: blur(8px);
}
.product-body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.product-category { color: var(--copper); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin: 9px 0 6px; font-size: 1.05rem; line-height: 1.28; }
.product-meta { margin-top: auto; padding-top: 16px; color: var(--muted); font-size: .85rem; }

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 28px 0 38px;
}
.search-box { position: relative; }
.search-box input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 46px;
  border: 1px solid rgba(7,20,29,.14);
  border-radius: 999px;
  background: var(--white);
  outline: none;
}
.search-box span { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(7,20,29,.13);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 750;
}
.filter-btn.active, .filter-btn:hover { color: var(--white); background: var(--ink); }

.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 64px; }
.image-panel { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.image-panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 30px; }
.value-card { padding: 20px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.value-card strong { display: block; margin-bottom: 6px; }
.value-card span { color: var(--muted); font-size: .9rem; }

.brand-strip { display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; margin-top: 32px; }
.brand-pill {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(7,20,29,.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: Georgia,serif;
  font-weight: 800;
  color: var(--ink-2);
}
.brand-pill span { display: block; color: var(--copper); font: 700 .7rem/1 Inter,sans-serif; letter-spacing: .11em; text-transform: uppercase; margin-top: 5px; }

.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.press-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.11);
  background: var(--ink-2);
}
.press-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 72% 20%, rgba(201,122,74,.28), transparent 30%),
    linear-gradient(135deg, #132d3b, #08151e);
}
.press-icon { font-size: 3.3rem; }
.press-body { padding: 24px; }
.press-body small { color: var(--copper-2); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.press-body h3 { margin: 10px 0; font-family: Georgia,serif; font-size: 1.45rem; }
.press-body p { color: rgba(255,255,255,.64); font-size: .92rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(201,122,74,.22), transparent 26%),
    linear-gradient(145deg, var(--ink), var(--ink-2));
}
.page-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { max-width: 670px; }

.factories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.factory-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(7,20,29,.1);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7,20,29,.06);
}
.factory-top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.factory-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--paper-2);
  font-family: Georgia,serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink-2);
}
.factory-card h3 { margin: 0 0 8px; font-family: Georgia,serif; font-size: 1.6rem; }
.factory-card p { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { padding: 7px 10px; border-radius: 999px; border: 1px solid var(--line); color: #9a5e3a; background: #fff8f2; font-size: .78rem; font-weight: 700; }

.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.timeline-item:last-child { border-bottom: 0; }
.timeline-date { color: var(--copper-2); font-weight: 800; }
.timeline-item h3 { margin: 0 0 6px; font-family: Georgia,serif; font-size: 1.4rem; }
.timeline-item p { margin: 0; color: rgba(255,255,255,.64); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.contact-card { padding: 30px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow); }
.contact-list { display: grid; gap: 16px; margin-top: 30px; }
.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(7,20,29,.1); }
.contact-item:last-child { border-bottom: 0; }
.contact-item strong { display:block; margin-bottom:4px; }
.contact-item span, .contact-item a { color: var(--muted); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-weight: 750; font-size:.9rem; }
.field input, .field textarea, .field select {
  width:100%;
  border:1px solid rgba(7,20,29,.13);
  border-radius:14px;
  background:#fff;
  padding:14px 15px;
  outline:none;
}
.field textarea { min-height:150px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--copper); box-shadow:0 0 0 3px rgba(201,122,74,.12); }

.site-footer { color: rgba(255,255,255,.72); background: #051018; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr 1fr; gap:40px; padding:70px 0 44px; }
.footer-logo { width:160px; margin-bottom:18px; border-radius:8px; }
.footer-title { margin:0 0 15px; color:white; font-weight:800; }
.footer-links { display:grid; gap:9px; }
.footer-links a:hover { color:var(--copper-2); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding:20px 0 28px; border-top:1px solid rgba(255,255,255,.08); font-size:.82rem; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2,8,12,.94);
}
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: min(92vw, 980px); max-height: 92vh; }
.lightbox img { max-width: 100%; max-height: 88vh; margin: auto; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.07);
  font-size: 1.8rem;
}
.lightbox-caption { margin-top: 12px; text-align: center; color: rgba(255,255,255,.75); }
.empty-state { display:none; padding:50px; border-radius:var(--radius-md); text-align:center; border:1px dashed rgba(7,20,29,.18); color:var(--muted); background:rgba(255,255,255,.42); }
.empty-state.show { display:block; }

@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .brand-strip { grid-template-columns: repeat(4,1fr); }
  .factories-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 74px 0; }
  .nav-links {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    background: rgba(7,20,29,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding: 12px 0; font-size:1.05rem; }
  .nav-links a::after { display:none; }
  .nav-actions .btn { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .hero { min-height: 700px; background-position: 58% 50%; }
  .hero-grid { grid-template-columns: 1fr; min-height: 620px; padding: 75px 0 115px; }
  .hero-card { justify-self:start; margin:0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.1); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .split-grid, .contact-grid { grid-template-columns: 1fr; gap:34px; }
  .press-grid { grid-template-columns: 1fr; }
  .brand-strip { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .filter-bar { grid-template-columns:1fr; }
}

@media (max-width: 580px) {
  .logo { width:126px; }
  .navbar { min-height:72px; }
  .nav-links { inset:72px 0 auto; }
  .display { font-size: clamp(2.7rem, 14vw, 4rem); }
  .heading { font-size:2.2rem; }
  .hero { min-height: 670px; background-position: 63% 50%; }
  .hero-grid { padding-top:60px; }
  .hero-card { display:none; }
  .stats { margin-top:-46px; }
  .stats-grid { grid-template-columns:1fr; }
  .stat { border-right:0; border-bottom:1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-bottom:0; }
  .section-head { align-items:flex-start; flex-direction:column; }
  .product-grid { grid-template-columns:1fr; }
  .brand-strip { grid-template-columns:repeat(2,1fr); }
  .factories-grid { grid-template-columns:1fr; }
  .value-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .timeline-item { grid-template-columns:1fr; gap:8px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}

/* Authorised brands */
.authorised-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.authorised-strip .brand-pill { min-height: 120px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.authorised-strip .brand-pill:hover { transform: translateY(-4px); border-color: var(--copper); box-shadow: 0 16px 38px rgba(7,20,29,.09); }
.factory-card { display: flex; flex-direction: column; }
.authorised-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 14px 0 2px;
  padding: 0 11px;
  border: 1px solid rgba(201,122,74,.28);
  border-radius: 999px;
  color: #875132;
  background: #fff7f0;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner-link { margin-top: auto; padding-top: 22px; color: var(--copper); font-weight: 800; }
.partner-link:hover { color: #a95e34; }

/* Press PDF feature */
.single-press-grid { grid-template-columns: minmax(0, 520px); }
.featured-press-card .press-icon { font-size: 1.2rem; font-weight: 900; letter-spacing: .12em; }
.press-document-grid { max-width: 940px; }
.press-document-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}
.press-document-icon {
  min-height: 360px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 18%, rgba(201,122,74,.34), transparent 30%),
    linear-gradient(145deg, #173644, #08151e);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.press-document-body { align-self: center; padding: 42px; }
.press-document-body h3 { margin: 10px 0 12px; font-family: Georgia,serif; font-size: clamp(1.8rem,3vw,2.5rem); }
.press-document-body p { color: rgba(255,255,255,.68); }
.press-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.press-file-note { margin: 18px 0 0; font-size: .78rem; }
.press-file-note code { color: rgba(255,255,255,.7); overflow-wrap: anywhere; }

/* Secure contact form */
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.form-status.success { color: #247443; font-weight: 750; }
.form-status.error { color: #a43131; font-weight: 750; }
.field .btn:disabled { cursor: wait; opacity: .7; transform: none; }

@media (max-width: 860px) {
  .authorised-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .press-document-card { grid-template-columns: 190px 1fr; }
  .press-document-icon { min-height: 320px; }
}

@media (max-width: 680px) {
  .authorised-strip { grid-template-columns: 1fr; }
  .press-document-card { grid-template-columns: 1fr; }
  .press-document-icon { min-height: 190px; }
  .press-document-body { padding: 28px 22px; }
  .press-actions .btn { width: 100%; }
}
.disabled-link { pointer-events: none; opacity: .52; box-shadow: none; }
.press-file-note.missing { color: #f1b18a; font-weight: 700; }
