* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold-light);
  color: #1c1c1c;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.xl-txt {
  font-size: 3.5rem;
  font-weight: 700;
}

.md-txt {
  font-size: 2.2rem;
  font-weight: 700;
}

.sm-txt {
  font-size: 1.4rem;
  font-weight: 700;
}


/*  /// MOBIL FIRST - HOME PAGE /// */

:root {
  --gradient-dark: linear-gradient(
    90deg,
    #1c1c1c 0%,
    rgb(116, 116, 116) 50%,
    #1c1c1c 100%
  );
  --gradient-gold: linear-gradient(
    90deg,
    #c6a664 0%,
    #e4d3a4 50%,
    #c6a664 100%
  );
  --gold: #c6a664;
  --gold-light: #e4d3a4;
  --ink: #1c1c1c;
}

header,
.footer_ctn {
  background: var(--gradient-dark);
  text-align: center;
  width: 100%;
}

header {
  padding-top: 20px;
}

p{
  padding-bottom: 1.5% ;
}

a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}

.menu_header {
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu_header:hover,
.color_menu {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}

.brand_name {
  margin: 0;
  padding-bottom: 0;
}

.home_link {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin: 0;
}

h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 4%;
  color: #c6a664;
}

.page_title,
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.17em;
  color: #c6a664;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 3% auto 0;
}

.page_title::after,
h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 1.2rem auto 2.5rem;
  background: var(--gradient-gold);
  border-radius: 2px;
}

h4{
  font-family: 'Fraunces', Georgia, serif;
  margin-top: 3%;
  font-size: 111%;
  color: #ffffff;
}

h5{
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 125%;
  padding-bottom: 1%;
}

.sous-titre-header {
  margin-top: 3%;
  color: #ffffff;
}

/* /// HERO ACCUEIL /// */

.hero_home {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 340px;
  max-height: 620px;
  overflow: hidden;
}

.hero_home_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero_home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.55) 0%,
    rgba(28, 28, 28, 0.15) 35%,
    rgba(28, 28, 28, 0.65) 100%
  );
  pointer-events: none;
}

.hero_home_overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5%;
}

.hero_home_subtitle {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin: 0;
  padding-bottom: 0;
}

.hero_home_cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 1.8rem auto 0;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 12px 26px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero_home_cta:hover,
.hero_home_cta:focus-visible {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #1c1c1c;
}

.accueil_ctn_photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
}

.accueil_photo{
  display: block;
  width: 31%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0;
  border: 3px solid #ffffff;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.accueil_photo:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.presentation{
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2% 8% 6%;
}

.aside_home_page h3::after {
  margin-bottom: 1rem;
}

.navbar_header {
  margin-top: 20px;
  padding-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar_header_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.nav_toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(198, 166, 100, 0.4);
  border-radius: 8px;
  cursor: pointer;
}

.nav_toggle_bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav_toggle[aria-expanded="true"] .nav_toggle_bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav_toggle[aria-expanded="true"] .nav_toggle_bar:nth-child(2) {
  opacity: 0;
}

.nav_toggle[aria-expanded="true"] .nav_toggle_bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.list_navbar_header {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}

.list_navbar_header.nav_open {
  display: flex;
}

.menu_header {
  padding: 10px;
}

.ctn_photos {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.gallery_filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 3% 2%;
}

.gallery_filter_btn {
  background: transparent;
  border: 1px solid rgba(198, 166, 100, 0.4);
  color: #1c1c1c;
  border-radius: 30px;
  padding: 8px 20px;
  min-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gallery_filter_btn:hover,
.gallery_filter_btn:focus-visible {
  border-color: var(--gold);
}

.gallery_filter_btn.is-active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #1c1c1c;
}

.photo.is-filtered-out {
  display: none;
}

.photo_home_page {
  margin: 3%;
  width: 100%;
  border-radius: 20px;
}

