:root {
  --br-red: #e30613;
  --br-red-dark: #b6000a;
  --br-black: #090909;
  --br-ink: #141414;
  --br-grey-900: #202020;
  --br-grey-700: #565656;
  --br-grey-300: #d8d8d8;
  --br-grey-100: #f1f1f1;
  --br-white: #fff;
  --br-shell: min(1240px, calc(100vw - 48px));
  --br-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --br-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --br-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.berace4 {
  margin: 0;
  color: var(--br-ink);
  background: var(--br-white);
  font-family: var(--br-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.br-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--br-white); background: var(--br-red); }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.br-skip {
  position: fixed; z-index: 99999; top: 12px; left: 12px;
  padding: 10px 14px; color: var(--br-white); background: var(--br-red);
  transform: translateY(-160%); transition: transform .2s ease;
}
.br-skip:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffcb05; outline-offset: 3px; }

.br-shell { width: var(--br-shell); margin-inline: auto; }
.br-main { min-height: 60vh; overflow: hidden; }
.br-section { padding: clamp(72px, 9vw, 132px) 0; }
.br-eyebrow {
  margin: 0 0 16px; font-family: var(--br-display); font-weight: 900;
  font-size: 13px; line-height: 1.1; letter-spacing: .19em; text-transform: uppercase;
}
.br-eyebrow--red { color: var(--br-red); }
.br-lead { max-width: 760px; font-size: clamp(19px, 2vw, 25px); line-height: 1.5; }
h1, h2, h3 {
  margin-top: 0; color: inherit; font-family: var(--br-display); font-weight: 900;
  line-height: .98; letter-spacing: -.035em; text-transform: uppercase;
}
h1 { font-size: clamp(52px, 9vw, 128px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(23px, 2.5vw, 34px); }
h1 em, h2 em { color: var(--br-red); font-style: normal; }
p { margin-top: 0; }
.br-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.br-button {
  display: inline-flex; min-height: 52px; padding: 13px 20px; gap: 16px;
  align-items: center; justify-content: space-between; border: 2px solid transparent;
  font-family: var(--br-display); font-size: 15px; font-weight: 900;
  letter-spacing: .04em; line-height: 1; text-decoration: none; text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.br-button:hover { transform: translateY(-2px); }
.br-button--primary { color: var(--br-white); background: var(--br-red); }
.br-button--primary:hover { background: var(--br-red-dark); }
.br-button--dark { color: var(--br-white); background: var(--br-black); }
.br-button--dark:hover { background: var(--br-red); }
.br-button--ghost { color: var(--br-white); border-color: rgba(255,255,255,.65); background: rgba(0,0,0,.18); }
.br-button--ghost:hover { color: var(--br-black); background: var(--br-white); }
.br-button--light { color: var(--br-black); background: var(--br-white); }
.br-button--light:hover { color: var(--br-white); background: var(--br-black); }
.br-button--outline-light { color: var(--br-white); border-color: var(--br-white); }
.br-button--outline-light:hover { color: var(--br-black); background: var(--br-white); }
.br-button--outline-dark { color: var(--br-black); border-color: var(--br-black); }
.br-button--outline-dark:hover { color: var(--br-white); background: var(--br-black); }

/* Header */
.br-header {
  position: sticky; z-index: 1000; top: 0; color: var(--br-white); background: rgba(8,8,8,.96);
  border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px);
}
.br-header__inner { display: flex; width: min(1440px, calc(100vw - 40px)); min-height: 78px; margin: auto; align-items: center; }
.br-brand { display: block; flex: 0 0 auto; width: clamp(170px, 17vw, 260px); text-decoration: none; }
.br-brand img, .br-brand .custom-logo { width: 100%; max-height: 58px; object-fit: contain; object-position: left center; }
.br-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; }
.br-menu { display: flex; margin: 0; padding: 0; gap: clamp(14px, 2vw, 30px); align-items: center; list-style: none; }
.br-menu li { position: relative; }
.br-menu a, .br-account-link, .br-language {
  display: inline-flex; padding: 29px 0; color: var(--br-white); align-items: center;
  font-family: var(--br-display); font-size: 13px; font-weight: 900; letter-spacing: .05em;
  text-decoration: none; text-transform: uppercase;
}
.br-menu a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ""; background: var(--br-red); transform: scaleX(0); transition: transform .2s ease; }
.br-menu a:hover::after, .br-menu .current-menu-item > a::after { transform: scaleX(1); }
.br-menu .sub-menu { position: absolute; top: 100%; left: -18px; display: none; min-width: 230px; margin: 0; padding: 10px 18px; list-style: none; background: var(--br-black); box-shadow: var(--br-shadow); }
.br-menu li:hover > .sub-menu, .br-menu li:focus-within > .sub-menu { display: block; }
.br-menu .sub-menu a { width: 100%; padding: 12px 0; }
.br-menu .sub-menu a::after { bottom: 7px; }
.br-nav__actions { display: flex; margin-left: clamp(16px, 2.3vw, 36px); gap: 16px; align-items: center; }
.br-language { color: #bcbcbc; }
.br-account-link { padding-inline: 0; }
.br-header-cta { padding: 12px 17px; color: var(--br-white); background: var(--br-red); font-family: var(--br-display); font-size: 14px; font-weight: 900; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.br-header-cta:hover { background: var(--br-white); color: var(--br-black); }
.br-promo { padding: 9px 20px; color: var(--br-white); background: var(--br-red); text-align: center; font-family: var(--br-display); font-size: 13px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.br-promo a { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; }
.br-menu-toggle { display: none; width: 48px; height: 48px; margin-left: auto; padding: 10px; border: 0; color: inherit; background: transparent; cursor: pointer; }
.br-menu-toggle > span:not(.screen-reader-text) { display: block; width: 26px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

/* Hero and navigation helpers */
.br-breadcrumbs { display: flex; padding: 18px 0; gap: 9px; align-items: center; color: var(--br-grey-700); font-size: 12px; letter-spacing: .04em; overflow-x: auto; white-space: nowrap; }
.br-breadcrumbs a { text-decoration: none; }
.br-breadcrumbs a:hover { color: var(--br-red); }
.br-hero {
  position: relative; display: flex; min-height: min(860px, calc(100vh - 78px)); padding: clamp(90px, 12vw, 170px) 0 40px;
  color: var(--br-white); align-items: flex-end; isolation: isolate; background: var(--br-black);
}
.br-hero::before, .br-page-hero::before {
  position: absolute; z-index: -2; inset: 0; content: "";
  background-image: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.64) 48%, rgba(0,0,0,.17) 100%), var(--br-hero-image, var(--br-page-image));
  background-position: center; background-size: cover;
}
.br-hero::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 50%); }
.br-hero__content { padding-bottom: clamp(70px, 9vw, 110px); }
.br-hero h1 { max-width: 950px; margin-bottom: 24px; }
.br-hero .br-lead { max-width: 700px; margin-bottom: 34px; color: rgba(255,255,255,.88); }
.br-proof { display: grid; position: absolute; right: 0; bottom: 0; left: 0; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.32); }
.br-proof > div { display: flex; min-height: 72px; padding: 13px 24px; gap: 12px; align-items: center; border-right: 1px solid rgba(255,255,255,.25); }
.br-proof > div:last-child { border-right: 0; }
.br-proof strong { font-family: var(--br-display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.br-proof span { color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.25; text-transform: uppercase; }
.br-page-hero { position: relative; min-height: 590px; padding: clamp(110px, 14vw, 190px) 0 80px; color: var(--br-white); isolation: isolate; background: var(--br-black); }
.br-page-hero::before { --br-hero-image: var(--br-page-image); background-image: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.34)), var(--br-page-image); }
.br-page-hero > .br-shell { position: relative; z-index: 1; }
.br-page-hero h1 { max-width: 1040px; margin-bottom: 26px; }
.br-page-hero .br-lead { color: rgba(255,255,255,.83); }

