:root {
  --brand-dark: #0b0f14;
  --brand-dark-2: #131a22;
  --brand-charcoal: #1b232d;
  --brand-slate: #2a3441;
  --brand-gold: #d4af37;
  --brand-gold-light: #eccb6a;
  --brand-gold-dark: #9c7c1c;
  --brand-cream: #f7f2e4;
  --brand-paper: #fbf9f4;
  --brand-white: #ffffff;
  --brand-text: #14181d;
  --brand-text-soft: #3d4652;
  --brand-line: rgba(212, 175, 55, 0.28);
  --brand-line-dark: rgba(255, 255, 255, 0.12);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-soft: 0 10px 30px rgba(11, 15, 20, 0.10);
  --shadow-strong: 0 24px 60px rgba(11, 15, 20, 0.35);
  --shadow-gold: 0 18px 45px rgba(212, 175, 55, 0.28);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.4s var(--ease);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--brand-text);
  background-color: var(--brand-paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: inherit;
}

p {
  font-size: 1.03rem;
  color: var(--brand-text-soft);
}

a {
  color: var(--brand-gold-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-gold);
}

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

main {
  display: block;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--dark {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.section--dark p,
.section--dark li {
  color: rgba(255, 255, 255, 0.82);
}

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

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 18px;
}

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

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-bottom: 20px;
}

.section-lead {
  max-width: 680px;
  font-size: 1.08rem;
}

.btn {
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(120deg, var(--brand-gold-light), var(--brand-gold));
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  color: #1a1408;
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(212, 175, 55, 0.42);
}

.btn-outline-gold {
  background: transparent;
  color: var(--brand-white);
  border-color: var(--brand-gold);
}

.btn-outline-gold:hover {
  background: var(--brand-gold);
  color: #1a1408;
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--brand-dark);
  color: var(--brand-white);
}

.btn-dark:hover {
  background: var(--brand-charcoal);
  color: var(--brand-gold);
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--brand-line-dark);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(11, 15, 20, 0.98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.header-contact i {
  color: var(--brand-gold);
  margin-right: 8px;
}

.nav-burger {
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
}

.nav-burger:hover {
  background: var(--brand-gold);
  color: #1a1408;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--brand-gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.35));
}

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

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--brand-white);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--brand-gold);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 44px;
  border-top: 1px solid var(--brand-line-dark);
  padding-top: 30px;
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--brand-gold);
}

.hero-meta-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  border-radius: 999px;
  text-transform: uppercase;
}

.responsible-strip {
  background: var(--brand-dark-2);
  border-top: 1px solid var(--brand-line-dark);
  border-bottom: 1px solid var(--brand-line-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 26px 0;
}

.responsible-strip i {
  color: var(--brand-gold);
  font-size: 1.6rem;
}

.responsible-strip p {
  margin: 0;
  font-size: 0.95rem;
}

.card-lux {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 15, 20, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 38px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-lux::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card-lux:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.card-lux:hover::after {
  opacity: 1;
}

.card-lux .card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  color: var(--brand-gold-dark);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.card-lux h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}

.card-lux p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: var(--brand-text-soft);
}

.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  background: var(--brand-dark-2);
}

.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

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

.media-card-body {
  padding: 26px 28px 30px;
  color: var(--brand-white);
}

.media-card-body h3 {
  color: var(--brand-white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.media-card-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.media-card-price {
  color: var(--brand-gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.panel-dark {
  background: var(--brand-dark-2);
  border: 1px solid var(--brand-line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--brand-white);
  height: 100%;
}

.panel-dark h3 {
  color: var(--brand-white);
}

.panel-dark ul {
  padding-left: 0;
  list-style: none;
}

.panel-dark ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.panel-dark ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-gold);
}

.panel-gold {
  background: linear-gradient(150deg, var(--brand-gold-light), var(--brand-gold));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #1a1408;
  height: 100%;
  box-shadow: var(--shadow-gold);
}

.panel-gold h3,
.panel-gold p,
.panel-gold li {
  color: #1a1408;
}

.carousel-lux {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.carousel-lux .carousel-item {
  height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-lux .slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 60px 50px;
  background: linear-gradient(to top, rgba(11, 15, 20, 0.92), rgba(11, 15, 20, 0));
  color: var(--brand-white);
}

.carousel-lux .slide-caption h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  color: var(--brand-white);
}

.carousel-lux .slide-caption p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 0;
}

.carousel-lux .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  background-color: var(--brand-gold);
  border: none;
  opacity: 0.5;
}

.carousel-lux .carousel-indicators .active {
  opacity: 1;
}

.stat-block {
  text-align: center;
  padding: 34px 20px;
  border-right: 1px solid var(--brand-line-dark);
}

.stat-block:last-child {
  border-right: none;
}

