/* BG style: Architecture méditerranéenne éditoriale — ivoire papier, charbon architectural,
   champagne d'Atlas, lignes éditoriales. Propriétés logiques partout pour un RTL réel. */

:root {
  --ivory: #f4f0e8;
  --sand: #e7dfd1;
  --charcoal: #20211f;
  --champagne: #c8a96b;
  --olive: #4d5a45;

  --line-dark: rgb(32 33 31 / 12%);
  --line-light: rgb(244 240 232 / 15%);

  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-arabic: 'Noto Kufi Arabic', system-ui, sans-serif;

  --max: 1280px;
  --header-h: 76px;
}

/* ── Base ─────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[dir='rtl'] body,
html[dir='rtl'] button,
html[dir='rtl'] input,
html[dir='rtl'] select,
html[dir='rtl'] textarea { font-family: var(--font-arabic); }

a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { font: inherit; }
button, a { cursor: pointer; }
button { border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

::selection { background: var(--champagne); color: var(--charcoal); }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

/* Repères purement numériques : « 01 / 05 » doit garder son ordre même en RTL.
   À poser sur un élément en ligne : sur une boîte positionnée, `direction` inverserait
   aussi la résolution des propriétés logiques (inset-inline-end). */
.ltr-lock { direction: ltr; unicode-bidi: isolate; }

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

.skip-link {
  position: fixed; inset-inline-start: 1rem; top: -4rem; z-index: 99;
  background: var(--ivory); color: var(--charcoal);
  border: 1px solid var(--charcoal); padding: 0.75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Typographie éditoriale ───────────────────────────────────────────── */

.kicker {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 10px; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--olive);
}
.kicker::before { content: ''; display: block; width: 2rem; height: 1px; background: currentColor; flex: none; }
.kicker--champagne { color: var(--champagne); }
.kicker--hero { letter-spacing: 0.3em; color: var(--champagne); margin-bottom: 1.25rem; }

.section-title {
  margin-top: 1.25rem;
  white-space: pre-line;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.section-text {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: rgb(32 33 31 / 60%);
  max-width: 24rem;
}

.link-arrow {
  margin-top: 2rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive); transition: color 0.2s;
}
.link-arrow:hover { color: var(--champagne); }
.link-arrow svg { width: 15px; height: 15px; }

.rule-cta {
  margin-top: 2rem;
  display: inline-flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid var(--champagne); padding-bottom: 0.5rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transition: color 0.2s;
}
.rule-cta:hover { color: var(--olive); }
.rule-cta svg { width: 15px; height: 15px; }
.rule-cta--light:hover { color: var(--champagne); }

/* ── Boutons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 15px; height: 15px; flex: none; }

.btn--solid { background: var(--charcoal); color: var(--ivory); }
.btn--solid:hover { background: var(--champagne); color: var(--charcoal); }

.btn--outline { border: 1px solid rgb(32 33 31 / 25%); color: var(--charcoal); }
.btn--outline:hover { border-color: var(--champagne); background: rgb(200 169 107 / 10%); }

/* Variantes lisibles sur fond charbon (le fond sombre annule les variantes ci-dessus). */
.btn--solid-light { background: var(--champagne); color: var(--charcoal); }
.btn--solid-light:hover { background: var(--ivory); }

.btn--outline-light { border: 1px solid rgb(244 240 232 / 30%); color: var(--ivory); }
.btn--outline-light:hover { border-color: var(--champagne); color: var(--champagne); background: rgb(200 169 107 / 10%); }

/* ── En-tête ──────────────────────────────────────────────────────────── */

.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  background: rgb(32 33 31 / 85%);
  backdrop-filter: blur(24px);
  color: var(--ivory);
}

.nav-shell {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: 1.25rem;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
/* Le monogramme est plus haut que large (ratio ≈ 0.87) : on cale la hauteur, la largeur suit. */
.brand-mark { height: 3rem; width: auto; }
.brand-word {
  display: none;
  border-inline-start: 1px solid rgb(244 240 232 / 25%);
  padding-inline-start: 0.75rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em; line-height: 1.4;
  color: rgb(244 240 232 / 70%);
}

.site-nav { display: none; flex-direction: column; gap: 1.25rem; }
.site-nav.is-open {
  display: flex;
  position: absolute; inset-inline: 1rem; top: 84px;
  background: var(--charcoal); padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 50%);
}
.site-nav a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgb(244 240 232 / 75%); transition: color 0.2s;
}
.site-nav a:hover { color: var(--champagne); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.lang-switch { display: flex; align-items: center; gap: 0.25rem; font-size: 10px; font-weight: 700; }
.lang-switch--bar {
  display: none;
  border-inline-end: 1px solid rgb(244 240 232 / 20%);
  padding-inline-end: 0.75rem;
}
.lang-switch__item {
  padding: 0.25rem 0.5rem; text-transform: uppercase;
  color: rgb(244 240 232 / 50%); transition: color 0.2s;
}
.lang-switch__item:hover { color: var(--ivory); }
.lang-switch__item.is-active { color: var(--champagne); }

/* Bloc réservé au menu mobile : la langue doit rester atteignable sans souris. */
.site-nav__extras {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem;
  margin-top: 0.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgb(244 240 232 / 15%);
  width: 100%;
}
.site-nav__extras-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgb(244 240 232 / 45%);
}
.lang-switch--stacked { gap: 0.5rem; font-size: 12px; }
.lang-switch--stacked .lang-switch__item { padding: 0.35rem 0.6rem; border: 1px solid rgb(244 240 232 / 20%); }

