/* Bord & Cabine — Art Déco sombre, émeraude & jade */
:root {
  --em: #0B2620;
  --em-2: #0F2F28;
  --em-3: #071A16;
  --jade: #1F5E4E;
  --jade-2: #2A7461;
  --gold: #D9C38A;
  --gold-a: rgba(217, 195, 138, .42);
  --gold-f: rgba(217, 195, 138, .18);
  --pearl: #EDEBE3;
  --pearl-s: rgba(237, 235, 227, .74);
  --err: #F0A58F;
  --deco: "Poiret One", "Josefin Sans", sans-serif;
  --sans: "Josefin Sans", system-ui, sans-serif;
  --gut: clamp(16px, 4vw, 64px);
  --max: 1240px;
  --s: 14px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--em); color: var(--pearl); font-family: var(--sans); font-weight: 300;
  font-size: clamp(15.5px, .5vw + 13px, 17.5px); line-height: 1.75; overflow-x: hidden;
  background-image:
    repeating-linear-gradient(90deg, rgba(217,195,138,.035) 0 1px, transparent 1px 120px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { font-family: var(--deco); font-weight: 400; margin: 0; line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 3vw + .6rem, 3.3rem); letter-spacing: .04em; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
.bdc-skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--em); padding: 8px 14px; z-index: 100; }
.bdc-skip:focus { left: 8px; }

.bdc-kicker { font-size: .74rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 400; }

/* Stepped deco frame (reusable) */
.bdc-step, .bdc-tile, .bdc-rev__item figure, .bdc-formwrap, .bdc-hero__frame, .bdc-stats {
  position: relative; isolation: isolate;
  background: var(--gold-a);
  clip-path: polygon(var(--s) 0, calc(100% - var(--s)) 0, calc(100% - var(--s)) var(--s), 100% var(--s), 100% calc(100% - var(--s)), calc(100% - var(--s)) calc(100% - var(--s)), calc(100% - var(--s)) 100%, var(--s) 100%, var(--s) calc(100% - var(--s)), 0 calc(100% - var(--s)), 0 var(--s), var(--s) var(--s));
}
.bdc-tile::before, .bdc-rev__item figure::before, .bdc-formwrap::before, .bdc-hero__frame::before, .bdc-stats::before {
  content: ""; position: absolute; inset: 1px; z-index: -1; background: var(--em-2);
  clip-path: polygon(var(--s) 0, calc(100% - var(--s)) 0, calc(100% - var(--s)) var(--s), 100% var(--s), 100% calc(100% - var(--s)), calc(100% - var(--s)) calc(100% - var(--s)), calc(100% - var(--s)) 100%, var(--s) 100%, var(--s) calc(100% - var(--s)), 0 calc(100% - var(--s)), 0 var(--s), var(--s) var(--s));
}
.bdc-tile::after, .bdc-rev__item figure::after, .bdc-formwrap::after, .bdc-hero__frame::after {
  content: ""; position: absolute; inset: calc(var(--s) + 6px); border: 1px solid var(--gold-f); pointer-events: none; z-index: -1;
}

/* Buttons */
.bdc-btn {
  display: inline-flex; align-items: center; justify-content: center; font: 400 .82rem/1 var(--sans);
  letter-spacing: .24em; text-transform: uppercase; padding: 17px 28px 15px; color: var(--pearl); text-decoration: none;
  background: var(--jade); border: 1px solid var(--gold-a); outline: 1px solid var(--gold-f); outline-offset: 3px; cursor: pointer;
  transition: background .3s, color .3s, outline-offset .3s;
}
.bdc-btn:hover { background: var(--jade-2); outline-offset: 5px; }
.bdc-btn:focus-visible { outline: 1px solid var(--gold); outline-offset: 5px; }
.bdc-btn--line { background: transparent; }
.bdc-btn--line:hover { background: rgba(31, 94, 78, .5); }

