/* =========================================================
   AKDÉDOG'Z — STYLE FINAL CONSOLIDÉ
   Façade publique
========================================================= */

:root {
  --bg: #000;
  --panel: #050505;
  --panel-soft: #080808;

  --text: #eeeeee;
  --muted: #bdbdbd;
  --muted-soft: #858585;

  --gold: #d4a62b;
  --gold-light: #e4b32a;
  --gold-line: #956d14;

  --line: #292929;

  --radius: 8px;
  --max: 1600px;

  --header-height: 64px;
}


/* =========================================================
   BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 16px;
  line-height: 1.5;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

section {
  scroll-margin-top: 82px;
}


/* =========================================================
   LARGEUR GLOBALE
========================================================= */

.hero,
main > section,
footer {
  width: calc(100% - 32px);
  max-width: var(--max);

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  min-height: var(--header-height);

  background: rgba(5, 5, 5, 0.96);

  border-bottom: 1px solid #191919;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding: 7px 34px;

  position: sticky;
  top: 0;

  z-index: 50;

  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand-mini,
.footer-brand {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #fff;
  text-decoration: none;

  min-width: 0;
}

.brand-mini img {
  width: 46px;
  height: 46px;

  object-fit: contain;

  flex: 0 0 auto;
}

.brand-mini b,
.footer-brand b {
  display: block;

  color: var(--gold);

  font-size: 14px;
  font-weight: 900;

  letter-spacing: 0.5px;
}

.brand-mini small,
.footer-brand small {
  display: block;

  color: #dddddd;

  font-size: 8px;

  letter-spacing: 0.5px;
}

.site-header nav {
  display: flex;
  align-items: center;

  gap: 24px;
}

.site-header nav a {
  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.5px;

  white-space: nowrap;

  opacity: 0.94;

  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.site-header nav a:hover {
  color: var(--gold);
}

.site-header .nav-cta {
  padding: 9px 14px;

  color: var(--gold-light);

  border: 1px solid var(--gold-line);
  border-radius: 5px;

  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.site-header .nav-cta:hover {
  background: #0d0d0d;
  border-color: var(--gold-light);
}

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


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 320px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(300px, 0.92fr);

  align-items: center;

  column-gap: 36px;

  padding: 34px 42px 26px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  margin: 0 0 18px;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 0.96;

  font-weight: 900;

  letter-spacing: 1px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero p {
  max-width: 570px;

  margin: 0 0 20px;

  color: #d5d5d5;

  font-size: 17px;

  line-height: 1.5;
}

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

.hero-logo img {
  width: min(420px, 100%);
  height: auto;

  display: block;

  object-fit: contain;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
  display: inline-block;

  min-height: 42px;

  padding: 10px 22px;

  background: #050505;

  border: 1px solid #b7871d;

  border-radius: 5px;

  color: var(--gold-light);

  text-decoration: none;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 0.45px;

  cursor: pointer;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.button:hover {
  background: #101010;

  border-color: var(--gold-light);
}

.button:active {
  transform: translateY(1px);
}


/* =========================================================
   TITRES / SECTIONS
========================================================= */

.section-kicker {
  margin: 0 0 6px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.1px;
}

.terrain-block h2,
.offers h2,
.approach h2,
.conditions h2,
.booking h2 {
  margin: 5px 0 16px;

  color: #eeeeee;

  font-size: 22px;

  line-height: 1.25;
}


/* =========================================================
   À PROPOS
========================================================= */

#a-propos {
  padding: 44px 34px 52px;
}

#a-propos > .section-kicker {
  max-width: 940px;

  margin-left: auto;
  margin-right: auto;
}

#a-propos > h2,
#a-propos > p {
  max-width: 940px;

  margin-left: auto;
  margin-right: auto;
}

#a-propos > h2 {
  margin-top: 7px;
  margin-bottom: 18px;

  font-size: clamp(24px, 2.2vw, 34px);
}

#a-propos > p {
  margin-top: 0;
  margin-bottom: 14px;

  color: #d3d3d3;

  font-size: 16px;

  line-height: 1.65;
}

#a-propos .condition-grid {
  max-width: 1120px;

  margin: 34px auto 42px;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

