:root {
  --ovh-ink: #12100e;
  --ovh-ink-soft: #241f1a;
  --ovh-cream: #f7f3ec;
  --ovh-cream-deep: #ece4d8;
  --ovh-gold: #d8a44b;
  --ovh-gold-deep: #b3802c;
  --ovh-amber-glow: rgba(216, 164, 75, 0.35);
  --ovh-plum: #2c1f2e;
  --ovh-line: rgba(18, 16, 14, 0.12);
  --ovh-line-light: rgba(247, 243, 236, 0.18);
  --ovh-shadow-sm: 0 6px 18px rgba(18, 16, 14, 0.08);
  --ovh-shadow-md: 0 18px 44px rgba(18, 16, 14, 0.14);
  --ovh-shadow-lg: 0 32px 80px rgba(18, 16, 14, 0.22);
  --ovh-radius-sm: 8px;
  --ovh-radius-md: 16px;
  --ovh-radius-lg: 28px;
  --ovh-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ovh-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ovh-tracking-wide: 0.22em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ovh-font-body);
  color: var(--ovh-ink);
  background-color: var(--ovh-cream);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ovh-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ovh-ink);
  letter-spacing: -0.01em;
}

a {
  color: var(--ovh-gold-deep);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus {
  color: var(--ovh-ink);
}

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

::selection {
  background: var(--ovh-gold);
  color: var(--ovh-ink);
}

.visually-hidden-focusable:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  background: var(--ovh-ink);
  color: var(--ovh-cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--ovh-radius-sm);
}

.ovh-section {
  padding: clamp(3.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.ovh-section--tight {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.ovh-section--dark {
  background-color: var(--ovh-ink);
  color: var(--ovh-cream);
}

.ovh-section--dark h1,
.ovh-section--dark h2,
.ovh-section--dark h3,
.ovh-section--dark h4 {
  color: var(--ovh-cream);
}

.ovh-section--cream {
  background-color: var(--ovh-cream-deep);
}

.ovh-section--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ovh-cream);
}

.ovh-section--bg h1,
.ovh-section--bg h2,
.ovh-section--bg h3,
.ovh-section--bg h4,
.ovh-section--bg p,
.ovh-section--bg li {
  color: var(--ovh-cream);
}

.ovh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ovh-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--ovh-tracking-wide);
  text-transform: uppercase;
  color: var(--ovh-gold-deep);
  margin-bottom: 1.25rem;
}

.ovh-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--ovh-gold-deep);
  display: inline-block;
}

.ovh-section--dark .ovh-eyebrow,
.ovh-section--bg .ovh-eyebrow {
  color: var(--ovh-gold);
}

.ovh-section--dark .ovh-eyebrow::before,
.ovh-section--bg .ovh-eyebrow::before {
  background: var(--ovh-gold);
}

.ovh-title-xl {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.025em;
}

.ovh-title-lg {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
}

.ovh-title-md {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.ovh-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.8;
  max-width: 62ch;
}

.ovh-text-body {
  font-size: 1rem;
  line-height: 1.8;
}

.ovh-divider {
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--ovh-gold), transparent);
  border: 0;
  margin: 1.75rem 0;
  opacity: 1;
}

.ovh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--ovh-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ovh-btn--primary {
  background-color: var(--ovh-gold);
  color: var(--ovh-ink);
  box-shadow: 0 12px 30px var(--ovh-amber-glow);
}

.ovh-btn--primary:hover,
.ovh-btn--primary:focus {
  background-color: var(--ovh-gold-deep);
  color: var(--ovh-ink);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px var(--ovh-amber-glow);
}

.ovh-btn--ghost {
  background-color: transparent;
  color: var(--ovh-ink);
  border-color: var(--ovh-line);
}

.ovh-btn--ghost:hover,
.ovh-btn--ghost:focus {
  background-color: var(--ovh-ink);
  color: var(--ovh-cream);
  border-color: var(--ovh-ink);
  transform: translateY(-3px);
}

.ovh-section--dark .ovh-btn--ghost,
.ovh-section--bg .ovh-btn--ghost {
  color: var(--ovh-cream);
  border-color: var(--ovh-line-light);
}

