body {
  font-family: "Segoe UI Variable Text", "Aptos", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  caret-color: transparent;
}

input,
textarea,
[contenteditable="true"] {
  caret-color: auto;
}
h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", Arial,
    sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
}
.eyebrow {
  font-weight: 750;
  letter-spacing: 0.18em;
}
.navlinks a,
.button,
.text-link {
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.home-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navlinks a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 8px;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}
.navlinks a:hover {
  color: var(--green);
  background: #edf5ef;
  transform: translateY(-1px);
}
.navlinks a.active {
  color: #fff;
  background: var(--green);
  text-decoration: none;
}
.navlinks a:focus-visible,
.home-language select:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid #a9d8b8;
  outline-offset: 3px;
}
.home-language select {
  appearance: none;
  border: 1px solid var(--line);
  min-width: 136px;
  min-height: 44px;
  border-radius: 9px;
  background: #fff;
  padding: 9px 34px 9px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}
.home-language select:hover {
  border-color: #8db59a;
  background-color: #f7faf7;
}
.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;
}
.brand {
  display: block;
  flex: none;
}
.header-logo {
  display: block;
  width: 210px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}
.fashion-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  min-height: 700px;
  background: #f3f1ec;
}
.hero-copy {
  width: auto;
  margin: 0;
  padding: clamp(56px, 6vw, 86px) clamp(38px, 5.5vw, 84px);
  align-self: center;
}
.hero-neumarks-logo {
  display: block;
  width: min(360px, 72vw);
  height: auto;
  margin: 0 0 42px;
}
.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3.05vw, 3.2rem);
  line-height: 1;
  max-width: 670px;
  white-space: pre-line;
}
.hero-copy .lead {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.65;
  max-width: 590px;
}
.hero-details {
  padding: 0;
  border-left: 0;
}
.hero-details .hero-actions {
  margin-top: 28px;
}
.hero-images {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
}
.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.button {
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}
.button:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #064c2b2b;
}
.text-link {
  font-weight: 850;
  color: var(--green);
  text-underline-offset: 5px;
}
.text-link:hover {
  color: var(--green2);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > .text-link {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid #c8d8cc;
  border-radius: 8px;
  text-decoration: none;
  background: #fff;
}
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fashion-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
  color: var(--ink);
  border: 1px solid #d8e3da;
  background:
    radial-gradient(circle at 15% 15%, #dbe9dd, transparent 40%),
    #f8faf7;
  box-shadow: 0 8px 24px #10201812;
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}
.fashion-card:nth-child(2) {
  background:
    radial-gradient(circle at 85% 15%, #e4ece5, transparent 40%),
    #f9faf8;
}
.fashion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px #10201826;
  border-color: #6da577;
}
.fashion-card:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid #dce6dd;
  border-radius: 10px;
  pointer-events: none;
}
.fashion-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 150px auto;
  align-items: center;
  justify-items: center;
  gap: 20px;
  padding: 34px;
  text-align: center;
}
.brand-logo {
  display: block;
  width: auto;
  max-width: 270px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.fashion-card:first-child .brand-logo {
  width: 220px;
  height: 142px;
  max-width: 70%;
}
.fashion-card:nth-child(2) .brand-logo {
  width: 300px;
  height: 108px;
  max-width: 78%;
}
.fashion-card small {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.brand-logo.large {
  height: 64px;
  max-width: 260px;
}
.subhero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #eef3ed, #fff);
  border-bottom: 1px solid var(--line);
}
.subhero h1 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: clamp(2.45rem, 4.25vw, 4rem);
  line-height: 1;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}