#a-propos .condition-grid article {
  min-height: 160px;

  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#a-propos .condition-grid b {
  display: block;

  margin-bottom: 12px;

  color: var(--gold-light);

  font-size: 16px;

  letter-spacing: 0.6px;
}

#a-propos .condition-grid p {
  margin: 0;

  color: #d0d0d0;

  font-size: 14px;

  line-height: 1.55;
}


/* =========================================================
   TERRAIN
========================================================= */

.terrain-block {
  padding: 14px 24px 30px;
}

.wide-frame {
  position: relative;

  overflow: hidden;

  background: #050505;

  border: 1px solid #171717;

  border-radius: 6px;
}

.wide-frame img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
  object-position: center;
}

.wide-frame strong {
  display: block;

  padding: 8px 3px 5px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1px;
}

.terrain-block h2 {
  margin-top: 12px;
}


/* =========================================================
   GALERIES — PHOTOS AU FORMAT ORIGINAL
   Pas de zoom, pas de recadrage, pas de vide artificiel
========================================================= */

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.photo-row figure {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.photo-frame {
  width: 100%;
  height: auto;
  overflow: hidden;

  background: transparent;

  border: 1px solid #1d1d1d;
  border-radius: 5px 5px 0 0;

  line-height: 0;
}

.photo-frame img {
  display: block;

  width: 100%;
  height: auto;

  max-width: 100%;

  object-fit: initial;
  object-position: initial;
}

figcaption {
  width: 100%;

  padding: 9px 5px;

  background: #050505;

  border: 1px solid #1d1d1d;
  border-top: 0;

  border-radius: 0 0 5px 5px;

  color: var(--gold);

  text-align: center;

  font-size: 11px;
  font-weight: 800;

  line-height: 1.3;
  letter-spacing: 0.25px;
}


/* =========================================================
   PRESTATIONS
========================================================= */

.offers {
  padding: 26px 24px 38px;
}

.offers-grid {
  display: grid;

  grid-template-columns:
    minmax(330px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 22px;
}

.offers article {
  padding: 20px;

  background: #020202;

  border: 1px solid var(--gold-line);

  border-radius: var(--radius);

  box-shadow:
    0 4px 18px
    rgba(0, 0, 0, 0.18);
}

.offers h3 {
  margin: 0 0 9px;

  font-size: 17px;

  line-height: 1.2;
}

.offer-first .price {
  margin: 5px 0 10px;

  color: var(--gold-light);

  font-size: 28px;
  font-weight: 900;
}

.offer-first .offer-lead {
  margin: 4px 0 11px;

  font-size: 15px;
}

.offer-first .offer-subtitle {
  margin: 15px 0 7px;

  font-size: 14px;
}

.offer-first > p:not(.offer-lead):not(.offer-subtitle) {
  margin: 7px 0 9px;

  font-size: 14px;

  line-height: 1.5;
}

.offer-first b {
  color: var(--gold-light);
}

.offers ul {
  margin: 6px 0 14px;

  padding-left: 21px;

  font-size: 14px;

  line-height: 1.5;
}

.offers li {
  margin: 4px 0;
}

.offers hr {
  margin: 16px 0;

  border: 0;

  border-top: 1px solid #8d6818;
}

.offer-levels > p {
  margin: 6px 0 16px;

  font-size: 14px;

  line-height: 1.5;
}

.levels {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  margin: 14px 0 16px;
}

.levels > div {
  padding: 2px 15px;

  border-right:
    1px
    solid
    #5b4515;
}

.levels > div:first-child {
  padding-left: 0;
}

.levels > div:last-child {
  border-right: 0;
}

.levels b {
  display: block;

  color: #d9a92d;

  font-size: 14px;

  line-height: 1.2;
}

.levels strong {
  display: inline-block;

  margin-top: 10px;

  font-size: 18px;
}

.levels small {
  margin-left: 4px;

  font-size: 11px;
}

.offer-levels h4 {
  margin: 0 0 9px;

  font-size: 15px;

  line-height: 1.2;
}

.offer-levels h4 small {
  font-size: 11px;

  font-weight: normal;
}

.offer-levels table {
  width: 100%;

  border-collapse: collapse;

  table-layout: fixed;

  font-size: 13px;

  font-variant-numeric:
    tabular-nums;
}

.offer-levels th,
.offer-levels td {
  padding: 10px 8px;

  border:
    1px
    solid
    #765711;

  text-align: center;

  vertical-align: middle;
}

.offer-levels thead th {
  color: #d8a92d;
}

.offer-levels tbody th {
  text-align: left;
}

.offer-levels th:first-child {
  width: 28%;
}

.table-note {
  margin: 8px 0 0 !important;

  color: #a4a4a4;

  font-size: 11px !important;
}


/* =========================================================
   MÉTHODE
========================================================= */

.approach {
  padding: 26px 24px 38px;
}

.approach .photo-row {
  gap: 16px;
}

.approach .photo-row:first-of-type {
  margin-bottom: 24px;
}

.approach .second {
  margin-top: 34px;
}

.approach .second + h2 {
  margin-bottom: 16px;
}

.approach .v10-extra {
  margin-top: 16px;
}

.center-logo {
  display: flex !important;

  align-items: center;
  justify-content: center;
}

.center-logo .logo-frame {
  width: 100%;

  aspect-ratio: 4 / 3;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 28px;

  background: transparent;
}

.center-logo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(
      0
      4px
      12px
      rgba(0, 0, 0, 0.4)
    );
}


/* =========================================================
   CONDITIONS
========================================================= */

.conditions {
  padding: 26px 24px 34px;
}

.condition-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.condition-grid article {
  min-height: 110px;

  padding: 14px 15px;

  background: #020202;

  border:
    1px
    solid
    var(--gold-line);

  border-radius: var(--radius);

  box-shadow:
    0
    3px
    14px
    rgba(0, 0, 0, 0.14);
}

.condition-grid b,
.validation-box b {
  color: #d8a92d;

  font-size: 12px;
}

.condition-grid p {
  margin: 7px 0 0;

  font-size: 12px;

  line-height: 1.5;
}


/* =========================================================
   FORMULAIRES
========================================================= */

.booking {
  padding: 28px 24px 42px;
}

.booking-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(300px, 0.55fr);

  gap: 26px;

  align-items: start;
}

