.newsletter-page {
  overflow: hidden;
  padding: 0;
  border-radius: 0 0 28px 28px;
  background: #fffdf8;
}

.newsletter-confirmation {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 44px;
  align-items: center;
  padding: 84px min(7vw, 92px);
  background:
    linear-gradient(135deg, rgba(247, 250, 244, 0.96), rgba(255, 253, 248, 0.98)),
    #fffdf8;
}

.newsletter-confirmation-copy {
  max-width: 640px;
}

.newsletter-confirmation-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #406448;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-confirmation-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6f9d59;
  box-shadow: 0 0 0 6px rgba(111, 157, 89, 0.14);
}

.newsletter-confirmation h1 {
  margin: 0;
  color: #1d3526;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
}

.newsletter-confirmation-copy > p {
  margin: 22px 0 0;
  color: #2f3836;
  font-size: 1.08rem;
  line-height: 1.7;
}

.newsletter-confirmation-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-confirmation-list li {
  position: relative;
  padding-left: 34px;
  color: #23322d;
  font-weight: 700;
  line-height: 1.45;
}

.newsletter-confirmation-list li::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #426d4a;
}

.newsletter-confirmation-list li::after {
  content: "";
  position: absolute;
  top: 0.53em;
  left: 6px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.newsletter-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.newsletter-confirmation-button,
.newsletter-confirmation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.newsletter-confirmation-button {
  padding: 0 24px;
  background: #203f2a;
  color: #fff;
  box-shadow: 0 14px 28px rgba(32, 63, 42, 0.18);
}

.newsletter-confirmation-link {
  padding: 0 6px;
  color: #31563a;
}

.newsletter-confirmation-image {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(26, 49, 42, 0.18);
}

.newsletter-confirmation-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.newsletter-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 700px;
  padding: 82px 64px 118px;
  background:
    linear-gradient(90deg, rgba(12, 28, 34, 0.18), rgba(12, 28, 34, 0.02) 42%, rgba(12, 28, 34, 0.08)),
    var(--newsletter-hero-image),
    url("../../images/strand.png");
  background-position: center;
  background-size: cover;
}

.newsletter-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -1px;
  left: -8%;
  height: 112px;
  background: #fffdf8;
  clip-path: ellipse(62% 70% at 50% 100%);
}

.newsletter-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 610px);
  padding: 44px 58px 46px;
  border: 1px solid rgba(24, 47, 37, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 64px rgba(16, 34, 38, 0.22);
  text-align: center;
}

.newsletter-card-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  color: #456a50;
}

.newsletter-card-icon img,
.newsletter-feature-icon img,
.newsletter-trust-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newsletter-envelope-fallback,
.newsletter-icon-fallback {
  display: block;
  position: relative;
  width: 58px;
  height: 44px;
  border: 2px solid currentColor;
}

.newsletter-envelope-fallback::before,
.newsletter-envelope-fallback::after,
.newsletter-icon-fallback::before,
.newsletter-icon-fallback::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.newsletter-envelope-fallback::before,
.newsletter-icon-fallback::before {
  top: 10px;
  left: 14px;
  width: 26px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.newsletter-envelope-fallback::after,
.newsletter-icon-fallback::after {
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 2px;
  transform: rotate(-35deg);
}

.newsletter-card h1 {
  max-width: 11em;
  color: #1d3526;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
}

.newsletter-title-rule {
  width: 72px;
  height: 2px;
  margin: 22px 0 20px;
  background: #5f7d65;
}

.newsletter-lead {
  max-width: 33rem;
  margin: 0;
  color: #2f3836;
  font-size: 1.08rem;
  line-height: 1.65;
}

.newsletter-flash {
  width: 100%;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(69, 106, 80, 0.24);
  background: rgba(226, 239, 224, 0.86);
  color: #1f3d2d;
  font-size: 0.92rem;
  font-weight: 700;
}

.newsletter-flash-error {
  border-color: rgba(158, 64, 47, 0.28);
  background: rgba(255, 237, 229, 0.94);
  color: #7d2c1d;
}

.newsletter-form {
  display: grid;
  width: 100%;
  gap: 16px;
  margin-top: 32px;
}

.newsletter-page .visually-hidden,
.newsletter-page .honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.newsletter-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(32, 42, 38, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  cursor: text;
}

.newsletter-field input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #1d2a27;
  font: inherit;
  font-size: 1rem;
  line-height: 1.2;
  outline: 0;
}

.newsletter-field:focus-within {
  border-color: #4d7456;
  box-shadow: 0 0 0 3px rgba(77, 116, 86, 0.14);
}

.newsletter-field-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  color: #6f8179;
}

.newsletter-field-icon-user::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.newsletter-field-icon-user::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 1px;
  left: 3px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-radius: 9px 9px 0 0;
}

.newsletter-field-icon-mail {
  border: 1.7px solid currentColor;
  border-radius: 1px;
}

