/* Design A — COS editorial showroom */
.scandi-a { --sm-bg: #f7f5f1; --sm-paper: #fffcf8; --sm-accent: #6e6256; }

.a-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.a-hero__image {
  position: absolute;
  inset: 0;
  background: #cfc8be center / cover no-repeat;
  transform: scale(1.04);
}

.a-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.10) 0%, rgba(20,16,12,0.34) 48%, rgba(20,16,12,0.86) 100%),
    linear-gradient(90deg, rgba(20,16,12,0.60) 0%, rgba(20,16,12,0.28) 42%, rgba(20,16,12,0) 70%);
}

.a-hero__copy {
  position: relative;
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto 88px;
  text-shadow: 0 6px 26px rgba(20, 16, 12, 0.4);
}

.a-hero h1 {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
  max-width: 11em;
}

.a-hero p {
  max-width: 33em;
  margin: 22px 0 32px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.a-manifesto {
  padding: 140px 0 120px;
  text-align: center;
}

.a-manifesto h2 {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.3;
  max-width: 13em;
  margin: 0 auto 28px;
}

.a-manifesto p {
  max-width: 46em;
  margin: 0 auto;
  color: var(--sm-mute);
  line-height: 1.9;
  font-size: 16px;
}

.a-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--sm-paper);
}

.a-split--reverse .a-split__media { order: 2; }

.a-split__media {
  min-height: 520px;
  background: #ddd7ce center / cover no-repeat;
}

.a-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw;
}

.a-split__copy h2 {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(34px, 3.4vw, 48px);
  margin-bottom: 22px;
}

.a-split__copy p {
  color: var(--sm-mute);
  line-height: 1.9;
  margin-bottom: 28px;
}

.a-curation { padding: 120px 0 80px; }

.a-curation__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.a-curation__head h2 {
  font-family: "Pretendard", sans-serif;
  font-size: 46px;
}

.a-curation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.a-quote {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: #2b2723 center / cover no-repeat;
  position: relative;
}

.a-quote:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,0.42);
}

.a-quote__inner { position: relative; max-width: 640px; padding: 0 24px; }

.a-quote h2 {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.28;
}

.a-certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sm-line);
  border-bottom: 1px solid var(--sm-line);
}

.a-certs article {
  padding: 48px 32px;
  border-right: 1px solid var(--sm-line);
}

.a-certs article:last-child { border-right: 0; }

.a-certs h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.a-certs p { font-size: 13px; color: var(--sm-mute); line-height: 1.7; }

.a-ugc { padding: 110px 0; }

.a-ugc__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 36px;
}

.a-ugc__grid a {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.a-ugc__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .a-split,
  .a-certs,
  .a-ugc__grid { grid-template-columns: 1fr 1fr; }
  .a-curation__grid { grid-template-columns: 1fr 1fr; }
  .a-split--reverse .a-split__media { order: 0; }
  .a-hero__copy { width: calc(100% - 40px); margin-bottom: 56px; }
}

@media (max-width: 640px) {
  .a-certs,
  .a-ugc__grid,
  .a-curation__grid { grid-template-columns: 1fr; }
  .a-manifesto { padding: 88px 0; }
}
