:root {
  --brand: #044668;
  --brand-dark: #03364f;
  --brand-soft: #e6f2f7;
  --accent: #f97a11;
  --accent-soft: #fff0e5;
  --surface: #f5f7f9;
  --surface-page: #eef3f7;
  --surface-raised: #ffffff;
  --border: #d9e1e7;
  --border-strong: #c8d4df;
  --text: #102132;
  --text-muted: #5e6f7d;
  --text-subtle: #7d8b96;
  --green: #1aa37a;
  --shadow: 0 18px 42px rgba(16, 33, 50, 0.11);
  --radius: 8px;
  --content-width: 1120px;
  --content-gutter: 24px;
  --mobile-gutter: 16px;
  --text-block-width: 820px;
  --copy-width: 690px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid rgba(217, 225, 231, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  color: var(--brand);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-contact,
.language-switch {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a {
  padding: 0 12px;
  color: var(--text-muted);
}

.main-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.header-contact {
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--brand);
}

.header-contact:hover {
  border-color: var(--brand);
}

.language-switch {
  width: 48px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  flex: 0 0 auto;
}

.language-switch:hover {
  background: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: clamp(610px, 68vh, 760px);
  padding: clamp(72px, 8vh, 96px) 0 clamp(64px, 8vh, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(127, 184, 209, 0.28), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, var(--surface-page) 48%, var(--brand-soft) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(238, 243, 247, 0.98) 0%, rgba(238, 243, 247, 0.95) 44%, rgba(238, 243, 247, 0.76) 72%, rgba(238, 243, 247, 0.66) 100%);
  content: "";
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.82;
  filter: blur(1.1px);
  pointer-events: none;
}

.brewery-scene {
  position: absolute;
  top: 52%;
  right: max(-40px, calc((100vw - var(--content-width)) / 2 - 110px));
  width: min(960px, 72vw);
  height: 520px;
  transform: translateY(-48%);
}

.warehouse {
  position: absolute;
  width: 214px;
  height: 132px;
  border: 1px solid rgba(4, 70, 104, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 242, 247, 0.82)),
    #ffffff;
  box-shadow: 0 18px 34px rgba(16, 33, 50, 0.12);
}

.warehouse::before {
  position: absolute;
  top: -44px;
  left: 0;
  width: 100%;
  height: 52px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, rgba(4, 70, 104, 0.88), rgba(4, 70, 104, 0.58));
  clip-path: polygon(0 100%, 16% 18%, 100% 0, 100% 100%);
  content: "";
}

.warehouse::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 58px;
  height: 70px;
  border-radius: 8px 8px 0 0;
  background:
    repeating-linear-gradient(180deg, rgba(4, 70, 104, 0.14) 0 8px, transparent 8px 16px),
    rgba(4, 70, 104, 0.2);
  content: "";
}

.warehouse-one {
  left: 34px;
  bottom: 118px;
}

.warehouse-two {
  right: 0;
  bottom: 56px;
  width: 236px;
}

.warehouse-window {
  position: absolute;
  top: 34px;
  width: 38px;
  height: 30px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(127, 184, 209, 0.86), rgba(255, 255, 255, 0.74));
  animation: screen-glow 3.6s ease-in-out infinite;
}

.warehouse-window-one {
  left: 24px;
}

.warehouse-window-two {
  left: 76px;
  animation-delay: -1.5s;
}

.brewery-building {
  position: absolute;
  right: 170px;
  bottom: 98px;
  width: 520px;
  height: 250px;
}

.brewery-roof {
  position: absolute;
  top: 0;
  left: 30px;
  width: 420px;
  height: 56px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, rgba(4, 70, 104, 0.96), rgba(4, 70, 104, 0.72));
  clip-path: polygon(0 100%, 15% 22%, 100% 0, 100% 100%);
}

.brewery-body {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 205px;
  border: 1px solid rgba(4, 70, 104, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 42px rgba(16, 33, 50, 0.14);
}

.tank {
  position: absolute;
  bottom: 52px;
  width: 86px;
  height: 138px;
  border: 7px solid rgba(4, 70, 104, 0.78);
  border-radius: 42px 42px 12px 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(230, 242, 247, 0.86) 42%, rgba(127, 184, 209, 0.44)),
    #ffffff;
  overflow: hidden;
}

