:root {
  --ink: #090706;
  --ink-2: #0e0b09;
  --panel: rgba(12, 10, 8, .76);
  --ivory: #eee5d8;
  --copy: #c1b8ad;
  --muted: #8f867c;
  --copper: #cf7740;
  --copper-light: #e4975d;
  --copper-deep: #9f4e29;
  --line: rgba(207, 119, 64, .54);
  --content-width: 660px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  min-width: 320px;
  background: var(--ink);
  color: var(--ivory);
  font-family: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input { font: inherit; }
button { color: inherit; }

.landing-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 58% 41%, rgba(136, 66, 27, .07), transparent 26%),
    linear-gradient(90deg, #080706 0 39%, #0b0807 52%, #120b07 100%);
}

.visual {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 38%;
  background-image: url("assets/noordkop-lighthouse@2x.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(.94) contrast(1.08) brightness(.90);
  transform: scale(1.01);
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #090706 0%,
      rgba(9,7,6,.98) 11%,
      rgba(9,7,6,.90) 22%,
      rgba(9,7,6,.51) 37%,
      rgba(9,7,6,.16) 51%,
      rgba(9,7,6,.02) 64%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.20));
}

.grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: soft-light;
  background-image: url("assets/grain.png");
  background-repeat: repeat;
}

.content {
  width: min(100%, 780px);
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(28px, 3.5vw, 52px) clamp(28px, 5vw, 78px) clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
}

.brand img {
  display: block;
  width: clamp(118px, 9vw, 150px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.copy {
  width: min(100%, var(--content-width));
  margin-top: clamp(42px, 5.4vh, 70px);
}

.eyebrow {
  margin: 0;
  color: var(--copper);
  font-size: clamp(11px, .86vw, 14px);
  line-height: 1.45;
  letter-spacing: .095em;
  text-transform: uppercase;
  font-weight: 650;
}

h1 {
  margin: 22px 0 16px;
  max-width: 620px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 5.75vw, 92px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.035em;
  color: var(--ivory);
}

.intro {
  margin: 0;
  max-width: 595px;
  color: var(--copy);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
  letter-spacing: -.012em;
}

.newsletter-card {
  position: relative;
  margin-top: 24px;
  padding: 24px 25px 21px;
  border: 1px solid rgba(207, 119, 64, .58);
  border-radius: 13px;
  background:
    linear-gradient(140deg, rgba(18,14,11,.90), rgba(10,8,7,.76)),
    radial-gradient(circle at 80% 20%, rgba(207,119,64,.09), transparent 32%);
  box-shadow:
    0 22px 60px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.018);
  backdrop-filter: blur(3px);
}

.newsletter-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207,119,64,.72);
  border-radius: 50%;
  color: var(--copper-light);
  background: rgba(207,119,64,.035);
}

.newsletter-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.newsletter-heading h2 {
  margin: 0 0 4px;
  color: var(--copper-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 1.9vw, 31px);
  line-height: 1.05;
  font-weight: 500;
}

