@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('assets/fonts/WorkSans-ExtraLight.woff2') format('woff2');
}

@font-face {
  font-family: 'Wix Madefor Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/WixMadeforText-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Wix Madefor Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/WixMadeforText-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Wix Madefor Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/WixMadeforDisplay-Regular.woff2') format('woff2');
}

:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --line: #dcdcdc;
  --dark: #1a1a1a;
  --font: 'Jost', Arial, Helvetica, sans-serif;
  --font-brand: 'Work Sans', Arial, Helvetica, sans-serif;
  --font-tagline: 'Wix Madefor Text', Arial, Helvetica, sans-serif;
  --font-h2: 'Wix Madefor Display', Arial, Helvetica, sans-serif;
  --font-p: 'Wix Madefor Text', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.6;
}

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

h1, h2, h3, h4 { font-weight: 400; margin: 0 0 16px; }
h2 { font-family: var(--font-h2); }
p { font-family: var(--font-p); }

a { color: inherit; text-decoration: none; }

strong, b { font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo { width: 44px; height: 44px; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-brand); font-size: 20px; letter-spacing: 3px; font-weight: 200; }
.brand-tagline { font-family: var(--font-tagline); font-size: 11px; letter-spacing: 2px; color: var(--ink-soft); }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 15px;
  letter-spacing: 0.5px;
}
.site-nav a:hover { color: var(--ink-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,20,20,0.72), rgba(20,20,20,0.45));
}
.hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero h1 {
  font-size: 62px;
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
  max-width: 640px;
}
.hero-side {
  max-width: 340px;
}
.hero-side p { margin-bottom: 24px; color: #eee; font-size: 24px; }

/* Countries */
.countries {
  position: relative;
  width: 100%;
  color: var(--ink);
  padding: 100px 0;
  overflow: hidden;
  aspect-ratio: 50 / 33;
  min-height: 458px;
  max-height: 722px;
  display: flex;
  align-items: center;
}
.countries-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 74% calc(50% - 30px);
}
.countries-overlay {
  position: absolute; inset: 0;
  background: rgba(225,225,225,0.55);
}
.countries .container { position: relative; max-width: 640px; transform: translateX(-200px); }
.countries h2 { font-size: 56px; color: #a7575f; }
.countries p { color: #333; }

/* Services */
.services { background: #1e242c; padding: 100px 0; color: #f2f2f2; }
.services h2 { text-align: center; margin-bottom: 56px; font-size: 56px; color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.service h3 { font-size: 20px; margin-bottom: 12px; color: #fff; }
.service p { color: #cfcfcf; font-size: 15px; }

/* Portfolio */
.portfolio { background: #fff; padding: 100px 0; color: var(--ink); }
.portfolio h2 { text-align: center; margin-bottom: 56px; font-size: 56px; color: var(--ink); }
.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
}
.portfolio-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 32px;
}
.portfolio-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.portfolio-logo img { max-width: 100%; max-height: 64px; object-fit: contain; }
.portfolio-logo img.logo-dermacentric { max-height: 57.6px; }
.portfolio-text p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

/* Staff */
.staff { background: #14203c; padding: 100px 0; color: #f2f2f2; }
.staff h2 { text-align: center; margin-bottom: 56px; font-size: 56px; color: #fff; }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.staff-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.staff-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-photo img.photo-kevin { object-position: center 20%; }
.staff-text p { margin: 0; color: #cfcfcf; font-size: 16px; line-height: 1.6; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #f2f2f2;
  padding: 80px 0 40px;
  text-align: center;
}
.footer-lead { font-size: 20px; margin-bottom: 40px; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.footer-brand .brand-name { letter-spacing: 3px; }

.footer-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-columns > div { text-align: center; }
.footer-columns h4 {
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 8px;
}
.office-country {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #999;
  margin-right: 4px;
}
.footer-columns p { margin: 0; font-size: 14px; }
.footer-columns a:hover { text-decoration: underline; }

.copyright { font-size: 12px; color: #888; margin: 0; }

/* Responsive */
@media (max-width: 1060px) {
  .countries .container { transform: none; }
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .countries h2 { font-size: 40px; }
  .services h2 { font-size: 40px; }
  .portfolio h2 { font-size: 40px; }
  .portfolio-row { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .portfolio-logo { margin: 0 auto; width: 200px; }
  .staff h2 { font-size: 40px; }
  .staff-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 32px 16px;
  }
  .site-nav li { padding: 10px 0; border-top: 1px solid var(--line); }
  .hero-inner { padding-top: 56px; padding-bottom: 56px; }
  .hero h1 { font-size: 32px; }
}