.about-visual {
  display: none;
}
.about-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 14px;
}
.about-copy {
  width: 100%;
  padding: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.about-identity {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 42px;
  background: linear-gradient(150deg, #eaf2ec, #f7f2eb);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.about-identity::after {
  position: absolute;
  right: -95px;
  bottom: -105px;
  width: 300px;
  height: 300px;
  background: var(--green);
  border-radius: 50%;
  content: "";
  opacity: 0.07;
}
.about-code {
  display: block;
  margin-bottom: 150px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.about-identity img {
  display: block;
  width: min(300px, 92%);
  height: auto;
}
.about-place {
  position: absolute;
  bottom: 42px;
  left: 42px;
  z-index: 1;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
  counter-reset: about-value;
}
.value-grid div {
  position: relative;
  min-height: 178px;
  padding: 24px 22px;
  background: #f7f9f7;
  border: 1px solid var(--line);
  border-radius: 12px;
  counter-increment: about-value;
}
.value-grid div::before {
  display: block;
  margin-bottom: 24px;
  color: var(--green2);
  content: "0" counter(about-value);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}
.value-grid strong {
  display: block;
  line-height: 1.25;
}
.value-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.icon {
  display: none;
}
.brand-editorial {
  display: grid;
  gap: 34px;
}
.brand-editorial article {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 48, 35, 0.07);
}
.brand-profile-la {
  background: #f7f0eb;
}
.brand-profile-milan {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr) !important;
  background: #edf3ee;
}
.brand-profile-milan > .editorial-image {
  order: 2;
}
.editorial-image {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 22%;
}
.brand-profile:nth-child(2) .editorial-image {
  object-position: center 28%;
}
.brand-profile-copy {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px;
}
.brand-profile-copy .brand-logo.large {
  width: auto;
  height: 72px;
  max-width: 300px;
  margin: 0 0 26px;
}
.brand-profile:first-child .brand-logo.large {
  width: 245px;
  height: 170px;
  max-width: 100%;
  margin: -20px 0 8px;
}
.brand-profile-copy p {
  max-width: 46ch;
  margin: 0 0 30px;
  color: var(--muted);
}
.brand-profile-copy .button {
  margin: 0;
}
.brand-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(5, 86, 51, 0.45);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.brand-domain {
  margin-top: 22px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brands-page .subhero {
  padding: 64px 0 54px;
}
.brands-page .subhero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4vw, 3.75rem);
  line-height: 1;
}
.brands-section {
  padding-top: 54px;
  padding-bottom: 72px;
}
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}
.contact-intro-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 44px;
  background: linear-gradient(145deg, #eaf2ec, #f7f2eb);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.contact-intro-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  background: var(--green);
  border-radius: 50%;
  content: "";
  opacity: 0.07;
}
.contact-index {
  display: block;
  margin-bottom: 72px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.contact-brand-logo {
  display: block;
  width: min(290px, 88%);
  height: auto;
  margin-bottom: 34px;
}
.contact-intro-card h2 {
  max-width: 390px;
  margin-bottom: 34px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}
.contact-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 330px;
  padding-top: 25px;
  border-top: 1px solid rgba(6, 76, 43, 0.22);
}
.contact-details p {
  margin: 0;
}
.contact-details a {
  color: var(--green);
  font-weight: 750;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 42px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  box-shadow: 0 18px 45px rgba(15, 48, 35, 0.06);
}
.form-wide {
  grid-column: 1 / -1;
}
.contact-form label {
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cbd8ce;
  border-radius: 9px;
  background: #f8faf8;
  padding: 13px 14px;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green2);
  box-shadow: 0 0 0 3px rgba(13, 107, 61, 0.1);
  outline: 0;
}
.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}
.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-submit-row .button,
.contact-submit-row .small {
  margin: 0;
}
.contact-submit-row .small {
  max-width: 290px;
  text-align: right;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.success {
  background: #dff3e4;
  color: var(--green);
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
}
.footerline {
  align-items: center;
}
.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.legal-links a {
  color: #d9e6dc;
  text-underline-offset: 4px;
}
.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 1120px;
  margin: auto;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 50px #0003;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.cookie-actions a {
  color: var(--green);
  font-weight: 800;
}
.cookie-actions button {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  padding: 10px 15px;
  font-weight: 850;
  cursor: pointer;
}
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 1.55rem;
  margin-top: 38px;
}
.legal-content li {
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .fashion-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    width: min(100% - 40px, 760px);
    margin: auto;
    padding: 52px 0 44px;
  }
  .hero-images {
    height: 520px;
    min-height: 0;
  }
  .about-layout,
  .contact-page {
    grid-template-columns: 1fr;
  }
  .about-identity {
    min-height: 390px;
  }
  .about-code {
    margin-bottom: 90px;
  }
  .brand-editorial {
    grid-template-columns: 1fr;
  }
  .brand-editorial article,
  .brand-profile-milan {
    grid-template-columns: 1fr !important;
  }
  .brand-profile-milan > .editorial-image {
    order: 0;
  }
  .editorial-image {
    height: 460px;
  }
  .brand-profile-copy {
    min-height: 330px;
  }
}
@media (max-width: 760px) {
  .nav {
    gap: 12px;
  }
  .home-actions {
    gap: 10px;
  }
  .home-language select {
    min-width: 122px;
  }
  .header-logo {
    width: 170px;
    height: 50px;
  }
  .hero-copy {
    width: min(100% - 32px, 1120px);
    padding: 42px 0 34px;
  }
  .hero-neumarks-logo {
    margin-bottom: 28px;
  }
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero-details {
    padding: 0;
    border-left: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    line-height: 1.04;
  }
  .hero-images {
    height: auto;
    grid-template-columns: 1fr;
  }
  .hero-images img {
    height: 420px;
  }
  .hero-images img + img {
    display: none;
  }
  .brand-showcase {
    grid-template-columns: 1fr;
  }
  .fashion-card {
    min-height: 260px;
  }
  .brand-logo {
    height: 62px;
    max-width: 240px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .fashion-card:first-child .brand-logo {
    width: 190px;
    height: 130px;
  }
  .fashion-card:nth-child(2) .brand-logo {
    width: 250px;
    height: 92px;
  }
  .fashion-card-copy {
    grid-template-rows: 130px auto;
  }
  .subhero {
    padding: 55px 0 45px;
  }
  .brands-page .subhero {
    padding: 48px 0 42px;
  }
  .brands-page .subhero h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }
  .subhero h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }
  .about-visual {
    display: none;
  }
  .about-visual img {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .about-copy {
    padding: 28px 24px;
  }
  .about-identity {
    min-height: 360px;
    padding: 28px 24px;
  }
  .about-place {
    bottom: 28px;
    left: 24px;
  }
  .brand-profile-copy {
    min-height: 315px;
    padding: 38px 26px 30px;
  }
  .brand-profile-copy .brand-logo.large {
    max-width: 220px;
  }
  .brand-profile:first-child .brand-logo.large {
    width: 205px;
    height: 142px;
  }
  .brand-number {
    top: 20px;
    right: 20px;
  }
  .editorial-image {
    height: 390px;
  }
  .contact-form {
    padding: 22px;
    grid-template-columns: 1fr;
  }
  .contact-intro-card {
    min-height: 430px;
    padding: 30px 26px;
  }
  .contact-index {
    margin-bottom: 46px;
  }
  .contact-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-submit-row .small {
    text-align: left;
  }
  .footerline {
    align-items: flex-start;
  }
  .legal-links {
    width: 100%;
    gap: 14px;
  }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-actions {
    justify-content: space-between;
  }
}
