/* ============================================================
   VELCORE — style.css v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #111111; color: #fff; font-family: 'Inter','Segoe UI',Arial,sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid #B89B5E; outline-offset: 3px; }

/* --- Variables --- */
:root {
  --gold: #B89B5E;
  --gold-light: #CDB97A;
  --black: #111111;
  --graphite: #1C1C1C;
  --graphite-mid: #2A2A2A;
  --white: #fff;
  --grey-50: #F5F5F5;
  --border: rgba(255,255,255,0.08);
  --site-max: 1280px;
  --pad-h: 24px;
}
@media (min-width: 1024px) { :root { --pad-h: 40px; } }

/* --- Type --- */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat','Segoe UI',Arial,sans-serif; font-weight: 700; line-height: 1.15; }

/* --- Layout --- */
.container { max-width: var(--site-max); margin: 0 auto; padding: 0 var(--pad-h); }
.section-pad { padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 768px) { .section-pad { padding-top: 120px; padding-bottom: 120px; } }
.gold-line { display: block; width: 40px; height: 2px; background: var(--gold); margin-top: 20px; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; font-family: 'Montserrat',Arial,sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }
.btn-outline-gold { border: 1px solid rgba(184,155,94,0.4); color: var(--gold); }
.btn-outline-gold:hover { border-color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 11px; }

.eyebrow { display: block; font-family: 'Montserrat',Arial,sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }

/* Logo — horizontal */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 38px; width: auto; max-width: 190px; object-fit: contain; display: block; }
@media (max-width: 400px) { .logo img { height: 30px; max-width: 150px; } }

/* Desktop Nav */
.nav-desktop { display: none; }
@media (min-width: 1024px) { .nav-desktop { display: flex; align-items: center; gap: 28px; } }

