:root {
  --cream: #fbf7ef;
  --cream-2: #f3eadc;
  --green: #596446;
  --deep: #253027;
  --muted: #6f735f;
  --gold: #c79733;
  --white: #fffdf8;
  --line: rgba(37,48,39,.15);
  --shadow: 0 20px 60px rgba(37,48,39,.12);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--deep);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,247,239,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 420px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--green);
}

nav a { text-decoration: none; }

.nav-button {
  border: 1px solid var(--green);
  padding: 9px 16px;
  border-radius: 999px;
}

.hero {
  padding: 86px 0 80px;
  background:
    radial-gradient(circle at 16% 18%, rgba(199,151,51,.18), transparent 30%),
    linear-gradient(180deg, var(--cream), #fffaf1 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.08;
  margin: 0;
  color: var(--deep);
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 5.65rem);
  letter-spacing: -.055em;
  max-width: 900px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(1.17rem, 2vw, 1.35rem);
  max-width: 720px;
  color: var(--muted);
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 21px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(89,100,70,.2);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
  color: var(--green);
}

.hero-card {
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(199,151,51,.25);
  border-radius: 22px;
  pointer-events: none;
}

.small-label {
  display: inline-block;
  font-size: .77rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 16px;
}

.not-dogwalking {
  color: var(--green);
  font-weight: 800;
  margin-top: 18px;
}

.section { padding: 86px 0; }

.problem {
  background: var(--deep);
  color: #fff9ed;
}

.problem h2 { color: #fff9ed; }

.problem p {
  font-size: 1.18rem;
  color: rgba(255,249,237,.78);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: start;
}

.two-col.reverse { grid-template-columns: .82fr 1.18fr; }

.section p { font-size: 1.07rem; }

.feature-list {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.feature-list ul {
  columns: 2;
  padding-left: 20px;
  margin: 18px 0 0;
}

.feature-list li { margin: 7px 0; }

.soft { background: var(--cream-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
}

.step span {
  display: inline-block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.evidence { background: #fffaf1; }

.quote-card {
  min-height: 390px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(89,100,70,.92), rgba(37,48,39,.94)),
    radial-gradient(circle at 20% 20%, rgba(199,151,51,.24), transparent 34%);
  color: #fffaf1;
  padding: 42px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0;
}

.checks {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.checks p {
  margin: 0;
  padding: 12px 14px 12px 42px;
  background: rgba(89,100,70,.06);
  border-radius: 14px;
  position: relative;
}

.checks p::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--gold);
  font-weight: 900;
}

.who { background: var(--cream); }

.about {
  background: var(--deep);
  color: rgba(255,249,237,.82);
}

.about h2 { color: #fff9ed; }

.pilot { background: var(--cream-2); }

.pilot-box {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  box-shadow: var(--shadow);
}

.pilot-details {
  background: rgba(89,100,70,.08);
  border-radius: 22px;
  padding: 26px;
}

.pilot-details p { margin: 0 0 12px; }

.contact {
  background:
    radial-gradient(circle at 80% 30%, rgba(199,151,51,.18), transparent 28%),
    var(--cream);
}

.contact-card {
  text-align: center;
  max-width: 850px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 52px 38px;
  box-shadow: var(--shadow);
}

.email-link {
  display: inline-block;
  margin-top: 20px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.location {
  color: var(--muted);
  margin-top: 20px;
}

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .92rem;
}

.footer-inner p { margin: 0; }

@media (max-width: 880px) {
  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .brand img { width: 290px; }

  nav { display: none; }

  .hero { padding-top: 52px; }

  .hero-grid,
  .two-col,
  .two-col.reverse,
  .pilot-box {
    grid-template-columns: 1fr;
  }

  .steps { grid-template-columns: 1fr; }

  .feature-list ul { columns: 1; }

  h1 { font-size: clamp(2.55rem, 12vw, 4.4rem); }

  .section { padding: 64px 0; }
}


.pathway-intro {
  max-width: 760px;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.outcome {
  background: rgba(255,253,248,.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.outcome strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--deep);
}

.outcome p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.detailed-pathway {
  background: #fffaf1;
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 36px;
}

.programme-card {
  background: rgba(89,100,70,.06);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.programme-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.programme-card ul {
  margin: 0;
  padding-left: 20px;
}

.programme-card li {
  margin: 9px 0;
}

.role-plan {
  background: var(--deep);
  color: rgba(255,249,237,.84);
}

.role-plan h2, .role-plan h3 {
  color: #fff9ed;
}

.role-plan-card {
  background: rgba(255,249,237,.08);
  border: 1px solid rgba(255,249,237,.18);
  border-radius: var(--radius);
  padding: 34px;
}

.role-plan-card p {
  color: rgba(255,249,237,.78);
}

.transfer-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.transfer-list p {
  margin: 0;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255,249,237,.08);
}

.safety-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.safety-panel {
  border-radius: var(--radius);
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  padding: 32px;
}

@media (max-width: 880px) {
  .outcome-strip,
  .programme-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }
}

.secondary-lead {
  margin-top: 18px;
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
}

.secondary-lead strong {
  color: var(--deep);
}

.highlight-card {
  background: rgba(199,151,51,.11);
}

.transfer-section {
  background: var(--cream);
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-list div {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.value-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.value-list p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.big-question {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  line-height: 1.18;
  color: var(--green);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 22px 0;
}


/* v5 copy-led sections */
.warm-list { margin: 18px 0 0; padding-left: 22px; }
.warm-list li { margin: 9px 0; }
.compact-quote { min-height: 330px; }
.split-statement { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; margin: 34px 0 20px; }
.split-statement > div { background: rgba(255,253,248,.78); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.muted-label { margin: 0 0 8px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 800; }
.statement { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.5vw, 2.25rem); line-height: 1.16; color: var(--deep); }
.section-closing { max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.4vw, 2.15rem) !important; line-height: 1.2; color: var(--green); margin-top: 36px; }
.role-examples { background: #fffaf1; }
.examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.example-card { background: rgba(89,100,70,.06); border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
.example-card p { margin: 0; }
.center-message { max-width: 840px; text-align: center; margin: 44px auto 0; }
.center-message p:first-child { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1.12; color: var(--deep); margin-bottom: 10px; }
.outcome-links { background: var(--cream); }
.about blockquote { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.7rem); line-height: 1.18; color: #fff9ed; border-left: 4px solid var(--gold); padding-left: 24px; margin: 30px 0; }
.cta-list { max-width: 720px; margin: 18px auto 0; }
.cta-list p { color: var(--muted); }
@media (max-width: 1040px) { .examples-grid { grid-template-columns: repeat(2, 1fr); } .split-statement { grid-template-columns: 1fr; } }
@media (max-width: 880px) { .examples-grid { grid-template-columns: 1fr; } }


/* v6 logo and small copy refinements */
.brand img {
  width: 500px;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  min-height: 118px;
}

.site-header {
  background: rgba(251,247,239,.94);
}

.outcome-links .big-question {
  margin-top: 0;
}

@media (max-width: 880px) {
  .brand img {
    width: 320px;
    max-height: 86px;
  }

  .nav {
    min-height: 96px;
  }
}