/* Header — symmetric */
.bdc-header { position: sticky; top: 0; z-index: 50; background: var(--em-3); border-bottom: 1px solid var(--gold-a); }
.bdc-header::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 9px; height: 9px; background: var(--em-3); border: 1px solid var(--gold-a); transform: translateX(-50%) rotate(45deg); }
.bdc-header__in { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.bdc-nav { display: contents; }
.bdc-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(16px, 2.2vw, 36px); align-items: center; }
.bdc-nav__l { grid-column: 1; grid-row: 1; justify-content: flex-end; padding-right: clamp(20px, 3vw, 48px) !important; }
.bdc-nav__r { grid-column: 3; grid-row: 1; justify-content: flex-start; padding-left: clamp(20px, 3vw, 48px) !important; }
.bdc-nav a { text-decoration: none; font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--pearl-s); transition: color .3s; }
.bdc-nav a:hover { color: var(--gold); }
.bdc-nav__cta { border: 1px solid var(--gold-a); padding: 10px 14px 8px; color: var(--pearl) !important; }
.bdc-logo { grid-column: 2; grid-row: 1; text-decoration: none; display: grid; justify-items: center; line-height: 1; font-family: var(--deco); position: relative; padding: 0 18px; }
.bdc-logo::before, .bdc-logo::after { content: ""; position: absolute; top: 50%; width: 12px; height: 1px; background: var(--gold); }
.bdc-logo::before { left: 0; } .bdc-logo::after { right: 0; }
.bdc-logo__top, .bdc-logo__bot { font-size: 1.05rem; letter-spacing: .42em; text-transform: uppercase; padding-left: .42em; }
.bdc-logo__amp { font-size: 1.1rem; color: var(--gold); margin: 2px 0; }
.bdc-burger { display: none; }

/* Hero */
.bdc-hero { position: relative; min-height: min(92vh, 900px); display: grid; place-items: center; padding: clamp(80px, 10vw, 140px) var(--gut) clamp(100px, 10vw, 140px); overflow: hidden; }
.bdc-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.bdc-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 50% 45%, rgba(11,38,32,.15), rgba(7,26,22,.8) 75%); }
.bdc-hero__frame { --s: 22px; max-width: 800px; width: 100%; text-align: center; padding: clamp(104px, 8.3vw + 44px, 140px) clamp(24px, 6vw, 80px) clamp(44px, 5vw, 64px); background: var(--gold-a); }
.bdc-hero__frame::before { background: rgba(7, 26, 22, .72); }
.bdc-hero__fan { position: absolute; left: 50%; top: 22px; transform: translateX(-50%); width: clamp(120px, 16vw, 180px); height: clamp(62px, 8.3vw, 94px); color: var(--gold); }
.bdc-hero h1 { font-size: clamp(2.3rem, 5vw + .4rem, 4.8rem); letter-spacing: .05em; margin-bottom: 1.4rem; }
.bdc-hero h1 span { display: block; font-family: var(--sans); font-size: clamp(.78rem, .6vw + .5rem, 1rem); letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; font-weight: 300; }
.bdc-hero__sub { color: var(--pearl-s); max-width: 36em; margin: 0 auto 2rem; }
.bdc-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.bdc-hero__band { position: absolute; left: 0; right: 0; bottom: 28px; margin: 0; display: flex; justify-content: center; gap: clamp(16px, 5vw, 72px); font-family: var(--deco); letter-spacing: .3em; text-transform: uppercase; font-size: .8rem; color: var(--pearl-s); }
.bdc-hero__band span + span::before { content: "◆"; font-size: .45rem; color: var(--gold); margin-right: clamp(16px, 5vw, 72px); vertical-align: middle; }

/* Sections */
.bdc-section { max-width: var(--max); margin: 0 auto; padding: clamp(90px, 11vw, 160px) var(--gut) 0; }
.bdc-head { text-align: center; max-width: 780px; margin: 0 auto clamp(44px, 6vw, 76px); }
.bdc-head__fan { width: 120px; height: 62px; color: var(--gold); margin: 0 auto 18px; display: block; }
.bdc-head__rule { width: 220px; height: 16px; color: var(--gold); margin: 0 auto 22px; display: block; }
.bdc-head__lead { color: var(--pearl-s); margin-top: 1.4rem; }

/* About */
.bdc-about__cols { display: grid; grid-template-columns: 1fr 1px 1fr; gap: clamp(24px, 4vw, 64px); color: var(--pearl-s); }
.bdc-about__cols::before { content: ""; grid-column: 2; grid-row: 1; background: linear-gradient(var(--gold-a), transparent); }
.bdc-about__cols p:first-child { grid-column: 1; grid-row: 1; }
.bdc-about__cols p:last-child { grid-column: 3; grid-row: 1; }
.bdc-stats { --s: 16px; margin: clamp(48px, 6vw, 80px) 0 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.bdc-stats::before { background: var(--em); }
.bdc-stats div { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 16px 30px; position: relative; }
.bdc-stats div + div::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--gold-a); }
.bdc-stats dd { margin: 0; font-family: var(--deco); font-size: clamp(2.2rem, 3.6vw, 3.4rem); line-height: 1; color: var(--pearl); }
.bdc-stats dt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