.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  color: var(--brand-gold);
}

.stat-block span {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  position: relative;
  padding-left: 42px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-gold), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 44px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.18);
}

.timeline-item span {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold-dark);
  font-weight: 700;
}

.timeline-item h3 {
  font-size: 1.24rem;
  margin: 8px 0 10px;
}

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  transition: var(--transition);
}

.team-card:hover img {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold-dark);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 22px 20px;
  background: linear-gradient(to top, rgba(11, 15, 20, 0.9), transparent);
  color: var(--brand-white);
  font-weight: 600;
}

.accordion-lux .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11, 15, 20, 0.1);
  border-radius: 0;
}

.accordion-lux .accordion-button {
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--brand-text);
  padding: 24px 8px;
  box-shadow: none;
}

.accordion-lux .accordion-button:not(.collapsed) {
  color: var(--brand-gold-dark);
  background: transparent;
}

.accordion-lux .accordion-button::after {
  color: var(--brand-gold-dark);
}

.accordion-lux .accordion-body {
  padding: 0 8px 26px;
  color: var(--brand-text-soft);
}

.quote-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border-left: 4px solid var(--brand-gold);
}

.quote-card .stars {
  color: var(--brand-gold);
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--brand-text);
  margin-bottom: 22px;
}

.quote-card .author strong {
  display: block;
  color: var(--brand-text);
}

.quote-card .author span {
  font-size: 0.88rem;
  color: var(--brand-text-soft);
}

.form-lux {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-strong);
}

.form-lux label {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-text-soft);
  margin-bottom: 8px;
}

.form-lux .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 15, 20, 0.14);
  padding: 14px 16px;
  font-size: 0.98rem;
  background: var(--brand-paper);
  color: var(--brand-text);
}

.form-lux .form-control:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
  background: var(--brand-white);
}

.form-note {
  font-size: 0.85rem;
  color: var(--brand-text-soft);
}