/* Homepage */
.br-intro { background: var(--br-white); }
.br-intro__grid, .br-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.br-intro h2 { margin-bottom: 0; }
.br-intro__grid > p, .br-split > div:last-child { padding-top: 32px; color: var(--br-grey-700); font-size: 19px; }
.br-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); color: var(--br-white); background: var(--br-black); }
.br-service-card { position: relative; display: flex; min-height: 580px; padding: clamp(34px, 5vw, 70px); align-items: flex-end; isolation: isolate; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.br-service-card::before { position: absolute; z-index: -2; inset: 0; content: ""; background-image: linear-gradient(0deg, rgba(0,0,0,.96), rgba(0,0,0,.04) 68%), var(--br-card-image); background-position: center; background-size: cover; transition: transform .55s ease; }
.br-service-card::after { position: absolute; z-index: -1; inset: 0; content: ""; background: rgba(227,6,19,0); transition: background .35s ease; }
.br-service-card:hover::before { transform: scale(1.035); }
.br-service-card:hover::after { background: rgba(227,6,19,.15); }
.br-service-card > div { max-width: 560px; }
.br-service-card span { color: var(--br-red); font-family: var(--br-display); font-size: 18px; font-weight: 900; }
.br-service-card h2 { margin: 12px 0 16px; }
.br-service-card p { color: rgba(255,255,255,.76); }
.br-service-card a { font-family: var(--br-display); font-size: 15px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.br-process-preview { background: var(--br-grey-100); }
.br-process-preview h2 { max-width: 760px; }
.br-steps { display: grid; margin: 50px 0; padding: 0; grid-template-columns: repeat(4,1fr); border-top: 4px solid var(--br-black); list-style: none; counter-reset: none; }
.br-steps li { position: relative; padding: 36px 28px 0 0; }
.br-steps li::before { position: absolute; top: -10px; left: 0; width: 16px; height: 16px; border-radius: 50%; content: ""; background: var(--br-red); }
.br-steps li > span { display: block; margin-bottom: 30px; color: var(--br-red); font-family: var(--br-display); font-size: 18px; font-weight: 900; }
.br-steps h3 { margin-bottom: 16px; font-size: 28px; }
.br-steps p { color: var(--br-grey-700); font-size: 15px; }
.br-about-preview__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.8fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.br-about-preview figure { margin: 0; }
.br-about-preview figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 22px 22px 0 var(--br-red); }
.br-about-preview p:not(.br-eyebrow) { color: var(--br-grey-700); }
.br-section-heading { display: flex; margin-bottom: 42px; gap: 30px; align-items: flex-end; justify-content: space-between; }
.br-section-heading h2 { margin-bottom: 0; }
.br-section-heading > a { flex: 0 0 auto; font-family: var(--br-display); font-weight: 900; text-transform: uppercase; }
.br-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.br-gallery figure { margin: 0; background: var(--br-grey-100); overflow: hidden; }
.br-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.br-gallery figure:hover img { transform: scale(1.035); }
.br-cta { padding: clamp(75px, 10vw, 130px) 0; color: var(--br-white); background: var(--br-red); }
.br-cta h2 { max-width: 920px; margin-bottom: 18px; }
.br-cta p:not(.br-eyebrow) { max-width: 720px; color: rgba(255,255,255,.8); font-size: 20px; }
.br-cta .br-actions, .br-cta > .br-shell > .br-button { margin-top: 30px; }

/* Internal layouts */
.br-values { color: var(--br-white); background: var(--br-black); }
.br-values > .br-shell, .br-feature-grid, .br-guide-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.br-values article, .br-feature-grid article, .br-guide-grid article { min-height: 330px; padding: clamp(36px,4vw,58px); border-right: 1px solid rgba(255,255,255,.18); }
.br-values article:last-child { border-right: 0; }
.br-values span, .br-feature-grid span, .br-guide-grid span { color: var(--br-red); font-family: var(--br-display); font-size: 19px; font-weight: 900; }
.br-values h2, .br-feature-grid h2, .br-guide-grid h2 { margin: 62px 0 18px; font-size: clamp(32px,3vw,45px); }
.br-values p { color: rgba(255,255,255,.68); }
.br-warranty { display: flex; padding: clamp(38px,6vw,78px); color: var(--br-white); background: var(--br-red); align-items: flex-end; justify-content: space-between; gap: 30px; }
.br-warranty h2 { max-width: 780px; }
.br-warranty p { max-width: 700px; color: rgba(255,255,255,.8); }
.br-product-list { display: grid; gap: 18px; }
.br-product-list article { display: grid; min-height: 400px; grid-template-columns: 1.15fr .85fr; color: var(--br-white); background: var(--br-black); }
.br-product-list article:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
.br-product-list article:nth-child(even) figure { order: 2; }
.br-product-list figure { margin: 0; overflow: hidden; }
.br-product-list img { width: 100%; height: 100%; object-fit: cover; }
.br-product-list article > div { display: flex; padding: clamp(38px,6vw,80px); flex-direction: column; align-items: flex-start; justify-content: center; }
.br-product-list span { color: var(--br-red); font-family: var(--br-display); font-weight: 900; }
.br-product-list h2 { margin: 22px 0; }
.br-product-list p { color: rgba(255,255,255,.7); }
.br-product-list a { font-family: var(--br-display); font-weight: 900; text-transform: uppercase; }
.br-feature-grid { grid-template-columns: repeat(4,1fr); border: 1px solid var(--br-grey-300); }
.br-feature-grid article { min-height: 310px; border-color: var(--br-grey-300); }
.br-feature-grid article:last-child { border-right: 0; }
.br-feature-grid p, .br-guide-grid p { color: var(--br-grey-700); }
.br-showcase { background: var(--br-grey-100); }
.br-showcase .br-split { align-items: center; }
.br-showcase figure { margin: 0; }
.br-showcase img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.br-showcase .br-split > div:last-child { padding-top: 0; }
.br-guide-grid { grid-template-columns: repeat(2,1fr); border: 1px solid var(--br-grey-300); }
.br-guide-grid article { min-height: 310px; border-right: 1px solid var(--br-grey-300); border-bottom: 1px solid var(--br-grey-300); }
.br-guide-grid article:nth-child(2n) { border-right: 0; }
.br-guide-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.br-guide-grid a { font-family: var(--br-display); font-weight: 900; text-transform: uppercase; }
.br-timeline { max-width: 980px; }
.br-timeline article { display: grid; padding: 42px 0; gap: 45px; grid-template-columns: 90px 1fr; border-top: 1px solid var(--br-grey-300); }
.br-timeline article:last-child { border-bottom: 1px solid var(--br-grey-300); }
.br-timeline > article > span { color: var(--br-red); font-family: var(--br-display); font-size: 32px; font-weight: 900; }
.br-timeline h2 { margin-bottom: 12px; font-size: clamp(34px,4vw,55px); }
.br-timeline p { max-width: 720px; color: var(--br-grey-700); }
.br-filter { display: flex; margin-bottom: 26px; gap: 8px; flex-wrap: wrap; }
.br-filter button { padding: 10px 15px; border: 1px solid var(--br-black); background: transparent; font-family: var(--br-display); font-weight: 900; text-transform: uppercase; cursor: pointer; }
.br-filter button.is-active, .br-filter button:hover { color: var(--br-white); background: var(--br-black); }
.br-gallery--portfolio figure[hidden] { display: none; }
.br-faq { max-width: 980px; }
.br-faq details { border-top: 1px solid var(--br-grey-300); }
.br-faq details:last-child { border-bottom: 1px solid var(--br-grey-300); }
.br-faq summary { display: flex; padding: 28px 0; gap: 25px; align-items: center; justify-content: space-between; font-family: var(--br-display); font-size: clamp(24px,3vw,34px); font-weight: 900; line-height: 1.05; text-transform: uppercase; cursor: pointer; list-style: none; }
.br-faq summary::-webkit-details-marker { display: none; }
.br-faq summary span { color: var(--br-red); font-size: 36px; transition: transform .2s ease; }
.br-faq details[open] summary span { transform: rotate(45deg); }
.br-faq details > div { max-width: 760px; padding: 0 0 28px; color: var(--br-grey-700); }
.br-contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px,9vw,130px); }
.br-contact-list article { padding: 24px 0; border-top: 1px solid var(--br-grey-300); }
.br-contact-list article:last-child { border-bottom: 1px solid var(--br-grey-300); }
.br-contact-list span { display: block; margin-bottom: 6px; color: var(--br-red); font-family: var(--br-display); font-size: 13px; font-weight: 900; letter-spacing: .1em; }
.br-contact-list a, .br-contact-list p { font-family: var(--br-display); font-size: clamp(23px,3vw,35px); font-weight: 900; line-height: 1.1; text-decoration: none; text-transform: uppercase; }
.br-contact-list a:hover { color: var(--br-red); }
.br-form-shell { padding: clamp(32px,5vw,64px); background: var(--br-grey-100); }
.br-form-shell h2 { font-size: clamp(34px,4vw,50px); }
.br-config-page { background: var(--br-grey-100); }
.br-config-heading { display: grid; padding: 50px 0; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; }
.br-config-heading h1 { margin-bottom: 0; font-size: clamp(52px,7vw,100px); }
.br-config-heading > p { color: var(--br-grey-700); }
.br-config-shell { min-height: 680px; padding: 0 0 70px; }
.br-config-shell > :not(.br-shell) { width: 100%; }
.br-notice { margin: 32px 0; padding: 26px 30px; border-left: 5px solid var(--br-red); background: var(--br-grey-100); }
.br-notice .br-button { margin-top: 16px; }
.br-content { max-width: 940px; padding-block: clamp(60px,8vw,110px); }
.br-content > * { max-width: 760px; }
.br-content > .alignwide { max-width: 1100px; }
.br-content > .alignfull { max-width: none; }
.br-content h2 { margin-top: 1.1em; }
.br-content h3 { margin-top: 1.3em; }
.br-post-card { padding: 30px 0; border-top: 1px solid var(--br-grey-300); }
.br-post-card h2 { font-size: clamp(28px,4vw,48px); }
.br-post-card a { text-decoration: none; }
.br-project > header { padding-block: 70px 40px; }
.br-project__hero { margin: 0; }
.br-project__hero img { width: 100%; max-height: 860px; object-fit: cover; }
.br-error { display: grid; min-height: 75vh; padding: 90px 0; color: var(--br-white); background: var(--br-black); place-items: center; }
.br-error h1 { max-width: 1000px; }
.br-legal { max-width: 940px; padding-block: clamp(70px,9vw,130px); }
.br-legal h1 { margin-bottom: 60px; }
.br-legal h2 { margin-top: 58px; font-size: clamp(30px,4vw,48px); }
.br-legal p, .br-legal li { color: var(--br-grey-700); }
.br-legal-note { margin-top: 55px; padding: 22px; border-left: 4px solid var(--br-red); background: var(--br-grey-100); }
.br-table-wrap { width: 100%; overflow-x: auto; }
.br-table-wrap table { width: 100%; border-collapse: collapse; }
.br-table-wrap th, .br-table-wrap td { padding: 16px; border: 1px solid var(--br-grey-300); text-align: left; }
.br-table-wrap th { color: var(--br-white); background: var(--br-black); }