.newsletter-heading p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.4;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 55px;
  padding: 0 16px;
  border: 1px solid rgba(210, 195, 180, .22);
  border-radius: 7px;
  background: rgba(7,6,5,.66);
  color: var(--ivory);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.newsletter-form input[type="email"]::placeholder { color: #777069; }
.newsletter-form input[type="email"]:hover { border-color: rgba(207,119,64,.40); }
.newsletter-form input[type="email"]:focus {
  border-color: var(--copper-light);
  box-shadow: 0 0 0 3px rgba(207,119,64,.12);
  background: rgba(9,7,6,.86);
}

.newsletter-form input[aria-invalid="true"] {
  border-color: #e99a70;
  box-shadow: 0 0 0 3px rgba(233,154,112,.09);
}

.newsletter-button {
  min-height: 55px;
  padding: 0 18px 0 21px;
  border: 1px solid rgba(235,151,93,.90);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  color: #160d08;
  font-weight: 650;
  background:
    linear-gradient(110deg, #b85f31 0%, #d47a40 52%, #e59a60 100%);
  box-shadow:
    0 8px 24px rgba(168,77,31,.14),
    inset 0 1px rgba(255,255,255,.18);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.newsletter-button svg,
.button-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.newsletter-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  box-shadow: 0 12px 28px rgba(168,77,31,.20), inset 0 1px rgba(255,255,255,.20);
}

.newsletter-button:focus-visible,
.mail-button:focus-visible {
  outline: 2px solid #f0a06b;
  outline-offset: 4px;
}

.newsletter-button:disabled { opacity: .64; cursor: wait; transform: none; }

.newsletter-privacy {
  margin: 10px 0 0;
  color: #827b73;
  font-size: 11px;
  line-height: 1.5;
}


.newsletter-privacy a {
  color: #a98773;
  text-underline-offset: 3px;
}
.newsletter-privacy a:hover { color: var(--copper-light); }

.newsletter-status {
  min-height: 0;
  margin: 0;
  color: #d7a07c;
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-status:not(:empty) { margin-top: 8px; }
.newsletter-status[data-state="success"] { color: #c9b59f; }
.newsletter-status[data-state="error"] { color: #e5a17d; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(207,119,64,.23);
}

.benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #c7b8aa;
  font-size: 12px;
  line-height: 1.45;
}

.benefit:first-child { padding-left: 0; }
.benefit:last-child { padding-right: 0; }
.benefit + .benefit { border-left: 1px solid rgba(207,119,64,.20); }

.benefit-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207,119,64,.50);
  border-radius: 50%;
  color: var(--copper);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.alternative {
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 21px 0 18px;
}

.alternative span { height: 1px; background: rgba(207,119,64,.25); }
.alternative em {
  color: #8d7567;
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.mail-button {
  width: min(100%, 420px);
  min-height: 55px;
  padding: 0 17px 0 19px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(207,119,64,.72);
  border-radius: 7px;
  background: rgba(10,8,7,.32);
  color: var(--copper-light);
  cursor: pointer;
  font-size: 14px;
  font-weight: 550;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.mail-button:hover {
  background: rgba(207,119,64,.08);
  border-color: rgba(231,144,88,.94);
  transform: translateY(-1px);
}

.mail-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.mail-button .button-arrow { justify-self: end; }
.mail-status { min-height: 0; margin: 0; }

.coming-soon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #7e756d;
  font-size: 11px;
  line-height: 1.5;
}

.coming-soon svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript-note { color: var(--muted); font-size: 12px; }

@media (max-width: 1050px) {
  .visual { inset: 0 0 0 33%; }
  .content { width: min(100%, 720px); padding-right: 50px; }
  .copy { max-width: 620px; }
  .newsletter-card { background: rgba(10,8,7,.84); }
}

@media (max-width: 900px) {
  .landing-shell { min-height: 100svh; overflow: auto; }

  .visual {
    inset: 0;
    background-position: 72% center;
    opacity: .70;
    transform: none;
  }

  .visual::after {
    background:
      linear-gradient(180deg,
        rgba(8,6,5,.98) 0%,
        rgba(8,6,5,.96) 48%,
        rgba(8,6,5,.82) 68%,
        rgba(8,6,5,.55) 100%),
      linear-gradient(90deg, rgba(8,6,5,.70), rgba(8,6,5,.20));
  }

  .content {
    width: 100%;
    min-height: 100svh;
    padding: 24px clamp(20px, 6vw, 46px) 38px;
  }

  .brand img { width: clamp(104px, 25vw, 132px); }
  .copy { margin-top: 34px; width: min(100%, 620px); }
  .eyebrow { font-size: 11px; max-width: 530px; }

  h1 {
    margin-top: 20px;
    font-size: clamp(54px, 13vw, 76px);
    line-height: .9;
  }

  .intro { font-size: clamp(16px, 4.3vw, 19px); max-width: 540px; }
  .newsletter-card { margin-top: 22px; padding: 22px; backdrop-filter: blur(8px); }
}

@media (max-width: 620px) {
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-button { width: 100%; }

  .benefits {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefit {
    padding: 12px 0;
    gap: 13px;
  }

  .benefit + .benefit {
    border-left: 0;
    border-top: 1px solid rgba(207,119,64,.16);
  }

  .alternative, .mail-button { width: 100%; }
}

@media (max-width: 430px) {
  .content { padding-inline: 18px; }
  .copy { margin-top: 30px; }
  .eyebrow { letter-spacing: .075em; }
  h1 { font-size: clamp(49px, 14vw, 63px); }
  .intro { font-size: 16px; line-height: 1.52; }
  .newsletter-card { padding: 20px 18px 17px; border-radius: 11px; }
  .newsletter-heading { gap: 12px; }
  .newsletter-icon { width: 44px; height: 44px; flex-basis: 44px; }
  .newsletter-heading h2 { font-size: 25px; }
  .newsletter-heading p { font-size: 12px; }
  .newsletter-form { margin-top: 17px; }
  .newsletter-privacy { font-size: 10.5px; }
  .coming-soon { margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
