:root {
  --cream: #f8f1e5;
  --cream-soft: #fcf7ee;
  --navy: #16395f;
  --navy-soft: #234a70;
  --olive: #667047;
  --olive-dark: #525a39;
  --gold: #b99253;
  --ink: #21354b;
  --line: rgba(22, 57, 95, 0.16);
  --white: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 76%,
      rgba(102, 112, 71, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 47%,
      rgba(185, 146, 83, 0.06),
      transparent 30%
    ),
    var(--cream);
}
.hero {
  position: relative;
  isolation: isolate;
  /* min-height: calc(100svh - 132px); */
  min-height: 520px;
  padding: 14px clamp(24px, 5vw, 74px) 0px;
  overflow: hidden;
}
.paper-texture {
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.18;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.38) 0,
    rgba(255, 255, 255, 0.38) 1px,
    transparent 1px,
    transparent 4px
  );
}
.brand-area {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.brand-logo {
  width: min(250px, 68vw);
  margin: 0 auto;
}
.hero-content {
  position: relative;
  z-index: 6;
  width: min(600px, 42vw);
  margin: 10px auto 0;
  text-align: center;
}
.intro-line {
  margin: 0 0 18px;
  color: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 0.27em;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
}
.intro-line:after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
h1 {
  margin: 0;
  color: var(--navy);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 0.88;
  font-size: clamp(1.8rem, 5.8vw, 6.2rem);
}
.tagline {
  margin: 15px 0 15px;
  color: var(--navy-soft);
  font-size: clamp(1.25rem, 1vw, 1.25em);
  line-height: 1.45;
}
.primary-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: min(330px, 90vw);
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--olive), var(--olive-dark));
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  box-shadow: 0 12px 30px rgba(82, 90, 57, 0.12);
  transition: 0.2s;
}
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(82, 90, 57, 0.18);
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.61rem;
}

.photo-chicken,
.photo-egg-area {
  position: absolute;
  pointer-events: none;
}

.photo-chicken {
  z-index: 2;
  right: 0;
  bottom: 0;
}

.photo-egg-area {
  z-index: 1;
  left: 0;
  bottom: 0;
}

.photo-chicken img,
.photo-egg-area img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-egg-area img {
  width: 100%;
  object-fit: cover;
  -webkit-mask-image:
    linear-gradient(to right, #000 75%, transparent 100%),
    linear-gradient(to top, #000 62%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, #000 75%, transparent 100%),
    linear-gradient(to top, #000 62%, transparent 100%);
  mask-composite: intersect;
}

.values-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: linear-gradient(90deg, var(--olive-dark), var(--olive));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.values-strip article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 10px clamp(22px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}
.values-strip article:last-child {
  border-right: 0;
}
.value-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.value-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.values-strip h2 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.values-strip p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(255, 253, 248, 0.84);
}
.signup-form {
  width: min(520px, 100%);
  margin: 0 auto;
}
.signup-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
}
.form-row input {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 255, 255, 0.35);
}
.form-row button {
  border: 0;
  padding: 0 24px;
  color: #fff;
  background: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  cursor: pointer;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.form-row button:hover {
  background: var(--olive);
}
.form-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}
.form-row input:disabled {
  opacity: 0.72;
}
.form-row input:focus-visible,
.form-row button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.signup-form small {
  display: block;
  margin-top: 10px;
  color: rgba(33, 53, 75, 0.55);
}
.form-status {
  min-height: 1.3em;
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
}
.form-status.is-success {
  color: var(--olive-dark);
}
.form-status.is-error {
  color: #8a3b31;
}
/* footer {
  min-height: 32px;
  padding: 14px clamp(24px, 5vw, 74px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: var(--olive-dark);
  background: var(--cream-soft);
  border-top: 1px solid rgba(185, 146, 83, 0.2);
}
.footer-copyline {
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}
.footer-copyline .separator {
  color: var(--gold);
}
.footer-socials {
  display: flex;
  gap: 18px;
}
.footer-socials a {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.62rem;
  border-bottom: 1px solid rgba(82, 90, 57, 0.34);
}
.footer-year {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.59rem;
  color: rgba(33, 53, 75, 0.55);
} */

.site-footer {
  position: relative;
  overflow: hidden;

   min-height: 105px;
  padding: 8px clamp(24px, 6vw, 90px) 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--cream-soft);
  border-top: 1px solid rgba(185, 146, 83, 0.2);

  color: var(--navy);
}

.footer-inner {
  position: relative;
  z-index: 2;

  width: min(960px, 100%);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--olive-dark);
}

.footer-divider {
  width: 1px;
  height: 24px;
  background: rgba(82, 90, 57, 0.35);
}

.footer-social-row {
  width: 100%;
  margin: 12px 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-line {
  width: 100px;
  height: 1px;

  background: rgba(82, 90, 57, 0.45);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-socials img {
  width: 20px;
  height: 20px;

  object-fit: contain;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px 18px;

  font-size: 1.15rem;
  line-height: 1.4;

  color: var(--navy);
}

.footer-contact-label {
  font-weight: 400;
}

.footer-contact a {
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--olive-dark);
}

.footer-year {
  margin-top: 10px;

  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: rgba(33, 53, 75, 0.5);
}

.footer-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: clamp(120px, 12vw, 180px);
  opacity: 0.85;
}

