﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --white: #ffffff;
  --coral: #f7876e;
  --coral-light: #fdf0ed;
  --coral-mid: #f4c4b8;
  --charcoal: #545657;
  --warm-bg: #f6f5f4;
  --soft-gray: #e7e8ea;
  --deep: #171717;
  --muted: #8a8b8c;
  --border: #dddcda;
  --deep-2: #1e1e1e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-bg);
  color: var(--deep);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* TOP BAR */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  background: rgba(246,245,244,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.topbar-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-back:hover { color: var(--coral); }

.topbar-back svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep);
}

.topbar-cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  padding: 8px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.topbar-cta:hover { background: #f06b50; }

/* HERO HEADER */
.page-header {
  padding: 120px 5% 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.page-breadcrumb span { color: var(--coral); }

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 16px;
}

.page-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--coral);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-title em { font-style: italic; color: var(--coral); }

.page-subtitle {
  font-size: 16px;
  color: var(--charcoal);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}

.page-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.page-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* MAIN LAYOUT */
.page-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
  min-height: calc(100vh - 56px);
}

.page-sidebar {
  padding: 48px 0 48px 0;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 32px;
  padding: 0 24px;
}

.sidebar-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 0.15s;
}

.sidebar-nav a:hover { background: var(--warm-bg); color: var(--deep); }
.sidebar-nav a.active { background: var(--coral-light); color: var(--coral); font-weight: 500; }

.sidebar-nav a .nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.sidebar-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 10px;
}

.sidebar-meta-item .nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 0 24px 32px;
}

.sidebar-status {
  padding: 12px 16px;
  background: var(--coral-light);
  border: 1px solid var(--coral-mid);
  border-radius: 3px;
  font-size: 12px;
  color: var(--charcoal);
  margin: 0 16px;
}

.sidebar-status strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

/* CONTENT AREA */
.page-content {
  padding: 48px 5% 80px;
  max-width: 780px;
}

/* SECTION BLOCKS */
.content-section {
  margin-bottom: 60px;
}

.content-section:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--coral);
}

.content-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.content-h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.content-p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}

.content-p strong { color: var(--deep); font-weight: 500; }

.content-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* CALLOUT BOXES */
.callout {
  background: var(--coral-light);
  border-left: 3px solid var(--coral);
  border-radius: 0 3px 3px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.callout-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 6px;
}

.callout p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 300;
}

.callout-dark {
  background: var(--deep);
  border-left: 3px solid var(--coral);
  border-radius: 0 3px 3px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.callout-dark .callout-label { color: var(--coral); }
.callout-dark p { color: #aaa; }

/* STEP BLOCKS */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}

.step-item:last-child { border-bottom: none; }
.step-item:hover { background: #fafaf9; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
  min-width: 32px;
  margin-top: 2px;
}

.step-content {}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.75;
  font-weight: 300;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.step-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 400;
}

.step-tag.tool { background: var(--warm-bg); color: var(--charcoal); border: 1px solid var(--border); }
.step-tag.owner { background: var(--coral-light); color: var(--coral); }
.step-tag.time { background: #f0f4ff; color: #5470a8; }

/* IMAGE PLACEHOLDER */
.img-placeholder {
  width: 100%;
  background: var(--white);
  border: 1.5px dashed var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px 24px;
  margin: 20px 0;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.img-placeholder:hover {
  border-color: var(--coral-mid);
  background: var(--coral-light);
}

.img-placeholder-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.img-placeholder-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.img-placeholder-hint {
  font-size: 12px;
  color: var(--border);
  font-weight: 300;
}

.img-placeholder.tall { min-height: 300px; }
.img-placeholder.short { min-height: 180px; }
.img-placeholder.wide { min-height: 240px; }



.sample-image-frame {
  margin: 24px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.sample-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.sample-image-frame figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--soft-gray);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--warm-bg);
}
/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.info-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 18px 20px;
}

.info-card-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-card-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--deep);
}

.info-card-value.large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

/* CHECKLIST */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
}

.check-box {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-box.done {
  background: var(--coral);
  border-color: var(--coral);
}

.check-box.done::after {
  content: '';
  width: 5px;
  height: 8px;
  border: 1.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.data-table th {
  background: var(--warm-bg);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--soft-gray);
  color: var(--charcoal);
  font-weight: 300;
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafaf9; }

/* STATUS BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.badge.coral { background: var(--coral-light); color: var(--coral); }
.badge.green { background: #edf7ee; color: #4a9e4e; }
.badge.amber { background: #fdf6ed; color: #c4822a; }
.badge.gray { background: var(--warm-bg); color: var(--muted); }
.badge.blue { background: #eef2fb; color: #4a69a4; }

/* TOOL ROW */
.tool-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-gray);
  font-size: 13px;
}

.tool-row:last-child { border-bottom: none; }

.tool-row-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.tool-row-name { font-weight: 500; color: var(--deep); }
.tool-row-desc { color: var(--muted); font-size: 12px; }
.tool-row-right { margin-left: auto; }

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 28px;
  margin: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -25px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--coral);
}

.timeline-dot.done { background: var(--coral); }

.timeline-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
}

/* COLUMN BLOCKS */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.col-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 22px;
}

.col-block-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.col-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.col-block ul li {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.col-block ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 6px;
}

/* FOOTER CTA */
.page-footer-cta {
  background: var(--deep);
  padding: 64px 5%;
  text-align: center;
}

.page-footer-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.page-footer-cta span {
  font-size: 13px;
  color: #666;
  display: block;
  margin-bottom: 28px;
}

.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--coral);
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-coral:hover { background: #f06b50; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}

.btn-outline:hover { color: var(--white); }

/* KANBAN */
.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.kanban-col {
  background: var(--warm-bg);
  border-radius: 3px;
  padding: 14px;
}

.kanban-col-header {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kanban-col-header.coral { border-bottom-color: var(--coral); }
.kanban-col-header.amber { border-bottom-color: #e8a44c; }
.kanban-col-header.green { border-bottom-color: #7bb87d; }

.kanban-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px;
  margin-bottom: 7px;
  font-size: 12px;
}

.kanban-card:last-child { margin-bottom: 0; }

.kanban-card-title {
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 3px;
}

.kanban-card-meta {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-body { grid-template-columns: 1fr; }
  .page-sidebar { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .info-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .kanban { grid-template-columns: 1fr; }
}
