/* ==========================================================================
   Royal Imprim' & Communication — Site vitrine
   Design system issu de la maquette PDF (8 pages)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables & reset
   -------------------------------------------------------------------------- */
:root {
  /* Palette relevée sur la maquette */
  --brand-orange: #ff6600;
  --brand-orange-soft: #ff7a00;
  --brand-orange-deep: #e84a0c;
  --brand-red: #cc2200;
  --brand-red-dark: #8b0000;
  --brand-gold: #f5a800;
  --brand-yellow: #ffd700;
  --brand-navy: #1b2f6e;
  --brand-green: #2e6b2e;

  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-faint: #7d7d7d;

  --black: #0a0a0a;
  --black-2: #141414;
  --white: #ffffff;
  --cream: #fff5ee;
  --grey-100: #f6f6f6;
  --grey-200: #ececec;

  /* Typographies */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-script: "Dancing Script", cursive;

  /* Mesures */
  --wrap: 1200px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --nav-h: 78px;

  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.09);
  --shadow-card: 0 18px 46px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 14px 38px rgba(255, 102, 0, 0.32);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  font-weight: 400;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 1em;
}

body.nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   2. Utilitaires
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0;
}

.section--light {
  background: var(--white);
}

.section--tint {
  background: linear-gradient(180deg, var(--grey-100) 0%, var(--white) 100%);
}

.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;
}

/* Bandeau de titre orange (pastille inline de la maquette) */
.ribbon {
  display: inline-block;
  background: var(--brand-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 34px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow);
}

.ribbon--gold {
  background: var(--brand-yellow);
  color: #3a2a00;
  box-shadow: 0 14px 34px rgba(255, 215, 0, 0.3);
}

.ribbon--red {
  background: var(--brand-red);
  box-shadow: 0 14px 34px rgba(204, 34, 0, 0.3);
}

.ribbon--deep {
  background: var(--brand-orange-deep);
  box-shadow: 0 14px 34px rgba(232, 74, 12, 0.34);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-head p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
}

/* Boutons — contraste garanti (texte jamais de la couleur du fond) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--brand-orange-deep);
  color: var(--white);
}

.btn-outline {
  background: transparent !important;
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.btn-outline:hover {
  background: transparent !important;
  border-color: var(--brand-orange-deep);
  color: var(--brand-orange-deep);
}

.btn-ghost-light {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: transparent !important;
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* Décor : éclaboussures / cercles orange de la maquette */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.blob--a {
  width: 300px;
  height: 300px;
  left: -130px;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.4), transparent 68%);
}

.blob--b {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: 4%;
  background: radial-gradient(circle, rgba(232, 74, 12, 0.32), transparent 68%);
}

/* Animation d'apparition au scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease), height 0.3s var(--ease);
}

.site-nav.is-stuck {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--white);
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: block;
  padding: 9px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.is-active {
  color: var(--brand-orange);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-orange);
}

.nav-cta {
  flex-shrink: 0;
  padding: 11px 22px;
  font-size: 0.74rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}
.nav-toggle span:nth-child(2) {
  top: 22px;
}
.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 46px) 0 66px;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 22% 32%,
      rgba(255, 102, 0, 0.26),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.95) 78%);
}

.hero-splash {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.5), transparent 65%);
  filter: blur(20px);
}

.hero-splash--tl {
  top: -110px;
  left: -140px;
}

.hero-splash--br {
  bottom: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(232, 74, 12, 0.45), transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-logo {
  width: clamp(122px, 17vw, 178px);
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 34px rgba(255, 102, 0, 0.45));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 12vw, 7.4rem);
  line-height: 0.9;
  color: var(--white);
  text-shadow: 0 6px 0 rgba(200, 134, 10, 0.55), 0 20px 46px rgba(0, 0, 0, 0.6);
}

.hero-brand sup {
  font-family: var(--font-body);
  font-size: 0.14em;
  font-weight: 800;
  letter-spacing: 2px;
  vertical-align: super;
  color: var(--brand-orange);
}

.hero-brand-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-top: 6px;
}

.hero-tagline {
  margin: 26px auto 0;
  max-width: 780px;
  font-size: clamp(0.76rem, 2.1vw, 1rem);
  font-weight: 700;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.hero-slogan {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 5.4vw, 3rem);
  color: var(--brand-orange-soft);
  margin-top: 14px;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px auto 0;
  max-width: 980px;
  text-align: left;
}

.hero-service {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.hero-service:hover {
  transform: translateY(-6px);
  background: rgba(255, 102, 0, 0.14);
}

.hero-service span {
  font-family: var(--font-display);
  font-size: clamp(0.94rem, 1.9vw, 1.2rem);
  line-height: 1.24;
  text-transform: uppercase;
  color: var(--white);
}

.hero-service svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  stroke: var(--brand-orange);
  fill: none;
  stroke-width: 2;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* --------------------------------------------------------------------------
   5. Section agence (Qui sommes-nous / Objectif / Prestations)
   -------------------------------------------------------------------------- */
