:root {
  --bg: #f5ecd5;            /* parchment / old book page */
  --bg-deep: #ecdfc1;        /* slightly deeper parchment for footer */
  --ink: #2b2418;            /* warm dark ink, not pure black */
  --muted: #7a6a52;          /* sepia */
  --gable: #2f4a35;          /* deep forest green — the gables */
  --gable-soft: #5d7d5f;     /* sage green */
  --auburn: #9c3a2a;         /* Anne's hair / PEI red earth */
  --auburn-soft: #c47a55;    /* softer russet */
  --blossom: #d4a5a0;        /* apple-blossom pink, used sparingly */
  --card-bg: #fdf6e3;        /* cream paper */
  --border: #d6c7a3;         /* warm beige */
  --shadow: 0 1px 2px rgba(60,40,20,0.06), 0 6px 18px rgba(60,40,20,0.08);
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.6;
}

/* Subtle hand-drawn green-gable silhouette across the top */
.site-header {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  position: relative;
  background:
    linear-gradient(180deg, rgba(47,74,53,0.08) 0%, rgba(47,74,53,0) 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-header::before {
  /* hand-drawn vine / leaf separator at the bottom of the header */
  content: "❦";
  display: block;
  font-size: 1.4rem;
  color: var(--gable-soft);
  margin-bottom: 1rem;
}

.logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gable);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

.tagline {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
  font-style: italic;
}

.name.molly { color: var(--auburn); font-weight: 700; font-style: normal; }
.name.jalen { color: var(--gable); font-weight: 700; font-style: normal; }

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.intro {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.intro strong.molly { color: var(--auburn); }
.intro strong.jalen { color: var(--gable); }

.coming-soon {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 1.1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 640px) {
  .cards { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

/* Little gable peak above each card */
.card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.card h2 {
  font-family: var(--serif);
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
}

.card:first-child h2 { color: var(--auburn); }
.card:nth-child(2) h2 { color: var(--gable); }

.card p {
  margin: 0.4rem 0;
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 0;
}

.contact {
  margin-top: 3.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px dashed var(--border);
}

.contact h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gable);
  margin-bottom: 0.6rem;
}

.contact a {
  color: var(--auburn);
  text-decoration: none;
  border-bottom: 1px solid var(--auburn-soft);
}

.contact a:hover {
  color: var(--gable);
  border-bottom-color: var(--gable);
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

/* ===== Enclosure builder ===== */

.site-header.compact {
  padding: 2rem 1.5rem 1.5rem;
}
.site-header.compact .page-title {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gable);
  font-size: 2.25rem;
  margin: 0.5rem 0 0.25rem;
  line-height: 1.1;
}
.crumb {
  margin: 0;
  text-align: left;
  font-style: italic;
  font-size: 0.95rem;
}
.crumb a {
  color: var(--muted);
  text-decoration: none;
}
.crumb a:hover { color: var(--gable); }

.builder {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 920px) {
  .builder { grid-template-columns: 360px 1fr; align-items: start; }
  .preview-pane { position: sticky; top: 1.5rem; }
}

.preview-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow);
}
#diagram {
  display: block;
  width: 100%;
  height: auto;
  background:
    repeating-linear-gradient(0deg, rgba(122,106,82,0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(122,106,82,0.06) 0 1px, transparent 1px 24px),
    #f9f1d8;
  border-radius: 4px;
}
.preview-caption {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin: 0.5rem 0 1rem;
}

.spec-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.95rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.spec-summary dt { color: var(--muted); font-style: italic; }
.spec-summary dd { margin: 0; color: var(--ink); }
.spec-summary dd.price {
  color: var(--auburn);
  font-weight: 700;
  font-size: 1.05rem;
}
.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
  text-align: center;
}

