@font-face {
  font-family: "Crimson Pro";
  src: url("Font/Crimson_Pro/CrimsonPro-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("Font/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #141210;
  --ink: #f4f1ec;
  --ink-soft: #9d968c;
  --line: rgba(244, 241, 236, 0.16);
  --accent: #bfa068;
  --font-head: "Crimson Pro", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 28px 48px;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
}

.logo {
  height: 40px;
  width: auto;
  /* il logo originale è bianco: su fondo scuro resta com'è */
  opacity: 0.95;
}

.content {
  flex: 1;
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.label {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  margin: 0 0 26px;
}

.text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 40px;
}

.cta {
  display: inline-block;
  padding: 15px 38px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ---------- newsletter ---------- */

.newsletter {
  width: 100%;
  max-width: 440px;
  margin: 40px auto 0;
  padding: 30px 30px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.nl-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 8px;
}

.nl-sub {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.nl-row {
  display: flex;
  gap: 12px;
}

.nl-row .nl-field {
  flex: 1;
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nl-field label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nl-field .req {
  color: var(--accent);
}

.nl-field input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nl-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 123, 79, 0.12);
}

.nl-button {
  margin-top: 5px;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nl-button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.nl-consent {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(244, 241, 236, 0.5);
  text-align: center;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.contact-line {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(28, 26, 23, 0.82);
}

.note {
  color: rgba(28, 26, 23, 0.5);
}

.contact {
  color: rgba(28, 26, 23, 0.82);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact:hover {
  color: #000;
  border-color: rgba(0, 0, 0, 0.4);
}

.sep {
  color: rgba(28, 26, 23, 0.3);
  margin: 0 4px;
}

.site-footer {
  width: 100%;
  background: #f4f1ec;
  color: #1c1a17;
  padding: 42px 28px 36px;
}

.footer-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.copyright {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(28, 26, 23, 0.5);
}

@media (max-width: 520px) {
  .page {
    padding: 34px 22px 24px;
  }

  .content {
    padding: 28px 0;
  }

  .newsletter {
    padding: 26px 20px 24px;
    margin-top: 34px;
  }

  .nl-row {
    flex-direction: column;
    gap: 15px;
  }

  .site-footer {
    padding: 34px 22px 30px;
  }
}