.photo {
  width: 90%;
  border-radius: 20px;
  margin: 3% auto;
  cursor: zoom-in;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.photo:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.photo.is-loading,
.accueil_photo.is-loading {
  opacity: 0;
}

.aside_home_page {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
    margin: 20px;
}

.aside_home_page p {
  text-align: justify;
  margin: 3%;
  line-height: 3rem;
}

.bottom_aside a {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 3.5rem;
  padding: 10px;
}

.social_link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_ctn {
  margin-top: 20px;
}

.footer_ctn p {
  text-transform: uppercase;
  color: whitesmoke;
  padding: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer_legal_link {
  display: inline;
  text-transform: none;
  font-weight: 400;
  font-size: 1.1rem;
  color: #bbbbbb;
}

.footer_legal_link:hover {
  color: #ffffff;
}

/* //// POP-UP COOKIES //// */
.cookie_overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: cookieOverlayIn 0.35s ease forwards;
}

@keyframes cookieOverlayIn {
  to {
    opacity: 1;
  }
}

.cookie_modal {
  width: min(460px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  animation: cookieModalIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s forwards;
}

@keyframes cookieModalIn {
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.cookie_modal_photo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cookie_banner {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cookie_banner_text {
  flex: 1 1 280px;
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: whitesmoke;
  text-align: left;
}

.cookie_banner_text a {
  display: inline;
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie_banner_actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
}

.cookie_banner_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 30px;
  padding: 10px 22px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: 'Work Sans', sans-serif;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cookie_banner_btn:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--ink);
}

.cookie_banner_accept {
  background: var(--gradient-gold);
  color: var(--ink);
}

.cookie_banner_vue[hidden] {
  display: none;
}

.cookie_banner_option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: whitesmoke;
  margin: 10px 0;
  text-align: left;
}

.cookie_banner_option input[type='checkbox'] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.video {
  display: flex;
  justify-content: center;
  margin: 3%;
  color: #001b63;
}
/*PAGE SEANCE */

.seance_section{
  padding-top: 2%;
}
.seance_liste{
  color: #1c1c1c;
}

.liste{
  padding: 1%;
}

span{
  font-weight: bold;
  color: #1c1c1c;
  opacity: 0.8;
}

.ctn_seance{
  width: 70%;
  margin:auto;
  text-justify: auto;
}

/* PAGE MENTIONS LEGALES */

.legal_section {
  padding-top: 2%;
  padding-bottom: 2%;
}

.legal_ctn {
  width: 90%;
  max-width: 70ch;
  margin: 0 auto 4%;
}

.legal_ctn h5 {
  margin-top: 2rem;
  color: #1c1c1c;
}

.legal_ctn p {
  line-height: 1.8;
}

.legal_link {
  display: inline;
  color: var(--gold);
  text-decoration: underline;
}

.legal_link:hover {
  color: var(--gold-light);
}

/* PAGE MERCI (redirection formulaire) */

.merci_section {
  text-align: center;
  padding: 8% 3%;
}

.merci_txt {
  max-width: 60ch;
  margin: 2% auto 3%;
  line-height: 1.8;
}

/* PAGE BOUTIQUE (Snipcart) */

.shop_cart_btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(28, 28, 28, 0.85);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease, color 0.3s ease;
}

.shop_cart_btn:hover,
.shop_cart_btn:focus-visible {
  background: var(--gradient-gold);
  color: #1c1c1c;
}

.shop_cart_count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1c1c1c;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.shop_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 6%;
  padding: 0 5%;
}

@media screen and (min-width: 769px) {
  .shop_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1025px) {
  .shop_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop_card {
  background: #201d19;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(198, 166, 100, 0.18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.shop_card_img_btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.shop_card_img_btn[hidden] {
  display: none;
}

.shop_card_img_btn::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 14px;
  right: 14px;
  color: #ffffff;
  background: rgba(28, 28, 28, 0.6);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop_card_img_btn:focus-visible::after {
  opacity: 1;
}

.shop_card_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.shop_card_scene_canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  cursor: zoom-in;
}

.shop_card_scene_canvas[hidden] {
  display: none;
}

.shop_card_carousel {
  position: relative;
}

.shop_carousel_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 28, 0.7);
  border: 1px solid rgba(198, 166, 100, 0.6);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.shop_carousel_prev { left: 10px; }
.shop_carousel_next { right: 10px; }

.shop_carousel_arrow:hover,
.shop_carousel_arrow:focus-visible {
  background: var(--gradient-gold);
  color: #1c1c1c;
}

.shop_carousel_dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.shop_carousel_dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.shop_carousel_dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.shop_card_body {
  padding: 28px 30px 34px;
  text-align: center;
}

.shop_card_title {
  font-family: 'Fraunces', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.7rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop_card_divider {
  display: block;
  width: 36px;
  height: 1px;
  margin: 14px auto 22px;
  background: var(--gradient-gold);
}

.shop_format_group {
  text-align: left;
  margin-bottom: 16px;
}

.shop_format_group label {
  display: block;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.shop_support_select,
.shop_size_select,
.shop_frame_select {
  width: 100%;
  background: #2a2622;
  border: 1px solid #4a443c;
  border-radius: 6px;
  padding: 10px 34px 10px 12px;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color 0.3s ease;
}

.shop_support_select:hover,
.shop_size_select:hover,
.shop_frame_select:hover {
  border-color: #6b6255;
}

.shop_support_select:focus,
.shop_size_select:focus,
.shop_frame_select:focus {
  outline: none;
  border-color: var(--gold);
}

.shop_card_price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  margin: 22px 0 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 166, 100, 0.18);
}

.shop_price_value {
  color: #ffffff;
}

.shop_card_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: transparent;
  color: #c6a664;
  border: 1px solid #c6a664;
  border-radius: 30px;
  padding: 11px 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.shop_card_cta[hidden] {
  display: none;
}

.shop_card_cta:hover,
.shop_card_cta:focus-visible {
  background: var(--gradient-gold);
  color: #1c1c1c;
  box-shadow: 0 8px 20px rgba(198, 166, 100, 0.25);
}


/* PAGE TARIFAIRE */ 
/* /// PAGE TARIFS /// */

.pricing_intro {
  text-align: center;
  margin: 6% 3% 4%;
}

