.brand-logo img {
  display: block;
  width: 190px;
  height: 68px;
  object-fit: contain;
}

.footer-logo img {
  width: 165px;
  height: 72px;
}

.manifesto-image {
  background-image: url("assets/yorkhouse-woods.png");
}

.principle-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--ochre);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.vision-image {
  min-height: 560px;
  overflow: hidden;
}

.vision-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.vision-story h2 {
  max-width: 720px;
}

.vision-story .vision-copy {
  max-width: 620px;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .vision { grid-template-columns: 1fr; }
  .vision-image,
  .vision-image img { min-height: 460px; }
}

@media (max-width: 560px) {
  .vision-image,
  .vision-image img { min-height: 390px; }
}

@media (max-width: 560px) {
  .site-header .brand-logo img {
    width: 150px;
    height: 58px;
  }
}

footer {
  display: block;
  padding: 3.5rem 5vw 2rem;
  text-transform: none;
  letter-spacing: normal;
}

footer .footer-logo { display: flex; }

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
}

.footer-links a,
.footer-link,
.footer-social a {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: 500 .75rem/1.5 "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link:hover,
.footer-social a:hover {
  color: var(--ochre);
}

.footer-social span {
  display: block;
  margin-top: .12rem;
  color: #66665f;
  font-size: .68rem;
  text-transform: none;
  letter-spacing: .04em;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #66665f;
  font-size: .72rem;
}

.footer-legal p { margin: 0; }

.privacy-dialog {
  width: min(680px, calc(100vw - 2rem));
  max-height: calc(100vh - 3rem);
  padding: 3.5rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.signup form { display: block; }
.form-label { display:block; margin:0 0 .7rem; color:var(--ink); font-size:.78rem; font-weight:600; text-align:left; text-transform:uppercase; letter-spacing:.12em; }
.form-row { display:flex; }
.form-row input { flex:1; min-width:0; }
.form-honeypot { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.form-consent { max-width:720px; margin:.85rem auto 0; color:#68685f; font-family:"DM Sans",sans-serif; font-size:.72rem; line-height:1.5; }
.form-consent span { display:block; }
.form-consent-secondary { margin-top:.15rem; font-size:.64rem; }
.form-consent button { padding:0; border:0; background:none; color:inherit; font:inherit; text-decoration:underline; text-underline-offset:2px; cursor:pointer; }
.signup button:disabled { cursor:wait; opacity:.75; }
.signup .form-row .button-dark { background:var(--ochre); }
.signup .form-row .button-dark:hover { background:#7d5423; }
.submission-target { position:absolute; width:1px; height:1px; border:0; opacity:0; pointer-events:none; }

.privacy-dialog::backdrop { background: rgba(18,19,14,.72); }
.privacy-dialog h2 { font-size: clamp(2.6rem, 5vw, 4rem); }
.privacy-dialog a { text-decoration: underline; text-underline-offset: 3px; }
.policy-date { color: #68685f; font-size: .85rem; }
.dialog-close { position: absolute; top: 1rem; right: 1.2rem; border: 0; background: none; font: 300 2rem/1 sans-serif; cursor: pointer; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; gap: .5rem; }
  .privacy-dialog { padding: 3rem 1.5rem 2rem; }
}

@media (max-width: 560px) {
  .signup {
    padding: 4.5rem 1rem 4rem;
  }

  .signup h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 1.06;
  }

  .signup > p:not(.eyebrow):not(.form-message) {
    margin: 1.25rem auto 2.25rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .signup form {
    width: 100%;
    max-width: none;
  }

  .form-label {
    margin-bottom: .65rem;
    font-size: .72rem;
    line-height: 1.45;
    letter-spacing: .1em;
  }

  .form-row {
    flex-direction: column;
    gap: .7rem;
    width: 100%;
  }

  .form-row input,
  .form-row .button {
    width: 100%;
  }

  .form-row input {
    min-height: 58px;
    padding: 0 1rem;
    font-size: 1rem;
  }

  .form-row .button {
    min-height: 58px;
    padding-inline: .8rem;
    font-size: .7rem;
    letter-spacing: .12em;
  }

  .form-consent {
    margin-top: 1rem;
    padding-inline: .35rem;
  }

  footer {
    padding: 3rem 1.25rem 2rem;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  footer .footer-logo {
    justify-content: center;
    width: 100%;
  }

  .footer-links,
  .footer-social {
    align-items: center;
    width: 100%;
  }

  .footer-legal {
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
}
