:root {
  color-scheme: light;
  --ink: #182127;
  --muted: #62717b;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --line: #dbe4e1;
  --teal: #057f7b;
  --teal-dark: #075f5d;
  --plum: #7b315e;
  --persimmon: #c85f35;
  --jade: #4f8f70;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
}

a {
  color: inherit;
}

.topbar {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  text-decoration: none;
  font-weight: 900;
  color: var(--teal-dark);
}

nav {
  display: flex;
  gap: 20px;
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

.hero {
  min-height: min(720px, calc(100vh - 66px));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  background: var(--soft);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: 7vw 6vw;
  max-width: 760px;
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.eyebrow,
.trend-card > p {
  margin: 0 0 12px;
  color: var(--persimmon);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero p,
.section-heading p,
.trend-card span,
.product-card p,
.article-header p,
.content-block li,
.note-box p,
.related li {
  color: var(--muted);
}

.hero p {
  max-width: 560px;
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--teal-dark);
}

.section {
  padding: 58px 6vw;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  gap: 34px;
  background: #172026;
  color: #ffffff;
}

.band p,
.band li {
  color: #dce7e4;
}

.band ul {
  margin: 0;
  padding-left: 20px;
  align-self: center;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 560px;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.trend-card {
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.trend-card a {
  text-decoration: none;
}

.article {
  width: min(940px, 88vw);
  margin: 0 auto;
  padding: 44px 0 72px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: #a6b2b6;
}

.article-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.article-header h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.article-header p {
  max-width: 780px;
  font-size: 1.12rem;
}

.content-block,
.note-box,
.related {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.content-block ul,
.related ul {
  padding-left: 20px;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.product-card a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.note-box {
  background: var(--soft);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 28px 0;
}

.footer {
  padding: 28px 6vw;
  background: var(--soft);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  max-width: 980px;
}

@media (max-width: 1120px) {
  .trend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero img {
    order: -1;
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-copy,
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-heading {
    display: block;
  }

  .trend-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}