:root {
  --green: #063f32;
  --green-dark: #022c24;
  --gold: #b8872b;
  --gold-soft: #d9c391;
  --cream: #f8f2e6;
  --cream-light: #fffdf7;
  --text: #10231f;
  --muted: #5f6965;
  --line: rgba(184, 135, 43, 0.35);
  --shadow: 0 16px 40px rgba(16, 35, 31, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 135, 43, 0.08), transparent 30rem),
    linear-gradient(180deg, var(--cream-light), var(--cream));
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: 4.2rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p,
.intro-section p,
.quote-intro p {
  color: var(--muted);
}

.section-heading h2 + p,
.intro-section h2 + p,
.quote-intro h2 + p {
  margin-top: 16px;
}

.section-kicker,
.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 700;
}

.soft-band {
  background: rgba(255, 253, 247, 0.72);
  border-top: 1px solid rgba(184, 135, 43, 0.18);
  border-bottom: 1px solid rgba(184, 135, 43, 0.18);
}

.split-band {
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.92), rgba(248, 242, 230, 0.82));
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(184, 135, 43, 0.22);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(16px);
}

.simple-header {
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img,
.footer-brand img {
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand strong,
.footer-brand span {
  display: block;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: var(--gold);
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--green);
  color: #fffdf7;
  font-weight: 700;
}

.header-cta:hover {
  color: #fffdf7;
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream-light);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.hero {
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 140px;
  height: 1px;
  background: var(--gold);
}

.hero-text {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #fffdf7;
}

.btn-primary:hover {
  color: #fffdf7;
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--cream-light);
  color: var(--green-dark);
}

.btn-small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.92rem;
}

.btn-wide {
  width: 100%;
}

.hero-panel,
.quote-summary,
.economy-box,
.notice,
.pricing-card,
.service-card,
.step-card,
.document-card,
.flower-options article,
.reviews-grid blockquote,
.contact-form,
.quote-form,
.split-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.hero-panel img {
  width: 86px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.hero-panel p {
  margin: 20px 0 18px;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.12;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--green);
}

.intro-section {
  text-align: center;
}

.intro-section h2 {
  margin: 0 auto;
}

.intro-section p:last-child {
  margin-top: 18px;
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 150px;
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-soft);
  font-weight: 800;
}

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

.step-card {
  min-height: 170px;
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fffdf7;
  font-weight: 800;
}

.notice {
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--text);
  box-shadow: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 24px 20px;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: #fffaf0;
}

.badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

.price {
  margin: 16px 0 4px;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.frequency {
  color: var(--gold);
  font-weight: 800;
}

.pricing-card p:not(.price):not(.frequency):not(.badge) {
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  color: var(--text);
}

.pricing-card li {
  padding-left: 18px;
  border-left: 2px solid var(--gold-soft);
}

.pricing-card .btn {
  margin-top: auto;
}

.two-column,
.quote-layout,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: start;
}

.economy-box {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 20px;
  border-color: var(--gold);
  background: #fffaf0;
  box-shadow: none;
}

.economy-box strong {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.flower-options {
  display: grid;
  gap: 16px;
}

.flower-options article {
  padding: 24px;
}

.flower-options h3 {
  margin-bottom: 16px;
}

.option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.7fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
}

.option-row:last-child {
  border-bottom: 0;
}

.option-row span,
.option-row strong {
  font-weight: 800;
}

.option-row small,
.small-note {
  color: var(--muted);
}

.quote-intro {
  position: sticky;
  top: 108px;
}

.quote-summary {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 24px;
  border-color: var(--gold);
  box-shadow: none;
}

.quote-summary p {
  color: var(--gold);
  font-weight: 800;
}

.quote-summary strong {
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.quote-summary span {
  color: var(--muted);
}

.quote-form,
.contact-form {
  padding: 26px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(16, 35, 31, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 135, 43, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  color: var(--text);
  font-weight: 500;
}

.checkbox-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 5px;
  accent-color: var(--green);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 24px;
  margin-top: 16px;
  color: #8a3a1b;
  font-weight: 700;
}

.realisation-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.realisation-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: var(--shadow);
}