.nav-toggle { display: inline-flex; padding: 0.25rem; color: var(--ivory); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded='true'] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded='true'] .nav-toggle__close { display: block; }

.nav-cta {
  display: none;
  background: var(--champagne); color: var(--charcoal);
  padding: 0.75rem 1rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background-color 0.2s;
}
.nav-cta:hover { background: var(--ivory); }
/* Doit suivre `.nav-cta` pour en annuler le `display: none`. */
.nav-cta--in-menu { display: inline-flex; margin-top: 0.25rem; }

/* ── Notices (retour du formulaire) ───────────────────────────────────── */

.notice {
  position: relative; z-index: 40;
  margin-inline: auto; margin-top: calc(var(--header-h) + 1rem);
  max-width: 42rem;
  border-inline-start: 3px solid var(--olive);
  background: var(--sand);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
}
.notice--error { border-inline-start-color: #a2402f; }
.notice__title { font-weight: 700; }
.notice__text { margin-top: 0.35rem; color: rgb(32 33 31 / 70%); }

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative; overflow: hidden;
  min-height: 680px;
  background: var(--charcoal); color: var(--ivory);
  padding-top: 76px;
}
.hero__media { position: absolute; inset-block: 0; inset-inline-end: 0; width: 100%; }
.hero__media img { height: 100%; width: 100%; object-fit: cover; opacity: 0.85; }
.hero__overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, var(--charcoal), rgb(32 33 31 / 55%), transparent);
}
html[dir='rtl'] .hero__overlay {
  background-image: linear-gradient(to left, var(--charcoal), rgb(32 33 31 / 55%), transparent);
}

.hero__inner {
  position: relative; z-index: 10;
  display: flex; align-items: flex-end;
  min-height: 570px; padding-bottom: 5rem;
}
.hero__content { max-width: 42rem; }

.hero__headline {
  max-width: 36rem;
  white-space: pre-line;
  font-family: var(--font-display); font-weight: 600;
  font-size: 3.75rem; line-height: 0.92; letter-spacing: -0.035em;
}
.hero__sub {
  margin-top: 2rem; max-width: 32rem;
  font-size: 1rem; line-height: 1.75rem; color: rgb(244 240 232 / 70%);
}
.hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__index {
  position: absolute; bottom: 2rem; inset-inline-end: 2rem;
  display: none; align-items: center; gap: 0.75rem;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgb(244 240 232 / 50%);
}
.hero__index::before { content: ''; display: block; width: 1px; height: 2.5rem; background: var(--champagne); }

/* ── Sections ─────────────────────────────────────────────────────────── */

.section { padding-block: 6rem; }
.section--ivory { background: var(--ivory); }
.section--sand { background: var(--sand); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }
.section--olive { background: var(--olive); color: var(--ivory); }
.section--bordered { border-bottom: 1px solid rgb(32 33 31 / 10%); position: relative; overflow: hidden; }

.split { display: grid; gap: 3rem; }

/* Programmes */
.project-card {
  position: relative; display: grid; min-height: 420px;
  overflow: hidden; background: var(--charcoal);
}

.project-card__body {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.75rem; color: var(--ivory);
}
.project-card__badge {
  margin-bottom: 1.25rem; display: inline-block;
  border: 1px solid rgb(200 169 107 / 60%); padding: 0.5rem 0.75rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne);
}
.project-card__name { font-family: var(--font-display); font-weight: 600; font-size: 2.25rem; line-height: 1; }
.project-card__place { margin-top: 1rem; font-size: 0.875rem; color: rgb(244 240 232 / 60%); }
.project-card__cta {
  margin-top: 1.75rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory); transition: color 0.2s;
}
.project-card__cta:hover { color: var(--champagne); }
.project-card__cta svg { width: 14px; height: 14px; }

/* Méthode */
.methode__media { position: relative; }
/* `height: auto` est indispensable : l'attribut height de l'image rendrait la hauteur
   définie, ce qui neutraliserait `aspect-ratio`. */
