:root {
  --blue: #175ca4;
  --blue-dark: #113764;
  --blue-hover: #0f477f;
  --text: #080a0d;
  --panel: rgba(255, 255, 255, 0.54);
  --focus: #f2b544;
}

/* Position logos at viewport edges on wide screens and align footer texts */
/* This keeps the central content (info panel) centered while logos sit at sides */
@media (min-width: 1200px) {
  .site-header,
  .site-footer {
    position: relative;
  }

  .brand-ashcroft {
    position: absolute;
    left: clamp(18px, 2.5vw, 72px);
    top: 18px;
    width: clamp(170px, 10vw, 260px);
  }

  .brand-fluvea {
    position: absolute;
    right: clamp(18px, 2.5vw, 72px);
    top: 18px;
    width: clamp(136px, 8vw, 210px);
  }

  /* Ensure header-inner still provides horizontal padding for central layout */
  .header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding-inline: clamp(22px, 4.6vw, 72px);
  }

  /* Footer content aligned to viewport edges with matching padding */
  .footer-inner {
    max-width: 100%;
    margin: 0;
    padding-inline: clamp(22px, 4.6vw, 72px);
    justify-content: space-between;
  }

  /* Nudge background image a bit upward on wide screens */
  .hero {
    background-position: center calc(50% - 6vh);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  width: 100%;
  background: #fff;
  flex: 0 0 auto;
}

.header-inner {
  min-height: 88px;
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
  padding: 18px clamp(22px, 4.6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-ashcroft {
  width: clamp(170px, 15vw, 260px);
}

.brand-fluvea {
  width: clamp(136px, 12vw, 210px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 48px);
}



.hero {
  position: relative;
  flex: 1 0 auto;
  min-height: 0;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 74px);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08)), url("../assets/background.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.info-panel {
  width: min(100%, 650px);
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(17, 55, 100, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.company-title,
.hero-lead {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.company-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.4vw, 48px);
  line-height: 1.16;
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.2;
  font-weight: 500;
}

.hero-lead span {
  display: block;
}

.intro-text,
.product-list,
.contact-list {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.38;
}

.intro-text {
  margin: 0 0 28px;
}

.section-heading {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.product-list {
  margin: 0 0 30px;
  padding-left: 18px;
}

.product-list li::marker {
  color: var(--blue);
}

.contact-title {
  margin-bottom: 13px;
}

.contact-list {
  margin: 0;
  font-style: normal;
}

.contact-list p {
  margin: 0 0 11px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 22px;
  height: 22px;
  margin-top: -1px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.contact-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.button-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 44px);
}

.panel-button {
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.panel-button:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.site-footer {
  flex: 0 0 auto;
  width: 100%;
  color: #fff;
  background: var(--blue-dark);
}

.footer-inner {
  min-height: 58px;
  max-width: 1780px;
  margin: 0 auto;
  padding: 14px clamp(22px, 4.6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 12px;
  line-height: 1.4;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh - 146px);
    background-position: center 72%;
  }
}

@media (min-width: 1200px) {
  .footer-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(18px, 2.5vw, 72px);
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 78px;
  }

  .brand-ashcroft {
    width: clamp(145px, 28vw, 190px);
  }

  .brand-fluvea {
    width: clamp(118px, 22vw, 165px);
  }

  .hero {
    align-items: flex-start;
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 14px 18px;
    gap: 16px;
  }

  .header-actions {
    gap: 12px;
 font-size: 13px;
    gap: 4px;
  }

  .brand-ashcroft {
    width: 130px;
  }

  .brand-fluvea {
    width: 104px;
  }

  .hero {
    padding: 28px 14px;
    background-size: cover;
    background-position: 62% center;
  }

  .info-panel {
    padding: 24px 20px;
  }

  .hero-lead {
    margin-bottom: 22px;
  }

  .intro-text,
  .product-list,
  .contact-list,
  .section-heading {
    font-size: 15px;
  }

  .button-row {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-inner {
    min-height: 72px;
    padding: 16px 18px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-height: 70px;
    padding-inline: 12px;
  }

  .brand-ashcroft {
    width: 112px;
  }

  .brand-fluvea {
    width: 88px;
  }

  .language-button {
    padding-inline: 3px;
  }
 font-size: 26px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .contact-list p {
    gap: 8px;
  }
}



.policy-page {
  background: #eef1f3;
}

.policy-main {
  width: 100%;
  flex: 1 0 auto;
  padding: clamp(24px, 4vw, 56px) clamp(12px, 3vw, 40px);
  background: #eef1f3;
}

.policy-document {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px);
  color: #000;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(17, 55, 100, 0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-family: Arial, Helvetica, sans-serif;
}

.policy-title {
  margin: 0 0 clamp(30px, 4vw, 48px);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.policy-document p.p1 {
  margin: 0 0 0.8em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.policy-document p.p2 {
  margin: 0 0 0.75em;
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.5;
}

.policy-document p.p3 {
  margin: 0 0 0.35em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.5;
}

.policy-document p.p4 {
  margin: 0 0 0.75em;
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.5;
  min-height: 12pt;
}

.policy-document li.li1 {
  margin: 0 0 0.5em;
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.policy-document li.li2 {
  margin: 0 0 0.35em;
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.5;
}

.policy-document ul.ul1 {
  list-style-type: disc;
}

.policy-document .policy-heading {
  margin: 1.8em 0 1em;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.policy-document .policy-heading:first-of-type {
  margin-top: 0;
}

.policy-document .policy-subheading {
  margin: 1.35em 0 0.85em;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.policy-document .policy-identification {
  margin: 1.05em 0 1.05em;
}

.policy-document a {
  color: var(--blue);
}

@media (max-width: 680px) {
  .policy-main {
    padding: 16px 10px;
  }

  .policy-document {
    padding: 24px 18px;
  }
}


[hidden] {
  display: none !important;
}

.footer-separator {
  margin: 0 8px;
  opacity: 0.7;
}

.footer-cookie-button {
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-cookie-button:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(17, 55, 100, 0.18);
  box-shadow: 0 -10px 30px rgba(17, 55, 100, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.cookie-banner__content {
  width: 100%;
  padding: 10px clamp(16px, 2.5vw, 48px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 14px 22px;
  align-items: center;
}

.cookie-banner h2,
.cookie-option h3 {
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.cookie-banner h2 {
  margin-bottom: 3px;
  font-size: 17px;
  line-height: 1.15;
}

.cookie-banner p,
.cookie-option p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-button {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cookie-button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.cookie-button--primary {
  background: var(--blue-dark);
}

.cookie-button--secondary {
  background: var(--blue);
}

.cookie-button--ghost {
  color: #fff;
  background: #2a6fb2;
}

.cookie-banner__settings {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 55, 100, 0.14);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 10px;
  align-items: center;
}

.cookie-option {
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 55, 100, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.cookie-option h3 {
  margin-bottom: 2px;
  font-size: 14px;
}

.cookie-option__status {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

@media (max-width: 900px) {
  .cookie-banner__content,
  .cookie-banner__settings {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .cookie-button {
    width: 100%;
    flex-basis: 100%;
  }
}