.about-text {
  max-width: 880px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  text-align: center;
}

.about-text strong {
  color: var(--brand-orange);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(38px, 6vw, 66px);
}

.split--reverse .split-media {
  order: -1;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split h3 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.split h3 em {
  font-style: normal;
  color: var(--brand-orange);
}

.split-quote {
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--ink-soft);
  border-left: 4px solid var(--brand-orange);
  padding-left: 18px;
}

.presta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.presta-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.presta-list li:hover {
  transform: translateX(5px);
  border-color: var(--brand-orange);
}

.presta-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-orange);
}

/* Cartes Vue de drone / Studio photo */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: clamp(38px, 6vw, 64px);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  color: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.feature-card-media {
  height: 210px;
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.feature-card:hover .feature-card-media img {
  transform: scale(1.07);
}

.feature-card-body {
  padding: 26px 28px 30px;
}

.feature-card h3 {
  font-size: clamp(1.55rem, 3.4vw, 2.1rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.94);
}

/* --------------------------------------------------------------------------
   6. Section imprimerie
   -------------------------------------------------------------------------- */
.accroche {
  background: var(--brand-yellow);
  color: #3a2a00;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  max-width: 940px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.28);
}

.framed {
  position: relative;
  border: 3px solid var(--brand-red);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(26px, 4vw, 46px) clamp(18px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
}

.framed--gold {
  border-color: var(--brand-yellow);
}

.framed--red {
  border-color: var(--brand-red-dark);
}

.framed-title {
  position: relative;
  top: calc(-1 * clamp(40px, 5vw, 62px));
  margin-bottom: calc(-1 * clamp(20px, 3vw, 32px));
  text-align: center;
}

.service-group {
  padding: clamp(20px, 3vw, 30px) 0;
  border-top: 1px dashed var(--grey-200);
}

.service-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-group h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.55;
}

.service-group h4 span {
  color: var(--brand-orange);
  text-transform: uppercase;
}

.service-group p {
  text-align: center;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.93rem;
  max-width: 880px;
  margin: 0 auto 20px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 22px;
}

.chip {
  padding: 7px 15px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.chip:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--white);
}

.thumb-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--grey-100);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.thumb:hover img {
  transform: scale(1.08);
}

.thumb figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 14px 11px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. Textile & Gadgets
   -------------------------------------------------------------------------- */
.stack-blocks {
  display: grid;
  gap: clamp(62px, 8vw, 92px);
}

/* --------------------------------------------------------------------------
   8. Couverture mariage
   -------------------------------------------------------------------------- */
.wedding {
  padding: 0 0 clamp(58px, 8vw, 104px);
  background: var(--white);
}

.wedding-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.wedding-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(255, 255, 255, 0.92) 100%
  );
}

.wedding-hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 22px 46px;
}

.wedding-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 2px var(--brand-orange-deep), 3px 3px 0 var(--brand-orange-deep),
    0 14px 34px rgba(0, 0, 0, 0.5);
}

.wedding-serif {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  color: #1a1a6e;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: -6px;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.6);
}