.form-card {
  padding: 22px;

  background: #020202;

  border:
    1px
    solid
    #262626;

  border-radius: var(--radius);

  box-shadow:
    0
    4px
    18px
    rgba(0, 0, 0, 0.18);
}

.form-card form {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    15px
    18px;
}

.form-card label {
  min-width: 0;

  color: #c8c8c8;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.35;
}

.form-card label small {
  color: #888888;

  font-size: 11px;
  font-weight: 400;
}

.form-card h3 {
  grid-column: 1 / -1;

  margin: 15px 0 0;

  padding-bottom: 8px;

  color: var(--gold-light);

  border-bottom:
    1px
    solid
    #2a2a2a;

  font-size: 16px;

  letter-spacing: 0.25px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;

  display: block;

  margin-top: 5px;

  padding:
    10px
    12px;

  background: #060606;

  border:
    1px
    solid
    #303030;

  border-radius: 4px;

  color: #ffffff;

  font-size: 15px;

  line-height: 1.4;

  outline: none;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.form-card input,
.form-card select {
  min-height: 44px;
}

.form-card select {
  appearance: auto;
}

.form-card textarea {
  min-height: 125px;

  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: var(--gold-line);

  box-shadow:
    0
    0
    0
    2px
    rgba(212, 166, 43, 0.08);
}


/* CONTACT */

#formulaire-contact label:last-of-type {
  grid-column: 1 / -1;
}


/* RENDEZ-VOUS */

#formulaire-rendez-vous label:has(#message) {
  grid-column: 1 / -1;
}


/* CHECKBOXES */

#formulaire-rendez-vous label:has(input[type="checkbox"]) {
  grid-column: 1 / -1;

  display: grid;

  grid-template-columns:
    20px
    minmax(0, 1fr);

  align-items: start;

  column-gap: 10px;

  color: #cfcfcf;

  font-size: 13px;
  font-weight: 400;

  cursor: pointer;
}

