* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #e8e8e8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #c4563d;
}

/* Header */
.header {
  background: #e8e8e8;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 600;
}

.header__mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #c4563d, #a0452f);
  border-radius: 8px;
}

.header__name {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.header__nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9375rem;
}

.header__nav a {
  color: #666;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #c4563d;
}

/* Filterbar (purely visual, no JS) */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Archivo", sans-serif;
  cursor: default;
  transition: all 0.2s;
}

.chip:first-child {
  background: #c4563d;
  color: #ffffff;
  border-color: #c4563d;
}

.chip:hover {
  background: #c4563d;
  color: #ffffff;
  border-color: #c4563d;
}

/* Lookbook Grid */
.lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0 4rem;
}

@media (max-width: 968px) {
  .lookbook {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .lookbook {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lookbook {
    grid-template-columns: 1fr;
  }
}

/* Item */
.item {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}

.item__media {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.item__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.3s;
}

.item__media a:hover img {
  transform: scale(1.05);
}

.item__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.item__title {
  font-family: "Archivo", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.item__title a {
  color: #1a1a1a;
}

.item__title a:hover {
  color: #c4563d;
}

.tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666;
  flex: 1;
}

/* Label (metka) */
.label {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  color: #999;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.label__year {
  color: #c4563d;
}

.label__material {
  color: #666;
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  margin-top: 4rem;
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__title {
  font-family: "Archivo", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.footer__about p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: #999;
}

/* Article styles */
.article {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.article__header {
  margin-bottom: 2.5rem;
}

.kicker {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
}

.tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c4563d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article__title {
  font-family: "Archivo", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.article__lead {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #666;
}

.article__media {
  margin-bottom: 2.5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.article__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article__body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1a1a;
}

.article__body h2 {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.article__body h3 {
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
  color: #1a1a1a;
}

.article__body p {
  margin-bottom: 1.25rem;
}

.article__body ul,
.article__body ol {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
}

.article__body li {
  margin-bottom: 0.75rem;
}

.article__body blockquote {
  border-left: 4px solid #c4563d;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
  font-size: 1.25rem;
}

.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.related__title {
  font-family: "Archivo", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.related__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related__item a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related__item a:hover {
  color: #c4563d;
}

/* Contact */
.contact {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.contact__title {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.contact__subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.contact__card h2 {
  font-family: "Archivo", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__info-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact__info-value {
  font-weight: 500;
  color: #1a1a1a;
}

.contact__form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.contact__form-group {
  margin-bottom: 1.5rem;
}

.contact__form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  color: #1a1a1a;
}

.contact__form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__form button {
  padding: 1rem 2rem;
  background: #c4563d;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Archivo", sans-serif;
}

.contact__form button:hover {
  background: #a0452f;
}

/* Privacy */
.privacy {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.privacy__title {
  font-family: "Archivo", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.privacy__body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1a1a;
}

.privacy__body h2 {
  font-family: "Archivo", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.privacy__body p {
  margin-bottom: 1.25rem;
}

.privacy__body ul {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
}

.privacy__body li {
  margin-bottom: 0.75rem;
}