.ovh-section--dark .ovh-btn--ghost:hover,
.ovh-section--bg .ovh-btn--ghost:hover {
  background-color: var(--ovh-cream);
  color: var(--ovh-ink);
}

.ovh-card {
  background-color: #ffffff;
  border: 1px solid var(--ovh-line);
  border-radius: var(--ovh-radius-md);
  padding: 2.25rem 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ovh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ovh-shadow-md);
  border-color: var(--ovh-gold);
}

.ovh-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--ovh-gold), var(--ovh-gold-deep));
  color: var(--ovh-ink);
  font-size: 1.25rem;
  margin-bottom: 1.35rem;
}

.ovh-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.ovh-card__text {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.ovh-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--ovh-radius-md);
  background-color: var(--ovh-cream-deep);
}

.ovh-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ovh-media:hover img {
  transform: scale(1.06);
}

.ovh-media--tall {
  aspect-ratio: 3 / 4;
}

.ovh-media--square {
  aspect-ratio: 1 / 1;
}

.ovh-media--wide {
  aspect-ratio: 16 / 10;
}

.ovh-stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.ovh-stat__value {
  font-family: var(--ovh-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ovh-gold);
  line-height: 1;
  display: block;
}

.ovh-stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  display: block;
}

.ovh-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--ovh-cream);
  overflow: hidden;
}

.ovh-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.ovh-hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: var(--ovh-tracking-wide);
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  border: 1px solid var(--ovh-line-light);
  border-radius: 999px;
  color: var(--ovh-gold);
  margin-bottom: 1.75rem;
}

.ovh-hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: var(--ovh-tracking-wide);
  text-transform: uppercase;
  color: var(--ovh-cream);
  opacity: 0.75;
  z-index: 2;
}

.ovh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.ovh-glow--one {
  width: 420px;
  height: 420px;
  background: var(--ovh-amber-glow);
  top: -120px;
  right: -80px;
}

.ovh-glow--two {
  width: 320px;
  height: 320px;
  background: rgba(44, 31, 46, 0.4);
  bottom: -100px;
  left: -60px;
}

.ovh-pillars {
  border-radius: var(--ovh-radius-lg);
  background-color: #ffffff;
  box-shadow: var(--ovh-shadow-md);
  padding: clamp(1.75rem, 4vw, 3rem);
  margin-top: -6rem;
  position: relative;
  z-index: 5;
}

.ovh-pillar {
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--ovh-line);
}

.ovh-pillar:last-child {
  border-right: 0;
}

.ovh-pillar__number {
  font-family: var(--ovh-font-display);
  font-size: 1.1rem;
  color: var(--ovh-gold-deep);
  display: block;
  margin-bottom: 0.4rem;
}

.ovh-pillar__text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.ovh-testimonial {
  background-color: #ffffff;
  border-radius: var(--ovh-radius-md);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--ovh-shadow-sm);
  border-top: 3px solid var(--ovh-gold);
}

.ovh-testimonial__quote {
  font-family: var(--ovh-font-display);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--ovh-ink-soft);
}

