/* Living With Schnauzers — companion site prototype */

:root {
  --blue: #1F497D;
  --blue-dark: #163152;
  --blue-light: #4471a8;
  --red: #B00000;
  --cream: #fbf7ee;
  --paper: #ffffff;
  --ink: #1c1c1c;
  --gray: #555;
  --gray-light: #888;
  --rule: #e6e0d3;
  --gold: #c89b3d;
  --green: #1b701f;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, 'Iowan Old Style', 'Cambria', serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--cream);
}

a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
a:hover { border-bottom-color: var(--blue); }

img { max-width: 100%; height: auto; display: block; }

/* ====== Header / Nav ====== */
header.site {
  background: var(--paper);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink);
  border-bottom: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--blue-dark); border-bottom: none !important; }

/* ====== Page widths ====== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ====== Hero (home) ====== */
.hero {
  background: linear-gradient(180deg, #f9f3e3 0%, #fbf7ee 100%);
  padding: 60px 24px 80px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.hero-cover {
  box-shadow: 0 20px 60px rgba(31,73,125,.18), 0 4px 14px rgba(0,0,0,.08);
  border-radius: 4px;
  overflow: hidden;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  line-height: 1.05;
  color: var(--blue);
  margin: 0 0 10px;
}
.hero .tagline {
  font-size: 18px;
  color: var(--red);
  font-style: italic;
  margin: 0 0 24px;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero .lead {
  font-size: 17px;
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-bottom: none !important;
  cursor: pointer;
  border: 0;
}
.btn:hover { background: var(--blue-dark); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 12px 26px;
}
.btn-outline:hover { background: var(--blue); color: white; }

/* ====== Sections ====== */
section.block { padding: 70px 0; }
section.block.alt { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
section.block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: var(--blue);
  margin: 0 0 6px;
}
section.block .eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
section.block .section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 0 36px;
}

/* ====== Feature grid ====== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  position: relative;
}
.feature.locked::after {
  content: "🔒 BOOK ACCESS";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(200,155,61,.08);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
}
.feature.free::after {
  content: "FREE";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(27,112,31,.08);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
}
.feature h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--blue);
  margin: 0 0 10px;
  padding-right: 80px;
}
.feature p { margin: 0; color: var(--ink); font-size: 14.5px; }

/* ====== Three dogs strip ====== */
.dogs-strip {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.dog-card {
  text-align: center;
}
.dog-card img {
  border-radius: 6px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.dog-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--blue);
  margin: 18px 0 4px;
}
.dog-card p { color: var(--gray); margin: 0; font-style: italic; }

/* ====== CTA Banner ====== */
.banner {
  background: var(--blue);
  color: white;
  padding: 60px 24px;
  text-align: center;
}
.banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  margin: 0 0 12px;
  color: white;
}
.banner p { font-size: 18px; opacity: .92; margin: 0 0 28px; }
.banner .btn-light {
  background: white;
  color: var(--blue);
}
.banner .btn-light:hover { background: var(--cream); }

/* ====== Page header (interior pages) ====== */
.page-header {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, #f9f3e3 0%, #fbf7ee 100%);
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  color: var(--blue);
  margin: 0 0 8px;
}
.page-header .eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header p { font-size: 18px; color: var(--gray); max-width: 720px; margin: 0; }

/* ====== Content blocks ====== */
article.content { padding: 60px 0; }
article.content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  color: var(--blue);
  margin: 50px 0 16px;
}
article.content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--blue);
  margin: 36px 0 12px;
}
article.content p { font-size: 17px; margin: 0 0 16px; }
article.content ul { font-size: 17px; padding-left: 24px; }
article.content li { margin-bottom: 8px; }
article.content .callout {
  background: var(--paper);
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
article.content .callout.warn {
  border-left-color: var(--red);
  background: rgba(176,0,0,.04);
}
article.content .callout h4 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--blue);
  font-size: 17px;
}
article.content .callout.warn h4 { color: var(--red); }

/* ====== Resource cards ====== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.resource {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px;
}
.resource .rank {
  display: inline-block;
  background: var(--blue);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  line-height: 28px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
  margin-right: 10px;
}
.resource h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--blue);
  font-size: 22px;
  display: inline;
}
.resource .price {
  display: inline-block;
  margin-left: 8px;
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}
.resource p { margin: 12px 0; font-size: 15px; color: var(--ink); }
.resource a.visit {
  display: inline-block;
  margin-top: 6px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ====== 12-Week Program preview ====== */
.week-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.day-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 18px;
  position: relative;
}
.day-card.locked { opacity: 0.45; pointer-events: none; }
.day-card.locked::before {
  content: "🔒";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 18px;
}
.day-card h4 {
  margin: 0 0 6px;
  font-family: 'Helvetica Neue', sans-serif;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.day-card .session {
  display: flex;
  gap: 10px;
  margin: 6px 0;
}
.day-card .session-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  width: 70px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.day-card .session-body { font-size: 14px; color: var(--ink); }
.day-card .checkbox {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--blue);
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 8px;
}

.unlock-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 40px 32px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}
.unlock-strip h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  margin: 0 0 8px;
  color: white;
}
.unlock-strip p { opacity: .9; margin: 0 0 20px; }

/* ====== Access form ====== */
.access-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 36px;
  margin-top: 30px;
  box-shadow: 0 6px 24px rgba(0,0,0,.04);
}
.access-form label {
  display: block;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
  margin: 16px 0 6px;
}
.access-form input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  letter-spacing: 0.2em;
  border: 2px solid var(--rule);
  border-radius: 4px;
  background: white;
  color: var(--ink);
}
.access-form input:focus { outline: none; border-color: var(--blue); }
.access-form .submit {
  width: 100%;
  margin-top: 24px;
}

/* ====== TheraJan status ====== */
.status-banner {
  background: linear-gradient(135deg, #fff8e6 0%, #fef0c8 100%);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 22px 28px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.status-banner .pulse {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.4); }
}
.status-banner strong { color: var(--blue); }

/* ====== Footer ====== */
footer.site {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  padding: 50px 24px 30px;
  margin-top: 80px;
}
footer.site .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
footer.site h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: white;
  font-size: 16px;
  margin: 0 0 12px;
}
footer.site a {
  color: rgba(255,255,255,.7);
  display: block;
  margin: 4px 0;
  font-size: 14px;
}
footer.site a:hover { color: white; }
footer.site .legal {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ====== Mobile ====== */
@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .dogs-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .week-grid { grid-template-columns: 1fr; }
  footer.site .wrap { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; font-size: 13px; }
  .nav-links a:not(.nav-cta) { display: none; }
}