.tank::before {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 32px;
  height: 32px;
  border: 4px solid rgba(249, 122, 17, 0.84);
  border-radius: 50%;
  content: "";
}

.tank span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(249, 122, 17, 0.16), rgba(249, 122, 17, 0.5));
  animation: brew-level 5.4s ease-in-out infinite;
}

.tank-one {
  left: 46px;
}

.tank-two {
  left: 148px;
  height: 162px;
}

.tank-two span {
  animation-delay: -1.4s;
}

.tank-three {
  left: 252px;
}

.tank-three span {
  animation-delay: -2.7s;
}

.brewery-pipe {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: rgba(4, 70, 104, 0.72);
}

.pipe-one {
  left: 98px;
  top: 70px;
  width: 212px;
}

.pipe-two {
  left: 300px;
  top: 96px;
  width: 116px;
  transform: rotate(90deg);
  transform-origin: left center;
}

.control-screen {
  position: absolute;
  right: 44px;
  width: 58px;
  height: 42px;
  border: 4px solid rgba(4, 70, 104, 0.82);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(249, 122, 17, 0.88) 0 22%, transparent 22% 32%, rgba(26, 163, 122, 0.86) 32% 60%, transparent 60% 70%, rgba(127, 184, 209, 0.9) 70%),
    rgba(255, 255, 255, 0.9);
  animation: screen-glow 2.8s ease-in-out infinite;
}

.screen-one {
  top: 54px;
}

.screen-two {
  top: 112px;
  animation-delay: -1.2s;
}

.bottle-line {
  position: absolute;
  left: 42px;
  right: 38px;
  bottom: 20px;
  height: 42px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(4, 70, 104, 0.18) 0 18px, rgba(4, 70, 104, 0.08) 18px 34px),
    rgba(230, 242, 247, 0.9);
  overflow: hidden;
}

.bottle {
  position: absolute;
  bottom: 8px;
  width: 16px;
  height: 25px;
  border-radius: 5px 5px 4px 4px;
  background: linear-gradient(180deg, var(--green), #0d7656);
  animation: bottle-move 5.6s linear infinite;
}

.bottle::before {
  position: absolute;
  top: -7px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 3px 3px 1px 1px;
  background: inherit;
  content: "";
}

.bottle-one {
  left: -30px;
}

.bottle-two {
  left: -110px;
  animation-delay: -1.4s;
}

.bottle-three {
  left: -190px;
  animation-delay: -2.8s;
}

.bottle-four {
  left: -270px;
  animation-delay: -4.2s;
}

.operator {
  position: absolute;
  bottom: 44px;
  width: 88px;
  height: 130px;
}

.operator-one {
  left: 294px;
  bottom: 54px;
}

.operator-two {
  right: 72px;
  bottom: 76px;
  transform: scale(0.9);
  transform-origin: bottom center;
}

.operator-three {
  left: 64px;
  bottom: 76px;
  transform: scale(0.82);
  transform-origin: bottom center;
}

.operator-four {
  left: 600px;
  bottom: 30px;
  transform: scale(0.78);
  transform-origin: bottom center;
}

.operator-head {
  position: absolute;
  top: 0;
  left: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4c7a1;
  box-shadow: inset -5px -3px 0 rgba(147, 71, 10, 0.16);
}

.operator-body {
  position: absolute;
  top: 36px;
  left: 17px;
  width: 52px;
  height: 70px;
  border-radius: 18px 18px 10px 10px;
  background: var(--brand);
}

.operator-device {
  position: absolute;
  border: 4px solid var(--text);
  background:
    linear-gradient(135deg, rgba(127, 184, 209, 0.95), rgba(255, 255, 255, 0.88));
  box-shadow: 0 10px 20px rgba(16, 33, 50, 0.14);
  animation: device-pulse 2.7s ease-in-out infinite;
}

.laptop {
  right: 0;
  bottom: 16px;
  width: 66px;
  height: 42px;
  border-radius: 6px;
}

.tablet {
  left: 0;
  bottom: 28px;
  width: 36px;
  height: 54px;
  border-radius: 8px;
  animation-delay: -1s;
}

.network-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(4, 70, 104, 0.78), rgba(249, 122, 17, 0.92), transparent);
  opacity: 0.82;
  overflow: hidden;
}