.newsletter-field-icon-mail::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 10px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(35deg);
  transform-origin: left center;
}

.newsletter-field-icon-mail::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 2px;
  width: 10px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(-35deg);
  transform-origin: right center;
}

.newsletter-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 66px;
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #537058, #3f6748);
  color: #ffffff;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.newsletter-submit:hover,
.newsletter-submit:focus-visible {
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(38, 70, 48, 0.22);
}

.newsletter-privacy-note {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 26px 0 0;
  color: #2d3733;
  font-size: 0.88rem;
}

.newsletter-lock-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 12px;
  border-radius: 2px;
  background: #1f2c28;
}

.newsletter-lock-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  border: 2px solid #1f2c28;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.newsletter-benefits {
  padding: 20px 58px 54px;
  text-align: center;
}

.newsletter-benefits h2 {
  color: #1d3526;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: 0;
}

.newsletter-section-mark {
  display: flex;
  justify-content: center;
  margin: 16px 0 28px;
  color: #5f7d65;
}

.newsletter-section-mark span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.newsletter-section-mark span::before {
  content: "♡";
  position: absolute;
  inset: 0;
  line-height: 1;
}

.newsletter-section-mark::before,
.newsletter-section-mark::after {
  content: "";
  width: 42px;
  height: 1px;
  margin: 8px 12px 0;
  background: #a4b29f;
}

.newsletter-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.newsletter-feature {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 210px;
  padding: 8px 34px 0;
  border-left: 1px solid rgba(38, 53, 44, 0.16);
}

.newsletter-feature:first-child {
  border-left: 0;
}

.newsletter-feature-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 18px;
  border: 1px solid rgba(67, 94, 72, 0.44);
  border-radius: 50%;
  color: #456a50;
}

.newsletter-feature h3,
.newsletter-trust-item h3 {
  margin: 0;
  color: #1f2c28;
  font-size: 1rem;
  letter-spacing: 0;
}

.newsletter-feature p,
.newsletter-trust-item p {
  margin: 0;
  color: #3f4945;
  line-height: 1.65;
}

.newsletter-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 10px 54px 46px;
  border: 1px solid rgba(47, 61, 48, 0.18);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(231, 234, 224, 0.92), rgba(246, 243, 235, 0.92));
}

.newsletter-trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 32px 26px;
  border-left: 1px solid rgba(47, 61, 48, 0.14);
}

.newsletter-trust-item:first-child {
  border-left: 0;
}

.newsletter-trust-icon {
  width: 36px;
  height: 36px;
  color: #395c45;
}

.newsletter-trust-item p {
  margin-top: 8px;
  font-size: 0.86rem;
}

.newsletter-trust-item a {
  color: #3f6748;
  font-weight: 800;
  text-decoration: underline;
}

.newsletter-closing {
  position: relative;
  padding: 0 0 18px;
  overflow: hidden;
  text-align: center;
}

.newsletter-closing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 54px;
  background: linear-gradient(180deg, #fffdf8 0%, rgba(255, 253, 248, 0) 100%);
  pointer-events: none;
}

.newsletter-closing img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .newsletter-confirmation {
    grid-template-columns: 1fr;
    padding: 62px 28px 72px;
  }

  .newsletter-confirmation-copy {
    max-width: none;
  }

  .newsletter-hero {
    min-height: auto;
    padding: 54px 28px 102px;
  }

  .newsletter-card {
    margin-inline: auto;
  }

  .newsletter-feature-grid,
  .newsletter-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-feature:nth-child(odd),
  .newsletter-trust-item:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .newsletter-confirmation {
    gap: 30px;
    padding: 44px 20px 56px;
  }

  .newsletter-confirmation h1 {
    font-size: 2.15rem;
  }

  .newsletter-confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-confirmation-button,
  .newsletter-confirmation-link {
    width: 100%;
  }

  .newsletter-card {
    padding: 34px 22px 32px;
  }

  .newsletter-card h1 {
    font-size: 2rem;
  }

  .newsletter-benefits {
    padding: 12px 22px 40px;
  }

  .newsletter-feature-grid,
  .newsletter-trust {
    grid-template-columns: 1fr;
  }

  .newsletter-feature,
  .newsletter-trust-item,
  .newsletter-feature:nth-child(odd),
  .newsletter-trust-item:nth-child(odd) {
    border-left: 0;
  }

  .newsletter-feature {
    min-height: auto;
    padding: 22px 10px;
    border-top: 1px solid rgba(38, 53, 44, 0.14);
  }

  .newsletter-feature:first-child {
    border-top: 0;
  }

  .newsletter-trust {
    margin: 0 20px 38px;
  }

  .newsletter-trust-item {
    border-top: 1px solid rgba(47, 61, 48, 0.14);
  }

  .newsletter-trust-item:first-child {
    border-top: 0;
  }
}