/* Services 2×3 */
.bdc-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.bdc-tile { text-align: center; padding: 48px clamp(24px, 3vw, 40px) 44px; transition: background .4s; }
.bdc-tile:hover { background: var(--gold); }
.bdc-tile__emoji { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 26px; font-size: 1.7rem; position: relative; }
.bdc-tile__emoji::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--gold-a); transform: rotate(45deg); }
.bdc-tile h3 { font-size: 1.35rem; letter-spacing: .08em; margin-bottom: 14px; }
.bdc-tile h3::after { content: ""; display: block; width: 40px; height: 1px; background: var(--gold-a); margin: 14px auto 0; }
.bdc-tile p { color: var(--pearl-s); font-size: .95rem; margin: 0; }

/* Horizontal accordion */
.bdc-acc { display: flex; gap: 8px; height: clamp(440px, 44vw, 580px); }
.bdc-acc__panel { position: relative; flex: 1 1 0; min-width: 62px; overflow: hidden; border: 1px solid var(--gold-f); transition: flex-grow .7s cubic-bezier(.6, 0, .2, 1); background: var(--em-3); }
.bdc-acc__panel.is-open { flex-grow: 5.5; }
.bdc-acc__panel::after { content: ""; position: absolute; inset: 10px; border: 1px solid var(--gold-f); pointer-events: none; }
.bdc-acc__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.7); transition: filter .7s; }
.bdc-acc__panel.is-open .bdc-acc__img { filter: brightness(.72) saturate(.9); }
.bdc-acc__panel.is-open::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,26,22,.92) 10%, transparent 60%); z-index: 1; }
.bdc-acc__h { position: absolute; inset: 0; z-index: 2; font-size: inherit; }
.bdc-acc__btn { width: 100%; height: 100%; background: none; border: 0; color: var(--pearl); cursor: pointer; padding: 0; position: relative; font: inherit; }
.bdc-acc__btn span { position: absolute; left: 50%; bottom: 36px; writing-mode: vertical-rl; transform: translateX(-50%) rotate(180deg); font-family: var(--deco); font-size: 1.15rem; letter-spacing: .14em; white-space: nowrap; transition: color .3s; }
.bdc-acc__btn:hover span { color: var(--gold); }
.bdc-acc__btn:focus-visible { outline: 1px solid var(--gold); outline-offset: -6px; }
.bdc-acc__panel.is-open .bdc-acc__btn { cursor: default; }
.bdc-acc__panel.is-open .bdc-acc__btn span { writing-mode: horizontal-tb; transform: none; left: clamp(28px, 3vw, 44px); bottom: auto; top: clamp(28px, 3vw, 44px); font-size: clamp(1.6rem, 2.2vw, 2.3rem); white-space: normal; text-align: left; }
.bdc-acc__body { position: absolute; left: clamp(28px, 3vw, 44px); right: clamp(28px, 3vw, 44px); bottom: clamp(28px, 3vw, 44px); z-index: 3; max-width: 38em; }
.bdc-acc__body p { margin: 0; color: var(--pearl); border-left: 1px solid var(--gold); padding-left: 18px; }
.bdc-acc__panel.is-open .bdc-acc__body { animation: bdcFade .7s .25s both; }
@keyframes bdcFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Reviews — stepped frames */
.bdc-rev { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); align-items: start; }
.bdc-rev__item:nth-child(2) { margin-top: clamp(0px, 4vw, 56px); }
.bdc-rev__item figure { --s: 18px; margin: 0; text-align: center; padding: 48px clamp(24px, 2.6vw, 38px) 40px; }
.bdc-rev__item img { width: 104px; height: 104px; object-fit: cover; margin: 0 auto 22px; clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%); }
.bdc-rev__item blockquote { margin: 0 0 22px; }
.bdc-rev__item blockquote p { color: var(--pearl-s); font-size: .98rem; }
.bdc-stars { color: var(--gold); letter-spacing: .3em; font-size: .85rem; margin-bottom: 12px !important; }
.bdc-stars__off { opacity: .3; }
.bdc-rev__item figcaption { display: grid; gap: 4px; }
.bdc-rev__item figcaption strong { font-family: var(--deco); font-weight: 400; font-size: 1.3rem; letter-spacing: .14em; }
.bdc-rev__item figcaption span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* Contact */
.bdc-contact { padding-bottom: clamp(90px, 11vw, 150px); }
.bdc-contact__grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.bdc-formwrap { --s: 20px; padding: clamp(36px, 4vw, 56px); }
.bdc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; position: relative; }
.bdc-f { margin-bottom: 10px; min-width: 0; }
.bdc-f--full { grid-column: 1 / -1; }
.bdc-f label { display: block; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.bdc-f input, .bdc-f select, .bdc-f textarea {
  width: 100%; font: 300 1rem/1.5 var(--sans); color: var(--pearl); background: rgba(237, 235, 227, .04);
  border: 1px solid var(--gold-f); border-radius: 0; padding: 12px 14px 10px; transition: border-color .3s, background .3s;
}
.bdc-f input[type="date"] { color-scheme: dark; }
.bdc-f select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23D9C38A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.bdc-f select option { background: var(--em); color: var(--pearl); }
.bdc-f textarea { resize: vertical; }
.bdc-f ::placeholder { color: rgba(237, 235, 227, .4); }
.bdc-f input:focus, .bdc-f select:focus, .bdc-f textarea:focus { outline: none; border-color: var(--gold); background: rgba(237, 235, 227, .07); }
.bdc-f.is-invalid input, .bdc-f.is-invalid select, .bdc-f.is-invalid textarea { border-color: var(--err); }
.bdc-err { color: var(--err); font-size: .8rem; line-height: 1.3; margin: 4px 0 0; min-height: 1.3em; }
.bdc-f--check { display: grid; grid-template-columns: 22px 1fr; gap: 12px; }
.bdc-f--check input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--jade); }
.bdc-f--check label { text-transform: none; letter-spacing: 0; font-size: .88rem; color: var(--pearl-s); margin: 0; }
.bdc-f--check label a { color: var(--gold); }
.bdc-f--check .bdc-err { grid-column: 2; }
.bdc-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin: 8px 0 0; }
.bdc-form__foot p { margin: 0; font-size: .8rem; color: var(--pearl-s); }
.bdc-success { grid-column: 1 / -1; text-align: center; padding: 20px 10px; }
.bdc-success svg { width: 110px; height: 57px; color: var(--gold); margin: 0 auto 14px; display: block; }
.bdc-success__t { font-family: var(--deco); font-size: 1.8rem; letter-spacing: .08em; margin-bottom: 8px; }
.bdc-success p:last-child { color: var(--pearl-s); margin: 0; }
.bdc-info { display: grid; gap: 0; border-top: 1px solid var(--gold-a); border-bottom: 1px solid var(--gold-a); }
.bdc-info__block { padding: 22px 4px; text-align: center; }
.bdc-info__block + .bdc-info__block { border-top: 1px solid var(--gold-f); }
.bdc-info h3 { font-size: 1.05rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.bdc-info address, .bdc-info p { font-style: normal; margin: 0; color: var(--pearl-s); }
.bdc-info a { color: var(--pearl); text-decoration: none; border-bottom: 1px solid var(--gold-a); word-break: break-word; }

/* Footer */
.bdc-footer { background: var(--em-3); border-top: 1px solid var(--gold-a); text-align: center; padding: 64px var(--gut) 40px; }
.bdc-footer__fan { width: 140px; height: 73px; color: var(--gold); display: block; margin: 0 auto 18px; }
.bdc-footer__brand { font-family: var(--deco); font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.bdc-footer__brand span { color: var(--gold); }
.bdc-footer__line { color: var(--pearl-s); max-width: 40em; margin: 0 auto 18px; font-size: .92rem; }
.bdc-footer__addr { font-style: normal; font-size: .9rem; margin-bottom: 24px; }
.bdc-footer a { text-decoration: none; border-bottom: 1px solid var(--gold-a); }
.bdc-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; padding: 20px 0; border-top: 1px solid var(--gold-f); border-bottom: 1px solid var(--gold-f); max-width: 720px; margin: 0 auto 20px; }
.bdc-footer__copy { font-size: .78rem; color: var(--pearl-s); margin: 0; }

/* Cookie — centered deco band */
.bdc-cookie {
  position: fixed; left: 50%; bottom: 16px; z-index: 60; width: min(760px, calc(100% - 32px)); transform: translate(-50%, 140%);
  background: var(--em-3); border: 1px solid var(--gold-a); outline: 1px solid var(--gold-f); outline-offset: 4px;
  padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: center; text-align: center;
  transition: transform .6s ease; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.bdc-cookie[hidden] { display: none; }
.bdc-cookie.is-shown { transform: translate(-50%, 0); }
.bdc-cookie p { margin: 0; font-size: .88rem; color: var(--pearl-s); flex: 1 1 320px; }
.bdc-cookie a { color: var(--gold); }
.bdc-cookie__btns { display: flex; gap: 12px; }
.bdc-cookie .bdc-btn { padding: 13px 20px 11px; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Breakpoints */
@media (max-width: 1024px) {
  .bdc-grid { grid-template-columns: repeat(2, 1fr); }
  .bdc-rev { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .bdc-rev__item:nth-child(2) { margin-top: 0; }
  .bdc-contact__grid { grid-template-columns: 1fr; }
  .bdc-stats { grid-template-columns: repeat(2, 1fr); }
  .bdc-stats div:nth-child(3)::before { display: none; }
}
@media (max-width: 900px) {
  .bdc-header__in { grid-template-columns: 44px 1fr 44px; height: 72px; }
  .bdc-logo { grid-column: 2; justify-self: center; }
  .bdc-burger { display: block; grid-column: 3; grid-row: 1; width: 44px; height: 44px; background: none; border: 1px solid var(--gold-a); position: relative; cursor: pointer; }
  .bdc-burger span { position: absolute; left: 11px; right: 11px; height: 1px; background: var(--gold); transition: transform .3s, opacity .3s; }
  .bdc-burger span:nth-child(1) { top: 15px; } .bdc-burger span:nth-child(2) { top: 21px; } .bdc-burger span:nth-child(3) { top: 27px; }
  .bdc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .bdc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .bdc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .bdc-nav { display: block; position: fixed; inset: 72px 0 0 0; background: var(--em-3); padding: 48px var(--gut); text-align: center; visibility: hidden; opacity: 0; transition: opacity .35s, visibility .35s; overflow-y: auto; }
  .bdc-nav.is-open { visibility: visible; opacity: 1; }
  .bdc-nav ul { flex-direction: column; gap: 26px; padding: 0 !important; }
  .bdc-nav__r { margin-top: 26px !important; }
  .bdc-nav a { font-size: 1rem; }
  .bdc-about__cols { grid-template-columns: 1fr; }
  .bdc-about__cols::before { display: none; }
  .bdc-about__cols p:first-child, .bdc-about__cols p:last-child { grid-column: 1; grid-row: auto; }
  .bdc-acc { flex-direction: column; height: auto; gap: 8px; }
  .bdc-acc__panel { flex: none; min-height: 68px; }
  .bdc-acc__panel.is-open { min-height: 400px; }
  .bdc-acc__h { position: relative; inset: auto; height: 68px; }
  .bdc-acc__panel.is-open .bdc-acc__h { position: absolute; inset: 0; height: auto; }
  .bdc-acc__btn span { writing-mode: horizontal-tb; transform: none; left: 26px; right: 26px; bottom: auto; top: 50%; translate: 0 -50%; text-align: left; white-space: normal; font-size: 1.1rem; }
  .bdc-acc__panel.is-open .bdc-acc__btn span { translate: none; top: 30px; left: 28px; font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .bdc-grid { grid-template-columns: 1fr; }
  .bdc-form { grid-template-columns: 1fr; }
  .bdc-hero__frame { --s: 14px; }
  .bdc-hero__band { font-size: .62rem; letter-spacing: .18em; gap: 10px; }
  .bdc-hero__band span + span::before { margin-right: 10px; }
  .bdc-stats div { padding: 28px 8px 22px; }
  .bdc-stats dt { letter-spacing: .12em; }
  .bdc-cookie__btns { width: 100%; }
  .bdc-cookie__btns .bdc-btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