.wedding-band {
  display: inline-block;
  margin-top: 18px;
  background: var(--brand-orange-deep);
  color: var(--white);
  font-weight: 800;
  font-size: clamp(0.78rem, 2.2vw, 1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 11px 30px;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(232, 74, 12, 0.4);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: clamp(38px, 5vw, 56px);
}

.kit-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.kit-head {
  padding: 20px 24px;
  background: var(--kit-color, var(--ink));
  color: var(--white);
}

.kit-head h3 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.kit-body {
  padding: 24px;
  background: #f7f7f7;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kit-body ul {
  display: grid;
  gap: 10px;
}

.kit-body li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
}

.kit-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background: var(--kit-color, var(--brand-orange));
}

.kit-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  color: var(--brand-orange-deep);
  letter-spacing: 1px;
}

.wedding-cta {
  text-align: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.wedding-cta p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.4vw, 1.9rem);
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   9. Anniversaire & Studio shoots
   -------------------------------------------------------------------------- */
.anniv {
  position: relative;
  padding: 0 0 clamp(58px, 8vw, 104px);
  background: var(--brand-orange-deep);
  overflow: hidden;
}

.bunting {
  display: flex;
  height: 42px;
  overflow: hidden;
}

.bunting i {
  flex: 1 0 46px;
  height: 42px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
}

.anniv-head {
  text-align: center;
  padding: clamp(34px, 5vw, 56px) 22px clamp(28px, 4vw, 42px);
  color: var(--white);
}

.anniv-head h2 {
  font-size: clamp(2.6rem, 11vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.anniv-head p {
  margin: 12px auto 0;
  max-width: 640px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pack-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease);
}

.pack-card:hover {
  transform: translateY(-9px);
}

.pack-card.is-featured {
  outline: 4px solid var(--brand-yellow);
  outline-offset: -4px;
}

.pack-head {
  background: var(--ink);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  position: relative;
}

.pack-head h3 {
  font-size: 1.1rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pack-head h3 em {
  font-style: normal;
  color: var(--brand-orange);
}

.pack-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--brand-yellow);
  color: #3a2a00;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.pack-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  text-align: center;
}

.pack-count {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
}

.pack-count small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

.pack-body ul {
  display: grid;
  gap: 9px;
  text-align: left;
}

.pack-body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.9rem;
}

.pack-body li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--white);
}

.pack-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  color: var(--brand-orange-deep);
  letter-spacing: 1px;
}

/* Studio shoots */
.studio {
  margin-top: clamp(44px, 6vw, 72px);
  background: var(--cream);
  border-radius: clamp(28px, 5vw, 54px) clamp(28px, 5vw, 54px) var(--radius-lg)
    var(--radius-lg);
  padding: clamp(36px, 5vw, 62px) clamp(20px, 3vw, 48px)
    clamp(36px, 5vw, 58px);
}

.studio-head {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 40px);
}

.studio-head h3 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid var(--brand-orange-deep);
  background: transparent;
  color: var(--brand-orange-deep);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.tab-btn:hover {
  background: rgba(232, 74, 12, 0.1);
}

.tab-btn.is-active {
  background: var(--brand-orange-deep);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(232, 74, 12, 0.3);
}

.tab-panel {
  display: none;
  animation: fadeUp 0.45s var(--ease);
}

.tab-panel.is-active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-card h4 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink);
}

.offer-card ul {
  display: grid;
  gap: 9px;
}

.offer-card li {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.offer-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brand-orange-deep);
  font-weight: 800;
}

.offer-price {
  margin-top: auto;
  align-self: flex-start;
  background: var(--brand-orange-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: 100px;
}

.rate-table {
  display: grid;
  gap: 10px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--grey-100);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
}

.rate-row strong {
  color: var(--brand-orange-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.rate-label {
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-orange-deep);
  font-size: 0.82rem;
  margin: 6px 0 2px;
}

.note {
  margin-top: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   10. Packs sponsoring
   -------------------------------------------------------------------------- */
.sponsoring {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 100%);
  overflow: hidden;
}

.sponsor-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 52px);
}

.sponsor-title .big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.88;
  font-style: italic;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff6600, #ff0000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sponsor-title .small {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6vw, 3.4rem);
  color: var(--brand-navy);
  letter-spacing: 1px;
  margin-top: 2px;
}

.sponsor-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.sponsor-cards {
  display: grid;
  gap: 22px;
}

.sponsor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
  transition: transform 0.3s var(--ease);
}

