:root {
  --fog: #c6cbbb;
  --mist: #a8b09b;
  --stone: #7f8776;
  --deep: #111410;
  --deep-2: #1b1f19;
  --ink: #050605;
  --paper: #f4f6ee;
  --muted: #cdd3c4;
  --line: rgba(244, 246, 238, 0.22);
  --coral: #df6e55;
  --sage: #87977f;
  --shadow: 0 26px 74px rgba(5, 6, 5, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(244, 246, 238, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(244, 246, 238, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(198, 203, 187, 0.36), transparent 26rem),
    linear-gradient(155deg, #0a0d09 0%, #2f382e 52%, #89927f 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.topline,
main {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 20, 16, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.actions,
.bottom-bar div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--mist);
  object-fit: cover;
}

.nav {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.bottom-bar a {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(244, 246, 238, 0.08);
  color: var(--paper);
  font-size: 14px;
  font-weight: 850;
}

.cover {
  position: relative;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover img {
  display: block;
  width: 100%;
  min-height: 340px;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 20, 16, 0.92), rgba(17, 20, 16, 0.22) 48%, transparent),
    linear-gradient(0deg, rgba(17, 20, 16, 0.74), transparent 38%);
}

.cover-text {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(20px, 5vw, 58px);
  z-index: 1;
  width: min(720px, calc(100% - 36px));
}

.cover-text p,
.label {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(17, 20, 16, 0.66);
  color: var(--muted);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(3.1rem, 9vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 0 rgba(0, 0, 0, 0.34);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lounge {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 14px;
  margin: 16px 0;
}

.side-tag,
.summary,
.portrait {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 20, 16, 0.78);
  box-shadow: var(--shadow);
}

.side-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  padding: 18px 14px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.side-tag span {
  color: var(--coral);
  font-weight: 950;
}

.side-tag strong {
  font-size: 14px;
  letter-spacing: 0;
}

.summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: clamp(24px, 5vw, 50px);
  background:
    linear-gradient(135deg, rgba(244, 246, 238, 0.1), transparent 44%),
    rgba(17, 20, 16, 0.84);
}

h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 5.2vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.summary p:not(.label) {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.actions {
  gap: 10px;
  flex-wrap: wrap;
}

.primary,
.actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}

.primary {
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--deep);
}

.actions button {
  border: 1px solid var(--line);
  background: rgba(244, 246, 238, 0.08);
  color: var(--paper);
}

.portrait {
  display: grid;
  min-height: 420px;
  place-items: end center;
  background:
    radial-gradient(circle at 50% 44%, rgba(198, 203, 187, 0.5), transparent 52%),
    linear-gradient(180deg, rgba(137, 146, 127, 0.65), rgba(17, 20, 16, 0.88));
  overflow: hidden;
}

.portrait img {
  width: min(88%, 350px);
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.36));
}

.strips {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.strips article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 246, 238, 0.88);
  color: var(--deep);
}

.strips span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.strips p {
  margin: 0;
  color: #31362d;
  font-size: 16px;
  line-height: 1.45;
}

.bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 40px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.bottom-bar strong {
  font-size: clamp(1.35rem, 3vw, 2.5rem);
}

.bottom-bar div {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 880px) {
  .topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .lounge {
    grid-template-columns: 1fr;
  }

  .side-tag {
    min-height: auto;
    writing-mode: initial;
  }

  .summary,
  .portrait {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 5.7rem);
  }

  .bottom-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .bottom-bar div {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .topline,
  main {
    width: min(100% - 20px, 1180px);
  }

  .cover img {
    min-height: 420px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
    line-height: 0.96;
  }

  .summary {
    padding: 24px 18px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary,
  .actions button {
    width: 100%;
  }

  .strips article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