.methode__media img { aspect-ratio: 4 / 5; width: 100%; height: auto; object-fit: cover; }
.methode__stamp {
  position: absolute; bottom: -1.25rem; inset-inline-end: -1.25rem;
  display: none;
  border: 1px solid var(--champagne); background: var(--sand);
  padding: 1rem 1.25rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal);
}
.methode__body { padding-top: 0.5rem; }
.methode__body .section-title { max-width: 36rem; }
.methode__text {
  margin-top: 1.75rem; max-width: 36rem;
  font-size: 1rem; line-height: 2rem; color: rgb(32 33 31 / 65%);
}

.proof { margin-top: 3.5rem; display: grid; border-top: 1px solid rgb(32 33 31 / 15%); }
.proof__item { border-bottom: 1px solid rgb(32 33 31 / 15%); padding-block: 1.5rem; }
.proof__num { font-family: var(--font-display); font-size: 1.875rem; color: var(--champagne); }
.proof__title { margin-top: 1rem; font-size: 0.875rem; font-weight: 700; }
.proof__text { margin-top: 0.5rem; font-size: 0.75rem; line-height: 1.25rem; color: rgb(32 33 31 / 60%); }

/* Avancement */
.section--charcoal .section-text { color: rgb(244 240 232 / 60%); }
.progress-panel { border: 1px solid var(--line-light); padding: 1.75rem; }
.progress-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.progress-panel__project { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); }
.progress-panel__updated { margin-top: 0.75rem; font-size: 0.875rem; color: rgb(244 240 232 / 50%); }
.progress-panel__value { font-family: var(--font-display); font-size: 3.75rem; line-height: 1; color: var(--champagne); }
.progress-bar { margin-top: 3rem; height: 0.5rem; background: rgb(244 240 232 / 10%); }
.progress-bar__fill { height: 100%; background: var(--champagne); }
.progress-panel__legend {
  margin-top: 1rem; display: flex; justify-content: space-between; gap: 1rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgb(244 240 232 / 50%);
}
.progress-panel__stats {
  margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  border-top: 1px solid var(--line-light); padding-top: 1.25rem;
  font-size: 0.75rem; color: rgb(244 240 232 / 60%);
}
.progress-panel__stats b { display: block; color: var(--ivory); }

/* Financement */
.finance-list { border-block: 1px solid rgb(32 33 31 / 15%); }
.finance-list__row { display: grid; gap: 1rem; padding-block: 1.75rem; }
.finance-list__row + .finance-list__row { border-top: 1px solid rgb(32 33 31 / 15%); }
.finance-list__num { font-family: var(--font-display); font-size: 1.875rem; color: var(--champagne); }
.finance-list__title { font-size: 1.125rem; font-weight: 700; }
.finance-list__text { margin-top: 0.5rem; font-size: 0.875rem; color: rgb(32 33 31 / 60%); }

/* Contact */
.contact__inner { display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; }
.contact__text { margin-top: 1.5rem; font-size: 0.875rem; color: rgb(244 240 232 / 70%); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.contact__address {
  margin-top: 1.25rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-style: normal; font-size: 0.875rem; line-height: 1.6;
  white-space: pre-line;
  color: rgb(244 240 232 / 70%);
}
.contact__address svg { width: 15px; height: 15px; flex: none; margin-top: 0.28rem; color: var(--champagne); }

.contact-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid rgb(244 240 232 / 30%); padding: 0.75rem 1.25rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  transition: border-color 0.2s, color 0.2s;
}
.contact-link:hover { border-color: var(--champagne); color: var(--champagne); }
.contact-link svg { width: 15px; height: 15px; flex: none; }

/* ── Pied ─────────────────────────────────────────────────────────────── */

