* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 21, 18, 0.92), rgba(16, 21, 18, 0.70)),
    url("/images/hero-albanian-alps.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #201d17;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.shell {
  max-width: 1160px;
  margin: 30px auto;
  background: #f5ead7;
  border: 1px solid rgba(255, 244, 225, 0.5);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.cover {
  min-height: 330px;
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(180deg, rgba(9, 15, 11, 0.08), rgba(9, 15, 11, 0.78)),
    url("/images/hero-albanian-alps.jpg");
  background-size: cover;
  background-position: center;
}

.cover-band {
  max-width: 760px;
  padding: 46px;
  color: #fff8e9;
}

.overline {
  margin: 0 0 10px;
  color: #b67b31;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cover .overline {
  color: #e2b16b;
}

.cover h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  font-weight: normal;
}

.cover p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.site-nav {
  display: flex;
  gap: 0;
  background: #171c15;
  border-top: 5px solid #b67b31;
  border-bottom: 1px solid rgba(255, 248, 233, 0.15);
}

.site-nav a {
  color: #fff8e9;
  text-decoration: none;
  padding: 18px 26px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: #b67b31;
  color: #171c15;
}

.home-main,
.content-main {
  padding: 42px 46px 54px;
}

.author-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: center;
  background: #fff6e6;
  border: 1px solid #d8c39e;
  padding: 36px;
}

.portrait-column img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  filter: sepia(0.08);
  border: 10px solid #ead7b7;
}

.author-text h2,
.section-intro h2 {
  margin: 0 0 16px;
  color: #1f281c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: normal;
}

.author-text p,
.section-intro p {
  margin: 0 0 16px;
  line-height: 1.75;
  font-size: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-button,
.ghost-button,
.section-button,
.story-link {
  display: inline-block;
  padding: 11px 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 12px;
  font-weight: 800;
}

.primary-button,
.section-button {
  background: #1f281c;
  color: #fff8e9;
}

.ghost-button,
.story-link {
  border: 1px solid #b67b31;
  color: #1f281c;
}

.primary-button:hover,
.section-button:hover {
  background: #b67b31;
  color: #171c15;
}

.ghost-button:hover,
.story-link:hover {
  background: #b67b31;
  color: #171c15;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  background: #fff6e6;
  border: 1px solid #d8c39e;
  padding: 32px;
  margin-bottom: 30px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.story-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 285px;
  background: #fff6e6;
  border: 1px solid #d8c39e;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(31, 40, 28, 0.10);
}

.story-card:nth-child(3n) {
  grid-column: span 12;
  grid-template-columns: 0.65fr 1.35fr;
}

.story-image,
.text-symbol {
  display: block;
  min-height: 100%;
  background: #1f281c;
  text-decoration: none;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.text-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(182, 123, 49, 0.45), transparent 10rem),
    linear-gradient(135deg, #1f281c, #3c4735);
  color: #e2b16b;
}

.text-symbol span {
  display: block;
  padding: 18px;
  border: 1px solid rgba(226, 177, 107, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
}

.story-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.story-label {
  margin: 0 0 8px;
  color: #9c641c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.story-body h3 {
  margin: 0 0 12px;
  color: #1f281c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.12;
  font-weight: normal;
}

.story-body p {
  margin: 0 0 16px;
  line-height: 1.65;
  font-size: 15px;
}

.story-meta {
  margin-top: auto !important;
  color: #7a674e;
  font-size: 13px !important;
}

.footer {
  background: #171c15;
  color: #fff8e9;
  padding: 24px 20px;
  text-align: center;
  font-size: 13px;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .shell {
    margin: 0;
  }

  .author-card,
  .section-intro,
  .story-card,
  .story-card:nth-child(3n) {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card:nth-child(3n) {
    grid-column: span 12;
  }

  .story-image,
  .text-symbol {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .cover h1 {
    font-size: 42px;
  }

  .cover-band,
  .home-main,
  .content-main {
    padding: 28px 20px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav a {
    padding: 14px 13px;
  }

  .author-card {
    padding: 24px;
  }

  .portrait-column img {
    width: 100%;
    height: auto;
  }
}
