* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2c2418;
  background: #faf8f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #8b2635;
}

/* Header */
.header {
  background: #faf8f5;
  border-bottom: 1px solid rgba(44, 36, 24, 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, #8b2635, #6b1d2a);
  border-radius: 8px;
}

.header__name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1510;
}

.header__nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9375rem;
}

.header__nav a {
  color: #5a4f42;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #8b2635;
}

/* Editorial Layout */
.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin: 3rem 0;
}

@media (max-width: 968px) {
  .editorial-layout {
    grid-template-columns: 1fr;
  }
}

/* Editorial Column */
.editorial-column {
  min-width: 0;
}

.column-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1a1510;
  border-bottom: 2px solid #8b2635;
  padding-bottom: 0.75rem;
}

.editorial-story {
  margin-bottom: 3rem;
}

.editorial-story:last-child {
  margin-bottom: 0;
}

.story__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #7a6f62;
}

.story__tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #8b2635;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1510;
}

.story__title a {
  color: #1a1510;
}

.story__title a:hover {
  color: #8b2635;
}

.story__title--small {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.story__lead {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #5a4f42;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story__media {
  margin: 1.5rem 0;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.story__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s;
}

.story__media a:hover img {
  transform: scale(1.02);
}

.story__media--small {
  margin-top: 1rem;
}

.story__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2c2418;
  margin-top: 1rem;
}

/* Featured Sidebar */
.featured-sidebar {
  min-width: 0;
}

.featured-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(44, 36, 24, 0.1);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.featured-card__media {
  width: 100%;
  overflow: hidden;
}

.featured-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.3s;
}

.featured-card__media a:hover img {
  transform: scale(1.05);
}

.featured-card__content {
  padding: 2rem;
}

.featured-card__meta {
  margin-bottom: 1rem;
}

.featured-card__tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(139, 38, 53, 0.1);
  color: #8b2635;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #1a1510;
}

.featured-card__title a {
  color: #1a1510;
}

.featured-card__title a:hover {
  color: #8b2635;
}

.featured-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #5a4f42;
}

/* Look Notes */
.look-notes {
  margin: 4rem 0;
}

.look-notes__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1a1510;
  text-align: center;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .look-grid {
    grid-template-columns: 1fr;
  }
}

.look-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(44, 36, 24, 0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.look-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 36, 24, 0.12);
}

.look-card__media {
  width: 100%;
  overflow: hidden;
}

.look-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s;
}

.look-card__media a:hover img {
  transform: scale(1.1);
}

.look-card__content {
  padding: 1.5rem;
}

.look-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(139, 38, 53, 0.1);
  color: #8b2635;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.look-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1510;
}

.look-card__title a {
  color: #1a1510;
}

.look-card__title a:hover {
  color: #8b2635;
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(44, 36, 24, 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: "Playfair Display", serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1510;
}

.footer__about p {
  font-size: 0.9375rem;
  color: #7a6f62;
  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(44, 36, 24, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: #7a6f62;
}

/* 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: #8b2635;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article__title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1510;
}

.article__lead {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #5a4f42;
  font-style: italic;
}

.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: #2c2418;
}

.article__body h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1510;
}

.article__body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
  color: #1a1510;
}

.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 #8b2635;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #5a4f42;
  font-size: 1.25rem;
}

.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 36, 24, 0.1);
}

.related__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1510;
}

.related__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related__item a {
  color: #2c2418;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related__item a:hover {
  color: #8b2635;
}

/* Contact */
.contact {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.contact__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1510;
}

.contact__subtitle {
  font-size: 1.25rem;
  color: #5a4f42;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.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(44, 36, 24, 0.1);
}

.contact__card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1510;
}

.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: #7a6f62;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact__info-value {
  font-weight: 500;
  color: #2c2418;
}

.contact__form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(44, 36, 24, 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: #2c2418;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid rgba(44, 36, 24, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #faf8f5;
  color: #2c2418;
}

.contact__form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__form button {
  padding: 1rem 2rem;
  background: #8b2635;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact__form button:hover {
  background: #6b1d2a;
}

/* Privacy */
.privacy {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.privacy__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1510;
}

.privacy__body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2c2418;
}

.privacy__body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1510;
}

.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;
}