.realisation-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--green);
  color: #fffdf7;
  font-weight: 800;
}

.caption {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
}

.documents-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.document-card {
  padding: 24px;
}

.document-card p {
  margin-top: 12px;
  color: var(--muted);
}

.split-grid article {
  padding: 28px;
}

.split-grid p:not(.section-kicker) {
  color: var(--muted);
}

.reviews-grid blockquote {
  margin: 0;
  padding: 26px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--gold);
}

.contact-list a,
.contact-list span {
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.site-footer {
  padding: 54px 0;
  background: var(--green-dark);
  color: rgba(255, 253, 247, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 34px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.site-footer a {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 253, 247, 0.88);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.site-footer .footer-brand {
  margin-bottom: 14px;
}

.site-footer .footer-brand span {
  color: #fffdf7;
}

.site-footer p {
  color: rgba(255, 253, 247, 0.72);
}

.subpage-main {
  min-height: 60vh;
}

.legal-page article {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-page h1 {
  max-width: none;
}

.legal-page h2 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  display: grid;
  gap: 8px;
}

.legal-page li {
  list-style: disc;
  margin-left: 22px;
}

.thanks-section {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.thanks-section h1 {
  max-width: none;
}

.thanks-section p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.print-body {
  background: #fffdf7;
}

.print-document {
  width: min(820px, calc(100% - 32px));
  margin: 36px auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.print-header {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--gold);
}

.print-header img {
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.print-header h1 {
  max-width: none;
  font-size: 2.8rem;
}

.print-document section {
  margin-top: 28px;
}

.print-document h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.print-document p {
  margin-bottom: 12px;
}

.signature-line {
  min-height: 70px;
  border-bottom: 1px solid var(--text);
}

.print-footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}



/* Offre de lancement */
.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(217, 195, 145, 0.45);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: var(--cream-light);
  font-size: 0.92rem;
  text-align: center;
}

.promo-strip strong {
  font-weight: 800;
}

.promo-strip a {
  padding-bottom: 1px;
  border-bottom: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-weight: 800;
}

.promo-strip a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.promo-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 135, 43, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(248, 242, 230, 0.94));
  border-top: 1px solid rgba(184, 135, 43, 0.16);
  border-bottom: 1px solid rgba(184, 135, 43, 0.2);
}

.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 43, 0.48);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 24px 60px rgba(2, 44, 36, 0.13);
}

.promo-copy {
  position: relative;
  z-index: 2;
  padding: 58px 48px 48px;
}

.promo-copy::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 34px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(184, 135, 43, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 195, 145, 0.18), transparent 66%);
  pointer-events: none;
}

.promo-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.promo-lead {
  max-width: 640px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.promo-code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.promo-code-box,
.promo-date-box {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf0;
}

.promo-code-box {
  border-color: rgba(184, 135, 43, 0.7);
  background: var(--green);
  color: #fffdf7;
}

.promo-code-box span,
.promo-date-box span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-code-box strong,
.promo-date-box strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.promo-code-box strong {
  color: var(--gold-soft);
}

.promo-date-box strong {
  color: var(--green-dark);
}

.promo-qr-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.9);
}

.promo-qr-row img {
  width: 124px;
  height: 124px;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid rgba(184, 135, 43, 0.48);
  border-radius: 8px;
  background: #ffffff;
}

.promo-qr-row strong {
  display: block;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.promo-qr-row p {
  margin-top: 5px;
  color: var(--muted);
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.promo-terms {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.promo-media {
  position: relative;
  min-height: 590px;
  margin-left: -54px;
  overflow: hidden;
  border-left: 2px solid var(--gold);
  border-radius: 54% 0 0 54% / 50% 0 0 50%;
  background: var(--cream);
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 242, 230, 0.16), transparent 30%, rgba(2, 44, 36, 0.05));
  pointer-events: none;
}

.promo-media-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 13px 16px;
  border: 1px solid rgba(217, 195, 145, 0.75);
  border-radius: 8px;
  background: rgba(2, 44, 36, 0.9);
  color: #fffdf7;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: center;
  backdrop-filter: blur(8px);
}

