/* MASCI — styles communs : carte, épicerie, traiteur et contact */
:root {
  --aw-bg: #0a0807;
  --aw-bg-2: #110f0d;
  --aw-bg-3: #1a1715;
  --aw-fg: #f5efe6;
  --aw-fg-2: #b9b1a4;
  --aw-fg-3: #958d84;
  --aw-rule: rgba(245, 239, 230, .12);
  --aw-rule-strong: rgba(245, 239, 230, .24);
  --aw-gold: #d6a55a;
  --aw-gold-soft: #e6c089;
  --aw-bord: #6b3f37;
  --aw-cream: #f5efe6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip;
  background: var(--aw-bg);
  color: var(--aw-fg);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

::selection {
  background: var(--aw-bord);
  color: var(--aw-fg);
}

:focus-visible {
  outline: 2px solid var(--aw-gold-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--aw-fg);
  color: var(--aw-bg);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Navigation */
.tr-subnav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px 48px;
  border-bottom: 1px solid var(--aw-rule);
  background: rgba(10, 8, 7, .84);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
}

.tr-subnav__brand {
  display: flex;
  align-items: center;
  width: 112px;
}

.tr-subnav__brand img {
  width: 112px;
  height: auto;
  filter: invert(95%) sepia(8%) saturate(189%) hue-rotate(353deg) brightness(101%) contrast(89%);
}

.tr-subnav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tr-subnav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--aw-fg-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.tr-subnav__links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--aw-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.tr-subnav__links a:hover,
.tr-subnav__links a.is-active {
  color: var(--aw-gold);
}

.tr-subnav__links a:hover::after,
.tr-subnav__links a.is-active::after {
  transform: scaleX(1);
}

.tr-subnav__cta {
  padding: 10px 18px !important;
  border: 1px solid var(--aw-gold);
  color: var(--aw-gold) !important;
}

.tr-subnav__cta::after {
  display: none;
}

.tr-subnav__cta:hover {
  background: var(--aw-gold);
  color: var(--aw-bg) !important;
}

.tr-subnav__cta:active,
.tr-hero__cta:active,
.tr-submit:active {
  transform: translateY(1px);
}

.tr-subnav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--aw-fg);
  cursor: pointer;
}

.tr-subnav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.pg-navmenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(10, 8, 7, .98);
  opacity: 0;
  transition: opacity 260ms cubic-bezier(.2, .7, .2, 1), visibility 260ms;
}

.pg-navmenu.is-open {
  visibility: visible;
  opacity: 1;
}

.pg-navmenu__close {
  position: absolute;
  top: 18px;
  right: 24px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--aw-fg);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.pg-navmenu > a {
  padding: 8px 0;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 9vw, 46px);
  font-weight: 300;
  transition: color 220ms ease;
}

.pg-navmenu > a:hover,
.pg-navmenu > a.is-active {
  color: var(--aw-gold);
}

.pg-navmenu__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 40px);
  margin-top: 40px;
  color: var(--aw-fg-3);
  font-size: 10px;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.pg-navmenu__meta a {
  color: var(--aw-gold);
}

/* Hero */
.tr-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 190px 48px 110px;
  border-bottom: 1px solid var(--aw-rule);
}

.tr-hero--compact {
  min-height: 76svh;
}

.tr-hero__bg-text {
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  color: rgba(214, 165, 90, .045);
  font-family: "Cormorant Garamond", serif;
  font-size: 30vw;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: .82;
  pointer-events: none;
  user-select: none;
}

.tr-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: end;
  gap: clamp(48px, 7vw, 108px);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.tr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--aw-fg-3);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tr-breadcrumb a {
  color: var(--aw-fg-2);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.tr-breadcrumb a:hover {
  color: var(--aw-gold);
  text-decoration-color: currentColor;
}

.tr-hero__eyebrow,
.tr-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--aw-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.tr-hero__eyebrow::before,
.tr-section__eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .58;
}