.pricing_intro_txt {
  max-width: 60ch;
  margin: 2% auto 0;
  line-height: 1.8;
}

.pricing_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 3% 4%;
}

.pricing_card {
  background: #1c1c1c;
  color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pricing_card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(#1c1c1c, #1c1c1c) padding-box,
    var(--gradient-gold) border-box;
  border: 1px solid transparent;
}

.pricing_card--featured {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(#1c1c1c, #1c1c1c) padding-box,
    var(--gradient-gold) border-box;
}

.pricing_card_badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #1c1c1c;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing_card_title {
  font-family: 'Fraunces', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.pricing_card_price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: bold;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.pricing_card_list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.pricing_card_list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}

.pricing_card_list li:last-child {
  border-bottom: none;
}

.pricing_card_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: transparent;
  color: #c6a664;
  border: 1px solid #c6a664;
  border-radius: 30px;
  padding: 12px 28px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pricing_card_cta:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #1c1c1c;
}

.pricing_note {
  text-align: center;
  margin: 0 3% 6%;
  color: #666;
  font-size: 1.3rem;
}

/* /// FORMULAIRE DE CONTACT (page tarifs) /// */

.contact_section {
  padding: 2% 3% 6%;
}

.contact_form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: #1c1c1c;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid transparent;
  background:
    linear-gradient(#1c1c1c, #1c1c1c) padding-box,
    var(--gradient-gold) border-box;
}

.contact_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact_row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact_field {
  margin-bottom: 22px;
}

.contact_field label {
  display: block;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact_field input,
.contact_field select,
.contact_field textarea {
  width: 100%;
  background: #2a2a2a;
  border: 1px solid #444444;
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4rem;
  transition: border-color 0.3s ease;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
  color: #888888;
}

.contact_field input:focus,
.contact_field select:focus,
.contact_field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact_field.has-error input,
.contact_field.has-error select,
.contact_field.has-error textarea {
  border-color: #d9534f;
}

.contact_field_error {
  display: block;
  color: #e57373;
  font-size: 1.15rem;
  margin-top: 6px;
}

.contact_field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact_field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact_submit {
  display: block;
  width: 100%;
  background: var(--gradient-gold);
  color: #1c1c1c;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact_submit:hover,
.contact_submit:focus-visible {
  opacity: 0.85;
}

@media screen and (min-width: 769px) {
  .contact_row {
    flex-direction: row;
    gap: 20px;
  }

  .contact_row .contact_field {
    flex: 1;
  }
}

/* /// RESPONSIVE TARIFS /// */

@media screen and (min-width: 769px) {
  .pricing_grid {
    align-items: stretch;
  }

  .pricing_card--featured {
    transform: scale(1.05);
  }

  .pricing_card--featured:hover {
    transform: scale(1.05) translateY(-6px);
  }
}

/* /// RESPONSIVE /// */
/* Tout ce bloc ne s'applique qu'à partir de 1025px (desktop). */

@media screen and (min-width: 1025px){
  .ctn_home_page{
    display: flex;
    align-items : center;
  }

  .ctn_home_page .ctn_photos {
    display: block;
    width: 50%;
  }

  .portrait {
    width: 30%;
  }

  .rue {
    width: 27%;
  }

  .accueil_ctn_photo{
    display: flex;
    justify-content: center;
    width: 50%;
    margin: auto;
  }

  .accueil_photo{
    width: 20%;
    margin: 0.5%;
  }

  .hero_home {
    height: 72vh;
    max-height: 760px;
  }

  .hero_home_subtitle {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 769px) {
  h2,
  .brand_name,
  .home_link {
    display: inline-block;
    text-align: left;
  }

  h2 {
    margin-left: 10px;
  }

  .nav_toggle {
    display: none;
  }

  .list_navbar_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 0%;
    margin-top: 0;
  }

  .list_navbar_header a {
    padding: 20px;
  }
}

/* VISIONNEUSE PLEIN ÉCRAN (lightbox boutique) */

.shop_lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(28, 28, 28, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.shop_lightbox[hidden] {
  display: none;
}

.shop_lightbox_img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.shop_lightbox_close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.shop_lightbox_close:hover,
.shop_lightbox_close:focus-visible {
  background: var(--gradient-gold);
  color: #1c1c1c;
}

/* VISIONNEUSE PLEIN ÉCRAN (galeries portraits / urbain) */

.photo_lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(28, 28, 28, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.photo_lightbox[hidden] {
  display: none;
}

.photo_lightbox_img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.photo_lightbox_btn {
  position: absolute;
  z-index: 10;
  background: transparent;
  border: 1px solid var(--gold);
  color: #ffffff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.photo_lightbox_btn:hover,
.photo_lightbox_btn:focus-visible {
  background: var(--gradient-gold);
  color: #1c1c1c;
}

.photo_lightbox_close {
  top: 24px;
  right: 24px;
}

.photo_lightbox_prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.photo_lightbox_next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .photo_lightbox {
    padding: 16px;
  }

  .photo_lightbox_btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}