.site-footer { background: var(--charcoal); color: var(--ivory); padding-block: 2.5rem; }
.footer-shell {
  width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { height: 3.5rem; width: auto; }
.footer-brand__name { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.15em; }
.footer-brand__role {
  margin-top: 0.5rem; font-size: 10px; letter-spacing: 0.17em; text-transform: uppercase;
  color: rgb(244 240 232 / 45%);
}
.footer-contact {
  display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.8125rem; color: rgb(244 240 232 / 70%);
}
.footer-contact__item {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-style: normal; line-height: 1.5;
}
.footer-contact__item svg { width: 14px; height: 14px; flex: none; margin-top: 0.2rem; color: var(--champagne); }
a.footer-contact__item { transition: color 0.2s; }
a.footer-contact__item:hover { color: var(--champagne); }
.footer-contact__address span { white-space: pre-line; }

.footer-meta { text-align: start; font-size: 10px; line-height: 1.5rem; color: rgb(244 240 232 / 45%); }
.footer-meta a { transition: color 0.2s; }
.footer-meta a:hover { color: var(--champagne); }

/* ── Modale de demande ────────────────────────────────────────────────── */

.modal {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  background: rgb(32 33 31 / 70%); backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__panel {
  position: relative; width: 100%; max-width: 32rem;
  background: var(--ivory); color: var(--charcoal);
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 45%);
  max-height: calc(100dvh - 2rem); overflow-y: auto;
}
.modal__close { position: absolute; inset-inline-end: 1.25rem; top: 1.25rem; padding: 0.5rem; transition: color 0.2s; }
.modal__close:hover { color: var(--champagne); }
.modal__close svg { width: 18px; height: 18px; }
.modal__title { margin-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 2.25rem; line-height: 1.05; }
.modal__text { margin-top: 0.75rem; font-size: 0.875rem; color: rgb(32 33 31 / 60%); }

.modal__form { margin-top: 1.75rem; display: grid; gap: 1rem; }
.modal__form input,
.modal__form select {
  width: 100%;
  border: 0; border-bottom: 1px solid rgb(32 33 31 / 20%);
  background: transparent; border-radius: 0;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--charcoal);
}
.modal__form input:focus,
.modal__form select:focus { outline: none; border-bottom-color: var(--champagne); }
.modal__form input::placeholder { color: rgb(32 33 31 / 45%); }
.modal__submit {
  margin-top: 1rem; width: 100%;
  background: var(--charcoal); color: var(--ivory);
  padding-block: 1rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
}
.modal__submit:hover { background: var(--champagne); color: var(--charcoal); }

body.modal-open { overflow: hidden; }

/* ── ≥ 640px ──────────────────────────────────────────────────────────── */

@media (min-width: 640px) {
  .container, .nav-shell, .footer-shell { padding-inline: 2rem; }
  .brand-word { display: block; }
  .nav-cta { display: inline-flex; }
  .nav-cta--in-menu { display: none; } /* le CTA de la barre reprend le relais */
  .hero__headline { font-size: 4.5rem; }
  .section-title { font-size: 3.75rem; }
  .project-card__body { padding: 2.5rem; }
  .methode__stamp { display: block; }
  .progress-panel { padding: 2.5rem; }
  .modal__panel { padding: 2.5rem; }

  .proof { grid-template-columns: repeat(3, 1fr); }
  .proof__item {
    border-bottom: 0;
    border-inline-end: 1px solid rgb(32 33 31 / 15%);
    padding-inline: 1.25rem;
  }
  .proof__item:first-child { padding-inline-start: 0; }
  .proof__item:last-child { border-inline-end: 0; }

  .finance-list__row { grid-template-columns: 80px 1fr; gap: 2rem; }

  .footer-shell { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .footer-meta { text-align: end; }
}

/* ── ≥ 768px ──────────────────────────────────────────────────────────── */

@media (min-width: 768px) {
  .site-nav {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 1.25rem; background: transparent; padding: 0; box-shadow: none;
    inset: auto;
  }
  .lang-switch--bar { display: flex; }
  .site-nav__extras { display: none; }
  .nav-toggle { display: none; }
}

@media (max-width: 767px) {
  .kicker { letter-spacing: 0.17em; }
}

/* ── ≥ 1024px ─────────────────────────────────────────────────────────── */

@media (min-width: 1024px) {
  .container, .nav-shell, .footer-shell {
    max-width: var(--max); padding-inline: 3rem;
  }

  .hero { min-height: 750px; padding-top: 108px; }
  .hero__media { width: 58%; }
  .hero__overlay {
    background-image: linear-gradient(to right, var(--charcoal), rgb(32 33 31 / 35%), transparent);
  }
  html[dir='rtl'] .hero__overlay {
    background-image: linear-gradient(to left, var(--charcoal), rgb(32 33 31 / 35%), transparent);
  }
  .hero__inner { align-items: center; padding-bottom: 0; }
  .hero__headline { font-size: 88px; }
  .hero__index { display: flex; }

  .section--programmes { padding-block: 9rem; }
  .section--methode,
  .section--progress,
  .section--finance { padding-block: 8rem; }
  .section--contact { padding-block: 7rem; }

  .split--programmes { grid-template-columns: 0.8fr 1.7fr; gap: 5rem; }
  .split--methode { grid-template-columns: 1fr 1.3fr; gap: 6rem; }
  .split--progress,
  .split--finance { grid-template-columns: 0.8fr 1.2fr; gap: 6rem; }
  .split--progress { gap: 6rem; }

  .methode__media img { max-width: 28rem; }

  .contact__inner { flex-direction: row; align-items: flex-end; }
  .contact__actions { flex-direction: column; align-items: stretch; flex: none; }
}