.tr-section__head:not(.tr-section__head--left) .tr-section__eyebrow::after,
.tr-band .tr-section__eyebrow::after {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .58;
}

.tr-hero__title {
  max-width: 950px;
  margin: 0;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 118px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: .95;
}

.tr-hero__title em,
.tr-section__title em {
  color: var(--aw-gold);
  font-style: italic;
  font-weight: 400;
}

.tr-hero__lead {
  max-width: 520px;
  margin: 0 0 36px;
  color: var(--aw-fg-2);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.tr-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 26px;
  border: 1px solid var(--aw-gold);
  background: transparent;
  color: var(--aw-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: background-color 240ms ease, color 240ms ease, transform 120ms ease;
}

.tr-hero__cta:hover {
  background: var(--aw-gold);
  color: var(--aw-bg);
}

.tr-hero__cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.tr-hero__cta--center {
  margin-top: 32px;
}

/* Sections */
.tr-section {
  position: relative;
  padding: 124px 48px;
}

.tr-section--tight {
  padding-block: 96px;
}

.tr-section--alt,
.tr-section--contact {
  background: var(--aw-bg-2);
}

.tr-section--contact {
  border-top: 1px solid var(--aw-rule);
}

.tr-section__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.tr-section__head {
  max-width: 760px;
  margin: 0 auto 76px;
  text-align: center;
}

.tr-section__head--left {
  margin-left: 0;
  text-align: left;
}

.tr-section__head--compact {
  margin-bottom: 52px;
}

.tr-section__title {
  margin: 0 0 24px;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1;
}

.tr-section__sub {
  max-width: 650px;
  margin: 0 auto;
  color: var(--aw-fg-2);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.tr-section__head--left .tr-section__sub {
  margin-left: 0;
}

.tr-split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.tr-inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.tr-text-link {
  color: var(--aw-fg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: underline;
  text-decoration-color: var(--aw-gold);
  text-underline-offset: 6px;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.tr-text-link:hover {
  color: var(--aw-gold);
}

.tr-text-link--spaced {
  display: inline-block;
  margin-top: 24px;
}

.tr-comptoir {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.tr-comptoir__media {
  position: sticky;
  top: 110px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--aw-rule);
  background: var(--aw-bg-3);
}

.tr-comptoir__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr-comptoir__media-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 11px 16px;
  border: 1px solid var(--aw-gold);
  background: var(--aw-bg);
  color: var(--aw-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.tr-comptoir__lists {
  display: grid;
  gap: 48px;
}

.tr-list__title {
  margin: 0 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--aw-rule-strong);
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
}

.tr-list__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tr-list__items li {
  padding: 6px 0;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
}

.tr-list__items li small {
  display: block;
  margin-top: 5px;
  color: var(--aw-fg-3);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tr-prods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--aw-rule);
  background: var(--aw-rule);
}

.tr-prod {
  padding: 40px;
  background: var(--aw-bg);
  transition: background-color 240ms ease;
}

.tr-prod:hover {
  background: var(--aw-bg-3);
}

.tr-prod__name {
  margin: 0 0 8px;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
}

.tr-prod__meta {
  margin: 0 0 16px;
  color: var(--aw-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.tr-prod__desc {
  margin: 0;
  color: var(--aw-fg-2);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

/* Contact et formulaires */
.tr-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.tr-contact__lead {
  margin: 0 0 40px;
  color: var(--aw-fg-2);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

.tr-contact__rows {
  display: grid;
  border-top: 1px solid var(--aw-rule);
}

.tr-contact__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--aw-rule);
}

.tr-contact__key {
  color: var(--aw-fg-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.tr-contact__val {
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  transition: color 220ms ease;
}

a.tr-contact__val:hover {
  color: var(--aw-gold);
}

.tr-note,
.tr-form-note {
  color: var(--aw-fg-3);
  font-size: 12px;
  line-height: 1.6;
}

.tr-note {
  margin: 22px 0 0;
}

.tr-contact__form {
  padding: 48px 44px;
  border: 1px solid var(--aw-rule);
  background: var(--aw-bg);
}

.tr-contact__form h2,
.tr-contact__form h3 {
  margin: 0 0 12px;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
}

.tr-contact__form h2 em,
.tr-contact__form h3 em {
  color: var(--aw-gold);
  font-style: italic;
  font-weight: 400;
}

.tr-contact__form > p {
  margin: 0 0 32px;
  color: var(--aw-fg-3);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.tr-field {
  display: block;
  margin-bottom: 22px;
}

.tr-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--aw-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.tr-field input,
.tr-field select,
.tr-field textarea {
  width: 100%;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--aw-rule-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--aw-fg);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .01em;
}

.tr-field textarea {
  resize: vertical;
}

.tr-field input::placeholder,
.tr-field textarea::placeholder {
  color: var(--aw-fg-3);
}

.tr-field input:focus-visible,
.tr-field select:focus-visible,
.tr-field textarea:focus-visible {
  border-color: var(--aw-gold);
  outline: 2px solid var(--aw-gold);
  outline-offset: 5px;
}

.tr-field select option {
  background: var(--aw-bg);
  color: var(--aw-fg);
}

.tr-field--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tr-submit {
  width: 100%;
  margin-top: 16px;
  padding: 18px 28px;
  border: 1px solid var(--aw-gold);
  border-radius: 0;
  background: transparent;
  color: var(--aw-gold);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  transition: background-color 240ms ease, color 240ms ease, transform 120ms ease;
}

.tr-submit:hover {
  background: var(--aw-gold);
  color: var(--aw-bg);
}

.tr-contact__form > .tr-form-note {
  margin: 16px 0 0;
  text-align: center;
}

.tr-map {
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--aw-rule);
}

.tr-google-proof {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  padding: 22px 26px;
  border: 1px solid var(--aw-rule-strong);
  background: var(--aw-bg);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.tr-google-proof:hover {
  border-color: var(--aw-gold);
  background: var(--aw-bg-3);
}

.tr-google-proof__stars {
  color: var(--aw-gold);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: .16em;
}

.tr-google-proof__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.tr-google-proof__copy strong {
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
}

.tr-google-proof__copy small {
  color: var(--aw-fg-3);
  font-size: 10px;
  letter-spacing: .08em;
}

.tr-google-proof__link {
  color: var(--aw-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tr-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(.22) saturate(.9) brightness(.92);
}

.tr-band {
  text-align: center;
}

.tr-band__phone {
  display: block;
  margin: 0;
  color: var(--aw-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 82px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1;
}

.tr-band__note {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--aw-fg-2);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

/* Footer */
.tr-footer {
  padding: 78px 48px 30px;
  border-top: 1px solid var(--aw-rule);
  background: #050403;
  color: var(--aw-fg-3);
}

.tr-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--aw-rule);
}

.tr-footer__brand img {
  width: 150px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.tr-footer__brand p {
  max-width: 330px;
  margin: 0;
  color: var(--aw-fg-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}

.tr-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tr-footer__col h2 {
  margin: 0 0 18px;
  color: var(--aw-fg-3);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.tr-footer__col p,
.tr-footer__col > a {
  margin: 0 0 7px;
  color: var(--aw-fg-2);
  font-size: 13px;
  line-height: 1.5;
}

.tr-footer__col a {
  transition: color 220ms ease;
}

.tr-footer__col a:hover,
.tr-footer__col a[aria-current="page"] {
  color: var(--aw-gold);
}

.tr-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 28px auto 0;
  color: var(--aw-fg-3);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tr-footer__base a {
  color: var(--aw-gold);
}

.tr-footer__ghost {
  padding: 0;
  border: 0;
  background: none;
  color: var(--aw-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease;
}

.tr-footer__ghost:hover {
  color: var(--aw-gold-soft);
}

/* Pages légales : politique cookies */
.legal {
  max-width: 74ch;
}

.legal h2 {
  margin: 56px 0 18px;
  color: var(--aw-fg);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 400;
  line-height: 1.14;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  margin: 0 0 18px;
  color: var(--aw-fg-2);
  font-size: 15px;
  line-height: 1.75;
}

.legal strong {
  color: var(--aw-fg);
  font-weight: 600;
}

.legal em {
  color: var(--aw-gold-soft);
  font-style: italic;
}

.legal__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.legal__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--aw-fg-2);
  font-size: 15px;
  line-height: 1.7;
}

.legal__list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--aw-gold);
  content: "";
  opacity: .7;
}

.legal__table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  border: 1px solid var(--aw-rule);
}

.legal__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal__caption {
  padding: 14px 18px;
  border-bottom: 1px solid var(--aw-rule);
  color: var(--aw-fg-3);
  font-size: 12px;
  text-align: left;
}

.legal__table th {
  padding: 14px 18px;
  border-bottom: 1px solid var(--aw-rule-strong);
  color: var(--aw-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-align: left;
  text-transform: uppercase;
}

.legal__table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--aw-rule);
  color: var(--aw-fg-2);
  line-height: 1.6;
  vertical-align: top;
}

.legal__table tr:last-child td {
  border-bottom: 0;
}

.legal__table code {
  color: var(--aw-fg);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.legal__note {
  color: var(--aw-fg-3) !important;
  font-size: 13px !important;
}

/* Champ légal non renseigné : volontairement criard, pour qu'une page
   incomplète ne puisse pas partir en production sans être vue. */
.legal__todo {
  padding: 2px 8px;
  background: #b3261e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal__hint {
  color: var(--aw-fg-3);
  font-size: 12px;
}

.legal__table th[scope="row"] {
  color: var(--aw-fg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
}

.legal__actions {
  margin: 26px 0 28px;
}

.legal__updated {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--aw-rule);
  color: var(--aw-fg-3) !important;
  font-size: 13px !important;
}

@media (max-width: 960px) {
  .tr-subnav {
    min-height: 72px;
    padding: 14px 22px;
  }

  .tr-subnav__brand,
  .tr-subnav__brand img {
    width: 96px;
  }

  .tr-subnav__links {
    display: none;
  }

  .tr-subnav__burger {
    display: inline-flex;
  }

  .tr-hero,
  .tr-hero--compact {
    min-height: auto;
    padding: 148px 22px 76px;
  }

  .tr-hero__inner,
  .tr-comptoir,
  .tr-contact,
  .tr-split-copy {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .tr-comptoir__media {
    position: relative;
    top: 0;
    aspect-ratio: 16 / 10;
  }

  .tr-prods {
    grid-template-columns: 1fr;
  }

  .tr-section {
    padding: 82px 22px;
  }

  .tr-section--tight {
    padding-block: 72px;
  }

  .tr-footer {
    padding: 64px 22px 28px;
  }

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

@media (max-width: 600px) {
  .tr-hero__bg-text {
    display: none;
  }

  .tr-hero__title {
    font-size: clamp(44px, 13vw, 68px);
  }

  .tr-hero__eyebrow,
  .tr-section__eyebrow {
    letter-spacing: .19em;
  }

  .tr-hero__lead,
  .tr-section__sub {
    font-size: 15px;
  }

  .tr-list__items,
  .tr-field--grid {
    grid-template-columns: 1fr;
  }

  .tr-contact__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tr-contact__form {
    padding: 32px 22px;
  }

  .tr-google-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .tr-google-proof__link {
    margin-top: 4px;
  }

  .tr-inline-actions {
    align-items: stretch;
  }

  .tr-inline-actions .tr-hero__cta,
  .tr-inline-actions .tr-text-link {
    width: 100%;
    text-align: center;
  }

  .tr-map iframe {
    height: 340px;
  }

  .tr-footer__grid {
    grid-template-columns: 1fr;
  }

  .tr-footer__base {
    flex-direction: column;
  }
}

@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;
  }
}