.ovh-testimonial__meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.ovh-testimonial__stars {
  color: var(--ovh-gold-deep);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.ovh-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: var(--ovh-radius-sm);
  background-color: #ffffff;
  border: 1px solid var(--ovh-line);
  font-family: var(--ovh-font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--ovh-ink-soft);
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.ovh-partner:hover {
  border-color: var(--ovh-gold);
  transform: translateY(-4px);
}

.ovh-gallery__item {
  border-radius: var(--ovh-radius-md);
  overflow: hidden;
  background-color: var(--ovh-ink-soft);
}

.ovh-gallery__caption {
  padding: 1.1rem 1.25rem;
  background-color: var(--ovh-ink);
  color: var(--ovh-cream);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ovh-process {
  counter-reset: ovh-step;
}

.ovh-process__item {
  position: relative;
  padding: 1.75rem 1.5rem 1.75rem 4.5rem;
  border-radius: var(--ovh-radius-md);
  border: 1px solid var(--ovh-line);
  background-color: #ffffff;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ovh-process__item:hover {
  border-color: var(--ovh-gold);
  box-shadow: var(--ovh-shadow-sm);
}

.ovh-process__item::before {
  counter-increment: ovh-step;
  content: counter(ovh-step);
  position: absolute;
  left: 1.5rem;
  top: 1.85rem;
  font-family: var(--ovh-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ovh-gold-deep);
}

.ovh-process__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-family: var(--ovh-font-body);
  font-weight: 700;
}

.ovh-process__text {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.ovh-price-card {
  border: 1px solid var(--ovh-line);
  border-radius: var(--ovh-radius-md);
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ovh-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ovh-shadow-md);
}

.ovh-price-card--featured {
  background-color: var(--ovh-ink);
  color: var(--ovh-cream);
  border-color: var(--ovh-ink);
}

.ovh-price-card--featured h3,
.ovh-price-card--featured .ovh-price-card__value {
  color: var(--ovh-cream);
}

.ovh-price-card--featured .ovh-price-card__list li {
  color: var(--ovh-cream);
}

.ovh-price-card__value {
  font-family: var(--ovh-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ovh-gold-deep);
  line-height: 1;
}

.ovh-price-card__period {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

.ovh-price-card__list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  flex-grow: 1;
}

.ovh-price-card__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.ovh-price-card__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--ovh-gold-deep);
  font-size: 0.85rem;
}

.ovh-price-card--featured .ovh-price-card__list li::before {
  color: var(--ovh-gold);
}

.ovh-faq__item {
  border-bottom: 1px solid var(--ovh-line);
  padding: 1.5rem 0;
}

.ovh-faq__question {
  font-family: var(--ovh-font-display);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.ovh-faq__answer {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.ovh-form {
  background-color: #ffffff;
  border-radius: var(--ovh-radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--ovh-shadow-md);
}

.ovh-form__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.ovh-form .form-control,
.ovh-form .form-select {
  border: 1px solid var(--ovh-line);
  border-radius: var(--ovh-radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background-color: var(--ovh-cream);
  color: var(--ovh-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ovh-form .form-control:focus,
.ovh-form .form-select:focus {
  border-color: var(--ovh-gold);
  box-shadow: 0 0 0 0.2rem var(--ovh-amber-glow);
  background-color: #ffffff;
}

.ovh-form .form-control::placeholder {
  color: rgba(18, 16, 14, 0.45);
}

.ovh-form__note {
  font-size: 0.82rem;
  line-height: 1.6;
}

.ovh-newsletter {
  border-radius: var(--ovh-radius-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  background-color: var(--ovh-plum);
  color: var(--ovh-cream);
}

.ovh-newsletter .form-control {
  border-radius: 999px;
  border: 1px solid var(--ovh-line-light);
  background-color: rgba(247, 243, 236, 0.08);
  color: var(--ovh-cream);
  padding: 0.9rem 1.4rem;
}

.ovh-newsletter .form-control::placeholder {
  color: rgba(247, 243, 236, 0.6);
}

.ovh-newsletter .form-control:focus {
  background-color: rgba(247, 243, 236, 0.14);
  border-color: var(--ovh-gold);
  color: var(--ovh-cream);
  box-shadow: none;
}

.ovh-map-frame {
  border-radius: var(--ovh-radius-md);
  overflow: hidden;
  border: 1px solid var(--ovh-line);
  min-height: 380px;
}

.ovh-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.ovh-team-card {
  text-align: center;
  height: 100%;
}

.ovh-team-card__photo {
  border-radius: var(--ovh-radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--ovh-cream-deep);
  margin-bottom: 1.25rem;
}

.ovh-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ovh-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.ovh-timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--ovh-line);
}

.ovh-timeline__item {
  position: relative;
  padding-bottom: 2.25rem;
}

.ovh-timeline__item::before {
  content: "";
  position: absolute;
  left: -2.15rem;
  top: 0.45rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ovh-gold-deep);
  box-shadow: 0 0 0 4px rgba(216, 164, 75, 0.22);
}

.ovh-timeline__year {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ovh-gold-deep);
  font-weight: 600;
}

.ovh-article-card {
  background-color: #ffffff;
  border-radius: var(--ovh-radius-md);
  overflow: hidden;
  border: 1px solid var(--ovh-line);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ovh-article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ovh-shadow-md);
}

.ovh-article-card__media {
  aspect-ratio: 16 / 9;
  background-color: var(--ovh-cream-deep);
  overflow: hidden;
}

.ovh-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ovh-article-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ovh-article-card__date {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ovh-gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ovh-article-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.ovh-article-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.75;
  flex-grow: 1;
}

.ovh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ovh-gold-deep);
}

