:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #66645f;
  --line: #d8ded7;
  --paper: #f8f9f7;
  --soft: #eef2ee;
  --accent: #b53f32;
  --accent-dark: #7f2b24;
  --olive: #68715a;
  --blue: #35596c;
  --shadow: 0 18px 55px rgba(42, 34, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 216, 205, 0.85);
  background: rgba(251, 250, 247, 0.93);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 780;
  font-size: 20px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 720;
  font-size: 14px;
  white-space: nowrap;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: 44px;
  padding: 42px 0 36px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  color: #3b3a36;
  font-size: 19px;
  max-width: 610px;
}

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

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: stretch;
}

.hero-media img,
.look-card img,
.article-image img,
.pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.hero-main {
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.hero-stack img {
  min-height: 300px;
  border-radius: 8px;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section.soft {
  background: var(--soft);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

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

.look-card {
  display: grid;
  grid-template-rows: 360px auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.look-card-body {
  padding: 18px;
}

.look-card-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.guide-link {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-link span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
}

.guide-link p {
  color: var(--muted);
  margin-top: 12px;
}

.tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tip {
  padding: 22px;
  border-top: 3px solid var(--olive);
  background: #fff;
}

.tip p {
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: #1f2622;
  color: #fff;
}

.cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.article-hero {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 38px;
}

.article-hero .lead {
  max-width: 760px;
}

.article-layout {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 46px;
  padding-bottom: 72px;
}

.article-body {
  font-size: 18px;
}

.article-body h2 {
  margin-top: 44px;
  font-size: 32px;
}

.article-body p,
.article-body li {
  color: #34322e;
}

.article-body p {
  margin-top: 16px;
}

.article-body ul,
.article-body ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-body li + li {
  margin-top: 10px;
}

.article-image {
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  margin: 30px 0;
}

.aside {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.aside p {
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 16px;
}

.pin-grid {
  columns: 4 210px;
  column-gap: 16px;
}

.pin {
  break-inside: avoid;
  display: block;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.pin img {
  min-height: 280px;
}

.pin figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 14px;
}

.idea-list {
  display: grid;
  gap: 22px;
}

.idea-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.idea-row img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.idea-row h2 {
  font-size: 30px;
  margin-top: 0;
}

.idea-row p {
  margin-top: 12px;
  color: #34322e;
}

.idea-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.idea-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 34px 0 26px;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .hero-main {
    min-height: 430px;
  }

  .hero-stack img {
    min-height: 208px;
  }

  .section-head,
  .cta-band,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .look-grid,
  .guide-grid,
  .tips,
  .idea-row {
    grid-template-columns: 1fr 1fr;
  }

  .idea-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-media,
  .look-grid,
  .guide-grid,
  .tips,
  .idea-row {
    grid-template-columns: 1fr;
  }

  .idea-row img {
    height: 420px;
  }

  .hero-main,
  .hero-stack img,
  .look-card {
    min-height: 0;
  }

  .look-card {
    grid-template-rows: 430px auto;
  }

  .section {
    padding: 52px 0;
  }

  .cta-band {
    padding: 24px;
  }

  .article-body {
    font-size: 17px;
  }

  .article-image {
    height: 420px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
