/* ═══════════════════════════════════════════════════
   DH Nordic — Global Stylesheet
   Navy / Cream design system
   ═══════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────── */
:root {
  --navy:        #2d4a5a;
  --navy-dark:   #1d3344;
  --navy-light:  #3a5f73;
  --cream:       #f5f0e8;
  --cream-dark:  #ede7da;
  --white:       #ffffff;
  --text:        #2d4a5a;
  --text-light:  #5a7a8a;
  --accent:      #c8b89a;
  --accent-dark: #a8966e;
  --border:      rgba(45,74,90,0.12);
  --shadow:      0 4px 32px rgba(45,74,90,0.10);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ───────────────────────────────────────── */
body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

/* ── Site wrapper ───────────────────────────────── */
.site-wrapper {
  max-width: 960px;
  margin: 32px auto;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  background: var(--white);
  padding: 28px 52px 22px;
  border-bottom: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: inline-block; line-height: 0; }

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.header-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: right;
  line-height: 1.8;
}

/* ── Navigation ─────────────────────────────────── */
.site-nav {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: var(--navy-light);
}

/* ── Page content area ──────────────────────────── */
.page-content {
  padding: 48px 52px 56px;
}

/* ── Page title band ─────────────────────────────── */
.page-band {
  background: var(--navy);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.page-band h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.page-band p {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.band-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Typography ─────────────────────────────────── */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}

p strong { color: var(--navy); font-weight: 600; }

ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}

ul li {
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.6;
}

ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

ul li strong { color: var(--navy); font-weight: 600; }

/* ── Divider ─────────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* ── Highlight box ───────────────────────────────── */
.highlight-box {
  background: var(--cream);
  border-left: 3px solid var(--navy);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}

.highlight-box p { margin-bottom: 0; }

/* ── Contact info grid ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-block h3 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.contact-block .contact-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.contact-block p,
.contact-block a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  line-height: 1.9;
  margin: 0;
}

.contact-block a:hover { color: var(--navy); }

/* ── Business card ───────────────────────────────── */
.card-wrapper {
  text-align: center;
}

.card-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(45,74,90,0.15);
  margin-bottom: 12px;
}

.card-wrapper a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
}

.card-wrapper a:hover { color: var(--navy-light); }

/* ── QR code ─────────────────────────────────────── */
.qr-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.qr-wrapper img {
  width: 72px;
  height: 72px;
  border-radius: 4px;
}

.qr-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ── Contact form ────────────────────────────────── */
.contact-form {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-form h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-submit:hover { background: var(--navy-light); }

.form-success {
  background: rgba(45,74,90,0.07);
  border-left: 3px solid var(--navy);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  border-radius: 0 3px 3px 0;
}

/* ── Services grid ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.service-card {
  text-align: center;
  padding: 28px 20px 24px;
  background: var(--cream);
  border-radius: 4px;
  border-top: 3px solid var(--navy);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(45,74,90,0.12);
}

.service-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 16px;
}

.service-card h2 {
  font-size: 14px;
  margin: 0 0 8px;
  border-bottom: none;
  padding-bottom: 0;
}

.service-card p {
  font-size: 13px;
  margin: 0;
}

/* ── Product table ───────────────────────────────── */
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.product-table thead tr { background: var(--navy); }

.product-table thead th {
  padding: 11px 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: left;
}

.product-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}

.product-table tbody tr:last-child { border-bottom: none; }
.product-table tbody tr:hover { background: var(--cream); }
.product-table td { padding: 16px 18px; vertical-align: top; }

.product-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.4;
}

.product-note {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  font-style: italic;
  margin-top: 3px;
}

.dossier-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge-done { background: rgba(45,74,90,0.10); color: var(--navy); }
.badge-q3   { background: rgba(200,184,154,0.22); color: #7a5c2a; }
.badge-q4   { background: rgba(200,184,154,0.28); color: #7a5c2a; }
.badge-q1   { background: rgba(200,184,154,0.35); color: #7a5c2a; }

.countries {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 36px 52px;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-block h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-block p,
.footer-block a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  text-decoration: none;
  display: block;
  margin: 0;
}

.footer-block a:hover { color: var(--white); }
.footer-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px !important; }

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.30);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 720px) {
  .site-wrapper    { margin: 0; border-radius: 0; }
  .site-header     { padding: 20px 18px; }
  .logo-img        { height: 56px; }
  .page-band       { padding: 16px 18px; }
  .page-content    { padding: 28px 18px 40px; }
  .site-footer     { padding: 28px 18px; }
  .footer-inner    { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 28px; }
  .services-grid   { grid-template-columns: 1fr; }
  .product-table thead th,
  .product-table td { padding: 12px 10px; }
}