/* Forms shared with Be Race Core */
.br-form-shell label, .br-core-form label { display: block; margin-bottom: 7px; font-family: var(--br-display); font-size: 14px; font-weight: 900; text-transform: uppercase; }
.br-form-shell input:not([type="checkbox"]):not([type="radio"]), .br-form-shell select, .br-form-shell textarea,
.br-core-form input:not([type="checkbox"]):not([type="radio"]), .br-core-form select, .br-core-form textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bdbdbd; border-radius: 0; color: var(--br-ink); background: var(--br-white);
}
.br-form-shell textarea, .br-core-form textarea { min-height: 130px; resize: vertical; }
.br-form-shell input:focus, .br-form-shell select:focus, .br-form-shell textarea:focus,
.br-core-form input:focus, .br-core-form select:focus, .br-core-form textarea:focus { border-color: var(--br-red); outline: 2px solid rgba(227,6,19,.2); }

/* Cookie control */
.br-cookie { position: fixed; z-index: 9999; inset: 0; display: flex; padding: 20px; align-items: flex-end; justify-content: center; background: rgba(0,0,0,.55); }
.br-cookie[hidden] { display: none; }
.br-cookie__panel { position: relative; width: min(820px,100%); padding: clamp(24px,4vw,42px); color: var(--br-white); background: var(--br-black); box-shadow: var(--br-shadow); }
.br-cookie__close { position: absolute; top: 12px; right: 14px; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: var(--br-white); background: transparent; font-size: 30px; line-height: 1; cursor: pointer; }
.br-cookie__close:hover, .br-cookie__close:focus-visible { border-color: var(--br-red); background: var(--br-red); }
.br-cookie__panel h2 { margin-bottom: 14px; font-size: clamp(32px,5vw,50px); }
.br-cookie__panel > p:not(.br-eyebrow) { color: rgba(255,255,255,.72); }
.br-cookie__options { display: grid; margin: 22px 0; gap: 10px; }
.br-cookie__options[hidden] { display: none; }
.br-cookie__options label { display: flex; padding: 14px; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.25); }
.br-cookie__options input { width: 24px; height: 24px; accent-color: var(--br-red); }
.br-cookie__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.br-cookie__actions button { padding: 11px 15px; border: 1px solid rgba(255,255,255,.65); color: var(--br-white); background: transparent; font-family: var(--br-display); font-size: 13px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.br-cookie__actions button:hover, .br-cookie__actions .is-primary, .br-cookie__actions [data-cookie-action="reject"] { border-color: var(--br-red); background: var(--br-red); }
.br-cookie__links { margin: 18px 0 0 !important; font-size: 13px; }

/* Footer */
.br-footer { padding: 75px 0 28px; color: var(--br-white); background: var(--br-black); }
.br-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3,1fr); gap: clamp(35px,5vw,75px); }
.br-footer__brand img { width: min(260px,100%); margin-bottom: 26px; }
.br-footer__brand p { max-width: 330px; color: rgba(255,255,255,.55); }
.br-footer h2 { margin-bottom: 24px; color: #9e9e9e; font-size: 13px; letter-spacing: .12em; }
.br-footer__grid > div:not(.br-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.br-footer__grid a, .br-footer__grid span { margin: 0 0 10px; color: rgba(255,255,255,.83); font-size: 14px; text-decoration: none; }
.br-footer__grid a:hover { color: var(--br-red); }
.br-footer__legal { display: flex; margin-top: 60px; padding-top: 24px; gap: 25px; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.14); justify-content: space-between; font-size: 12px; }
.br-footer__legal a { color: inherit; }
.br-footer__legal button { padding: 0; border: 0; color: inherit; background: transparent; text-decoration: underline; cursor: pointer; }
.br-mobile-actions { display: none; }

@media (max-width: 1120px) {
  .br-menu-toggle { display: block; }
  .br-nav { position: fixed; top: 78px; right: 0; bottom: 0; left: 0; display: none; padding: 20px 24px 40px; align-items: stretch; flex-direction: column; justify-content: flex-start; overflow-y: auto; background: var(--br-black); }
  .br-nav.is-open { display: flex; }
  .br-menu { display: block; width: 100%; }
  .br-menu li { border-bottom: 1px solid rgba(255,255,255,.15); }
  .br-menu a { width: 100%; padding: 17px 0; font-size: 20px; }
  .br-menu a::after { display: none; }
  .br-menu .sub-menu { position: static; display: block; padding: 0 0 8px 18px; box-shadow: none; }
  .br-menu .sub-menu li { border: 0; }
  .br-menu .sub-menu a { padding: 9px 0; font-size: 15px; }
  .br-nav__actions { margin: 24px 0 0; flex-wrap: wrap; }
  .br-language, .br-account-link { padding: 12px 0; }
  .br-menu-open .br-menu-toggle > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .br-menu-open .br-menu-toggle > span:nth-child(2) { opacity: 0; }
  .br-menu-open .br-menu-toggle > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .br-feature-grid { grid-template-columns: repeat(2,1fr); }
  .br-feature-grid article:nth-child(2) { border-right: 0; }
  .br-feature-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--br-grey-300); }
  .br-steps { grid-template-columns: repeat(2,1fr); gap: 25px 0; }
  .br-footer__grid { grid-template-columns: 1.2fr repeat(2,1fr); }
  .br-footer__grid > div:last-child { grid-column: 2 / 3; }
}