.nav-link { font-family: 'Montserrat',Arial,sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: color .2s; }
.nav-link:hover { color: #fff; }

/* ── Dropdown: zero-gap, always-reachable ── */
.nav-dropdown { position: relative; }

/* The toggle button (text + chevron) */
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); cursor: pointer; transition: color .2s;
  padding: 28px 0;          /* tall hit-area so the invisible bridge to panel is inside the parent */
  line-height: 1;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle { color: #fff; }
.nav-dropdown-toggle svg { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

/* Dropdown panel — glued to parent bottom, no gap */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;          /* flush with bottom of parent — no gap */
  left: 0;
  margin-top: 0;      /* explicitly zero */
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  padding: 6px 0;
  z-index: 9999;      /* above hero, above everything */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s, visibility .15s;
}

/* Open on hover OR keyboard focus anywhere inside the wrapper */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block; padding: 11px 20px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  transition: color .15s, background .15s;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; padding: 4px; flex-shrink: 0; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 0; top: 80px; background: var(--black); z-index: 490; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu-section-title { display: block; padding: 14px 0; font-family: 'Montserrat',Arial,sans-serif; font-size: 17px; font-weight: 600; color: #fff; border-bottom: 1px solid var(--border); transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-sub { padding-left: 16px; }
.mobile-menu-sub a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); padding: 9px 0; }
.mobile-menu-sub a:hover { color: #fff; }
.mobile-menu-cta { margin-top: 24px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: rgba(255,255,255,0.6); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--black); z-index: 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,#111111 0%,rgba(17,17,17,.82) 55%,transparent 100%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; padding-top: 160px; padding-bottom: 100px; }
.hero h1 { font-size: clamp(38px,6vw,72px); color: #fff; line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 12px; max-width: 480px; }
.hero-trust { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 40px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.35; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; z-index: 1; }

/* ============================================================
   WHY VELCORE
   ============================================================ */
.why-section { background: var(--grey-50); }
.why-section h2 { color: var(--black); font-size: clamp(26px,3.5vw,40px); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(3,1fr); } }
.trust-item { display: flex; gap: 18px; }
.trust-icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.trust-item h3 { font-size: 15px; color: var(--black); margin-bottom: 6px; font-weight: 700; font-family: 'Montserrat',Arial,sans-serif; }
.trust-item p { font-size: 13px; color: rgba(0,0,0,0.55); line-height: 1.65; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-section { background: var(--black); }
.categories-section h2 { color: #fff; font-size: clamp(26px,3.5vw,40px); }
.category-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
@media (min-width: 640px) { .category-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3,1fr); } }

.category-card { display: flex; flex-direction: column; background: var(--graphite); border: 1px solid var(--border); transition: border-color .3s, transform .3s; overflow: hidden; color: inherit; }
.category-card:hover { border-color: rgba(184,155,94,0.4); transform: translateY(-2px); }
.category-card-img { aspect-ratio: 1/1; background: var(--graphite-mid); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.category-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform .5s; }
.category-card:hover .category-card-img img { transform: scale(1.05); }
.category-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.category-card-body h3 { font-size: 17px; color: #fff; margin-bottom: 4px; transition: color .2s; }
.category-card:hover .category-card-body h3 { color: var(--gold); }
/* Size badge under card title */
.card-size { display: block; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 10px; font-family: 'Montserrat',Arial,sans-serif; }
.category-card-body p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-family: 'Montserrat',Arial,sans-serif; }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
.spec-section { background: var(--graphite); }
.spec-section h2 { color: #fff; font-size: clamp(26px,3.5vw,40px); max-width: 700px; }
.spec-section p { color: rgba(255,255,255,0.6); max-width: 600px; margin-top: 24px; font-size: 16px; line-height: 1.7; }
.spec-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 36px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-family: 'Montserrat',Arial,sans-serif; border-bottom: 1px solid rgba(184,155,94,0.4); padding-bottom: 4px; transition: border-color .2s; }
.spec-link:hover { border-color: var(--gold); }

.custom-section { background: var(--black); }
.custom-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .custom-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.custom-left p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-top: 24px; }
.custom-left p+p { margin-top: 14px; color: rgba(255,255,255,0.38); font-size: 13px; }
.custom-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.custom-item { background: var(--graphite); border: 1px solid var(--border); padding: 24px; }
.custom-item-dot { width: 6px; height: 6px; background: var(--gold); margin-bottom: 14px; }
.custom-item h3 { font-size: 13px; color: #fff; margin-bottom: 8px; font-family: 'Montserrat',Arial,sans-serif; font-weight: 600; }
.custom-item p { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.6; }

.about-preview { background: var(--grey-50); }
.about-preview-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-preview-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.about-preview-text p { color: rgba(0,0,0,0.6); font-size: 15px; line-height: 1.75; margin-top: 24px; }
.about-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 36px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-family: 'Montserrat',Arial,sans-serif; border-bottom: 1px solid rgba(184,155,94,0.4); padding-bottom: 4px; transition: border-color .2s; }
.about-link:hover { border-color: var(--gold); }
.about-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.about-list li .num { font-size: 11px; color: var(--gold); font-family: 'Montserrat',Arial,sans-serif; font-weight: 700; width: 24px; flex-shrink: 0; }
.about-list li span { font-size: 13px; font-weight: 500; color: var(--black); }