.network-line::after {
  position: absolute;
  top: -4px;
  left: -16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(249, 122, 17, 0.76);
  content: "";
  animation: data-packet 2.6s linear infinite;
}

.network-line-one {
  top: 106px;
  left: 128px;
  width: 520px;
  transform: rotate(13deg);
}

.network-line-two {
  top: 210px;
  left: 214px;
  width: 502px;
  transform: rotate(-13deg);
}

.network-line-two::after {
  animation-delay: -0.9s;
}

.network-line-three {
  top: 372px;
  left: 142px;
  width: 620px;
  transform: rotate(0deg);
}

.network-line-three::after {
  animation-delay: -1.8s;
}

.network-line-four {
  top: 294px;
  left: 42px;
  width: 350px;
  transform: rotate(-7deg);
}

.network-line-four::after {
  animation-delay: -2.4s;
}

.network-line-five {
  top: 150px;
  right: 72px;
  width: 300px;
  transform: rotate(29deg);
}

.network-line-five::after {
  animation-delay: -0.4s;
}

.network-line-six {
  right: 118px;
  bottom: 108px;
  width: 330px;
  transform: rotate(-28deg);
}

.network-line-six::after {
  animation-delay: -1.2s;
}

.network-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(4, 70, 104, 0.14);
  animation: node-pulse 2.9s ease-in-out infinite;
}

.node-one {
  top: 92px;
  left: 122px;
}

.node-two {
  top: 144px;
  right: 248px;
  animation-delay: -0.8s;
}

.node-three {
  bottom: 126px;
  left: 232px;
  animation-delay: -1.6s;
}

.node-four {
  right: 72px;
  bottom: 184px;
  animation-delay: -2.2s;
}

.node-five {
  left: 386px;
  top: 236px;
  animation-delay: -1.1s;
}

.node-six {
  right: 318px;
  bottom: 86px;
  animation-delay: -2.7s;
}

.forklift {
  position: absolute;
  left: 392px;
  bottom: 34px;
  width: 132px;
  height: 78px;
  animation: forklift-drive 7s ease-in-out infinite;
}

.forklift-body {
  position: absolute;
  left: 22px;
  bottom: 16px;
  width: 70px;
  height: 36px;
  border-radius: 8px 12px 6px 6px;
  background: var(--accent);
  box-shadow: inset -10px 0 0 rgba(147, 71, 10, 0.18);
}