.form-success {
  display: none;
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(31, 138, 76, 0.12);
  border: 1px solid rgba(31, 138, 76, 0.45);
  color: #145c33;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
  animation: fadeSlide 0.45s var(--ease);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.newsletter-box {
  background: var(--brand-dark-2);
  border: 1px solid var(--brand-line-dark);
  border-radius: var(--radius-lg);
  padding: 46px;
  color: var(--brand-white);
}

.newsletter-box h3 {
  color: var(--brand-white);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.newsletter-form .form-control {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--brand-line-dark);
  color: var(--brand-white);
  border-radius: 999px;
  padding: 14px 22px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-gold);
  color: var(--brand-white);
  box-shadow: none;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.info-tile {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.info-tile i {
  font-size: 1.4rem;
  color: var(--brand-gold-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-tile h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.info-tile p {
  margin: 0;
  font-size: 0.95rem;
}

.disclaimer-box {
  border: 1px dashed var(--brand-line);
  border-radius: var(--radius);
  padding: 28px 32px;
  background: rgba(212, 175, 55, 0.05);
}

.disclaimer-box h4 {
  font-size: 1.05rem;
  color: var(--brand-gold-dark);
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 78px 0 0;
  border-top: 1px solid var(--brand-line-dark);
}

.site-footer h4 {
  color: var(--brand-white);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--brand-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-contacts p {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.footer-contacts i {
  color: var(--brand-gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--brand-line-dark);
  margin-top: 56px;
  padding: 24px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal-line {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--brand-line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
}

.social-row a:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #1a1408;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(940px, calc(100% - 32px));
  background: rgba(11, 15, 20, 0.97);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  color: rgba(255, 255, 255, 0.9);
  padding: 24px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  animation: cookieUp 0.5s var(--ease);
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 460px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner a {
  color: var(--brand-gold);
  text-decoration: underline;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner .cookie-actions button {
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--brand-gold);
  transition: var(--transition);
}

.cookie-banner .cookie-accept {
  background: var(--brand-gold);
  color: #1a1408;
}

.cookie-banner .cookie-accept:hover {
  background: var(--brand-gold-light);
}

.cookie-banner .cookie-decline {
  background: transparent;
  color: var(--brand-white);
}

.cookie-banner .cookie-decline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@keyframes cookieUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--brand-gold);
  color: #1a1408;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-4px);
}

.page-hero {
  position: relative;
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
  color: var(--brand-white);
}

.page-hero h1,
.page-hero p {
  color: var(--brand-white);
}

.page-hero p {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 42px 0 16px;
}

.legal-content h3 {
  font-size: 1.18rem;
  margin: 30px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--brand-text-soft);
}

.legal-content ul {
  padding-left: 22px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--brand-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-table th {
  background: var(--brand-dark-2);
  color: var(--brand-gold);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.98rem;
}

.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  color: var(--brand-text-soft);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: rgba(212, 175, 55, 0.06);
}

.step-card {
  position: relative;
  padding: 34px 30px 30px;
  background: var(--brand-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.step-card .step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  margin: 0;
  border: none;
  opacity: 0.6;
}

@media (max-width: 991px) {
  .section {
    padding: 72px 0;
  }

  .header-contact {
    display: none;
  }

  .primary-nav {
    flex-direction: column;
    gap: 18px;
    padding: 24px 0;
  }

  .carousel-lux .carousel-item {
    height: 460px;
  }

  .carousel-lux .slide-caption {
    padding: 50px 30px 40px;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--brand-line-dark);
  }

  .form-lux,
  .newsletter-box {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-meta {
    gap: 22px;
  }

  .cookie-banner {
    bottom: 14px;
    padding: 20px;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
  }

  .page-hero {
    padding: 100px 0 70px;
  }

  .gallery-item {
    height: 240px;
  }

  .media-card img {
    height: 240px;
  }
}
/* --- Contrast fixes (appended overrides) --- */
.hero {
  background-color: #0b0f14;
}

.hero .hero-title,
.hero-title {
  color: #ffffff;
}

.panel-dark p,
.panel-dark p span,
.panel-dark span {
  color: rgba(255, 255, 255, 0.92);
}

.panel-dark p i {
  color: var(--brand-gold);
}

/* ==========================================================================
   Accessibility contrast overrides
   ========================================================================== */

/* Darker gold for text sitting on light/cream surfaces (WCAG AA at small sizes) */
:root {
  --brand-gold-dark: #7f6314;
  --gold-accessible: #7f6314;
}

/* Give image-backed sections a solid fallback background so overlaid light
   text always has a known dark backdrop (also helps before images load). */
.hero {
  background-color: var(--brand-dark);
}

.section--bg {
  background-color: var(--brand-dark);
}

/* Eyebrow labels use bright gold on dark sections, but need a darker gold on
   light sections to stay readable. */
.eyebrow {
  color: var(--gold-accessible);
}

.eyebrow::before {
  background: var(--gold-accessible);
}

.hero .eyebrow,
.section--dark .eyebrow,
.section--bg .eyebrow,
.responsible-strip .eyebrow {
  color: var(--brand-gold);
}

.hero .eyebrow::before,
.section--dark .eyebrow::before,
.section--bg .eyebrow::before,
.responsible-strip .eyebrow::before {
  background: var(--brand-gold);
}

/* Paragraphs inside the dark responsible strip and dark panels were inheriting
   the light-surface body text colour and became unreadable. */
.responsible-strip p {
  color: rgba(255, 255, 255, 0.85);
}

.panel-dark p {
  color: rgba(255, 255, 255, 0.82);
}

/* Timeline year markers and team role labels sit on cream backgrounds and
   previously failed contrast with the lighter gold. */
.timeline-item span,
.team-card .role {
  color: var(--gold-accessible);
}

/* Page hero (inner pages) is image-backed with light overlay text but had no
   solid fallback colour, so before/without the image the white <h1> sat on the
   cream body background and failed contrast. Give it a dark fallback. */
.page-hero {
  background-color: var(--brand-dark);
}

.page-hero h1,
.page-hero .section-title {
  color: var(--brand-white);
}

/* ==========================================================================
   Contrast fixes for harbourfront-chef-table-q4
   ========================================================================== */

/* The gold quote panel used a gradient with no solid background-color, so the
   reserved dark <h3>/<strong> text was measured against the dark parent
   section. Give it an opaque gold background-color (the gradient still paints
   on top) so dark-on-gold contrast is detected. */
.panel-gold {
  background-color: #d4af37;
  background-image: linear-gradient(150deg, var(--brand-gold-light), var(--brand-gold));
}

/* Bright gold price text sat on the white .card-lux surface. Use the darker
   accessible gold. */
.card-lux .media-card-price {
  color: var(--gold-accessible);
}

/* Step numbers sit on white step cards; bright gold failed contrast. */
.step-card .step-num {
  color: var(--gold-accessible);
}

/* Gallery captions are overlaid on photos via a transparent-to-dark gradient,
   so the resolved background fell through to the light page colour. Add an
   opaque dark background-color behind the gradient to guarantee contrast. */
.gallery-item .gallery-caption {
  background-color: #0b0f14;
  background-image: linear-gradient(to top, rgba(11, 15, 20, 0.95), rgba(11, 15, 20, 0.35));
}

/* The dark section resets all <p> to white, which made the small form note
   white-on-white inside the white .form-lux card. Keep it dark. */
.form-lux .form-note,
.section--dark .form-lux .form-note {
  color: var(--brand-text-soft);
}