@media (max-width: 760px) {
  :root { --br-shell: calc(100vw - 32px); }
  body.berace4 { font-size: 16px; padding-bottom: 58px; }
  .br-header__inner { width: calc(100vw - 24px); min-height: 68px; }
  .br-brand { width: 172px; }
  .br-nav { top: 68px; }
  .br-section { padding: 70px 0; }
  h1 { font-size: clamp(47px,15vw,78px); }
  h2 { font-size: clamp(34px,11vw,54px); }
  .br-actions { align-items: stretch; flex-direction: column; }
  .br-actions .br-button { width: 100%; }
  .br-hero { min-height: calc(100svh - 68px); padding-top: 90px; }
  .br-hero::before { background-position: 64% center; }
  .br-hero__content { padding-bottom: 155px; }
  .br-hero h1 { max-width: 12ch; }
  .br-proof { width: 100%; grid-template-columns: 1fr; }
  .br-proof > div { min-height: 48px; padding: 8px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .br-proof > div:last-child { border-bottom: 0; }
  .br-proof strong { min-width: 90px; font-size: 18px; }
  .br-page-hero { min-height: 510px; padding: 90px 0 55px; }
  .br-page-hero::before { background-position: 65% center; }
  .br-intro__grid, .br-split, .br-about-preview__grid, .br-contact-grid, .br-config-heading { grid-template-columns: 1fr; gap: 30px; }
  .br-intro__grid > p, .br-split > div:last-child { padding-top: 0; }
  .br-service-grid { grid-template-columns: 1fr; }
  .br-service-card { min-height: 480px; padding: 28px 22px; }
  .br-steps { grid-template-columns: 1fr; border-top: 0; }
  .br-steps li { padding: 28px 0 0 36px; border-top: 2px solid var(--br-black); }
  .br-steps li::before { top: -8px; }
  .br-steps li > span { margin-bottom: 12px; }
  .br-about-preview figure img { box-shadow: 12px 12px 0 var(--br-red); }
  .br-section-heading { display: block; }
  .br-section-heading > a { display: inline-block; margin-top: 18px; }
  .br-gallery { grid-template-columns: 1fr 1fr; gap: 6px; }
  .br-gallery img { aspect-ratio: 1/1; }
  .br-values > .br-shell, .br-feature-grid, .br-guide-grid { grid-template-columns: 1fr; }
  .br-values article, .br-feature-grid article, .br-guide-grid article { min-height: auto; padding: 38px 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .br-values h2, .br-feature-grid h2, .br-guide-grid h2 { margin-top: 36px; }
  .br-feature-grid, .br-guide-grid { border-bottom: 0; }
  .br-feature-grid article, .br-guide-grid article { border-right: 0 !important; border-bottom: 1px solid var(--br-grey-300) !important; }
  .br-warranty { align-items: flex-start; flex-direction: column; }
  .br-product-list article, .br-product-list article:nth-child(even) { grid-template-columns: 1fr; }
  .br-product-list article:nth-child(even) figure { order: 0; }
  .br-product-list figure { min-height: 300px; }
  .br-product-list article > div { padding: 36px 24px 46px; }
  .br-timeline article { padding: 30px 0; gap: 15px; grid-template-columns: 54px 1fr; }
  .br-contact-list a, .br-contact-list p { word-break: break-word; }
  .br-config-heading { padding: 40px 0; }
  .br-footer { padding-bottom: 45px; }
  .br-footer__grid { grid-template-columns: 1fr 1fr; }
  .br-footer__brand { grid-column: 1 / -1; }
  .br-footer__grid > div:last-child { grid-column: auto; }
  .br-footer__legal { align-items: flex-start; flex-direction: column; }
  .br-mobile-actions { position: fixed; z-index: 1500; right: 0; bottom: 0; left: 0; display: grid; min-height: 58px; grid-template-columns: 1fr 1fr; color: var(--br-white); background: var(--br-black); box-shadow: 0 -4px 18px rgba(0,0,0,.2); }
  .br-mobile-actions a { display: flex; padding: 10px; gap: 8px; align-items: center; justify-content: center; font-family: var(--br-display); font-size: 14px; font-weight: 900; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
  .br-mobile-actions a:first-child { background: var(--br-red); }
  .br-cookie { align-items: flex-end; padding: 0; }
  .br-cookie__panel { max-height: 88vh; overflow-y: auto; }
  .br-cookie__actions { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .br-gallery, .br-footer__grid { grid-template-columns: 1fr; }
  .br-footer__brand { grid-column: auto; }
  .br-footer__grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .br-header, .br-footer, .br-mobile-actions, .br-cookie, .br-actions { display: none !important; }
  body.berace4 { color: #000; background: #fff; padding: 0; }
  .br-page-hero { min-height: 0; padding: 30px 0; color: #000; background: #fff; }
  .br-page-hero::before { display: none; }
}