.forklift-seat {
  position: absolute;
  left: 54px;
  bottom: 48px;
  width: 26px;
  height: 26px;
  border: 5px solid var(--brand);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.forklift-mast {
  position: absolute;
  right: 22px;
  bottom: 16px;
  width: 8px;
  height: 68px;
  border-radius: 999px;
  background: var(--brand);
}

.forklift-fork {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.forklift-box {
  position: absolute;
  right: -2px;
  bottom: 25px;
  width: 34px;
  height: 30px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(147, 71, 10, 0.24) 46% 54%, transparent 54%),
    linear-gradient(180deg, #ffe3c2, #f9b46f);
}

.forklift-wheel {
  position: absolute;
  bottom: 0;
  width: 25px;
  height: 25px;
  border: 6px solid var(--text);
  border-radius: 50%;
  background: #ffffff;
  animation: wheel-spin 1.1s linear infinite;
}

.forklift-wheel-one {
  left: 28px;
}

.forklift-wheel-two {
  left: 78px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(440px, 52vh, 560px);
  flex-direction: column;
  justify-content: center;
  width: min(var(--content-width), calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: var(--text-block-width);
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: var(--copy-width);
  margin: 26px 0 0;
  color: #30475c;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(4, 70, 104, 0.16);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--brand);
}

.button-secondary:hover {
  border-color: var(--brand);
}

dl {
  margin: 0;
}

.identity-grid {
  display: grid;
  gap: 16px;
}

dt {
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
}

.section {
  padding: 76px 0;
  background: #ffffff;
}

.section-light {
  background: var(--surface);
}

.section-inner {
  width: min(var(--content-width), calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
}

.section-heading {
  max-width: var(--text-block-width);
}

.section-heading p:not(.eyebrow),
.split-section p,
.breton-block p {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 18px;
}

.section-heading p:not(.eyebrow) {
  max-width: var(--copy-width);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.service-card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--accent-soft);
  color: #93470a;
}

.service-card:nth-child(3) .service-icon {
  background: #e7f5ee;
  color: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: #eef2f5;
  color: var(--brand);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.client-card {
  min-height: 198px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, rgba(230, 242, 247, 0.42)),
    #ffffff;
}

.client-card p {
  margin: 0;
  color: var(--text-muted);
}

.client-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.client-card:nth-child(2n) .client-mark {
  background: var(--accent);
}

.client-card:nth-child(3n) .client-mark {
  background: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 48px;
  align-items: start;
}

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

.app-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: #30475c;
  font-weight: 780;
}

.app-list li::before {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
}

.section-breton {
  background: var(--brand);
  color: #ffffff;
}

.breton-block {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.section-breton .eyebrow,
.section-breton h2,
.section-breton p {
  color: #ffffff;
}

.section-breton .eyebrow {
  color: #ffe3c2;
}

.breton-logo-panel {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.breton-logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.identity-section {
  display: grid;
  gap: 36px;
}

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

.identity-grid div {
  min-height: 94px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
}

.identity-grid a {
  color: var(--brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a {
  color: var(--brand);
  font-weight: 900;
}

@keyframes brew-level {
  0%,
  100% {
    height: 46%;
  }

  50% {
    height: 64%;
  }
}

@keyframes screen-glow {
  0%,
  100% {
    opacity: 0.78;
    box-shadow: 0 0 0 rgba(249, 122, 17, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(249, 122, 17, 0.36);
  }
}

@keyframes bottle-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(560px);
  }
}

@keyframes device-pulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.18);
  }
}

@keyframes data-packet {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(720px);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(4, 70, 104, 0.14);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 13px rgba(249, 122, 17, 0.12);
    transform: scale(1.08);
  }
}

@keyframes forklift-drive {
  0%,
  100% {
    transform: translateX(-14px);
  }

  50% {
    transform: translateX(48px);
  }
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
  }

  .main-nav {
    justify-content: flex-start;
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-contact {
    margin-left: auto;
  }

  .language-switch {
    margin-left: 0;
  }

  .split-section,
  .breton-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-content {
    min-height: auto;
  }

  .brewery-scene {
    right: -350px;
    width: 900px;
    max-width: none;
    transform: translateY(-50%) scale(0.82);
  }

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

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

  .breton-logo-panel {
    width: min(360px, 100%);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px var(--mobile-gutter);
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .main-nav a {
    padding: 0 10px;
  }

  .header-contact {
    flex: 1 1 250px;
    width: auto;
    margin-left: 0;
  }

  .language-switch {
    flex: 0 0 54px;
  }

  .section-inner {
    width: min(100% - (var(--mobile-gutter) * 2), var(--content-width));
  }

  .hero {
    padding: 42px 0 48px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(238, 243, 247, 0.98) 0%, rgba(238, 243, 247, 0.95) 72%, rgba(238, 243, 247, 0.82) 100%);
  }

  .hero-content {
    width: min(100% - (var(--mobile-gutter) * 2), var(--content-width));
  }

  .hero-visual {
    opacity: 0.42;
    filter: blur(1.5px);
  }

  .brewery-scene {
    top: 54%;
    right: -520px;
    width: 880px;
    transform: translateY(-50%) scale(0.72);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .section {
    padding: 56px 0;
  }

  .service-grid,
  .client-grid,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
