/* Page accessibilité — styles spécifiques */

.page-hero {
  position: relative;
  background: var(--night);
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.page-hero-vlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
}
.page-hero-vlines span {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(194,168,120,0.06);
}

.hero-bg-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-svg svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 3rem;
}
.breadcrumb a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.18s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(194,168,120,0.32); font-size: 0.55rem; }
.breadcrumb .current { color: rgba(194,168,120,0.6); }

.page-hero-ref {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(194,168,120,0.55);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.page-hero-ref::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--b-gold);
  display: block;
  flex-shrink: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.82;
  font-weight: 400;
}
.access-hero-cta { margin-top: 2.4rem; }

.s-access-content {
  background: var(--white);
  padding: 7rem 0 8rem;
}

.access-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  align-items: start;
}

.access-toc {
  position: sticky;
  top: 5.5rem;
}
.access-toc-title {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--b);
}
.access-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.access-toc-list li { border-bottom: 1px solid var(--b); }
.access-toc-list a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
  line-height: 1.45;
}
.access-toc-list a:hover { color: var(--gold); padding-left: 0.4rem; }

.access-body { min-width: 0; }

.access-section {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--b);
}
.access-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.access-section-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.access-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.access-section h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.access-section p {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.82;
  font-weight: 400;
}
.access-section p + p { margin-top: 1rem; }
.access-section p a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--b-gold);
  transition: color 0.18s, border-color 0.18s;
}
.access-section p a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
}
.access-item {
  background: var(--white);
  padding: 2rem 2.2rem;
  position: relative;
}
.access-item::before {
  content: '';
  position: absolute;
  top: 2rem; left: 0;
  width: 2px;
  height: 28px;
  background: var(--gold);
  opacity: 0.55;
}
.access-item-title {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.access-item p:last-child {
  font-size: 0.95rem;
  line-height: 1.76;
}

.access-contact {
  background: var(--light);
  border: 1px solid var(--b);
  padding: 2.4rem 2.6rem;
  position: relative;
}
.access-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 36px;
  background: var(--gold);
}
.access-contact .btn { 
  margin-top: 3rem; 
  margin-bottom: 2rem;
}

@media (max-width: 980px) {
  .access-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .access-toc { position: static; }
}

@media (max-width: 640px) {
  .page-hero-vlines { display: none; }
  .s-access-content { padding: 5.5rem 0 6rem; }
  .access-grid { grid-template-columns: 1fr; }
  .access-contact { padding: 2rem 1.8rem; }
}
