:root {
  --bg: #0b0b10;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c7b7a3;
  --accent2: #561c24;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  background: linear-gradient(45deg, #f88973 0%, #0d0d1b 100%);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 14, 0.6);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(199, 183, 163, 0.9),
    rgba(86, 28, 36, 0.9)
  );
  color: #111;
  font-weight: 900;
}
.brand-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(199, 183, 163, 0.25);
  background: rgba(199, 183, 163, 0.14);
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 183, 163, 0.45);
  background: rgba(199, 183, 163, 0.18);
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding: 22px 18px 6px 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero h1 {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.6px;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 12px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.meta-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}
.meta-label {
  font-size: 12px;
  color: var(--muted);
}
.meta-value {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.pill-row {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.preview-card {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border-radius: 22px;
  padding: 14px;
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.preview-title {
  font-weight: 900;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.link-item:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 183, 163, 0.35);
  background: rgba(0, 0, 0, 0.24);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(199, 183, 163, 0.45);
}
.link-text {
  flex: 1;
}
.link-main {
  font-weight: 850;
}
.link-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.arrow {
  opacity: 0.8;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px 40px 18px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}
.tab.active {
  background: rgba(199, 183, 163, 0.16);
  border-color: rgba(199, 183, 163, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.panel {
  display: none;
  margin-top: 14px;
}
.panel.active {
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
  padding: 16px;
}
.card-title {
  font-weight: 950;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.clean-list {
  margin: 12px 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
}
.clean-list li {
  margin: 8px 0;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.embed {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}
.embed iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.deliverable {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.14);
}
.d-title {
  font-weight: 900;
}
.d-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.gallery {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
}
.shot img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.shot figcaption {
  padding: 10px 10px;
  font-size: 12px;
  color: var(--muted);
}

.note {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
}
.note-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .meta-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .deliverables {
    grid-template-columns: 1fr;
  }
  .shot img {
    height: 140px;
  }
}