.footer-leaf-left {
  left: -10px;
  bottom: -50px;
  transform: rotate(-25deg);
}

.footer-leaf-right {
  right: -10px;
  top: -20px;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .photo-chicken {
    width: clamp(470px, 48vw, 650px);
    right: -4vw;
  }

  .photo-egg-area {
    width: clamp(470px, 48vw, 650px);
    left: -4vw;
  }
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }
  .hero-content {
    width: min(560px, 58vw);
  }
}
@media (max-width: 780px) {
  .hero {
    padding-bottom: 110px;
  }

  .photo-chicken {
    width: 92vw;
    max-width: none;
    right: -18vw;
    bottom: 0;
  }

  .photo-egg-area {
    width: 105vw;
    max-width: none;
    left: -18vw;
    bottom: 6px;
  }

  .brand-logo {
    width: min(245px, 60vw);
  }
  .hero-content {
    width: 100%;
    margin-top: 14px;
  }
  h1 {
    font-size: clamp(3.8rem, 17vw, 6.3rem);
  }
  .tagline {
    font-size: 1.25rem;
  }
  .values-strip {
    grid-template-columns: 1fr;
  }
  .values-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  /* footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 14px;
  } */

  .site-footer {
    padding: 28px 24px 22px;
  }

  .footer-location {
    gap: 14px;

    font-size: 0.86rem;
    letter-spacing: 0.14em;
  }

  .footer-line {
    width: 55px;
  }

  .footer-contact {
    max-width: 420px;

    flex-direction: column;
    gap: 4px;

    font-size: 1rem;
  }

  .footer-leaf {
    width: 160px;
    opacity: 0.45;
  }
}
@media (max-width: 520px) {
  .intro-line {
    font-size: 0.62rem;
    letter-spacing: 0.19em;
  }
  h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }
  .primary-cta {
    width: 100%;
    min-width: 0;
  }
  .photo-chicken {
    width: 88vw;
    right: -16vw;
    bottom: 0;
  }

  .photo-egg-area {
    width: 100vw;
    left: -16vw;
    bottom: 0;
  }
  .values-strip article {
    min-height: 108px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 10px 22px;
  }
  .value-icon {
    width: 44px;
    height: 44px;
  }
  .value-icon img {
    width: 23px;
    height: 23px;
  }
  /* .footer-copyline {
    flex-direction: column;
    gap: 6px;
  }
  .footer-copyline .separator {
    display: none;
  } */

  .footer-location {
    flex-direction: column;
    gap: 4px;
  }

  .footer-divider {
    display: none;
  }

  .footer-social-row {
    gap: 12px;
  }

  .footer-line {
    width: 38px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-socials a {
    width: 24px;
    height: 24px;
  }

  .footer-socials img {
    width: 18px;
    height: 18px;
  }

  .footer-leaf {
    width: 130px;
    opacity: 0.32;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* Unsubscribe */
.unsubscribe-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}
.unsubscribe-page {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 112px);
  padding: 30px clamp(22px, 5vw, 74px) 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 255, 255, 0.54),
    transparent 42%
  );
}
.unsubscribe-brand {
  width: 100%;
}
.unsubscribe-brand .brand-logo {
  width: min(260px, 52vw);
}
.unsubscribe-card {
  position: relative;
  z-index: 4;
  width: min(620px, 100%);
  margin: 38px auto 0;
  padding: 48px 42px;
  text-align: center;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(185, 146, 83, 0.22);
  box-shadow: 0 22px 60px rgba(22, 57, 95, 0.07);
  backdrop-filter: blur(4px);
}
.unsubscribe-title {
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: -0.045em;
}
.unsubscribe-copy {
  max-width: 470px;
  margin: 28px auto 30px;
  color: var(--navy-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.unsubscribe-button {
  border: 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
}
.unsubscribe-button:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}
.unsubscribe-result {
  margin-top: 28px;
}
.unsubscribe-status {
  max-width: 470px;
  margin: 0 auto 25px;
  font-size: 1.03rem;
  line-height: 1.6;
}
.unsubscribe-status.is-success {
  color: var(--olive-dark);
}
.unsubscribe-status.is-error {
  color: #8a3b31;
}
.unsubscribe-home {
  display: inline-block;
  padding-bottom: 3px;
  color: var(--navy);
  border-bottom: 1px solid rgba(22, 57, 95, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}
@media (max-width: 620px) {
  .unsubscribe-page {
    padding: 22px 18px 50px;
  }
  .unsubscribe-card {
    margin-top: 24px;
    padding: 38px 22px;
  }
  .unsubscribe-brand .brand-logo {
    width: min(220px, 70vw);
  }
  .unsubscribe-copy {
    font-size: 0.98rem;
  }
  .unsubscribe-button {
    width: 100%;
    min-width: 0;
  }
}
.unsubscribe-title {
  margin: 28px 0 22px;
  color: #16395f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
}