.builder-form fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 0 0 1.25rem;
  background: var(--card-bg);
}
.builder-form legend {
  padding: 0 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gable);
}
.builder-form .field {
  display: block;
  margin: 0.6rem 0 0.4rem;
}
.builder-form .field > span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.builder-form input[type="text"],
.builder-form input[type="email"],
.builder-form input[type="tel"],
.builder-form input[type="number"],
.builder-form input[type="file"],
.builder-form select,
.builder-form textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.builder-form input:focus,
.builder-form select:focus,
.builder-form textarea:focus {
  outline: 2px solid var(--gable-soft);
  outline-offset: 1px;
}
.builder-form .hint {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.dim-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.dim-row .field { margin: 0; }
@media (max-width: 540px) {
  .dim-row { grid-template-columns: 1fr 1fr; }
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.radio-grid.two { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .radio-grid.two { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 540px) { .radio-grid { grid-template-columns: 1fr; } }

.radio-card {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.radio-card input { margin-right: 0.4rem; }
.radio-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
  font-style: normal;
}
.radio-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.radio-card:has(input:checked) {
  border-color: var(--gable);
  background: rgba(47,74,53,0.06);
}
.radio-card.slim {
  text-align: center;
  font-size: 0.92rem;
}
.radio-card.slim input { margin-right: 0.3rem; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
  margin-top: 0.4rem;
}
@media (min-width: 720px) { .checkbox-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 480px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-grid label {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0;
}

.actions {
  margin-top: 1rem;
  text-align: center;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--card-bg);
  background: var(--gable);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #233a2a; }
.legal {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
#preview-modal {
  border: none;
  background: transparent;
  padding: 0;
}
#preview-modal::backdrop {
  background: rgba(43,36,24,0.55);
}
.modal-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  max-width: 600px;
  width: 90vw;
  box-shadow: 0 20px 50px rgba(43,36,24,0.3);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gable);
  font-size: 1.3rem;
}
.modal-header button {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--muted);
}
#inquiry-summary {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink);
  white-space: pre-wrap;
  background: var(--bg);
  max-height: 60vh;
  overflow-y: auto;
}
.modal-footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Allow the homepage card to be a clickable link without text-decoration */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link:hover .card {
  border-color: var(--gable);
  transform: translateY(-2px);
  transition: transform 0.2s, border-color 0.2s;
}
.card .cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--gable);
  font-weight: 700;
}

/* ===== Lead-time block in header ===== */
.lead-time {
  display: inline-block;
  margin: 1rem auto 0;
  padding: 0.55rem 1.25rem;
  background: var(--gable);
  color: var(--card-bg);
  border-radius: 999px;
  font-size: 0.92rem;
  font-style: italic;
  box-shadow: 0 2px 6px rgba(47,74,53,0.25);
}
.lead-time strong { font-style: normal; margin-right: 0.4rem; }
.lead-time span { opacity: 0.85; }

/* ===== Recipes section ===== */
.recipes-section {
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(47,74,53,0.05) 0%, rgba(156,58,42,0.04) 100%), var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.recipes-title {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gable);
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
}
.recipes-title .muted { font-style: italic; font-weight: 400; }
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 540px) { .recipe-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .recipe-grid { grid-template-columns: repeat(4, 1fr); } }
.recipe-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.7rem 0.5rem 0.65rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--serif);
  color: var(--ink);
  text-align: center;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.recipe-btn:hover {
  border-color: var(--gable);
  transform: translateY(-1px);
  background: var(--card-bg);
}
.recipe-btn.active {
  border-color: var(--auburn);
  background: rgba(156,58,42,0.06);
  box-shadow: 0 0 0 2px rgba(156,58,42,0.15);
}
.recipe-icon { font-size: 1.4rem; line-height: 1; }
.recipe-name { font-weight: 700; font-size: 0.92rem; }
.recipe-meta { font-size: 0.78rem; color: var(--muted); font-style: italic; }

/* ===== Preview pane refinements ===== */
.preview-title {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gable);
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  text-align: center;
  letter-spacing: 0.02em;
}
#sum-price.pulse {
  animation: price-pulse 0.5s ease-out;
}
@keyframes price-pulse {
  0% { color: var(--auburn); transform: scale(1); }
  40% { color: var(--gable); transform: scale(1.06); }
  100% { color: var(--auburn); transform: scale(1); }
}
.share-row {
  margin-top: 1rem;
  text-align: center;
}
.btn-secondary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
  color: var(--gable);
  background: transparent;
  border: 1.5px solid var(--gable);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--gable); color: var(--card-bg); }
.share-status {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--auburn);
  opacity: 0;
  transition: opacity 0.25s;
}
.share-status.visible { opacity: 1; }
.try-3d {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}
.try-3d a {
  color: var(--gable);
  text-decoration: none;
  border-bottom: 1px dashed var(--gable-soft);
}
.try-3d a:hover { border-bottom-style: solid; }