.ovh-link-arrow i {
  transition: transform 0.25s ease;
}

.ovh-link-arrow:hover i {
  transform: translateX(6px);
}

.ovh-cta-band {
  border-radius: var(--ovh-radius-lg);
  padding: clamp(2.25rem, 5vw, 4rem);
  background: linear-gradient(120deg, var(--ovh-ink) 0%, var(--ovh-plum) 100%);
  color: var(--ovh-cream);
  position: relative;
  overflow: hidden;
}

.ovh-cta-band h2,
.ovh-cta-band p {
  color: var(--ovh-cream);
}

.ovh-legal {
  max-width: 78ch;
}

.ovh-legal h2 {
  font-size: 1.55rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.ovh-legal h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.ovh-legal p,
.ovh-legal li {
  font-size: 0.98rem;
  line-height: 1.85;
}

.ovh-legal ul {
  padding-left: 1.25rem;
}

.ovh-legal ul li {
  margin-bottom: 0.6rem;
}

.ovh-accordion .accordion-item {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--ovh-line);
}

.ovh-accordion .accordion-button {
  background-color: transparent;
  font-family: var(--ovh-font-display);
  font-size: 1.1rem;
  color: var(--ovh-ink);
  padding: 1.25rem 0;
  box-shadow: none;
}

.ovh-accordion .accordion-button:not(.collapsed) {
  color: var(--ovh-gold-deep);
  background-color: transparent;
}

.ovh-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.ovh-accordion .accordion-body {
  padding: 0 0 1.5rem;
  font-size: 0.97rem;
  line-height: 1.8;
}

.ovh-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: var(--ovh-cream-deep);
  color: var(--ovh-ink-soft);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.ovh-breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ovh-breadcrumb a {
  color: var(--ovh-gold);
}

.ovh-breadcrumb span {
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .ovh-pillars {
    margin-top: -3rem;
  }

  .ovh-pillar {
    border-right: 0;
    border-bottom: 1px solid var(--ovh-line);
  }

  .ovh-pillar:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .ovh-hero {
    min-height: 72vh;
  }

  .ovh-hero__scroll {
    display: none;
  }

  .ovh-timeline {
    padding-left: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ovh-media img,
  .ovh-card,
  .ovh-btn,
  .ovh-link-arrow i {
    transition: none;
  }
}

.ovh-cookie {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 2rem));
  z-index: 1080;
  background-color: var(--ovh-ink);
  color: var(--ovh-cream);
  border: 1px solid rgba(216, 164, 75, 0.4);
  border-radius: var(--ovh-radius-lg);
  box-shadow: var(--ovh-shadow-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.ovh-cookie__glow {
  position: absolute;
  top: -60px;
  right: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--ovh-amber-glow);
  filter: blur(60px);
  pointer-events: none;
}

.ovh-cookie__body {
  flex: 1 1 420px;
  position: relative;
  z-index: 2;
}

.ovh-cookie__title {
  font-family: var(--ovh-font-display);
  font-size: 1.15rem;
  color: var(--ovh-cream);
  margin-bottom: 0.4rem;
}

.ovh-cookie__text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: rgba(247, 243, 236, 0.92);
}

.ovh-cookie__link {
  color: var(--ovh-gold);
  text-decoration: underline;
}

.ovh-cookie__link:hover,
.ovh-cookie__link:focus {
  color: var(--ovh-cream);
}