.delivery-section { background: var(--black); border-top: 1px solid var(--border); padding: 80px 0; text-align: center; }
.delivery-section svg { color: var(--gold); margin: 0 auto 24px; }
.delivery-section h2 { font-size: clamp(22px,3vw,32px); color: #fff; margin-bottom: 16px; }
.delivery-section p { color: rgba(255,255,255,0.5); max-width: 560px; margin: 0 auto; font-size: 15px; line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: #0D0D0D; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; text-align: center; }
@media (min-width: 768px) { .cta-section { padding: 110px 0; } }
.cta-section h2 { font-size: clamp(26px,3.5vw,40px); color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto 40px; font-size: 15px; line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header { background: var(--black); padding-top: 130px; padding-bottom: 50px; }
.page-header h1 { font-size: clamp(28px,4.5vw,52px); color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.5); max-width: 640px; font-size: 15px; line-height: 1.7; margin-top: 20px; }

/* Product title + size inline layout */
.product-title-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 4px;
}
.product-title-row h1, .product-title-row h2 { margin-bottom: 0; }
.product-size-badge {
  font-size: 13px; font-weight: 600; color: var(--gold);
  font-family: 'Montserrat',Arial,sans-serif;
  background: rgba(184,155,94,0.12);
  border: 1px solid rgba(184,155,94,0.3);
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* On mobile: stack below */
@media (max-width: 639px) {
  .product-title-row { flex-direction: column; gap: 6px; }
}

.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: 'Montserrat',Arial,sans-serif; transition: color .2s; margin-top: 20px; }
.back-link:hover { color: var(--gold); }

/* ============================================================
   PRODUCT FAMILY (napy)
   ============================================================ */
.product-families { background: var(--black); padding-bottom: 80px; }
.product-family { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; margin-bottom: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
@media (min-width: 1024px) { .product-family { grid-template-columns: 2fr 3fr; gap: 56px; } }
.family-main-img { aspect-ratio: 1; background: var(--graphite); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.family-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 32px; }
.family-info { }
.family-title-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.family-title-row h2 { font-size: clamp(20px,2.5vw,28px); color: #fff; margin-bottom: 0; }
@media (max-width: 639px) { .family-title-row { flex-direction: column; gap: 4px; } }
.family-info > p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-top: 14px; margin-bottom: 8px; }

.info-block { margin-top: 14px; margin-bottom: 14px; }
.info-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 8px; display: block; }
.info-value { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ============================================================
   FINISH GRID
   ============================================================ */
.finish-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 14px; }
@media (min-width: 480px) { .finish-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 768px) { .finish-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1024px) { .finish-grid { grid-template-columns: repeat(5,1fr); } }
.finish-item-img { aspect-ratio: 1; background: var(--graphite-mid); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 7px; transition: border-color .2s; }
.finish-item-img:hover { border-color: rgba(184,155,94,0.4); }
.finish-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 13px; transition: transform .3s; }
.finish-item-img:hover img { transform: scale(1.06); }
.finish-item p { font-size: 11px; color: rgba(255,255,255,0.5); text-align: center; }

