* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  background: #f5f3f0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #c98f8a;
}

/* Header */
.header {
  background: #f5f3f0;
  border-bottom: 1px solid rgba(44, 44, 44, 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, #c98f8a, #b87d78);
  border-radius: 8px;
}

.header__name {
  font-family: "Fraunces", serif;
  font-size: 1.375rem;
  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: #c98f8a;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
}

/* Hero Card */
.hero-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-card__media {
  width: 100%;
  overflow: hidden;
}

.hero-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s;
}

.hero-card__media a:hover img {
  transform: scale(1.05);
}

.hero-card__content {
  padding: 2rem;
}

.hero-card__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.hero-card__tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #c98f8a;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-card__title {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero-card__title a {
  color: #1a1a1a;
}

.hero-card__title a:hover {
  color: #c98f8a;
}

.hero-card__excerpt {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555;
}

/* Boxes Column */
.boxes-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.box-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  overflow: hidden;
}

.box-card__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.box-card--new .box-card__header {
  background: #faf9f7;
}

.box-card--choice .box-card__header {
  background: #faf9f7;
}

.box-card__title {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.box-card__item {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
}

.box-card__media {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

.box-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.box-card__media a:hover img {
  transform: scale(1.1);
}

.box-card__content {
  min-width: 0;
}

.box-card__item-title {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.box-card__item-title a {
  color: #1a1a1a;
}

.box-card__item-title a:hover {
  color: #c98f8a;
}

.box-card__date {
  font-size: 0.8125rem;
  color: #888;
}

/* Grid Section */
.grid-section {
  margin: 3rem 0;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-layout {
    grid-template-columns: 1fr;
  }
}

.grid-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.1);
}

.grid-card__media {
  width: 100%;
  overflow: hidden;
}

.grid-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s;
}

.grid-card__media a:hover img {
  transform: scale(1.1);
}

.grid-card__content {
  padding: 1.5rem;
}

.grid-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 143, 138, 0.15);
  color: #c98f8a;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.grid-card__title {
  font-family: "Fraunces", serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.grid-card__title a {
  color: #1a1a1a;
}

.grid-card__title a:hover {
  color: #c98f8a;
}

.grid-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(44, 44, 44, 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: "Fraunces", 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(44, 44, 44, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

/* Article styles */
.article {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.article__header {
  margin-bottom: 2.5rem;
}

.article__title {
  font-family: "Fraunces", 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: #555;
}

.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: #2c2c2c;
}

.article__body h2 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.article__body h3 {
  font-family: "Fraunces", 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 #c98f8a;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
  font-size: 1.25rem;
}

.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.related__title {
  font-family: "Fraunces", 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: #2c2c2c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related__item a:hover {
  color: #c98f8a;
}

/* Contact */
.contact {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.contact__title {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.contact__subtitle {
  font-size: 1.25rem;
  color: #555;
  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(44, 44, 44, 0.1);
}

.contact__card h2 {
  font-family: "Fraunces", 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: #2c2c2c;
}

.contact__form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(44, 44, 44, 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: #2c2c2c;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid rgba(44, 44, 44, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f5f3f0;
  color: #2c2c2c;
}

.contact__form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__form button {
  padding: 1rem 2rem;
  background: #c98f8a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact__form button:hover {
  background: #b87d78;
}

/* Privacy */
.privacy {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.privacy__title {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.privacy__body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2c2c2c;
}

.privacy__body h2 {
  font-family: "Fraunces", 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;
}