#formulaire-rendez-vous input[type="checkbox"] {
  width: 18px;
  height: 18px;

  min-height: 0;

  margin: 1px 0 0;

  padding: 0;

  accent-color: var(--gold);

  cursor: pointer;
}

.form-card .button {
  grid-column: 1 / -1;

  width: max-content;

  margin-top: 5px;
}

.privacy {
  grid-column: 1 / -1;

  margin: 0;

  color: #7f7f7f;

  font-size: 11px;

  line-height: 1.4;
}

.validation-box {
  position: sticky;

  top: 84px;

  padding: 18px;

  background: #020202;

  border:
    1px
    solid
    var(--gold-line);

  border-radius: var(--radius);

  box-shadow:
    0
    4px
    18px
    rgba(0, 0, 0, 0.18);
}

.validation-box b {
  display: block;

  margin-bottom: 9px;

  font-size: 14px;
}

.validation-box p {
  margin: 8px 0;

  color: #d0d0d0;

  font-size: 13px;

  line-height: 1.55;
}


/* =========================================================
   ANCRE RENDEZ-VOUS
========================================================= */

.anchor-target {
  position: relative;

  top: -78px;

  height: 0;

  overflow: hidden;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  margin-top: 8px;

  padding:
    22px
    24px
    26px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-top:
    1px
    solid
    #202020;

  color: #aaaaaa;

  font-size: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;

  object-fit: contain;
}

.footer-brand b {
  font-size: 13px;
}

.footer-brand small {
  font-size: 8px;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 980px) {

  .site-header {
    padding:
      7px
      18px;
  }

  .site-header nav {
    gap: 13px;
  }

  .site-header nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(240px, 0.8fr);

    column-gap: 18px;

    padding:
      28px
      24px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .validation-box {
    position: static;
  }

  .condition-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  #a-propos .condition-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  :root {
    --header-height: 56px;
  }

  .hero,
  main > section,
  footer {
    width: 100%;
  }

  .site-header {
    min-height: 56px;

    padding:
      7px
      14px;
  }

  .brand-mini img {
    width: 38px;
    height: 38px;
  }

  .brand-mini small {
    font-size: 7px;
  }

  .site-header nav {
    gap: 8px;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .site-header .nav-cta {
    padding:
      8px
      10px;

    font-size: 10px;
  }

  .hero {
    min-height: 0;

    padding:
      26px
      18px;

    grid-template-columns:
      1fr
      0.75fr;

    column-gap: 12px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-logo img {
    max-width: 210px;
  }

  #a-propos,
  .terrain-block,
  .offers,
  .approach,
  .conditions,
  .booking {
    padding-left: 18px;
    padding-right: 18px;
  }

  #a-propos {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  #a-propos .condition-grid {
    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 26px;
    margin-bottom: 32px;
  }

  #a-propos .condition-grid article {
    min-height: 0;
  }

  .photo-row {
    gap: 10px;
  }

  .condition-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 10px;
  }

  .form-card {
    padding: 16px;
  }

  .booking-grid {
    gap: 14px;
  }

  footer {
    padding:
      16px
      18px;
  }

  footer > div:last-child {
    display: none;
  }

}


/* =========================================================
   PETIT MOBILE
========================================================= */

@media (max-width: 520px) {

  body {
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

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

  .photo-frame {
    aspect-ratio: 4 / 3;
  }

  .condition-grid {
    grid-template-columns: 1fr;
  }

  .levels {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .levels > div {
    padding:
      10px
      0;

    border-right: 0;

    border-bottom:
      1px
      solid
      #5b4515;
  }

  .levels > div:last-child {
    border-bottom: 0;
  }

  .offer-levels table {
    font-size: 11px;
  }

  .offer-levels th,
  .offer-levels td {
    padding:
      7px
      4px;
  }

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

  .form-card label,
  #formulaire-contact label:last-of-type,
  #formulaire-rendez-vous label:has(#message),
  #formulaire-rendez-vous label:has(input[type="checkbox"]) {
    grid-column: 1;
  }

  .form-card .button {
    width: 100%;

    text-align: center;
  }

  .center-logo .logo-frame {
    max-width: 260px;

    margin:
      0
      auto;
  }

}