.field-optional {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 14px;
    padding: 10px 20px;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

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

@media (max-width: 920px) {
  h1 {
    max-width: 12ch;
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header {
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream-light);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

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

  .header-cta {
    display: none;
  }

  .simple-header .header-cta {
    display: inline-flex;
  }



  .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-media {
    min-height: 430px;
    margin-left: 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
    border-radius: 48% 48% 0 0 / 15% 15% 0 0;
  }

  .hero-grid,
  .two-column,
  .quote-layout,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

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

  .pricing-grid,
  .documents-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }



  .promo-strip {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .promo-copy {
    padding: 38px 22px 30px;
  }

  .promo-copy h2 {
    font-size: 2.55rem;
  }

  .promo-code-grid {
    grid-template-columns: 1fr;
  }

  .promo-qr-row {
    align-items: flex-start;
  }

  .promo-qr-row img {
    width: 108px;
    height: 108px;
  }

  .promo-actions {
    display: grid;
  }

  .promo-media {
    min-height: 340px;
  }

  .promo-media-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    font-size: 1.08rem;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 62px 0;
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 78px;
  }

  h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 34px;
  }

  .service-grid,
  .steps-grid,
  .pricing-grid,
  .documents-grid,
  .reviews-grid,
  .footer-grid,
  .form-grid,
  .realisation-card {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .option-row {
    grid-template-columns: 1fr auto;
  }

  .option-row small {
    grid-column: 1 / -1;
  }

  .quote-form,
  .contact-form,
  .hero-panel,
  .print-document {
    padding: 20px;
  }

  .realisation-card img {
    height: 340px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .print-header {
    align-items: flex-start;
  }

  .print-header h1 {
    font-size: 2.1rem;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .no-print,
  .site-header,
  .site-footer {
    display: none !important;
  }

  .print-document {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

.devis-process-card {
  margin-top: 1.25rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(37, 61, 51, 0.22);
  border-radius: 18px;
  background: rgba(255, 252, 244, 0.92);
  box-shadow: 0 14px 35px rgba(26, 42, 34, 0.06);
}

.devis-process-header {
  margin-bottom: 1rem;
}

.devis-process-label {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b68a3a;
}

.devis-process-card h3 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
  color: #243d33;
}

.devis-process-intro {
  margin: 0.35rem 0 0;
  color: rgba(36, 61, 51, 0.72);
  font-size: 0.95rem;
}

.devis-process-steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.devis-process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  padding-bottom: 0.95rem;
}

.devis-process-steps li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 14px;
  top: 34px;
  color: rgba(37, 61, 51, 0.55);
  font-size: 1rem;
  line-height: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #243d33;
  color: #fffaf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 12px rgba(36, 61, 51, 0.18);
}

.step-content strong {
  display: block;
  color: #243d33;
  font-size: 0.96rem;
  line-height: 1.35;
}

.step-content p {
  margin: 0.18rem 0 0;
  color: rgba(36, 61, 51, 0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}

.devis-process-note {
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(182, 138, 58, 0.10);
  border: 1px solid rgba(182, 138, 58, 0.24);
  color: #243d33;
  font-size: 0.9rem;
  line-height: 1.45;
}

.devis-process-note strong {
  color: #243d33;
}

@media (max-width: 768px) {
  .devis-process-card {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .devis-process-steps li {
    grid-template-columns: 34px 1fr;
    gap: 0.75rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .devis-process-steps li:not(:last-child)::after {
    left: 13px;
  }
}

/* Language selector */
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.language-toggle:hover, .language-toggle:focus-visible {
  opacity: .78;
}
@media (max-width: 900px) {
  .main-nav .language-toggle { margin-top: .5rem; width: fit-content; }
}