.sponsor-card:hover {
  transform: translateY(-7px);
}

.sponsor-card-head {
  background: var(--pack-color, var(--brand-gold));
  color: var(--white);
  padding: 16px 24px;
}

.sponsor-card-head h3 {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.sponsor-card-body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.sponsor-card-body ul {
  display: grid;
  gap: 9px;
}

.sponsor-card-body li {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  font-size: 0.92rem;
}

.sponsor-card-body li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--pack-color, var(--brand-gold));
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

.sponsor-price {
  justify-self: start;
  background: var(--pack-color, var(--brand-gold));
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  letter-spacing: 1px;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
}

/* Mockup smartphone */
.phone {
  position: relative;
  width: min(310px, 100%);
  margin: 0 auto;
  aspect-ratio: 9 / 18.6;
  background: #111;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34), inset 0 0 0 2px #2a2a2a;
  transform: rotate(-5deg);
  transition: transform 0.5s var(--ease);
}

.phone:hover {
  transform: rotate(0deg) translateY(-8px);
}

.phone::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: #111;
  border-radius: 100px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(170deg, #12245c 0%, #1b2f6e 55%, #0d1738 100%);
  color: var(--white);
  padding: 40px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-badge {
  align-self: flex-start;
  background: var(--brand-orange);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.phone-screen h4 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

.phone-screen p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.phone-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.phone-feats span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.phone-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.phone-stats div {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 9px 6px;
  text-align: center;
}

.phone-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brand-orange);
  letter-spacing: 0.5px;
}

.phone-stats small {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.phone-chart {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 11px 12px;
}

.phone-chart-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.phone-chart-top em {
  font-style: normal;
  color: #4ade80;
  font-size: 0.8rem;
}

.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}

.phone-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--brand-orange), #ff9a4d);
  animation: barGrow 1.6s var(--ease) backwards;
}

@keyframes barGrow {
  from {
    height: 4px;
  }
}

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.contact-watermark {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 90%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.contact-head h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
}

.contact-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-item:hover {
  border-color: var(--brand-orange);
  background: rgba(255, 102, 0, 0.1);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-orange-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(232, 74, 12, 0.4);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-item-body h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.contact-item-body a,
.contact-item-body span {
  display: block;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--brand-orange-soft);
  word-break: break-word;
  transition: color 0.2s var(--ease);
}

.contact-item-body a:hover {
  color: var(--white);
}

.contact-item-body span.plain {
  color: var(--white);
  font-weight: 700;
}

.address-pill {
  display: inline-block;
  margin-top: 4px;
  background: var(--brand-orange-deep);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  padding: 8px 22px;
  border-radius: var(--radius-sm);
}

.legal-lines {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.legal-lines span {
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Formulaire de devis */
.quote-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 36px);
}

.quote-form h3 {
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--white);
  margin-bottom: 8px;
}

.quote-form > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease);
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: rgba(255, 102, 0, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 108px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ff5a5a;
}

.field-error {
  font-size: 0.74rem;
  font-weight: 700;
  color: #ff8a8a;
  display: none;
}

.field.has-error .field-error {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #b6f5cd;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   12. Footer & éléments flottants
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black-2);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-brand small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.76rem;
  padding-top: 22px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.float-wa,
.to-top {
  position: fixed;
  z-index: 80;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.float-wa {
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.float-wa:hover {
  transform: scale(1.09);
}

.to-top {
  right: 20px;
  bottom: 88px;
  width: 46px;
  height: 46px;
  background: var(--brand-orange);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  pointer-events: none;
}

.to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.4;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   13. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-link {
    padding: 9px 8px;
    font-size: 0.68rem;
  }
  .sponsor-layout {
    grid-template-columns: 1fr;
  }
  .phone {
    transform: rotate(0);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 68px;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 14px 22px 26px;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease),
      visibility 0.3s;
  }

  .nav-links.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 14px 6px;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-link.is-active::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-services,
  .feature-cards,
  .kit-grid,
  .pack-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-media {
    order: 0;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .presta-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .thumb-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .framed-title {
    top: calc(-1 * 34px);
    margin-bottom: -18px;
  }

  .ribbon {
    padding: 9px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}