.finish-section { background: var(--black); padding-bottom: 80px; }
.finish-section-inner { background: var(--graphite); border: 1px solid var(--border); padding: 34px; margin-bottom: 14px; }
@media (max-width: 640px) { .finish-section-inner { padding: 20px; } }
.finish-section-inner h2 { font-size: clamp(20px,2.5vw,28px); color: #fff; margin-bottom: 4px; }
.finish-section-inner > p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-top: 6px; margin-bottom: 22px; max-width: 640px; }
.finish-note { background: var(--graphite); border: 1px solid var(--border); padding: 16px 20px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ============================================================
   CATALOGUE LIGHTBOX
   ============================================================ */
.catalogues-section { background: var(--graphite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.catalogue-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 28px 0 16px; }
@media (min-width: 768px) { .catalogue-grid { grid-template-columns: 1fr 1fr; } }
.catalogue-card { position: relative; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: border-color .2s; }
.catalogue-card:hover { border-color: rgba(184,155,94,0.4); }
.catalogue-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.catalogue-card:hover img { transform: scale(1.03); }
.catalogue-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.32); display: flex; align-items: flex-end; padding: 20px; pointer-events: none; }
.catalogue-card-overlay h3 { font-size: 18px; color: #fff; }
.catalogue-zoom-hint { position: absolute; top: 12px; right: 12px; background: rgba(184,155,94,0.85); color: #111; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; font-family: 'Montserrat',Arial,sans-serif; pointer-events: none; }
.catalogue-note { font-size: 13px; color: rgba(255,255,255,0.38); text-align: center; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 92vw; max-height: 92vh; }
.lightbox-inner img { max-width: 100%; max-height: 88vh; object-fit: contain; display: block; }
.lightbox-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; padding: 8px; opacity: 0.8; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   DIES PAGE
   ============================================================ */
.dies-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .dies-grid { grid-template-columns: repeat(3,1fr); } }
.die-card { background: var(--graphite); border: 1px solid var(--border); overflow: hidden; transition: border-color .3s; }
.die-card:hover { border-color: rgba(184,155,94,0.3); }
.die-card-img { aspect-ratio: 4/3; background: var(--graphite-mid); overflow: hidden; }
.die-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.die-card:hover .die-card-img img { transform: scale(1.05); }
.die-card-body { padding: 22px; }
.die-card-body h2 { font-size: 17px; color: #fff; margin-bottom: 6px; }
.die-card-body p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-top: 6px; }

/* ============================================================
   PRESSES PAGE
   ============================================================ */
.presses-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .presses-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .presses-grid { grid-template-columns: repeat(3,1fr); } }
.press-card { background: var(--graphite); border: 1px solid var(--border); overflow: hidden; transition: border-color .3s; display: flex; flex-direction: column; }
.press-card:hover { border-color: rgba(184,155,94,0.3); }
.press-card-img { aspect-ratio: 4/3; background: var(--graphite-mid); overflow: hidden; position: relative; }
.press-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .4s; }
.press-card:hover .press-card-img img { transform: scale(1.04); }
.press-brand-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(184,155,94,0.2); color: var(--gold); padding: 3px 8px; font-family: 'Montserrat',Arial,sans-serif; }
.press-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.press-card-body h2 { font-size: 15px; color: #fff; margin-bottom: 8px; transition: color .2s; font-family: 'Montserrat',Arial,sans-serif; font-weight: 600; }
.press-card:hover .press-card-body h2 { color: var(--gold); }
.press-card-body p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.press-card-body .btn { align-self: flex-start; }

/* ============================================================
   JEANS BUTTON PAGE
   ============================================================ */
.jeans-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; padding-bottom: 80px; }
@media (min-width: 1024px) { .jeans-layout { grid-template-columns: 1fr 1fr; gap: 64px; } }
.jeans-img { max-width: 420px; aspect-ratio: 1; background: var(--graphite); border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.jeans-img img { width: 100%; height: 100%; object-fit: contain; padding: 44px; }

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */
.related-section { background: var(--graphite); padding: 56px 0; border-top: 1px solid var(--border); }
.related-section h2 { font-size: clamp(18px,2vw,24px); color: #fff; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(6,1fr); } }
.related-card { display: flex; flex-direction: column; align-items: center; background: var(--graphite-mid); border: 1px solid var(--border); padding: 16px 10px; text-align: center; transition: border-color .2s; }
.related-card:hover { border-color: rgba(184,155,94,0.4); }
.related-card img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 9px; }
.related-card span { font-size: 11px; color: rgba(255,255,255,0.6); font-family: 'Montserrat',Arial,sans-serif; font-weight: 600; transition: color .2s; }
.related-card:hover span { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
@media (min-width: 1024px) { .about-layout { grid-template-columns: 2fr 1fr; gap: 64px; } }
.about-main p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 22px; }
.about-main .tagline { font-size: 17px; color: var(--gold); font-weight: 500; margin-top: 36px; }
.about-sidebar-card { background: var(--graphite); border: 1px solid var(--border); padding: 24px; margin-bottom: 14px; }
.about-sidebar-card h3 { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 16px; }
.about-sidebar-card ul li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 13px; color: rgba(255,255,255,0.6); }
.about-sidebar-card ul li::before { content: ''; width: 4px; height: 4px; background: var(--gold); flex-shrink: 0; }
.about-meta-item { margin-bottom: 12px; }
.about-meta-item .label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 4px; }
.about-meta-item .value { font-size: 13px; color: rgba(255,255,255,0.65); }
.about-contact-link { color: var(--gold); transition: color .2s; }
.about-contact-link:hover { color: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 80px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 2fr 3fr; gap: 44px; } }
.contact-info-card { background: var(--graphite); border: 1px solid var(--border); padding: 26px; }
.contact-info-card h2 { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 20px; }
.contact-info-item { margin-bottom: 18px; }
.contact-info-item .label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 5px; }
.contact-info-item a, .contact-info-item p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.5; transition: color .2s; }
.contact-info-item a.gold { color: var(--gold); }
.contact-info-item a:hover { color: #fff; }
.contact-quick-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.contact-quick-btns .btn { width: 100%; }

.contact-form-card { background: var(--graphite); border: 1px solid var(--border); padding: 34px; }
@media (max-width: 640px) { .contact-form-card { padding: 20px; } }
.contact-form-card h2 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.form-sub { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,0.38); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 7px; }
.form-label .req { color: var(--gold); }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--graphite-mid); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 14px; font-family: 'Inter',Arial,sans-serif; padding: 11px 14px; transition: border-color .2s; outline: none; -webkit-appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(184,155,94,0.6); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.form-checkbox-group input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }
.form-checkbox-group label { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; cursor: pointer; }
.form-checkbox-group label a { color: var(--gold); }
.form-btn { width: 100%; }
.form-note { background: rgba(184,155,94,0.08); border-left: 2px solid var(--gold); padding: 12px 16px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.form-note a { color: var(--gold); }

/* ============================================================
   LEGAL
   ============================================================ */
.legal-box { background: var(--graphite); border: 1px solid var(--border); padding: 30px; max-width: 760px; }
.legal-box p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 14px; }
.legal-box a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0D0D0D; border-top: 1px solid var(--border); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 28px; } }
.footer-brand .logo-img { height: 32px; width: auto; max-width: 170px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 14px; }
.footer-tagline { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-family: 'Montserrat',Arial,sans-serif; }
.footer-col h3 { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-family: 'Montserrat',Arial,sans-serif; margin-bottom: 16px; }
.footer-col ul li+li { margin-top: 11px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { margin-bottom: 11px; }
.footer-contact-item a, .footer-contact-item p { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-meta { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 12px; line-height: 1.8; }
.footer-bottom { margin-top: 40px; padding: 16px 0; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

.wa-icon { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   v-final additions: size table, instagram, cookie banner
   ============================================================ */

/* Size table (Guziki obciągane) */
.size-table-wrap { overflow-x: auto; margin-top: 16px; }
.size-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.size-table th, .size-table td {
  text-align: left; padding: 14px 18px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.size-table th {
  font-family: 'Montserrat',Arial,sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  background: var(--graphite-mid);
}
.size-table td:first-child { color: var(--gold); font-weight: 600; font-family: 'Montserrat',Arial,sans-serif; }
.size-table td:last-child { color: rgba(255,255,255,0.75); }
.size-table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Size grid alternative (cards) */
.size-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 16px; }
@media (min-width: 540px) { .size-grid { grid-template-columns: repeat(3,1fr); } }
.size-grid-item {
  background: var(--graphite-mid); border: 1px solid var(--border);
  padding: 16px; text-align: center; transition: border-color .2s;
}
.size-grid-item:hover { border-color: rgba(184,155,94,0.4); }
.size-grid-item .nr { font-size: 11px; color: var(--gold); font-family: 'Montserrat',Arial,sans-serif; font-weight: 700; letter-spacing: .05em; margin-bottom: 4px; }
.size-grid-item .mm { font-size: 17px; color: #fff; font-family: 'Montserrat',Arial,sans-serif; font-weight: 600; }

/* Instagram icon + link */
.ig-icon { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer-contact-item.ig a { display: inline-flex; align-items: center; gap: 8px; }
.contact-info-item.ig a { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   Cookie banner — necessary-only, honest
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
  background: #161616; border-top: 1px solid var(--border);
  padding: 18px 20px; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
  max-width: var(--site-max); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.cookie-banner-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 640px; }
.cookie-banner-text a { color: var(--gold); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* Policy page headings */
.legal-box h2 { font-size: 17px; color: #fff; margin-top: 30px; margin-bottom: 10px; font-family: 'Montserrat',Arial,sans-serif; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box ul { margin: 10px 0 16px 0; padding-left: 0; }
.legal-box ul li { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; padding-left: 18px; position: relative; }
.legal-box ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 4px; height: 4px; background: var(--gold); }
