:root {
  --ink: #202329;
  --muted: #667085;
  --line: #d8dde6;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --coral: #d84b52;
  --blue: #2f6f9f;
  --green: #24745a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--coral);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(44px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: #ffffff;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: 28px;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  color: #3e4653;
  font-size: 19px;
}

.hero-media {
  display: grid;
  place-items: center;
}

.hero-media img {
  width: min(280px, 70vw);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(32, 35, 41, 0.12);
}

.band {
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.business-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.brand-grid article {
  display: grid;
  gap: 12px;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--soft);
}

.brand-logo {
  display: grid;
  place-items: center;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.brand-logo img {
  max-width: 78%;
  max-height: 76px;
  object-fit: contain;
}

.brand-logo.dermarelle-logo img {
  max-width: 94%;
  max-height: 96px;
}

.brand-grid h3 {
  margin-bottom: 0;
}

.brand-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-grid span {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: #e9f1f5;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.business-list div {
  min-height: 80px;
  padding: 16px;
  background: var(--paper);
}

.business-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-list dd {
  margin: 0;
  font-weight: 800;
}

.business-list.compact {
  margin-top: 18px;
  grid-template-columns: 1fr;
}

.business-list.compact div {
  min-height: 64px;
}

.document {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 18px;
}

.document section {
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--paper);
}

.document h1 {
  font-size: clamp(36px, 6vw, 62px);
}

.document h2 {
  font-size: 22px;
}

.document p,
.document li {
  color: #3e4653;
}

@media (max-width: 780px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    justify-content: start;
  }

  .service-grid,
  .brand-grid,
  .business-list {
    grid-template-columns: 1fr;
  }
}