/* ===== Build-style photo swatches ===== */
.swatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
@media (max-width: 540px) { .swatch-grid { grid-template-columns: 1fr; } }
.swatch {
  display: block;
  position: relative;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.swatch:hover { transform: translateY(-1px); }
.swatch:has(input:checked) {
  border-color: var(--gable);
  box-shadow: 0 0 0 2px rgba(47,74,53,0.15);
}
.swatch input { position: absolute; top: 0.5rem; left: 0.5rem; z-index: 2; }
.swatch-photo {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.swatch-wood {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.08) 100%),
    repeating-linear-gradient(95deg, #b08555 0px, #b08555 8px, #a67a4a 8px, #a67a4a 18px, #ba8d5c 18px, #ba8d5c 28px),
    #b08555;
}
.swatch-pvc {
  background:
    linear-gradient(180deg, #fbfaf6 0%, #ebe6dc 100%);
  border-bottom-color: #c8c2b3;
}
.swatch-welded {
  background:
    linear-gradient(135deg, #4a4a47 0%, #2d2d2a 35%, #1c1c1a 70%, #2f4a35 110%);
  position: relative;
}
.swatch-welded::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.07) 50%, transparent 70%);
}
.swatch-hybrid {
  background:
    linear-gradient(110deg,
      repeating-linear-gradient(95deg, #b08555 0px, #b08555 8px, #a67a4a 8px, #a67a4a 16px) 0 0 / 50% 100% no-repeat,
      #2f4a35 50%);
}
.swatch strong {
  display: block;
  padding: 0.6rem 0.85rem 0.1rem;
  color: var(--ink);
  font-style: normal;
  font-size: 1rem;
}
.swatch span {
  display: block;
  padding: 0 0.85rem 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}
.swatch .specialty-tag {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  margin: 0 0.85rem 0.2rem;
  background: var(--auburn);
  color: var(--card-bg);
  font-style: normal;
  font-size: 0.7rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.placeholder-note {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== Features with tooltips ===== */
.feat-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0;
}
.feat-row .feat-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
}
.feat-row .info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.feat-row .info:hover { color: var(--gable); border-color: var(--gable); }
.tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  margin-top: 0.3rem;
  padding: 0.6rem 0.85rem;
  max-width: 280px;
  background: var(--ink);
  color: var(--card-bg);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(43,36,24,0.3);
}
.tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 0.4rem;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ink);
}

/* ===== Process strip ===== */
.process-section {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 2.5rem 1.5rem 1.5rem;
  border-top: 1px dashed var(--border);
}
.process-title {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gable);
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
}
.process-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .process-strip { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .process-strip { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.process-photo {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.process-step strong {
  display: block;
  padding: 0.85rem 1rem 0.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--gable);
}
.process-step span {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}
.step-sketch {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(156,58,42,0.15), transparent 60%),
    repeating-linear-gradient(0deg, rgba(122,106,82,0.08) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(122,106,82,0.08) 0 1px, transparent 1px 18px),
    #fdf6e3;
}
.step-cut {
  background:
    radial-gradient(circle at 65% 40%, rgba(255,180,80,0.4), transparent 35%),
    radial-gradient(circle at 65% 40%, rgba(255,140,40,0.6), transparent 18%),
    linear-gradient(160deg, #3a3a36 0%, #1c1c1a 100%);
}
.step-finish {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%),
    repeating-linear-gradient(95deg, #6b4423 0px, #6b4423 12px, #7a4f2a 12px, #7a4f2a 24px),
    #6b4423;
}
.step-deliver {
  background:
    linear-gradient(135deg, var(--gable) 0%, var(--gable-soft) 100%);
  position: relative;
}
.step-deliver::after {
  content: "📦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.6;
}
.process-note {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

/* Make dim-row .two same 2-col layout */
.dim-row.two { grid-template-columns: 1fr 1fr; }

/* ===== Molly's Crafts page ===== */
.molly-title { color: var(--auburn) !important; }
.crafts-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.craft-piece {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
@media (min-width: 820px) {
  .craft-piece.featured { grid-template-columns: 1.1fr 1fr; align-items: start; }
}

.craft-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.craft-photo-main,
.craft-photo-detail {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(60,40,20,0.08);
}
.craft-photo-main img,
.craft-photo-detail img {
  display: block;
  width: 100%;
  height: auto;
}
.craft-photo-detail {
  max-width: 60%;
  align-self: flex-end;
}
.craft-photo-detail figcaption {
  padding: 0.5rem 0.75rem 0.75rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

.craft-info {
  display: flex;
  flex-direction: column;
}
.craft-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--auburn);
  font-size: 1.75rem;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
.craft-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.craft-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.25rem;
  margin: 0 0 1.75rem;
  padding: 1rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.craft-details dt {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gable);
  font-weight: 700;
}
.craft-details dd {
  margin: 0;
  color: var(--ink);
}

.craft-cta { margin-top: auto; }
.molly-btn {
  background: var(--auburn);
  text-decoration: none;
  display: inline-block;
}
.molly-btn:hover { background: #7a2c20; }
.craft-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted);
  max-width: 36ch;
}

.more-coming {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border-top: 1px dashed var(--border);
}
.more-coming h3 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--auburn);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.more-coming p {
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
  color: var(--muted);
}
.more-coming a {
  color: var(--auburn);
  text-decoration: none;
  border-bottom: 1px solid var(--auburn-soft);
}
.more-coming a:hover { color: var(--gable); border-bottom-color: var(--gable); }