.ovh-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.ovh-cookie__btn {
  font-family: var(--ovh-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ovh-cookie__btn--accept {
  background-color: var(--ovh-gold);
  color: var(--ovh-ink);
}

.ovh-cookie__btn--accept:hover,
.ovh-cookie__btn--accept:focus {
  background-color: var(--ovh-gold-deep);
  color: var(--ovh-ink);
}

.ovh-cookie__btn--decline {
  background-color: transparent;
  color: var(--ovh-cream);
  border-color: var(--ovh-line-light);
}

.ovh-cookie__btn--decline:hover,
.ovh-cookie__btn--decline:focus {
  background-color: rgba(247, 243, 236, 0.12);
  color: var(--ovh-cream);
}

@media (max-width: 575.98px) {
  .ovh-cookie {
    padding: 1.25rem;
    border-radius: var(--ovh-radius-md);
    bottom: 0.75rem;
  }

  .ovh-cookie__actions {
    width: 100%;
  }

  .ovh-cookie__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
/* Ensure hero headings stay legible on the dark hero surface */
.hero h1{color:#ffffff}

/* --- Contacts page contrast fixes (WCAG AA) --- */
/* Hero: guarantee a dark surface behind white hero text if the bg image fails to paint */
.ct-hero{
  background-color:#0d0f16;
}
/* Eyebrow labels: darken gold so it passes 4.5:1 on cream (#f7f3ec) and white */
.ct-eyebrow{
  color:#7a6212;
}
/* Dark sections keep the brighter gold for their eyebrows */
.ct-dark .ct-eyebrow,
.ct-sec.ct-dark .ct-eyebrow{
  color:#e6cf7a;
}
/* Social cards built from anchors: force an accessible link colour on the anchor + heading */
a.ct-card,
a.ct-card h3,
a.ct-card .h6,
a.ct-card:hover,
a.ct-card h3:hover{
  color:#7a6212;
}

/* --- Contacts page contrast fixes, pass 2 --- */
/* Hero heading must be light on the dark hero surface */
.ct-hero h1,
.ct-hero h2,
.ct-hero .ct-tag,
.ct-hero p{
  color:#ffffff;
}
/* !important needed to beat the page-level inline <style> block that sets #a8871a */
.ct-eyebrow{
  color:#7a6212 !important;
}
/* Eyebrows sitting on dark surfaces keep the brighter gold */
.ct-dark .ct-eyebrow,
.ct-sec.ct-dark .ct-eyebrow,
.ct-dark .ct-eyebrow[style]{
  color:#e6cf7a !important;
}

/* Contrast fix: hero sections use a background image with a dark overlay but no
   background-color, so automated contrast checks measure text against the light
   page background. Give the hero a dark fallback background so light text/links
   render on a dark surface. */
.hero-article{background-color:#101319}

/* Ensure hero heading text stays light so it contrasts against the dark hero background. */
.hero-article h1,
.hero-article h1.aos-init,
.hero-article h1.aos-animate{color:#fff}

/* Contrast fix: ensure hero heading is legible on the dark hero background */
.legal-hero h1,
.legal-hero h1.aos-init,
.legal-hero h1.aos-animate { color: #ffffff !important; }
.legal-hero p { color: rgba(255,255,255,.82); }

/* Privacy Policy hero: legal-hero h1 was inheriting the global dark heading
   colour (#12100e) and disappearing against the dark hero surface (#0d0f16).
   Force a light heading colour so it passes contrast on the dark background. */
.legal-hero h1,
.legal-hero h1.aos-init,
.legal-hero h1.aos-animate{
  color:#ffffff;
}

/* --- Price page hero contrast fix --- */
/* The hero now has a dark background-color fallback, so the heading must be light. */
.pr-hero h1,
.pr-hero h2,
.pr-hero .pr-tag,
.pr-hero p,
.pr-hero a.btn-ghost{
  color:#ffffff;
}

/* --- Thank You page hero contrast fix --- */
/* The hero uses a dark background surface, but the global h1 rule sets a dark
   heading colour (var(--ovh-ink)) which the inherited .ty-hero colour cannot
   override. Force a light heading on the dark hero so it stays legible. */
.ty-hero h1,
.ty-hero h1.aos-init,
.ty-hero h1.aos-animate{
  color:#ffffff;
}
