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

:root {
  --ink: #1f1f1f;
  --ink-soft: #555555;
  --page: #ffffff;
  --card: #ffffff;
  --line: #e6e2da;
  --teal: #3d8087;
  --teal-dark: #2d6268;
  --warm: #f3ede1;
  --highlight: #e2c98c;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.08);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }


.crumb {
  padding: 28px 0 0;
  font-size: 13.5px;
}
.crumb a { color: var(--teal); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.detail-hero {
  padding: 16px 0 32px;
}
.detail-hero .image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #d9d3c5;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}
.detail-hero h1 {
  font-family: var(--serif);
  color: var(--teal);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  margin: 24px 0 8px;
}
.detail-hero .subtitle {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 18px;
  margin: 0 0 24px;
}

.price-bar {
  background: var(--warm);
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.price-bar .price {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.price-bar .price-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.price-bar .savings {
  display: inline-block;
  background: var(--highlight);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 6px;
}
.price-bar .btn {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 15px;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.price-bar .btn:hover { background: var(--teal-dark); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  margin-bottom: 48px;
}
.detail-grid .full { grid-column: 1 / -1; }
.detail-grid h2 {
  font-family: var(--serif);
  color: var(--teal);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
}
.detail-grid p { margin: 0 0 10px; font-size: 15px; }
.detail-grid ul {
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
}
.detail-grid ul li {
  color: var(--ink);
  margin-bottom: 6px;
}
.detail-grid .muted { color: var(--ink-soft); }

.timeline-box {
  background: #f8f5ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 14.5px;
}
.timeline-box strong { color: var(--teal-dark); }

.bottom-cta {
  text-align: center;
  background: var(--warm);
  border-radius: 8px;
  padding: 44px 32px;
  margin: 24px 0 56px;
}
.bottom-cta h2 {
  font-family: var(--serif);
  color: var(--teal);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
}
.bottom-cta p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-size: 15px;
}
.bottom-cta .btn {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 15px;
  display: inline-block;
}
.bottom-cta .btn:hover { background: var(--teal-dark); }

.footer-back {
  text-align: center;
  padding: 24px 0 48px;
}
.footer-back a {
  color: var(--teal);
  font-size: 14px;
  text-decoration: none;
}
.footer-back a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .detail-hero h1 { font-size: 30px; }
  .detail-grid { grid-template-columns: 1fr; }
  .price-bar { flex-direction: column; align-items: flex-start; }
}
