@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --ink: #082c21;
  --cream: #f7f6f2;
  --sand: #ddc99b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
}
.topbar {
  height: 85px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.logo-link { display: block; line-height: 0; }
.logo-link img {
  width: 122px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.hero {
  height: 705px;
  position: relative;
  background: url("hero.jpg") center center / cover no-repeat;
}
.hero-copy {
  position: absolute;
  left: 40px;
  top: 91px;
}
.eyebrow {
  font-size: 23px;
  letter-spacing: .055em;
  margin-bottom: 40px;
}
h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}
h1 {
  margin: 0;
  font-size: clamp(62px, 7vw, 100px);
  line-height: .9;
  letter-spacing: -.035em;
}

.movement {
  min-height: 1110px;
  padding: 91px 4.5vw 45px;
  background: var(--cream);
}
.movement-grid {
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: start;
}
.movement h2 {
  margin: 0;
  font-size: clamp(62px, 6.5vw, 102px);
  line-height: .86;
  letter-spacing: -.04em;
}
.statement {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.08;
  letter-spacing: .08em;
}
.signup-intro {
  margin: 94px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
}
.signup-form {
  width: min(540px, 88vw);
  margin: 55px auto 0;
}
.signup-form label {
  display: block;
  margin-bottom: 30px;
}
.signup-form label span {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
}
.signup-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ddd9cf;
  background: transparent;
  padding: 0 13px 15px;
  color: var(--ink);
  font: 16px Georgia, 'Times New Roman', serif;
  outline: none;
}
.signup-form input::placeholder { color: #8fa0a8; opacity: 1; }
.signup-form input:focus { border-bottom-color: var(--ink); }
.signup-form button {
  width: 100%;
  border: 0;
  background: var(--sand);
  color: #fff;
  padding: 14px;
  font: 16px Georgia, 'Times New Roman', serif;
  cursor: pointer;
}
.form-message {
  min-height: 22px;
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}

.footer {
  background: var(--cream);
  text-align: center;
  padding: 0 20px 24px;
}
.footer-logo {
  width: 116px;
  margin: 0 auto 20px;
  display: block;
}
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 39px;
}
.socials a {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  font: 18px Arial, sans-serif;
}
.socials a:nth-child(1) { background: #f00; }
.socials a:nth-child(3) { background: #f06; }
.socials a:nth-child(4) { background: #1677e8; }
.footer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.05;
}
.mobile { display: none; }

@media (max-width: 700px) {
  .topbar { height: 70px; padding: 0 24px; }
  .logo-link img { width: 92px; }
  .hero { height: 570px; background-position: center center; }
  .hero-copy { left: 25px; top: 65px; }
  .eyebrow { font-size: 16px; margin-bottom: 27px; }
  h1 { font-size: 57px; }
  .movement { min-height: 900px; padding: 65px 25px 35px; }
  .movement-grid { grid-template-columns: 1fr; gap: 65px; }
  .movement h2 { font-size: 57px; }
  .statement { font-size: 20px; }
  .signup-intro { margin-top: 75px; font-size: 20px; }
  .desktop { display: none; }
  .signup-form { margin-top: 48px; width: 100%; }
  .signup-form label { margin-bottom: 26px; }
  .footer-logo { width: 90px; }
  .socials { margin-bottom: 28px; }
  .footer p { font-size: 15px; }
  .mobile { display: inline; }
}
