body {
  margin: 0;
  background: #fbf9f8;
  color: #1b1c1c;
  font-family: Inter, sans-serif;
}

.nav-item {
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: #444748;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: rgba(119, 90, 25, 0.08);
  color: #775a19;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #444748;
  font: 700 11px/1 Montserrat, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.social-chip:hover,
.social-chip:focus {
  border-color: #775a19;
  color: #775a19;
  background: rgba(119, 90, 25, 0.06);
}

.social-chip--footer {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.social-chip--footer:hover,
.social-chip--footer:focus {
  border-color: #e9c176;
  color: #ffffff;
  background: rgba(233, 193, 118, 0.12);
}

.plot-detail-page {
  background:
    radial-gradient(circle at top right, rgba(233, 193, 118, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf9f8 0%, #f3efea 100%);
}

.plot-detail-hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.plot-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 20, 30, 0.82), rgba(15, 20, 30, 0.36));
}

.plot-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plot-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.plot-hero-wrap {
  position: relative;
  z-index: 1;
  padding: 80px 0 54px;
}

.plot-hero-panel {
  max-width: 760px;
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.plot-kicker {
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(233, 193, 118, 0.35);
  padding: 8px 14px;
  color: #e9c176;
  font: 700 12px/16px Montserrat, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plot-hero-title,
.plot-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: #111111;
  line-height: 1.02;
}

.plot-hero-title {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 68px);
}

.plot-hero-copy {
  margin: 20px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.85;
}

.plot-section {
  padding: 84px 0;
}

.plot-section--light {
  background: rgba(255, 255, 255, 0.86);
}

.plot-section--dark {
  background: #0f141e;
  color: #ffffff;
}

.plot-section--dark .plot-title,
.plot-section--dark p,
.plot-section--dark li,
.plot-section--dark h3 {
  color: #ffffff;
}

.plot-grid,
.plot-card-grid,
.plot-summary-grid,
.plot-gallery-grid {
  display: grid;
  gap: 24px;
}

.plot-grid,
.plot-summary-grid {
  align-items: start;
}

.plot-title {
  font-size: clamp(28px, 4vw, 42px);
}

.plot-copy p,
.plot-panel p,
.plot-card p,
.plot-summary-box p,
.plot-photo-caption p,
.plot-cta-panel p,
.plot-list li {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.82;
}

.plot-panel,
.plot-card,
.plot-summary-box,
.plot-photo-card,
.plot-cta-panel {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.06);
}

.plot-panel,
.plot-summary-box,
.plot-card,
.plot-photo-caption,
.plot-cta-panel {
  padding: 28px;
}

.plot-panel h3,
.plot-card h3,
.plot-summary-box h3,
.plot-photo-caption h3,
.plot-cta-panel h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.1;
  color: #111111;
}

.plot-summary-box {
  background: #111111;
}

.plot-summary-box h3,
.plot-summary-box p {
  color: #ffffff;
}

.plot-stat {
  display: block;
  margin-bottom: 12px;
  color: #e9c176;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.95;
}

.plot-photo-feature,
.plot-photo-card {
  overflow: hidden;
}

.plot-photo-feature {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.08);
}

.plot-photo-feature > img,
.plot-photo-feature > a > img,
.plot-photo-card > img {
  display: block;
  width: 100%;
  height: auto;
}

.plot-photo-card {
  background: #ffffff;
}

.plot-photo-card img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.plot-list {
  margin: 0;
  padding-left: 20px;
  color: #4b5563;
}

.plot-list li + li {
  margin-top: 8px;
}

.plot-cta-panel {
  display: grid;
  gap: 20px;
  background: linear-gradient(135deg, #111111, #1c1b1b);
}

.plot-cta-panel h3,
.plot-cta-panel p {
  color: #ffffff;
}

.plot-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.plot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #111111;
  font: 700 13px/1 Montserrat, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.plot-btn--primary {
  background: #111111;
  color: #ffffff;
}

.plot-btn--primary:hover {
  border-color: #775a19;
  background: #775a19;
}

.plot-btn--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.plot-btn--secondary:hover {
  border-color: #e9c176;
  color: #e9c176;
}

@media (min-width: 768px) {
  .plot-shell {
    width: min(1200px, calc(100% - 160px));
  }

  .plot-grid,
  .plot-summary-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .plot-card-grid,
  .plot-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plot-panel,
  .plot-summary-box {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 767px) {
  .plot-detail-hero {
    min-height: 320px;
  }

  .plot-hero-wrap {
    padding: 72px 0 46px;
  }

  .plot-hero-panel {
    padding: 24px 20px;
  }

  .plot-section {
    padding: 72px 0;
  }

  .plot-panel,
  .plot-summary-box,
  .plot-card,
  .plot-photo-caption,
  .plot-cta-panel {
    padding: 22px;
  }
}
